diff --git a/docs/en/framework/infrastructure/emailing.md b/docs/en/framework/infrastructure/emailing.md
index ff7ab152df..f2eb897a10 100644
--- a/docs/en/framework/infrastructure/emailing.md
+++ b/docs/en/framework/infrastructure/emailing.md
@@ -193,7 +193,7 @@ The resulting email body will be shown below:
````html
-
+
@@ -217,7 +217,7 @@ This template uses the "Abp.StandardEmailTemplates.Layout" as its layout.
````html
-
+
@@ -227,6 +227,8 @@ This template uses the "Abp.StandardEmailTemplates.Layout" as its layout.
````
+`abp_culture` and `abp_dir` are provided by the rendering engine, so the document declares the language and the text direction of the culture it was rendered with. See [the text templating documentation](./text-templating/scriban.md) for the details.
+
The final rendered message was shown above.
> These template names are contants defined in the `Volo.Abp.Emailing.Templates.StandardEmailTemplates` class.
diff --git a/docs/en/framework/infrastructure/text-templating/razor.md b/docs/en/framework/infrastructure/text-templating/razor.md
index a8bc1c55a6..73b939ed10 100644
--- a/docs/en/framework/infrastructure/text-templating/razor.md
+++ b/docs/en/framework/infrastructure/text-templating/razor.md
@@ -330,7 +330,7 @@ First, create a template file just like before:
````html
@inherits Volo.Abp.TextTemplating.Razor.RazorTemplatePageBase
-
+
@@ -404,6 +404,21 @@ The rendering result will be:
A global object value: TEST VALUE
````
+### Built-In Global Context Values
+
+The Razor and Scriban engines add the following values to the global context, so a template can declare the language and the text direction of the document it renders:
+
+| Key | Value |
+|-----|-------|
+| `abp_culture` | Name of the culture the template is rendered with, `en` when it is the invariant culture. |
+| `abp_dir` | `rtl` for a right-to-left culture, `ltr` otherwise. |
+
+````html
+
+````
+
+A value you pass yourself under the same key is kept. The rendering works on a copy of the dictionary you pass, so you can reuse the same instance for several renderings.
+
## Replacing the Existing Templates
It is possible to replace a template defined by a module that used in your application. In this way, you can customize the templates based on your requirements without changing the module code.
@@ -427,7 +442,7 @@ Do the following steps to replace the template file with your own;
````html
@inherits Volo.Abp.TextTemplating.Razor.RazorTemplatePageBase
-
+
diff --git a/docs/en/framework/infrastructure/text-templating/scriban.md b/docs/en/framework/infrastructure/text-templating/scriban.md
index d2bb8e4a26..eb4171b45d 100644
--- a/docs/en/framework/infrastructure/text-templating/scriban.md
+++ b/docs/en/framework/infrastructure/text-templating/scriban.md
@@ -302,7 +302,7 @@ First, create a template file just like before:
````xml
-
+
@@ -375,6 +375,21 @@ The rendering result will be:
A global object value: TEST VALUE
````
+### Built-In Global Context Values
+
+The Scriban and Razor engines add the following values to the global context, so a template can declare the language and the text direction of the document it renders:
+
+| Key | Value |
+|-----|-------|
+| `abp_culture` | Name of the culture the template is rendered with, `en` when it is the invariant culture. |
+| `abp_dir` | `rtl` for a right-to-left culture, `ltr` otherwise. |
+
+````html
+
+````
+
+A value you pass yourself under the same key is kept. The rendering works on a copy of the dictionary you pass, so you can reuse the same instance for several renderings.
+
## Replacing the Existing Templates
It is possible to replace a template defined by a module that used in your application. In this way, you can customize the templates based on your requirements without changing the module code.
@@ -397,7 +412,7 @@ Do the following steps to replace the template file with your own;
````html
-
+
diff --git a/framework/src/Volo.Abp.Emailing/Volo/Abp/Emailing/Templates/Layout.tpl b/framework/src/Volo.Abp.Emailing/Volo/Abp/Emailing/Templates/Layout.tpl
index 4c64588666..b74712cde1 100644
--- a/framework/src/Volo.Abp.Emailing/Volo/Abp/Emailing/Templates/Layout.tpl
+++ b/framework/src/Volo.Abp.Emailing/Volo/Abp/Emailing/Templates/Layout.tpl
@@ -1,5 +1,5 @@
-
+
diff --git a/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudActionMenu.razor b/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudActionMenu.razor
new file mode 100644
index 0000000000..dd2092acea
--- /dev/null
+++ b/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudActionMenu.razor
@@ -0,0 +1,37 @@
+@using MudBlazor
+
+
+
+
+ @ChildContent
+
+
+
diff --git a/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudActionMenu.razor.cs b/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudActionMenu.razor.cs
new file mode 100644
index 0000000000..ff0ff5efc9
--- /dev/null
+++ b/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudActionMenu.razor.cs
@@ -0,0 +1,136 @@
+using System;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Localization.Resources.AbpUi;
+using Microsoft.AspNetCore.Components;
+using Microsoft.Extensions.Localization;
+using MudBlazor;
+
+namespace Volo.Abp.MudBlazorUI.Components;
+
+///
+/// A for actions that open a dialog. Use it with .
+///
+public partial class AbpMudActionMenu : ComponentBase
+{
+ protected MudMenu? _menu;
+
+ [Inject]
+ protected IStringLocalizer UiLocalizer { get; set; } = default!;
+
+ [Parameter]
+ public string? Icon { get; set; }
+
+ [Parameter]
+ public Color IconColor { get; set; } = Color.Inherit;
+
+ [Parameter]
+ public string? StartIcon { get; set; }
+
+ [Parameter]
+ public string? EndIcon { get; set; }
+
+ [Parameter]
+ public string? Label { get; set; }
+
+ ///
+ /// The accessible name of an activator that has no . Defaults to "Actions".
+ ///
+ [Parameter]
+ public string? AriaLabel { get; set; }
+
+ [Parameter]
+ public Color Color { get; set; } = Color.Default;
+
+ [Parameter]
+ public Variant Variant { get; set; } = Variant.Text;
+
+ [Parameter]
+ public Size Size { get; set; } = Size.Medium;
+
+ [Parameter]
+ public bool Dense { get; set; }
+
+ [Parameter]
+ public bool FullWidth { get; set; }
+
+ [Parameter]
+ public int? MaxHeight { get; set; }
+
+ [Parameter]
+ public Origin? AnchorOrigin { get; set; }
+
+ [Parameter]
+ public Origin TransformOrigin { get; set; } = Origin.TopLeft;
+
+ [Parameter]
+ public MouseEvent ActivationEvent { get; set; } = MouseEvent.LeftClick;
+
+ [Parameter]
+ public bool PositionAtCursor { get; set; }
+
+ [Parameter]
+ public bool PopoverFixed { get; set; }
+
+ [Parameter]
+ public DropdownWidth RelativeWidth { get; set; } = DropdownWidth.Ignore;
+
+ [Parameter]
+ public bool LockScroll { get; set; }
+
+ [Parameter]
+ public bool Ripple { get; set; } = true;
+
+ [Parameter]
+ public bool DropShadow { get; set; } = true;
+
+ [Parameter]
+ public bool Disabled { get; set; }
+
+ [Parameter]
+ public string? Class { get; set; }
+
+ [Parameter]
+ public string? Style { get; set; }
+
+ [Parameter]
+ public string? ListClass { get; set; }
+
+ [Parameter]
+ public string? PopoverClass { get; set; }
+
+ ///
+ /// Never null, because MudBlazor reads it without a null check while rendering.
+ ///
+ [Parameter(CaptureUnmatchedValues = true)]
+ public Dictionary UserAttributes { get; set; } = new();
+
+ [Parameter]
+ public RenderFragment? ActivatorContent { get; set; }
+
+ [Parameter]
+ public RenderFragment? ChildContent { get; set; }
+
+ protected virtual string? GetAriaLabel()
+ {
+ if (!AriaLabel.IsNullOrEmpty())
+ {
+ return AriaLabel;
+ }
+
+ // A label is already the accessible name, so overriding it would hide the visible text.
+ return Label.IsNullOrEmpty() ? UiLocalizer["Actions"].Value : null;
+ }
+
+ ///
+ /// Closes the whole menu hierarchy. MudBlazor restores the focus to the activator while closing,
+ /// so calls this before its handler opens a dialog.
+ ///
+ public virtual async Task CloseAsync()
+ {
+ if (_menu != null)
+ {
+ await _menu.CloseAllMenusAsync();
+ }
+ }
+}
diff --git a/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudActionMenuItem.razor b/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudActionMenuItem.razor
new file mode 100644
index 0000000000..53b2064860
--- /dev/null
+++ b/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudActionMenuItem.razor
@@ -0,0 +1,15 @@
+@using MudBlazor
+
+
+ @ChildContent
+
diff --git a/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudActionMenuItem.razor.cs b/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudActionMenuItem.razor.cs
new file mode 100644
index 0000000000..48299b84a2
--- /dev/null
+++ b/framework/src/Volo.Abp.MudBlazorUI/Components/AbpMudActionMenuItem.razor.cs
@@ -0,0 +1,75 @@
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Components;
+using Microsoft.AspNetCore.Components.Web;
+using MudBlazor;
+
+namespace Volo.Abp.MudBlazorUI.Components;
+
+///
+/// A menu item that closes its menu before running , so a dialog opened by the
+/// handler keeps the focus. Works in an and in a plain .
+///
+public partial class AbpMudActionMenuItem : ComponentBase
+{
+ [CascadingParameter]
+ protected AbpMudActionMenu? ParentMenu { get; set; }
+
+ [CascadingParameter]
+ protected MudMenu? ParentMudMenu { get; set; }
+
+ ///
+ /// Whether this item can close the menu itself. When it cannot, MudBlazor keeps closing it.
+ ///
+ protected virtual bool ControlsMenu => ParentMenu != null || ParentMudMenu != null;
+
+ [Parameter]
+ public EventCallback OnClick { get; set; }
+
+ [Parameter]
+ public bool Disabled { get; set; }
+
+ [Parameter]
+ public string? Icon { get; set; }
+
+ [Parameter]
+ public Color IconColor { get; set; } = Color.Inherit;
+
+ [Parameter]
+ public string? Label { get; set; }
+
+ [Parameter]
+ public string? Href { get; set; }
+
+ [Parameter]
+ public string? Target { get; set; }
+
+ [Parameter]
+ public bool ForceLoad { get; set; }
+
+ [Parameter]
+ public string? Class { get; set; }
+
+ ///
+ /// Never null, because MudBlazor reads it without a null check while rendering.
+ ///
+ [Parameter(CaptureUnmatchedValues = true)]
+ public Dictionary UserAttributes { get; set; } = new();
+
+ [Parameter]
+ public RenderFragment? ChildContent { get; set; }
+
+ protected virtual async Task OnClickHandlerAsync(MouseEventArgs args)
+ {
+ if (ParentMenu != null)
+ {
+ await ParentMenu.CloseAsync();
+ }
+ else if (ParentMudMenu != null)
+ {
+ await ParentMudMenu.CloseAllMenusAsync();
+ }
+
+ await OnClick.InvokeAsync(args);
+ }
+}
diff --git a/framework/src/Volo.Abp.MudBlazorUI/Components/MudEntityAction.razor b/framework/src/Volo.Abp.MudBlazorUI/Components/MudEntityAction.razor
index c1ae598b89..7436c570e9 100644
--- a/framework/src/Volo.Abp.MudBlazorUI/Components/MudEntityAction.razor
+++ b/framework/src/Volo.Abp.MudBlazorUI/Components/MudEntityAction.razor
@@ -7,13 +7,13 @@
{
if (Primary == false)
{
-
+
@if (!string.IsNullOrEmpty(Icon))
{
}
@Text
-
+
}
}
else
diff --git a/framework/src/Volo.Abp.MudBlazorUI/Components/MudEntityActions.razor b/framework/src/Volo.Abp.MudBlazorUI/Components/MudEntityActions.razor
index e60654fdf1..379cb192fc 100644
--- a/framework/src/Volo.Abp.MudBlazorUI/Components/MudEntityActions.razor
+++ b/framework/src/Volo.Abp.MudBlazorUI/Components/MudEntityActions.razor
@@ -4,15 +4,16 @@
@if (Type == MudActionType.Dropdown || DisabledOrNoActions())
{
-
+
@ChildContent
-
+
}
else
{
diff --git a/framework/src/Volo.Abp.TextTemplating.Core/Volo/Abp/TextTemplating/TemplateRenderingEngineBase.cs b/framework/src/Volo.Abp.TextTemplating.Core/Volo/Abp/TextTemplating/TemplateRenderingEngineBase.cs
index 7e5e10d86c..5ad6e0afc8 100644
--- a/framework/src/Volo.Abp.TextTemplating.Core/Volo/Abp/TextTemplating/TemplateRenderingEngineBase.cs
+++ b/framework/src/Volo.Abp.TextTemplating.Core/Volo/Abp/TextTemplating/TemplateRenderingEngineBase.cs
@@ -1,11 +1,18 @@
-using System.Collections.Generic;
+using System;
+using System.Collections.Generic;
+using System.Globalization;
using System.Threading.Tasks;
using Microsoft.Extensions.Localization;
+using Volo.Abp.Localization;
namespace Volo.Abp.TextTemplating;
public abstract class TemplateRenderingEngineBase : ITemplateRenderingEngine
{
+ public const string CultureContextKey = "abp_culture";
+
+ public const string TextDirectionContextKey = "abp_dir";
+
public abstract string Name { get; }
public virtual bool IsSandboxed => false;
@@ -26,6 +33,32 @@ public abstract class TemplateRenderingEngineBase : ITemplateRenderingEngine
public abstract Task RenderAsync(string templateName, object? model = null, string? cultureName = null, Dictionary? globalContext = null);
+ ///
+ /// Must be called inside the culture scope of the rendering. Values set by the caller are kept.
+ ///
+ protected virtual void SetCultureContext(Dictionary globalContext)
+ {
+ // The invariant culture has an empty name, which is not a valid value for a lang attribute.
+ var cultureName = CultureInfo.CurrentUICulture.Name;
+
+ SetCultureContextValue(globalContext, CultureContextKey, cultureName.IsNullOrWhiteSpace() ? "en" : cultureName);
+ SetCultureContextValue(globalContext, TextDirectionContextKey, CultureHelper.IsRtl ? "rtl" : "ltr");
+ }
+
+ protected virtual void SetCultureContextValue(Dictionary globalContext, string key, string value)
+ {
+ if (!globalContext.TryGetValue(key, out var callerValue))
+ {
+ globalContext.Add(key, value);
+ return;
+ }
+
+ // A case insensitive context can hold the value under another casing, while templates look the key
+ // up as it is written here, so it is re-inserted with the canonical one.
+ globalContext.Remove(key);
+ globalContext.Add(key, callerValue);
+ }
+
protected virtual async Task GetContentOrNullAsync(TemplateDefinition templateDefinition)
{
return await TemplateContentProvider.GetContentOrNullAsync(templateDefinition);
diff --git a/framework/src/Volo.Abp.TextTemplating.Razor/Volo/Abp/TextTemplating/Razor/RazorTemplateRenderingEngine.cs b/framework/src/Volo.Abp.TextTemplating.Razor/Volo/Abp/TextTemplating/Razor/RazorTemplateRenderingEngine.cs
index b6c120fe9e..af5d51bbe0 100644
--- a/framework/src/Volo.Abp.TextTemplating.Razor/Volo/Abp/TextTemplating/Razor/RazorTemplateRenderingEngine.cs
+++ b/framework/src/Volo.Abp.TextTemplating.Razor/Volo/Abp/TextTemplating/Razor/RazorTemplateRenderingEngine.cs
@@ -39,13 +39,16 @@ public class RazorTemplateRenderingEngine : TemplateRenderingEngineBase, ITransi
{
Check.NotNullOrWhiteSpace(templateName, nameof(templateName));
- if (globalContext == null)
- {
- globalContext = new Dictionary();
- }
+ // The rendering writes the culture context into this dictionary, so it works on a copy: a caller
+ // reusing one instance would carry the values of a rendering into the next.
+ globalContext = globalContext == null
+ ? new Dictionary()
+ : new Dictionary(globalContext, globalContext.Comparer);
if (cultureName == null)
{
+ SetCultureContext(globalContext);
+
return await RenderInternalAsync(
templateName,
null,
@@ -57,6 +60,8 @@ public class RazorTemplateRenderingEngine : TemplateRenderingEngineBase, ITransi
{
using (CultureHelper.Use(cultureName))
{
+ SetCultureContext(globalContext);
+
return await RenderInternalAsync(
templateName,
null,
diff --git a/framework/src/Volo.Abp.TextTemplating.Scriban/Volo/Abp/TextTemplating/Scriban/ScribanTemplateRenderingEngine.cs b/framework/src/Volo.Abp.TextTemplating.Scriban/Volo/Abp/TextTemplating/Scriban/ScribanTemplateRenderingEngine.cs
index 9b7b3393a6..bcd6a0bc95 100644
--- a/framework/src/Volo.Abp.TextTemplating.Scriban/Volo/Abp/TextTemplating/Scriban/ScribanTemplateRenderingEngine.cs
+++ b/framework/src/Volo.Abp.TextTemplating.Scriban/Volo/Abp/TextTemplating/Scriban/ScribanTemplateRenderingEngine.cs
@@ -33,13 +33,16 @@ public class ScribanTemplateRenderingEngine : TemplateRenderingEngineBase, ITran
{
Check.NotNullOrWhiteSpace(templateName, nameof(templateName));
- if (globalContext == null)
- {
- globalContext = new Dictionary();
- }
+ // The rendering writes the culture context and the layout content into this dictionary, so it works
+ // on a copy: a caller reusing one instance would carry the values of a rendering into the next.
+ globalContext = globalContext == null
+ ? new Dictionary()
+ : new Dictionary(globalContext, globalContext.Comparer);
if (cultureName == null)
{
+ SetCultureContext(globalContext);
+
return await RenderInternalAsync(
templateName,
globalContext,
@@ -50,6 +53,8 @@ public class ScribanTemplateRenderingEngine : TemplateRenderingEngineBase, ITran
{
using (CultureHelper.Use(cultureName))
{
+ SetCultureContext(globalContext);
+
return await RenderInternalAsync(
templateName,
globalContext,
diff --git a/framework/test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.csproj b/framework/test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.csproj
index ad679faffa..b9486fd766 100644
--- a/framework/test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.csproj
+++ b/framework/test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.csproj
@@ -9,6 +9,7 @@
+
diff --git a/framework/test/Volo.Abp.Emailing.Tests/Volo/Abp/Emailing/AbpEmailingTestModule.cs b/framework/test/Volo.Abp.Emailing.Tests/Volo/Abp/Emailing/AbpEmailingTestModule.cs
index d4b5449386..6ac65b194f 100644
--- a/framework/test/Volo.Abp.Emailing.Tests/Volo/Abp/Emailing/AbpEmailingTestModule.cs
+++ b/framework/test/Volo.Abp.Emailing.Tests/Volo/Abp/Emailing/AbpEmailingTestModule.cs
@@ -1,11 +1,13 @@
using Volo.Abp.Autofac;
using Volo.Abp.Modularity;
+using Volo.Abp.TextTemplating.Scriban;
using Volo.Abp.VirtualFileSystem;
namespace Volo.Abp.Emailing;
[DependsOn(
typeof(AbpEmailingModule),
+ typeof(AbpTextTemplatingScribanModule),
typeof(AbpAutofacModule),
typeof(AbpTestBaseModule))]
public class AbpEmailingTestModule : AbpModule
diff --git a/framework/test/Volo.Abp.Emailing.Tests/Volo/Abp/Emailing/Templates/StandardEmailTemplates_Tests.cs b/framework/test/Volo.Abp.Emailing.Tests/Volo/Abp/Emailing/Templates/StandardEmailTemplates_Tests.cs
new file mode 100644
index 0000000000..f48d8b58f4
--- /dev/null
+++ b/framework/test/Volo.Abp.Emailing.Tests/Volo/Abp/Emailing/Templates/StandardEmailTemplates_Tests.cs
@@ -0,0 +1,44 @@
+using System.Threading.Tasks;
+using Shouldly;
+using Volo.Abp.Modularity;
+using Volo.Abp.Testing;
+using Volo.Abp.TextTemplating;
+using Xunit;
+
+namespace Volo.Abp.Emailing.Templates;
+
+public abstract class AbpEmailingTestBase : AbpIntegratedTest
+ where TStartupModule : IAbpModule
+{
+ protected override void SetAbpApplicationCreationOptions(AbpApplicationCreationOptions options)
+ {
+ options.UseAutofac();
+ }
+}
+
+public class StandardEmailTemplates_Tests : AbpEmailingTestBase
+{
+ private readonly ITemplateRenderer _templateRenderer;
+
+ public StandardEmailTemplates_Tests()
+ {
+ _templateRenderer = GetRequiredService();
+ }
+
+ [Theory]
+ [InlineData("en", "
+{
+ private readonly ITemplateRenderer _templateRenderer;
+
+ public RazorTemplateRenderingEngine_CultureContext_Tests()
+ {
+ _templateRenderer = GetRequiredService();
+ }
+
+ [Theory]
+ [InlineData("en", "")]
+ [InlineData("fr", "")]
+ [InlineData("ar", "")]
+ public async Task Should_Render_Culture_And_Text_Direction_Of_The_Rendering_Culture(string cultureName, string expected)
+ {
+ (await _templateRenderer.RenderAsync(
+ RazorTestTemplates.CultureContext,
+ cultureName: cultureName
+ )).Trim().ShouldBe(expected);
+ }
+
+ [Fact]
+ public async Task Should_Not_Leak_The_Culture_Of_A_Rendering_Into_The_Next_One()
+ {
+ var globalContext = new Dictionary();
+
+ (await _templateRenderer.RenderAsync(
+ RazorTestTemplates.CultureContext,
+ cultureName: "en",
+ globalContext: globalContext
+ )).Trim().ShouldBe("");
+
+ (await _templateRenderer.RenderAsync(
+ RazorTestTemplates.CultureContext,
+ cultureName: "ar",
+ globalContext: globalContext
+ )).Trim().ShouldBe("");
+
+ globalContext.ShouldBeEmpty();
+ }
+
+ [Fact]
+ public async Task Should_Keep_The_Comparer_Of_The_Context_Of_The_Caller()
+ {
+ var globalContext = new Dictionary(StringComparer.OrdinalIgnoreCase)
+ {
+ ["ABP_CULTURE"] = "custom"
+ };
+
+ (await _templateRenderer.RenderAsync(
+ RazorTestTemplates.CultureContext,
+ cultureName: "ar",
+ globalContext: globalContext
+ )).Trim().ShouldBe("");
+ }
+}
diff --git a/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo/Abp/TextTemplating/Razor/RazorTestTemplateDefinitionProvider.cs b/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo/Abp/TextTemplating/Razor/RazorTestTemplateDefinitionProvider.cs
index 835ada1cfa..f250b5bbff 100644
--- a/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo/Abp/TextTemplating/Razor/RazorTestTemplateDefinitionProvider.cs
+++ b/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo/Abp/TextTemplating/Razor/RazorTestTemplateDefinitionProvider.cs
@@ -23,5 +23,9 @@ public class RazorTestTemplateDefinitionProvider : TemplateDefinitionProvider
.WithRazorEngine();
context.Add(new TemplateDefinition(RazorTestTemplates.TestTemplate).WithVirtualFilePath("/SampleTemplates/TestTemplate.cshtml", true));
+
+ context.Add(new TemplateDefinition(RazorTestTemplates.CultureContext)
+ .WithVirtualFilePath("/SampleTemplates/CultureContext.cshtml", true)
+ .WithRazorEngine());
}
}
diff --git a/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo/Abp/TextTemplating/Razor/SampleTemplates/CultureContext.cshtml b/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo/Abp/TextTemplating/Razor/SampleTemplates/CultureContext.cshtml
new file mode 100644
index 0000000000..e3079774c7
--- /dev/null
+++ b/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo/Abp/TextTemplating/Razor/SampleTemplates/CultureContext.cshtml
@@ -0,0 +1,2 @@
+@inherits Volo.Abp.TextTemplating.Razor.RazorTemplatePageBase
+
diff --git a/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo/Abp/TextTemplating/Razor/SampleTemplates/RazorTestTemplates.cs b/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo/Abp/TextTemplating/Razor/SampleTemplates/RazorTestTemplates.cs
index 684eee1f3e..eef182ae7d 100644
--- a/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo/Abp/TextTemplating/Razor/SampleTemplates/RazorTestTemplates.cs
+++ b/framework/test/Volo.Abp.TextTemplating.Razor.Tests/Volo/Abp/TextTemplating/Razor/SampleTemplates/RazorTestTemplates.cs
@@ -3,4 +3,5 @@
public static class RazorTestTemplates
{
public const string TestTemplate = "TestTemplate";
+ public const string CultureContext = "CultureContext";
}
diff --git a/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo/Abp/TextTemplating/Scriban/SampleTemplates/CultureContext.tpl b/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo/Abp/TextTemplating/Scriban/SampleTemplates/CultureContext.tpl
new file mode 100644
index 0000000000..92d8778050
--- /dev/null
+++ b/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo/Abp/TextTemplating/Scriban/SampleTemplates/CultureContext.tpl
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo/Abp/TextTemplating/Scriban/ScribanTemplateRenderingEngine_CultureContext_Tests.cs b/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo/Abp/TextTemplating/Scriban/ScribanTemplateRenderingEngine_CultureContext_Tests.cs
new file mode 100644
index 0000000000..063e203866
--- /dev/null
+++ b/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo/Abp/TextTemplating/Scriban/ScribanTemplateRenderingEngine_CultureContext_Tests.cs
@@ -0,0 +1,107 @@
+using System;
+using System.Collections.Generic;
+using System.Globalization;
+using System.Threading.Tasks;
+using Shouldly;
+using Volo.Abp.Localization;
+using Xunit;
+
+namespace Volo.Abp.TextTemplating.Scriban;
+
+public class ScribanTemplateRenderingEngine_CultureContext_Tests : AbpTextTemplatingTestBase
+{
+ private readonly ITemplateRenderer _templateRenderer;
+
+ public ScribanTemplateRenderingEngine_CultureContext_Tests()
+ {
+ _templateRenderer = GetRequiredService();
+ }
+
+ [Theory]
+ [InlineData("en", "")]
+ [InlineData("fr", "")]
+ [InlineData("ar", "")]
+ public async Task Should_Render_Culture_And_Text_Direction_Of_The_Rendering_Culture(string cultureName, string expected)
+ {
+ (await _templateRenderer.RenderAsync(
+ ScribanTestTemplateDefinitionProvider.CultureContext,
+ cultureName: cultureName
+ )).ShouldBe(expected);
+ }
+
+ [Fact]
+ public async Task Should_Keep_The_Values_Passed_By_The_Caller()
+ {
+ (await _templateRenderer.RenderAsync(
+ ScribanTestTemplateDefinitionProvider.CultureContext,
+ cultureName: "ar",
+ globalContext: new Dictionary
+ {
+ [TemplateRenderingEngineBase.CultureContextKey] = "custom"
+ }
+ )).ShouldBe("");
+ }
+
+ [Fact]
+ public async Task Should_Not_Leak_The_Culture_Of_A_Rendering_Into_The_Next_One()
+ {
+ var globalContext = new Dictionary();
+
+ (await _templateRenderer.RenderAsync(
+ ScribanTestTemplateDefinitionProvider.CultureContext,
+ cultureName: "en",
+ globalContext: globalContext
+ )).ShouldBe("");
+
+ (await _templateRenderer.RenderAsync(
+ ScribanTestTemplateDefinitionProvider.CultureContext,
+ cultureName: "ar",
+ globalContext: globalContext
+ )).ShouldBe("");
+
+ globalContext.ShouldBeEmpty();
+ }
+
+ [Fact]
+ public async Task Should_Not_Write_The_Layout_Content_Into_The_Context_Of_The_Caller()
+ {
+ var globalContext = new Dictionary();
+
+ await _templateRenderer.RenderAsync(
+ TestTemplates.ForgotPasswordEmail,
+ model: new { link = "http://abp.io" },
+ cultureName: "en",
+ globalContext: globalContext
+ );
+
+ globalContext.ShouldBeEmpty();
+ }
+
+ [Fact]
+ public async Task Should_Keep_The_Comparer_Of_The_Context_Of_The_Caller()
+ {
+ // Scriban looks the key up as the template writes it, so the value of a case insensitive context
+ // has to be re-inserted under the canonical casing to stay reachable.
+ var globalContext = new Dictionary(StringComparer.OrdinalIgnoreCase)
+ {
+ ["ABP_CULTURE"] = "custom"
+ };
+
+ (await _templateRenderer.RenderAsync(
+ ScribanTestTemplateDefinitionProvider.CultureContext,
+ cultureName: "ar",
+ globalContext: globalContext
+ )).ShouldBe("");
+ }
+
+ [Fact]
+ public async Task Should_Fall_Back_To_English_For_The_Invariant_Culture()
+ {
+ using (CultureHelper.Use(CultureInfo.InvariantCulture))
+ {
+ (await _templateRenderer.RenderAsync(
+ ScribanTestTemplateDefinitionProvider.CultureContext
+ )).ShouldBe("");
+ }
+ }
+}
diff --git a/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo/Abp/TextTemplating/Scriban/ScribanTestTemplateDefinitionProvider.cs b/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo/Abp/TextTemplating/Scriban/ScribanTestTemplateDefinitionProvider.cs
index 006f2db450..2169ed42bf 100644
--- a/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo/Abp/TextTemplating/Scriban/ScribanTestTemplateDefinitionProvider.cs
+++ b/framework/test/Volo.Abp.TextTemplating.Scriban.Tests/Volo/Abp/TextTemplating/Scriban/ScribanTestTemplateDefinitionProvider.cs
@@ -6,6 +6,7 @@ public class ScribanTestTemplateDefinitionProvider : TemplateDefinitionProvider
public const string ReflectionEscapeChain = "ReflectionEscapeChain";
public const string MethodInvocationAttempt = "MethodInvocationAttempt";
public const string NestedPropertyAccess = "NestedPropertyAccess";
+ public const string CultureContext = "CultureContext";
public override void Define(ITemplateDefinitionContext context)
{
@@ -40,5 +41,9 @@ public class ScribanTestTemplateDefinitionProvider : TemplateDefinitionProvider
context.Add(new TemplateDefinition(NestedPropertyAccess)
.WithVirtualFilePath("/SampleTemplates/NestedPropertyAccess.tpl", true)
.WithScribanEngine());
+
+ context.Add(new TemplateDefinition(CultureContext)
+ .WithVirtualFilePath("/SampleTemplates/CultureContext.tpl", true)
+ .WithScribanEngine());
}
}
diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/package.json b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/package.json
index 7b33734dfd..77e794c722 100644
--- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/package.json
+++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/package.json
@@ -3,8 +3,8 @@
"name": "asp.net",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.shared": "~10.7.0-rc.1",
- "@abp/prismjs": "~10.7.0-rc.1",
- "@abp/highlight.js": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.shared": "~10.7.0-rc.2",
+ "@abp/prismjs": "~10.7.0-rc.2",
+ "@abp/highlight.js": "~10.7.0-rc.2"
}
}
diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/yarn.lock b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/yarn.lock
index ad298c25bd..55ec5c6473 100644
--- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/yarn.lock
+++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/yarn.lock
@@ -2,204 +2,205 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.1.tgz#8bf6231769ebaeb72773a4c22b028ebf74cbfcfd"
- integrity sha512-o1LveBACL83sPwiTu++t276wMR9hzdcc3vTogHbZJpoDTVnfy9Uhtlt+d9GpT0e69Ox8/ftcZqzl4JXDKuklFQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.1"
- "@abp/bootstrap" "~10.7.0-rc.1"
- "@abp/bootstrap-datepicker" "~10.7.0-rc.1"
- "@abp/bootstrap-daterangepicker" "~10.7.0-rc.1"
- "@abp/datatables.net-bs5" "~10.7.0-rc.1"
- "@abp/font-awesome" "~10.7.0-rc.1"
- "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.1"
- "@abp/lodash" "~10.7.0-rc.1"
- "@abp/luxon" "~10.7.0-rc.1"
- "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.1"
- "@abp/moment" "~10.7.0-rc.1"
- "@abp/select2" "~10.7.0-rc.1"
- "@abp/sweetalert2" "~10.7.0-rc.1"
- "@abp/timeago" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.1.tgz#984580897f4e557e24e52538e4b028543bb1f3f9"
- integrity sha512-GJNfb+NkVjGYRQNmuGREeFAJ7WFnuV3QXWnRRhWB/X/dPbc4BdLNUuYaWO/elA1YGU82m8sLtQk0bBLgX1sW6w==
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.2.tgz#113baea4635c63ca4722082d51444f54dad09481"
+ integrity sha512-/Z0wNC1JeyTGLiObl7JLXrFc1PG34ngBexgjjYkQzlDHPKzURaFGAPlwWHh1V/SarK8d43rfFuKM2O7SjlBYHA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.2"
+ "@abp/bootstrap" "~10.7.0-rc.2"
+ "@abp/bootstrap-datepicker" "~10.7.0-rc.2"
+ "@abp/bootstrap-daterangepicker" "~10.7.0-rc.2"
+ "@abp/datatables.net-bs5" "~10.7.0-rc.2"
+ "@abp/font-awesome" "~10.7.0-rc.2"
+ "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.2"
+ "@abp/lodash" "~10.7.0-rc.2"
+ "@abp/luxon" "~10.7.0-rc.2"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.2"
+ "@abp/moment" "~10.7.0-rc.2"
+ "@abp/select2" "~10.7.0-rc.2"
+ "@abp/sweetalert2" "~10.7.0-rc.2"
+ "@abp/timeago" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.2.tgz#e2970aa035e973d79d6bb56ee2ee28acb6eda8e9"
+ integrity sha512-dOYIcYkt+DsOv9rM05GM/KFJTZz1QzgysIa/rRc12Sh0v2rGGVKnFmZHaA0k4J2TMfyxSxKoQsyPX3C8hjfKxg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.1.tgz#a2b0f4c194dbe4008baeb6377deddcde57615558"
- integrity sha512-gy+Cq+w4rTCwbRKsbJvRGI5bZqd8cn0RrkPmWM5OdoKHB270fJZYv1s2GbU1hp3ELfS6LpycbNNjKMIywGCbjg==
+"@abp/bootstrap-datepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.2.tgz#0eee3cbda1b07eadd0e9cfe37bd14baf45109c4b"
+ integrity sha512-Wmp1AfYE1RrqY5c0SNzeHUwxPoGz/QOC8itLh1rGzfsVK46b/0PSITCsQWZ17iGYgJW68gNUp4jl2ku+Y6tjOQ==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.1.tgz#77bc951ab3df6c06e4f2e2b3474c2dc8fff8a9ee"
- integrity sha512-Q/BsC0LvrKTlfHCdBWAoeFYdbrkqlcNKTIQfdKYtavUsqS4fkcqt6vEe4y60kSUGzgkr9VIhN4d+e/yd9KNqTg==
+"@abp/bootstrap-daterangepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.2.tgz#4a5ad2cad1abbf8802a0627614a49e00e3e5c0da"
+ integrity sha512-voLXh2FBH24fAK1p9Q07PRvlyJAsyB+IWXp6SmyTcvH45evrahKofzyjvc6AJHn7QJ8DgXL3pC8Jyx5LXXuUtg==
dependencies:
- "@abp/moment" "~10.7.0-rc.1"
+ "@abp/moment" "~10.7.0-rc.2"
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.1.tgz#0fd48f4451527192f9e2b361bc001f0f2b710e6e"
- integrity sha512-2l5chEgpPOoGP3DSwsfnILmAeBxvA55cUoktGKGqBIo9tgQvVBZOwltLcQhEWVmZ4vmONgkBp96XwnEY9W3TKA==
+"@abp/bootstrap@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.2.tgz#f58165b7ac3af7a513e60514c3e1102c2d884684"
+ integrity sha512-s5JP80N8HR5jZVlr/hEWMfMk3QDhTLcIK7LAMDrTzlL41CaqjHiKb5stpl7xtzWZuIPEi92WCfDHIWSmqULR3g==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- "@abp/popper.js" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
+ "@abp/popper.js" "~10.7.0-rc.2"
bootstrap "^5.3.8"
-"@abp/clipboard@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.7.0-rc.1.tgz#01f30621be3e002eab3769c166df49bebd55c0e1"
- integrity sha512-cokw1hVY8H1opXXaZ1MTl71R+PzivuAd+SbRotUtDYDhZo5uG1jqHrZSVBPsC4Hp2w5yyMmBUzUqwMRAdarkYQ==
+"@abp/clipboard@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.7.0-rc.2.tgz#a9b4cdeb4a1bb559f75b0ef488ad856f43b9191f"
+ integrity sha512-YV9jxC7sJRRbz2VOVsKGOeno2bK5Tbn4ecQxkGiOG2KxtwQrCwIYXh/+1x2HDdTHy8jMkWinamMWiME6vYNrLw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
clipboard "^2.0.11"
-"@abp/core@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.1.tgz#40017b504c37e9b4b8e5e85823ed59768e49d93c"
- integrity sha512-aoAIRmrkHXdw06ZTxC2rF7Bj6zNSw+WHG39dC2vYQXc70MAZ78v2J4xEY/hk8+12UNdjKIVmwvqhMi2DJwSQjg==
+"@abp/core@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.2.tgz#363b875024cf665302c4199d0e7ab744e7e0bfec"
+ integrity sha512-gpnCPKzJyM8nAubZ5O/OjBKlIbP7F2qJ61VVqSPQiGzGBDk+BnQ+vosLxcjncwN9g4k6ZnAxnGgcnJCz6M/h6Q==
dependencies:
- "@abp/utils" "~10.7.0-rc.1"
+ "@abp/utils" "~10.7.0-rc.2"
-"@abp/datatables.net-bs5@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.1.tgz#e3a3d1e0bc39c80bb85db72ee23e9fd2b1a3480d"
- integrity sha512-24zyvsCA8sc/w0O7ZxxVZwtrb0+EUV5Jw/QWOLCSxkLi7c62lJQJ8FT3BueAx/AN+9fMMV8CVL23o3stWkXsEg==
+"@abp/datatables.net-bs5@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.2.tgz#bbb086344ede0f75f3c23ad81b4cce517db41f29"
+ integrity sha512-hg5XQUNfpxj/NqIjeGzolubTWbb4D/Y/Bf4DWjZvzSLhj/IxkQ8xGcEoxXLF91gRgH06cnHiZTJ3YaXW342a/g==
dependencies:
- "@abp/datatables.net" "~10.7.0-rc.1"
+ "@abp/datatables.net" "~10.7.0-rc.2"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.1.tgz#e73ebad5895ea4c095b75b2d4c934b4658547d10"
- integrity sha512-XImGEEv6zJDFOHNQKUF/sOk2MJzX5jovRRa752v9g8KCVOhUWB6mz4G/QuJ73uKqdXSS7sUZ04sqk3VGq8/9mA==
+"@abp/datatables.net@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.2.tgz#695dbb16c282202452684ba3e601781eae43e3a2"
+ integrity sha512-Rkz+PzaG0MTM5s2Bco2gpmr67I7bmSeMSdRy3+zDCKiNuRO97jFss76EA5nSW6CcatntGCOWWoXNQih45LWLWw==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.1.tgz#1c15dc1f91be572c315cdf49e0e35685d094ed23"
- integrity sha512-hRslYk5B1hC0qj0TGPyQ0KLWMpWleENamKh0ostjiXKPZdd0OG/+iKPtwX5qlz8SUY9vSm/DAtI2+cNzOK6lvQ==
+"@abp/font-awesome@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.2.tgz#4934e38a4c73eb04c9c4a4e301c71273fe3b0c90"
+ integrity sha512-Q6JgayhrIOaMvs0w9RYkp824iZiAQDKgmSoxqJDnLOml4a8UXWLGbw5ZhQFXAGkiJSKXEZ/KUXGz04D4tABuvw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/highlight.js@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-10.7.0-rc.1.tgz#75055272c1844c0c47ed66fc177a1f34e48a4fed"
- integrity sha512-Hw4kVF9BIEdiXl5vWR0zx7f877xcWoXIDUdNKtG/ESD4icdBn7+0FJOselO93iMhfifw2BziBMkn946kLuzV4w==
+"@abp/highlight.js@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-10.7.0-rc.2.tgz#e8b35567ad9191ec77cc5b1a384168221a31020e"
+ integrity sha512-mLoNFP3sAcfMw3cHHtK0f3rPGhTav86MByvdTDEUTQrTaDvylIeGkGJu2MuossRyAqRbFw8Q9JqYu/lXWxRA0g==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@highlightjs/cdn-assets" "~11.11.1"
-"@abp/jquery-validation-unobtrusive@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.1.tgz#69a853a5d987676aaba2eeb79853cc56e5ae07b0"
- integrity sha512-apzrew9h0HSKvqZV9MTQO2pz7lagKsfRjIA4iq/0O7zhVgenLDul09OePxRUB624OifBTAgOD80mlCEXb+cjrg==
+"@abp/jquery-validation-unobtrusive@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.2.tgz#c4f4f8b5f4406bf0c693fdb0b4d72c1dc8aa2cf5"
+ integrity sha512-354+XIQJXNmsG70g72JcWxPtXAL9+yj595scP4vsPeHBXQr+QNLKjoEx7F43Mm6nFVLbedMRfpumErix18PiCg==
dependencies:
- "@abp/jquery-validation" "~10.7.0-rc.1"
+ "@abp/jquery-validation" "~10.7.0-rc.2"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.1.tgz#71b741ea5e0424c3f7ac0378ce17821718be7316"
- integrity sha512-FUcYgT7hoVGGdVqYxe3CzNQYcpCqUzpwMp5To8GJ8NA4fHyjPv/hRZlCjBXH+o0KbhCGbgKllV5/ly/UJwgUDw==
+"@abp/jquery-validation@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.2.tgz#6b1fab4cef76893a909fee51ffab7b97e907d54e"
+ integrity sha512-YtcrcmIWhNu52ssxSxJ6LuF4JU3WkhCCYJ4MT3upx4kltFxihMH5b1BDAj+s5Qb+qLi3jDn1D80IynJ5lxmnZg==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
- jquery-validation "^1.21.0"
+ "@abp/jquery" "~10.7.0-rc.2"
+ jquery-validation "^1.22.1"
-"@abp/jquery@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.1.tgz#84dc6ae11dc3e696978a4d07be95b5d96afbb74d"
- integrity sha512-fESdFdo4dfG2FrdSU1v6r3jXik9WWY3umN8OfHZSbMu7d9+eoTxpJEIDYFvFrGf4t5AQ8vhbxdmm6A+Kg5q4uw==
+"@abp/jquery@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.2.tgz#356b7e678258e95056a029558bef6d6e7bc1a3ec"
+ integrity sha512-vl6o63cW3k4VooyRgnBkrcj/krSjxoS5/EX9ZraG11QMk48Crl00isZvjcxswVUUooXTbzjRG9+Dwx3xRSvohA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- jquery "~3.7.1"
+ "@abp/core" "~10.7.0-rc.2"
+ jquery "~4.0.0"
+ jquery-migrate "~4.0.2"
-"@abp/lodash@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.1.tgz#0bfbf9bee2e70f13bc46af40c8952e51e3a1ab39"
- integrity sha512-3Jo6QBl2/MjOKo2w1Q/reZ5z4zAuVYoGmNjEA+zBGOErNC/f94GdKhnjI9WkTMSBdYyaliyzx9NQBY9ZxV6Vag==
+"@abp/lodash@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.2.tgz#40b2849fb36702652ace65c3b128e7c6b6cb0c05"
+ integrity sha512-WkxHOriKsaNHQEOKeLpTzzvbr90pbi747dldzV1T3typwZtpwL6xtqcivPVIAkfDxfdnzmsC+HiIX0mTHJA7sA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
lodash "^4.18.1"
-"@abp/luxon@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.1.tgz#038e3519dfaed24f79a4bc2c3f505bdff9f013d8"
- integrity sha512-Eb8dvWUodLxvdD00aQjUfwf08TWW4x2KcdrI388RyiXDhA9aXBG8yKCCpapY/QChkUt/V6tHAuZtHWs9g75T7A==
+"@abp/luxon@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.2.tgz#2650adc4bf32711a47a0f4c4452eead915899015"
+ integrity sha512-ReVQeloBgC0B2+O6IEwDP8joUyf/Qy2WlMFVz7VNXIylQFwr1hQ70CScKHm+mvACfIHoNSXl8EUET4XpXvhgPw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.1.tgz#c53cf649ad54a30ed10d0f949617f9f2fe74b17b"
- integrity sha512-e9EnklZy7LGJZT/nqnsgdba0LSuqjLSFy7o+FesDY574zJniE34q1dewc60eLElEW8ghY6W2ykLadfFoOtQ+mQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.2.tgz#0eae6ab79bf83158006afda892d20120c9b1b91c"
+ integrity sha512-v/gQyNEBBur2wfsU66700aFH57gS7lyMptObYOb9BTsZuRZ1WLA56JSz2EquOiYS8nvoSpqA63bs7LzHQvuiSg==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.1.tgz#c6c5c60c8e86dcb933ad59f3d2a8d64d3eda5ee2"
- integrity sha512-pMA7GO68yiLDpUxajnnQWuGPd3GegrPJDE5fTtCYK7qoVYeh8eiSeggVybrsfZSTo7BPEyb2jkfqsRcVGWgf8g==
+"@abp/moment@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.2.tgz#97f81e33c7bba19c815b26c71d5b9316b9aed268"
+ integrity sha512-Iks6nWoxUF4SVjqdAb7Ck6N/ArXGn48HeAzJvg7NCm4Kk31xSGVB598hbiezzVO0hBC9S7PBesz670P0m/2UUw==
dependencies:
moment "^2.30.1"
-"@abp/popper.js@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.1.tgz#24b02dccfbfa599cd4cca0ee15bccc6c7b61dda3"
- integrity sha512-AOxyY2m8QvcIMVGnosPJrguzR/TWfWACoEQRSPqeraNdu6yh3Z/5j6sVx0TDs0BBSsfa6EUnAavzxNvVY39T8Q==
+"@abp/popper.js@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.2.tgz#f133390b31f2572263a6d74c05fdd967c96edac1"
+ integrity sha512-CEAZ9eKBtHoigQ5P0bJR7W/4gVSrBO9RM0s0bKACb6ibZXtlRhxVudSgZ35SrGSYrRENSWSNvE5O4sDlebBx6w==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@popperjs/core" "^2.11.8"
-"@abp/prismjs@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.7.0-rc.1.tgz#c51c745e07328bf922ca033f54ab262e3e94170f"
- integrity sha512-xX68Yl2fsUdARxVEVyDZdFyqA/QpkIJ1bQ7OeTy3eoN/XgkiYpKUekUbwM3GE2xQvvf5cmKjhkLUPGW7necAXA==
+"@abp/prismjs@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.7.0-rc.2.tgz#2dbf97051f4f3a7fcf48a4dfff8e8cc527142e91"
+ integrity sha512-UgY4Zj0kLtmmMGFVJlRfGNCqhg1mLXoCZ7MQJJ5cSwf6RbL4LL9XFVFxj5Yy7ZrmXun7TXy1LUf4K6wJDcPKQg==
dependencies:
- "@abp/clipboard" "~10.7.0-rc.1"
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/clipboard" "~10.7.0-rc.2"
+ "@abp/core" "~10.7.0-rc.2"
prismjs "^1.30.0"
-"@abp/select2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.1.tgz#ed88702039bbcf064d1fdf0b003c6a782a033b43"
- integrity sha512-Lz/dtUf7EzOG5bovG9WAKylmSCo2OD9W7wpW3Fs5EFQx/HStm1k+EFASFp/Y/kORcXgd6uKAqckGAqwAjoycPA==
+"@abp/select2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.2.tgz#6432cbaef11e28aad1a6e0643fcdc50ea8570b0b"
+ integrity sha512-2pDsRDfVuEznGjI39JVTDB8E4rkjjAtOu9DmFNIsg2bFkuVUCRymmNZ0jgwyJhkkZ+JmbkFCnSI5YWasl5KBwA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.1.tgz#847eb66b6b3e444ecb2c1e948f6f08e0a3494834"
- integrity sha512-iT/FcFFTLzfgKPvadJR0JLcKMHsl8hazbb1Sle1I4sb9weEQnKU1IUyYP4XxWA71m8bE8pigK7MHJOzTpddCTQ==
+"@abp/sweetalert2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.2.tgz#94cd053d0978516e713a1b323af78d1885e0973c"
+ integrity sha512-vtNUgp+mpIc91YzMv4hTHfQCNmMehE02LHoVFFx/CB+vMR35VKSNYBCuBpUfMVYBPplFVdXwFqJsPCW4zG9ulw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.1.tgz#fd8c0bc437d412288a7ed8df33b8efcee6cbc6cb"
- integrity sha512-j0Y7XDZaIt9Pya71q/LpyBInuU7Try8IgRv83lOnncWpVvQmCECfeTq4iM9kVQxe5kD81PGeSdLbzw7AapbaXA==
+"@abp/timeago@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.2.tgz#8788d21008964f1094c9a7e099b1b5777b223f4e"
+ integrity sha512-ucQqQ5gP54Ui9jBS68DR6KPmm/Yw5Up0A78FYha1sF9L7DvZKnQWId1p3RJcwZHgoI6hQgEVOntL77kKxTgDYA==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
timeago "^1.6.7"
-"@abp/utils@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.1.tgz#e727045304bec1cdb65132e0c0fcfe18337fa767"
- integrity sha512-kkqzS2Pd/+CKkxVEpYwyRs4yHye0xi4kc3Ip4TIEZXCJ+whjB9b4qKh+AuglKGwz3RvnFvB+QxQhluUHu0oyaA==
+"@abp/utils@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.2.tgz#671c3bc01d9b5e51aaaf50b96d4014f044a443a0"
+ integrity sha512-7Y6tCsphuOBZw7cPt04WFLRnhk89dt94BkGpt9B40wEl3oT7VuH6+xajYSAxVp9REzNJ0Zfu64780Eq2SyAA3g==
dependencies:
just-compare "^2.3.0"
@@ -279,6 +280,11 @@ good-listener@^1.2.2:
dependencies:
delegate "^3.1.2"
+jquery-migrate@~4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/jquery-migrate/-/jquery-migrate-4.0.2.tgz#d296a64e05073017c54877462ac563f1927ee21f"
+ integrity sha512-J15ilpECoAsObLv2robklj0qf1qt9QCnZwwNcJAXkM7dIiOgcac2dqC3HgDtUF0fmRwKZa/ggTkxTj9S4Vk+HQ==
+
jquery-mousewheel@>=3.0.6:
version "3.1.13"
resolved "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz#06f0335f16e353a695e7206bf50503cb523a6ee5"
@@ -292,16 +298,26 @@ jquery-validation-unobtrusive@^4.0.0:
jquery "^3.6.0"
jquery-validation ">=1.19"
-jquery-validation@>=1.19, jquery-validation@^1.21.0:
+jquery-validation@>=1.19:
version "1.21.0"
resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.21.0.tgz#78fc05ab76020912a246af3661b3f54a438bca93"
integrity sha512-xNot0rlUIgu7duMcQ5qb6MGkGL/Z1PQaRJQoZAURW9+a/2PGOUxY36o/WyNeP2T9R6jvWB8Z9lUVvvQWI/Zs5w==
-jquery@>=1.10, "jquery@>=1.5.0 <4.0", jquery@>=1.7, "jquery@>=3.4.0 <4.0.0", jquery@^3.6.0, jquery@~3.7.1:
+jquery-validation@^1.22.1:
+ version "1.22.1"
+ resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.22.1.tgz#fc1ae3256110332c929245a44d69ee76fee0e481"
+ integrity sha512-ePLXLWK7Rh5eR652YsuIu7YPeGlCXrsJUteVw5iZopiU17yaMd3FaDggs6yyNMl56p8TYVeDRmKGK3fPZrMeQw==
+
+jquery@>=1.10, "jquery@>=1.5.0 <4.0", jquery@>=1.7, "jquery@>=3.4.0 <4.0.0", jquery@^3.6.0:
version "3.7.1"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.1.tgz#083ef98927c9a6a74d05a6af02806566d16274de"
integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==
+jquery@~4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/jquery/-/jquery-4.0.0.tgz#95c33ac29005ff72ec444c5ba1cf457e61404fbb"
+ integrity sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==
+
just-compare@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7"
diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/package.json b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/package.json
index fdf8812836..a7c4e5e89a 100644
--- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/package.json
+++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/package.json
@@ -3,8 +3,8 @@
"name": "asp.net",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1",
- "@abp/prismjs": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2",
+ "@abp/prismjs": "~10.7.0-rc.2"
},
"devDependencies": {}
}
diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/yarn.lock b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/yarn.lock
index 037a5aace3..84de033258 100644
--- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/yarn.lock
+++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/yarn.lock
@@ -2,203 +2,204 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.1.tgz#522fa8936c5572ffb97629a32e3c0cecab2cb20e"
- integrity sha512-0XW2QxEfL+A1Aw4kzknRuZAflHLBaA4TEiTP6rWHXTSUjuStbyfhjdOWZReK62wn7tDDAKOGS/ZGP9d3Gqt3UA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.1.tgz#8bf6231769ebaeb72773a4c22b028ebf74cbfcfd"
- integrity sha512-o1LveBACL83sPwiTu++t276wMR9hzdcc3vTogHbZJpoDTVnfy9Uhtlt+d9GpT0e69Ox8/ftcZqzl4JXDKuklFQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.1"
- "@abp/bootstrap" "~10.7.0-rc.1"
- "@abp/bootstrap-datepicker" "~10.7.0-rc.1"
- "@abp/bootstrap-daterangepicker" "~10.7.0-rc.1"
- "@abp/datatables.net-bs5" "~10.7.0-rc.1"
- "@abp/font-awesome" "~10.7.0-rc.1"
- "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.1"
- "@abp/lodash" "~10.7.0-rc.1"
- "@abp/luxon" "~10.7.0-rc.1"
- "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.1"
- "@abp/moment" "~10.7.0-rc.1"
- "@abp/select2" "~10.7.0-rc.1"
- "@abp/sweetalert2" "~10.7.0-rc.1"
- "@abp/timeago" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.1.tgz#984580897f4e557e24e52538e4b028543bb1f3f9"
- integrity sha512-GJNfb+NkVjGYRQNmuGREeFAJ7WFnuV3QXWnRRhWB/X/dPbc4BdLNUuYaWO/elA1YGU82m8sLtQk0bBLgX1sW6w==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.2.tgz#ffcbf8a9c11247bd913ea3b656af5271b0185aee"
+ integrity sha512-+HoXUWl8h6rintKh+bz9JhK7RLPP4ai5SGSBl9z0joPBG0SIABAKIdOQXSrRqw/ouL3xtOKAbu8ROOMOeEWs0g==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.2.tgz#113baea4635c63ca4722082d51444f54dad09481"
+ integrity sha512-/Z0wNC1JeyTGLiObl7JLXrFc1PG34ngBexgjjYkQzlDHPKzURaFGAPlwWHh1V/SarK8d43rfFuKM2O7SjlBYHA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.2"
+ "@abp/bootstrap" "~10.7.0-rc.2"
+ "@abp/bootstrap-datepicker" "~10.7.0-rc.2"
+ "@abp/bootstrap-daterangepicker" "~10.7.0-rc.2"
+ "@abp/datatables.net-bs5" "~10.7.0-rc.2"
+ "@abp/font-awesome" "~10.7.0-rc.2"
+ "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.2"
+ "@abp/lodash" "~10.7.0-rc.2"
+ "@abp/luxon" "~10.7.0-rc.2"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.2"
+ "@abp/moment" "~10.7.0-rc.2"
+ "@abp/select2" "~10.7.0-rc.2"
+ "@abp/sweetalert2" "~10.7.0-rc.2"
+ "@abp/timeago" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.2.tgz#e2970aa035e973d79d6bb56ee2ee28acb6eda8e9"
+ integrity sha512-dOYIcYkt+DsOv9rM05GM/KFJTZz1QzgysIa/rRc12Sh0v2rGGVKnFmZHaA0k4J2TMfyxSxKoQsyPX3C8hjfKxg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.1.tgz#a2b0f4c194dbe4008baeb6377deddcde57615558"
- integrity sha512-gy+Cq+w4rTCwbRKsbJvRGI5bZqd8cn0RrkPmWM5OdoKHB270fJZYv1s2GbU1hp3ELfS6LpycbNNjKMIywGCbjg==
+"@abp/bootstrap-datepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.2.tgz#0eee3cbda1b07eadd0e9cfe37bd14baf45109c4b"
+ integrity sha512-Wmp1AfYE1RrqY5c0SNzeHUwxPoGz/QOC8itLh1rGzfsVK46b/0PSITCsQWZ17iGYgJW68gNUp4jl2ku+Y6tjOQ==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.1.tgz#77bc951ab3df6c06e4f2e2b3474c2dc8fff8a9ee"
- integrity sha512-Q/BsC0LvrKTlfHCdBWAoeFYdbrkqlcNKTIQfdKYtavUsqS4fkcqt6vEe4y60kSUGzgkr9VIhN4d+e/yd9KNqTg==
+"@abp/bootstrap-daterangepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.2.tgz#4a5ad2cad1abbf8802a0627614a49e00e3e5c0da"
+ integrity sha512-voLXh2FBH24fAK1p9Q07PRvlyJAsyB+IWXp6SmyTcvH45evrahKofzyjvc6AJHn7QJ8DgXL3pC8Jyx5LXXuUtg==
dependencies:
- "@abp/moment" "~10.7.0-rc.1"
+ "@abp/moment" "~10.7.0-rc.2"
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.1.tgz#0fd48f4451527192f9e2b361bc001f0f2b710e6e"
- integrity sha512-2l5chEgpPOoGP3DSwsfnILmAeBxvA55cUoktGKGqBIo9tgQvVBZOwltLcQhEWVmZ4vmONgkBp96XwnEY9W3TKA==
+"@abp/bootstrap@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.2.tgz#f58165b7ac3af7a513e60514c3e1102c2d884684"
+ integrity sha512-s5JP80N8HR5jZVlr/hEWMfMk3QDhTLcIK7LAMDrTzlL41CaqjHiKb5stpl7xtzWZuIPEi92WCfDHIWSmqULR3g==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- "@abp/popper.js" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
+ "@abp/popper.js" "~10.7.0-rc.2"
bootstrap "^5.3.8"
-"@abp/clipboard@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.7.0-rc.1.tgz#01f30621be3e002eab3769c166df49bebd55c0e1"
- integrity sha512-cokw1hVY8H1opXXaZ1MTl71R+PzivuAd+SbRotUtDYDhZo5uG1jqHrZSVBPsC4Hp2w5yyMmBUzUqwMRAdarkYQ==
+"@abp/clipboard@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.7.0-rc.2.tgz#a9b4cdeb4a1bb559f75b0ef488ad856f43b9191f"
+ integrity sha512-YV9jxC7sJRRbz2VOVsKGOeno2bK5Tbn4ecQxkGiOG2KxtwQrCwIYXh/+1x2HDdTHy8jMkWinamMWiME6vYNrLw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
clipboard "^2.0.11"
-"@abp/core@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.1.tgz#40017b504c37e9b4b8e5e85823ed59768e49d93c"
- integrity sha512-aoAIRmrkHXdw06ZTxC2rF7Bj6zNSw+WHG39dC2vYQXc70MAZ78v2J4xEY/hk8+12UNdjKIVmwvqhMi2DJwSQjg==
+"@abp/core@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.2.tgz#363b875024cf665302c4199d0e7ab744e7e0bfec"
+ integrity sha512-gpnCPKzJyM8nAubZ5O/OjBKlIbP7F2qJ61VVqSPQiGzGBDk+BnQ+vosLxcjncwN9g4k6ZnAxnGgcnJCz6M/h6Q==
dependencies:
- "@abp/utils" "~10.7.0-rc.1"
+ "@abp/utils" "~10.7.0-rc.2"
-"@abp/datatables.net-bs5@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.1.tgz#e3a3d1e0bc39c80bb85db72ee23e9fd2b1a3480d"
- integrity sha512-24zyvsCA8sc/w0O7ZxxVZwtrb0+EUV5Jw/QWOLCSxkLi7c62lJQJ8FT3BueAx/AN+9fMMV8CVL23o3stWkXsEg==
+"@abp/datatables.net-bs5@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.2.tgz#bbb086344ede0f75f3c23ad81b4cce517db41f29"
+ integrity sha512-hg5XQUNfpxj/NqIjeGzolubTWbb4D/Y/Bf4DWjZvzSLhj/IxkQ8xGcEoxXLF91gRgH06cnHiZTJ3YaXW342a/g==
dependencies:
- "@abp/datatables.net" "~10.7.0-rc.1"
+ "@abp/datatables.net" "~10.7.0-rc.2"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.1.tgz#e73ebad5895ea4c095b75b2d4c934b4658547d10"
- integrity sha512-XImGEEv6zJDFOHNQKUF/sOk2MJzX5jovRRa752v9g8KCVOhUWB6mz4G/QuJ73uKqdXSS7sUZ04sqk3VGq8/9mA==
+"@abp/datatables.net@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.2.tgz#695dbb16c282202452684ba3e601781eae43e3a2"
+ integrity sha512-Rkz+PzaG0MTM5s2Bco2gpmr67I7bmSeMSdRy3+zDCKiNuRO97jFss76EA5nSW6CcatntGCOWWoXNQih45LWLWw==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.1.tgz#1c15dc1f91be572c315cdf49e0e35685d094ed23"
- integrity sha512-hRslYk5B1hC0qj0TGPyQ0KLWMpWleENamKh0ostjiXKPZdd0OG/+iKPtwX5qlz8SUY9vSm/DAtI2+cNzOK6lvQ==
+"@abp/font-awesome@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.2.tgz#4934e38a4c73eb04c9c4a4e301c71273fe3b0c90"
+ integrity sha512-Q6JgayhrIOaMvs0w9RYkp824iZiAQDKgmSoxqJDnLOml4a8UXWLGbw5ZhQFXAGkiJSKXEZ/KUXGz04D4tABuvw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-validation-unobtrusive@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.1.tgz#69a853a5d987676aaba2eeb79853cc56e5ae07b0"
- integrity sha512-apzrew9h0HSKvqZV9MTQO2pz7lagKsfRjIA4iq/0O7zhVgenLDul09OePxRUB624OifBTAgOD80mlCEXb+cjrg==
+"@abp/jquery-validation-unobtrusive@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.2.tgz#c4f4f8b5f4406bf0c693fdb0b4d72c1dc8aa2cf5"
+ integrity sha512-354+XIQJXNmsG70g72JcWxPtXAL9+yj595scP4vsPeHBXQr+QNLKjoEx7F43Mm6nFVLbedMRfpumErix18PiCg==
dependencies:
- "@abp/jquery-validation" "~10.7.0-rc.1"
+ "@abp/jquery-validation" "~10.7.0-rc.2"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.1.tgz#71b741ea5e0424c3f7ac0378ce17821718be7316"
- integrity sha512-FUcYgT7hoVGGdVqYxe3CzNQYcpCqUzpwMp5To8GJ8NA4fHyjPv/hRZlCjBXH+o0KbhCGbgKllV5/ly/UJwgUDw==
+"@abp/jquery-validation@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.2.tgz#6b1fab4cef76893a909fee51ffab7b97e907d54e"
+ integrity sha512-YtcrcmIWhNu52ssxSxJ6LuF4JU3WkhCCYJ4MT3upx4kltFxihMH5b1BDAj+s5Qb+qLi3jDn1D80IynJ5lxmnZg==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
- jquery-validation "^1.21.0"
+ "@abp/jquery" "~10.7.0-rc.2"
+ jquery-validation "^1.22.1"
-"@abp/jquery@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.1.tgz#84dc6ae11dc3e696978a4d07be95b5d96afbb74d"
- integrity sha512-fESdFdo4dfG2FrdSU1v6r3jXik9WWY3umN8OfHZSbMu7d9+eoTxpJEIDYFvFrGf4t5AQ8vhbxdmm6A+Kg5q4uw==
+"@abp/jquery@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.2.tgz#356b7e678258e95056a029558bef6d6e7bc1a3ec"
+ integrity sha512-vl6o63cW3k4VooyRgnBkrcj/krSjxoS5/EX9ZraG11QMk48Crl00isZvjcxswVUUooXTbzjRG9+Dwx3xRSvohA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- jquery "~3.7.1"
+ "@abp/core" "~10.7.0-rc.2"
+ jquery "~4.0.0"
+ jquery-migrate "~4.0.2"
-"@abp/lodash@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.1.tgz#0bfbf9bee2e70f13bc46af40c8952e51e3a1ab39"
- integrity sha512-3Jo6QBl2/MjOKo2w1Q/reZ5z4zAuVYoGmNjEA+zBGOErNC/f94GdKhnjI9WkTMSBdYyaliyzx9NQBY9ZxV6Vag==
+"@abp/lodash@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.2.tgz#40b2849fb36702652ace65c3b128e7c6b6cb0c05"
+ integrity sha512-WkxHOriKsaNHQEOKeLpTzzvbr90pbi747dldzV1T3typwZtpwL6xtqcivPVIAkfDxfdnzmsC+HiIX0mTHJA7sA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
lodash "^4.18.1"
-"@abp/luxon@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.1.tgz#038e3519dfaed24f79a4bc2c3f505bdff9f013d8"
- integrity sha512-Eb8dvWUodLxvdD00aQjUfwf08TWW4x2KcdrI388RyiXDhA9aXBG8yKCCpapY/QChkUt/V6tHAuZtHWs9g75T7A==
+"@abp/luxon@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.2.tgz#2650adc4bf32711a47a0f4c4452eead915899015"
+ integrity sha512-ReVQeloBgC0B2+O6IEwDP8joUyf/Qy2WlMFVz7VNXIylQFwr1hQ70CScKHm+mvACfIHoNSXl8EUET4XpXvhgPw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.1.tgz#c53cf649ad54a30ed10d0f949617f9f2fe74b17b"
- integrity sha512-e9EnklZy7LGJZT/nqnsgdba0LSuqjLSFy7o+FesDY574zJniE34q1dewc60eLElEW8ghY6W2ykLadfFoOtQ+mQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.2.tgz#0eae6ab79bf83158006afda892d20120c9b1b91c"
+ integrity sha512-v/gQyNEBBur2wfsU66700aFH57gS7lyMptObYOb9BTsZuRZ1WLA56JSz2EquOiYS8nvoSpqA63bs7LzHQvuiSg==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.1.tgz#c6c5c60c8e86dcb933ad59f3d2a8d64d3eda5ee2"
- integrity sha512-pMA7GO68yiLDpUxajnnQWuGPd3GegrPJDE5fTtCYK7qoVYeh8eiSeggVybrsfZSTo7BPEyb2jkfqsRcVGWgf8g==
+"@abp/moment@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.2.tgz#97f81e33c7bba19c815b26c71d5b9316b9aed268"
+ integrity sha512-Iks6nWoxUF4SVjqdAb7Ck6N/ArXGn48HeAzJvg7NCm4Kk31xSGVB598hbiezzVO0hBC9S7PBesz670P0m/2UUw==
dependencies:
moment "^2.30.1"
-"@abp/popper.js@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.1.tgz#24b02dccfbfa599cd4cca0ee15bccc6c7b61dda3"
- integrity sha512-AOxyY2m8QvcIMVGnosPJrguzR/TWfWACoEQRSPqeraNdu6yh3Z/5j6sVx0TDs0BBSsfa6EUnAavzxNvVY39T8Q==
+"@abp/popper.js@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.2.tgz#f133390b31f2572263a6d74c05fdd967c96edac1"
+ integrity sha512-CEAZ9eKBtHoigQ5P0bJR7W/4gVSrBO9RM0s0bKACb6ibZXtlRhxVudSgZ35SrGSYrRENSWSNvE5O4sDlebBx6w==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@popperjs/core" "^2.11.8"
-"@abp/prismjs@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.7.0-rc.1.tgz#c51c745e07328bf922ca033f54ab262e3e94170f"
- integrity sha512-xX68Yl2fsUdARxVEVyDZdFyqA/QpkIJ1bQ7OeTy3eoN/XgkiYpKUekUbwM3GE2xQvvf5cmKjhkLUPGW7necAXA==
+"@abp/prismjs@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.7.0-rc.2.tgz#2dbf97051f4f3a7fcf48a4dfff8e8cc527142e91"
+ integrity sha512-UgY4Zj0kLtmmMGFVJlRfGNCqhg1mLXoCZ7MQJJ5cSwf6RbL4LL9XFVFxj5Yy7ZrmXun7TXy1LUf4K6wJDcPKQg==
dependencies:
- "@abp/clipboard" "~10.7.0-rc.1"
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/clipboard" "~10.7.0-rc.2"
+ "@abp/core" "~10.7.0-rc.2"
prismjs "^1.30.0"
-"@abp/select2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.1.tgz#ed88702039bbcf064d1fdf0b003c6a782a033b43"
- integrity sha512-Lz/dtUf7EzOG5bovG9WAKylmSCo2OD9W7wpW3Fs5EFQx/HStm1k+EFASFp/Y/kORcXgd6uKAqckGAqwAjoycPA==
+"@abp/select2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.2.tgz#6432cbaef11e28aad1a6e0643fcdc50ea8570b0b"
+ integrity sha512-2pDsRDfVuEznGjI39JVTDB8E4rkjjAtOu9DmFNIsg2bFkuVUCRymmNZ0jgwyJhkkZ+JmbkFCnSI5YWasl5KBwA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.1.tgz#847eb66b6b3e444ecb2c1e948f6f08e0a3494834"
- integrity sha512-iT/FcFFTLzfgKPvadJR0JLcKMHsl8hazbb1Sle1I4sb9weEQnKU1IUyYP4XxWA71m8bE8pigK7MHJOzTpddCTQ==
+"@abp/sweetalert2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.2.tgz#94cd053d0978516e713a1b323af78d1885e0973c"
+ integrity sha512-vtNUgp+mpIc91YzMv4hTHfQCNmMehE02LHoVFFx/CB+vMR35VKSNYBCuBpUfMVYBPplFVdXwFqJsPCW4zG9ulw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.1.tgz#fd8c0bc437d412288a7ed8df33b8efcee6cbc6cb"
- integrity sha512-j0Y7XDZaIt9Pya71q/LpyBInuU7Try8IgRv83lOnncWpVvQmCECfeTq4iM9kVQxe5kD81PGeSdLbzw7AapbaXA==
+"@abp/timeago@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.2.tgz#8788d21008964f1094c9a7e099b1b5777b223f4e"
+ integrity sha512-ucQqQ5gP54Ui9jBS68DR6KPmm/Yw5Up0A78FYha1sF9L7DvZKnQWId1p3RJcwZHgoI6hQgEVOntL77kKxTgDYA==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
timeago "^1.6.7"
-"@abp/utils@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.1.tgz#e727045304bec1cdb65132e0c0fcfe18337fa767"
- integrity sha512-kkqzS2Pd/+CKkxVEpYwyRs4yHye0xi4kc3Ip4TIEZXCJ+whjB9b4qKh+AuglKGwz3RvnFvB+QxQhluUHu0oyaA==
+"@abp/utils@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.2.tgz#671c3bc01d9b5e51aaaf50b96d4014f044a443a0"
+ integrity sha512-7Y6tCsphuOBZw7cPt04WFLRnhk89dt94BkGpt9B40wEl3oT7VuH6+xajYSAxVp9REzNJ0Zfu64780Eq2SyAA3g==
dependencies:
just-compare "^2.3.0"
@@ -273,6 +274,11 @@ good-listener@^1.2.2:
dependencies:
delegate "^3.1.2"
+jquery-migrate@~4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/jquery-migrate/-/jquery-migrate-4.0.2.tgz#d296a64e05073017c54877462ac563f1927ee21f"
+ integrity sha512-J15ilpECoAsObLv2robklj0qf1qt9QCnZwwNcJAXkM7dIiOgcac2dqC3HgDtUF0fmRwKZa/ggTkxTj9S4Vk+HQ==
+
jquery-mousewheel@>=3.0.6:
version "3.1.13"
resolved "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz#06f0335f16e353a695e7206bf50503cb523a6ee5"
@@ -286,21 +292,31 @@ jquery-validation-unobtrusive@^4.0.0:
jquery "^3.6.0"
jquery-validation ">=1.19"
-jquery-validation@>=1.19, jquery-validation@^1.21.0:
+jquery-validation@>=1.19:
version "1.21.0"
resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.21.0.tgz#78fc05ab76020912a246af3661b3f54a438bca93"
integrity sha512-xNot0rlUIgu7duMcQ5qb6MGkGL/Z1PQaRJQoZAURW9+a/2PGOUxY36o/WyNeP2T9R6jvWB8Z9lUVvvQWI/Zs5w==
+jquery-validation@^1.22.1:
+ version "1.22.1"
+ resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.22.1.tgz#fc1ae3256110332c929245a44d69ee76fee0e481"
+ integrity sha512-ePLXLWK7Rh5eR652YsuIu7YPeGlCXrsJUteVw5iZopiU17yaMd3FaDggs6yyNMl56p8TYVeDRmKGK3fPZrMeQw==
+
jquery@>=1.10, "jquery@>=1.5.0 <4.0", jquery@>=1.7:
version "3.6.4"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.4.tgz#ba065c188142100be4833699852bf7c24dc0252f"
integrity sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ==
-"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0, jquery@~3.7.1:
+"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0:
version "3.7.1"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.1.tgz#083ef98927c9a6a74d05a6af02806566d16274de"
integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==
+jquery@~4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/jquery/-/jquery-4.0.0.tgz#95c33ac29005ff72ec444c5ba1cf457e61404fbb"
+ integrity sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==
+
just-compare@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7"
diff --git a/modules/blogging/app/Volo.BloggingTestApp/package.json b/modules/blogging/app/Volo.BloggingTestApp/package.json
index 57c7d45d0b..9cb9729e3d 100644
--- a/modules/blogging/app/Volo.BloggingTestApp/package.json
+++ b/modules/blogging/app/Volo.BloggingTestApp/package.json
@@ -3,7 +3,7 @@
"name": "volo.blogtestapp",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1",
- "@abp/blogging": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2",
+ "@abp/blogging": "~10.7.0-rc.2"
}
}
diff --git a/modules/blogging/app/Volo.BloggingTestApp/yarn.lock b/modules/blogging/app/Volo.BloggingTestApp/yarn.lock
index ca316130bb..dd6f5aba82 100644
--- a/modules/blogging/app/Volo.BloggingTestApp/yarn.lock
+++ b/modules/blogging/app/Volo.BloggingTestApp/yarn.lock
@@ -2,229 +2,230 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.1.tgz#522fa8936c5572ffb97629a32e3c0cecab2cb20e"
- integrity sha512-0XW2QxEfL+A1Aw4kzknRuZAflHLBaA4TEiTP6rWHXTSUjuStbyfhjdOWZReK62wn7tDDAKOGS/ZGP9d3Gqt3UA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.1.tgz#8bf6231769ebaeb72773a4c22b028ebf74cbfcfd"
- integrity sha512-o1LveBACL83sPwiTu++t276wMR9hzdcc3vTogHbZJpoDTVnfy9Uhtlt+d9GpT0e69Ox8/ftcZqzl4JXDKuklFQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.1"
- "@abp/bootstrap" "~10.7.0-rc.1"
- "@abp/bootstrap-datepicker" "~10.7.0-rc.1"
- "@abp/bootstrap-daterangepicker" "~10.7.0-rc.1"
- "@abp/datatables.net-bs5" "~10.7.0-rc.1"
- "@abp/font-awesome" "~10.7.0-rc.1"
- "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.1"
- "@abp/lodash" "~10.7.0-rc.1"
- "@abp/luxon" "~10.7.0-rc.1"
- "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.1"
- "@abp/moment" "~10.7.0-rc.1"
- "@abp/select2" "~10.7.0-rc.1"
- "@abp/sweetalert2" "~10.7.0-rc.1"
- "@abp/timeago" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.1.tgz#984580897f4e557e24e52538e4b028543bb1f3f9"
- integrity sha512-GJNfb+NkVjGYRQNmuGREeFAJ7WFnuV3QXWnRRhWB/X/dPbc4BdLNUuYaWO/elA1YGU82m8sLtQk0bBLgX1sW6w==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.2.tgz#ffcbf8a9c11247bd913ea3b656af5271b0185aee"
+ integrity sha512-+HoXUWl8h6rintKh+bz9JhK7RLPP4ai5SGSBl9z0joPBG0SIABAKIdOQXSrRqw/ouL3xtOKAbu8ROOMOeEWs0g==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.2.tgz#113baea4635c63ca4722082d51444f54dad09481"
+ integrity sha512-/Z0wNC1JeyTGLiObl7JLXrFc1PG34ngBexgjjYkQzlDHPKzURaFGAPlwWHh1V/SarK8d43rfFuKM2O7SjlBYHA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.2"
+ "@abp/bootstrap" "~10.7.0-rc.2"
+ "@abp/bootstrap-datepicker" "~10.7.0-rc.2"
+ "@abp/bootstrap-daterangepicker" "~10.7.0-rc.2"
+ "@abp/datatables.net-bs5" "~10.7.0-rc.2"
+ "@abp/font-awesome" "~10.7.0-rc.2"
+ "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.2"
+ "@abp/lodash" "~10.7.0-rc.2"
+ "@abp/luxon" "~10.7.0-rc.2"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.2"
+ "@abp/moment" "~10.7.0-rc.2"
+ "@abp/select2" "~10.7.0-rc.2"
+ "@abp/sweetalert2" "~10.7.0-rc.2"
+ "@abp/timeago" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.2.tgz#e2970aa035e973d79d6bb56ee2ee28acb6eda8e9"
+ integrity sha512-dOYIcYkt+DsOv9rM05GM/KFJTZz1QzgysIa/rRc12Sh0v2rGGVKnFmZHaA0k4J2TMfyxSxKoQsyPX3C8hjfKxg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/blogging@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-10.7.0-rc.1.tgz#201dab39c7db7a04e726fff8e1351920d191d6ba"
- integrity sha512-vsJVXNUKuNQKM7eUMBBzBNTWmlNZRWCR7rEwJEuYRwLKaHhGzAgJtY+nYnv3yMURNYW4lXy41XK2qaVT3TNxtA==
+"@abp/blogging@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-10.7.0-rc.2.tgz#227bec67f1fde6876b74e3483ad6586df601de34"
+ integrity sha512-3pazGVr+RK7tKR9vh4KRbeMpln6vVIK+JCgjdpdovXD9jcFWRZlPPB6mqRwknxEu4scwNS2yhzKSVuUgPEE/Dg==
dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.1"
- "@abp/owl.carousel" "~10.7.0-rc.1"
- "@abp/prismjs" "~10.7.0-rc.1"
- "@abp/tui-editor" "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.2"
+ "@abp/owl.carousel" "~10.7.0-rc.2"
+ "@abp/prismjs" "~10.7.0-rc.2"
+ "@abp/tui-editor" "~10.7.0-rc.2"
-"@abp/bootstrap-datepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.1.tgz#a2b0f4c194dbe4008baeb6377deddcde57615558"
- integrity sha512-gy+Cq+w4rTCwbRKsbJvRGI5bZqd8cn0RrkPmWM5OdoKHB270fJZYv1s2GbU1hp3ELfS6LpycbNNjKMIywGCbjg==
+"@abp/bootstrap-datepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.2.tgz#0eee3cbda1b07eadd0e9cfe37bd14baf45109c4b"
+ integrity sha512-Wmp1AfYE1RrqY5c0SNzeHUwxPoGz/QOC8itLh1rGzfsVK46b/0PSITCsQWZ17iGYgJW68gNUp4jl2ku+Y6tjOQ==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.1.tgz#77bc951ab3df6c06e4f2e2b3474c2dc8fff8a9ee"
- integrity sha512-Q/BsC0LvrKTlfHCdBWAoeFYdbrkqlcNKTIQfdKYtavUsqS4fkcqt6vEe4y60kSUGzgkr9VIhN4d+e/yd9KNqTg==
+"@abp/bootstrap-daterangepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.2.tgz#4a5ad2cad1abbf8802a0627614a49e00e3e5c0da"
+ integrity sha512-voLXh2FBH24fAK1p9Q07PRvlyJAsyB+IWXp6SmyTcvH45evrahKofzyjvc6AJHn7QJ8DgXL3pC8Jyx5LXXuUtg==
dependencies:
- "@abp/moment" "~10.7.0-rc.1"
+ "@abp/moment" "~10.7.0-rc.2"
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.1.tgz#0fd48f4451527192f9e2b361bc001f0f2b710e6e"
- integrity sha512-2l5chEgpPOoGP3DSwsfnILmAeBxvA55cUoktGKGqBIo9tgQvVBZOwltLcQhEWVmZ4vmONgkBp96XwnEY9W3TKA==
+"@abp/bootstrap@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.2.tgz#f58165b7ac3af7a513e60514c3e1102c2d884684"
+ integrity sha512-s5JP80N8HR5jZVlr/hEWMfMk3QDhTLcIK7LAMDrTzlL41CaqjHiKb5stpl7xtzWZuIPEi92WCfDHIWSmqULR3g==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- "@abp/popper.js" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
+ "@abp/popper.js" "~10.7.0-rc.2"
bootstrap "^5.3.8"
-"@abp/clipboard@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.7.0-rc.1.tgz#01f30621be3e002eab3769c166df49bebd55c0e1"
- integrity sha512-cokw1hVY8H1opXXaZ1MTl71R+PzivuAd+SbRotUtDYDhZo5uG1jqHrZSVBPsC4Hp2w5yyMmBUzUqwMRAdarkYQ==
+"@abp/clipboard@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.7.0-rc.2.tgz#a9b4cdeb4a1bb559f75b0ef488ad856f43b9191f"
+ integrity sha512-YV9jxC7sJRRbz2VOVsKGOeno2bK5Tbn4ecQxkGiOG2KxtwQrCwIYXh/+1x2HDdTHy8jMkWinamMWiME6vYNrLw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
clipboard "^2.0.11"
-"@abp/core@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.1.tgz#40017b504c37e9b4b8e5e85823ed59768e49d93c"
- integrity sha512-aoAIRmrkHXdw06ZTxC2rF7Bj6zNSw+WHG39dC2vYQXc70MAZ78v2J4xEY/hk8+12UNdjKIVmwvqhMi2DJwSQjg==
+"@abp/core@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.2.tgz#363b875024cf665302c4199d0e7ab744e7e0bfec"
+ integrity sha512-gpnCPKzJyM8nAubZ5O/OjBKlIbP7F2qJ61VVqSPQiGzGBDk+BnQ+vosLxcjncwN9g4k6ZnAxnGgcnJCz6M/h6Q==
dependencies:
- "@abp/utils" "~10.7.0-rc.1"
+ "@abp/utils" "~10.7.0-rc.2"
-"@abp/datatables.net-bs5@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.1.tgz#e3a3d1e0bc39c80bb85db72ee23e9fd2b1a3480d"
- integrity sha512-24zyvsCA8sc/w0O7ZxxVZwtrb0+EUV5Jw/QWOLCSxkLi7c62lJQJ8FT3BueAx/AN+9fMMV8CVL23o3stWkXsEg==
+"@abp/datatables.net-bs5@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.2.tgz#bbb086344ede0f75f3c23ad81b4cce517db41f29"
+ integrity sha512-hg5XQUNfpxj/NqIjeGzolubTWbb4D/Y/Bf4DWjZvzSLhj/IxkQ8xGcEoxXLF91gRgH06cnHiZTJ3YaXW342a/g==
dependencies:
- "@abp/datatables.net" "~10.7.0-rc.1"
+ "@abp/datatables.net" "~10.7.0-rc.2"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.1.tgz#e73ebad5895ea4c095b75b2d4c934b4658547d10"
- integrity sha512-XImGEEv6zJDFOHNQKUF/sOk2MJzX5jovRRa752v9g8KCVOhUWB6mz4G/QuJ73uKqdXSS7sUZ04sqk3VGq8/9mA==
+"@abp/datatables.net@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.2.tgz#695dbb16c282202452684ba3e601781eae43e3a2"
+ integrity sha512-Rkz+PzaG0MTM5s2Bco2gpmr67I7bmSeMSdRy3+zDCKiNuRO97jFss76EA5nSW6CcatntGCOWWoXNQih45LWLWw==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.1.tgz#1c15dc1f91be572c315cdf49e0e35685d094ed23"
- integrity sha512-hRslYk5B1hC0qj0TGPyQ0KLWMpWleENamKh0ostjiXKPZdd0OG/+iKPtwX5qlz8SUY9vSm/DAtI2+cNzOK6lvQ==
+"@abp/font-awesome@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.2.tgz#4934e38a4c73eb04c9c4a4e301c71273fe3b0c90"
+ integrity sha512-Q6JgayhrIOaMvs0w9RYkp824iZiAQDKgmSoxqJDnLOml4a8UXWLGbw5ZhQFXAGkiJSKXEZ/KUXGz04D4tABuvw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-validation-unobtrusive@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.1.tgz#69a853a5d987676aaba2eeb79853cc56e5ae07b0"
- integrity sha512-apzrew9h0HSKvqZV9MTQO2pz7lagKsfRjIA4iq/0O7zhVgenLDul09OePxRUB624OifBTAgOD80mlCEXb+cjrg==
+"@abp/jquery-validation-unobtrusive@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.2.tgz#c4f4f8b5f4406bf0c693fdb0b4d72c1dc8aa2cf5"
+ integrity sha512-354+XIQJXNmsG70g72JcWxPtXAL9+yj595scP4vsPeHBXQr+QNLKjoEx7F43Mm6nFVLbedMRfpumErix18PiCg==
dependencies:
- "@abp/jquery-validation" "~10.7.0-rc.1"
+ "@abp/jquery-validation" "~10.7.0-rc.2"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.1.tgz#71b741ea5e0424c3f7ac0378ce17821718be7316"
- integrity sha512-FUcYgT7hoVGGdVqYxe3CzNQYcpCqUzpwMp5To8GJ8NA4fHyjPv/hRZlCjBXH+o0KbhCGbgKllV5/ly/UJwgUDw==
+"@abp/jquery-validation@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.2.tgz#6b1fab4cef76893a909fee51ffab7b97e907d54e"
+ integrity sha512-YtcrcmIWhNu52ssxSxJ6LuF4JU3WkhCCYJ4MT3upx4kltFxihMH5b1BDAj+s5Qb+qLi3jDn1D80IynJ5lxmnZg==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
- jquery-validation "^1.21.0"
+ "@abp/jquery" "~10.7.0-rc.2"
+ jquery-validation "^1.22.1"
-"@abp/jquery@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.1.tgz#84dc6ae11dc3e696978a4d07be95b5d96afbb74d"
- integrity sha512-fESdFdo4dfG2FrdSU1v6r3jXik9WWY3umN8OfHZSbMu7d9+eoTxpJEIDYFvFrGf4t5AQ8vhbxdmm6A+Kg5q4uw==
+"@abp/jquery@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.2.tgz#356b7e678258e95056a029558bef6d6e7bc1a3ec"
+ integrity sha512-vl6o63cW3k4VooyRgnBkrcj/krSjxoS5/EX9ZraG11QMk48Crl00isZvjcxswVUUooXTbzjRG9+Dwx3xRSvohA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- jquery "~3.7.1"
+ "@abp/core" "~10.7.0-rc.2"
+ jquery "~4.0.0"
+ jquery-migrate "~4.0.2"
-"@abp/lodash@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.1.tgz#0bfbf9bee2e70f13bc46af40c8952e51e3a1ab39"
- integrity sha512-3Jo6QBl2/MjOKo2w1Q/reZ5z4zAuVYoGmNjEA+zBGOErNC/f94GdKhnjI9WkTMSBdYyaliyzx9NQBY9ZxV6Vag==
+"@abp/lodash@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.2.tgz#40b2849fb36702652ace65c3b128e7c6b6cb0c05"
+ integrity sha512-WkxHOriKsaNHQEOKeLpTzzvbr90pbi747dldzV1T3typwZtpwL6xtqcivPVIAkfDxfdnzmsC+HiIX0mTHJA7sA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
lodash "^4.18.1"
-"@abp/luxon@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.1.tgz#038e3519dfaed24f79a4bc2c3f505bdff9f013d8"
- integrity sha512-Eb8dvWUodLxvdD00aQjUfwf08TWW4x2KcdrI388RyiXDhA9aXBG8yKCCpapY/QChkUt/V6tHAuZtHWs9g75T7A==
+"@abp/luxon@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.2.tgz#2650adc4bf32711a47a0f4c4452eead915899015"
+ integrity sha512-ReVQeloBgC0B2+O6IEwDP8joUyf/Qy2WlMFVz7VNXIylQFwr1hQ70CScKHm+mvACfIHoNSXl8EUET4XpXvhgPw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.1.tgz#c53cf649ad54a30ed10d0f949617f9f2fe74b17b"
- integrity sha512-e9EnklZy7LGJZT/nqnsgdba0LSuqjLSFy7o+FesDY574zJniE34q1dewc60eLElEW8ghY6W2ykLadfFoOtQ+mQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.2.tgz#0eae6ab79bf83158006afda892d20120c9b1b91c"
+ integrity sha512-v/gQyNEBBur2wfsU66700aFH57gS7lyMptObYOb9BTsZuRZ1WLA56JSz2EquOiYS8nvoSpqA63bs7LzHQvuiSg==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.1.tgz#c6c5c60c8e86dcb933ad59f3d2a8d64d3eda5ee2"
- integrity sha512-pMA7GO68yiLDpUxajnnQWuGPd3GegrPJDE5fTtCYK7qoVYeh8eiSeggVybrsfZSTo7BPEyb2jkfqsRcVGWgf8g==
+"@abp/moment@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.2.tgz#97f81e33c7bba19c815b26c71d5b9316b9aed268"
+ integrity sha512-Iks6nWoxUF4SVjqdAb7Ck6N/ArXGn48HeAzJvg7NCm4Kk31xSGVB598hbiezzVO0hBC9S7PBesz670P0m/2UUw==
dependencies:
moment "^2.30.1"
-"@abp/owl.carousel@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-10.7.0-rc.1.tgz#85a05aaaaa90fd84eb94928cdca438c0b58f4db7"
- integrity sha512-rMTx2536adTn5R+2gTLmmtVvc7QdpCbWNWelEtcd5MFXPt7PP2MeZ39QS1PjhhJkhb0aqlKe8bYUkQJneovaMw==
+"@abp/owl.carousel@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-10.7.0-rc.2.tgz#406cd66949953d758b9a3327c7d05af144f0e72a"
+ integrity sha512-QZ+gLPAFuyTLMaNHHF1p7V+INAF+pS+gcOyzgHhF0/D30dI/jLRhKXk5N377i+vU+q6yuUeJ16PjqX0sKYMVlw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
owl.carousel "^2.3.4"
-"@abp/popper.js@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.1.tgz#24b02dccfbfa599cd4cca0ee15bccc6c7b61dda3"
- integrity sha512-AOxyY2m8QvcIMVGnosPJrguzR/TWfWACoEQRSPqeraNdu6yh3Z/5j6sVx0TDs0BBSsfa6EUnAavzxNvVY39T8Q==
+"@abp/popper.js@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.2.tgz#f133390b31f2572263a6d74c05fdd967c96edac1"
+ integrity sha512-CEAZ9eKBtHoigQ5P0bJR7W/4gVSrBO9RM0s0bKACb6ibZXtlRhxVudSgZ35SrGSYrRENSWSNvE5O4sDlebBx6w==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@popperjs/core" "^2.11.8"
-"@abp/prismjs@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.7.0-rc.1.tgz#c51c745e07328bf922ca033f54ab262e3e94170f"
- integrity sha512-xX68Yl2fsUdARxVEVyDZdFyqA/QpkIJ1bQ7OeTy3eoN/XgkiYpKUekUbwM3GE2xQvvf5cmKjhkLUPGW7necAXA==
+"@abp/prismjs@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.7.0-rc.2.tgz#2dbf97051f4f3a7fcf48a4dfff8e8cc527142e91"
+ integrity sha512-UgY4Zj0kLtmmMGFVJlRfGNCqhg1mLXoCZ7MQJJ5cSwf6RbL4LL9XFVFxj5Yy7ZrmXun7TXy1LUf4K6wJDcPKQg==
dependencies:
- "@abp/clipboard" "~10.7.0-rc.1"
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/clipboard" "~10.7.0-rc.2"
+ "@abp/core" "~10.7.0-rc.2"
prismjs "^1.30.0"
-"@abp/select2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.1.tgz#ed88702039bbcf064d1fdf0b003c6a782a033b43"
- integrity sha512-Lz/dtUf7EzOG5bovG9WAKylmSCo2OD9W7wpW3Fs5EFQx/HStm1k+EFASFp/Y/kORcXgd6uKAqckGAqwAjoycPA==
+"@abp/select2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.2.tgz#6432cbaef11e28aad1a6e0643fcdc50ea8570b0b"
+ integrity sha512-2pDsRDfVuEznGjI39JVTDB8E4rkjjAtOu9DmFNIsg2bFkuVUCRymmNZ0jgwyJhkkZ+JmbkFCnSI5YWasl5KBwA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.1.tgz#847eb66b6b3e444ecb2c1e948f6f08e0a3494834"
- integrity sha512-iT/FcFFTLzfgKPvadJR0JLcKMHsl8hazbb1Sle1I4sb9weEQnKU1IUyYP4XxWA71m8bE8pigK7MHJOzTpddCTQ==
+"@abp/sweetalert2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.2.tgz#94cd053d0978516e713a1b323af78d1885e0973c"
+ integrity sha512-vtNUgp+mpIc91YzMv4hTHfQCNmMehE02LHoVFFx/CB+vMR35VKSNYBCuBpUfMVYBPplFVdXwFqJsPCW4zG9ulw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.1.tgz#fd8c0bc437d412288a7ed8df33b8efcee6cbc6cb"
- integrity sha512-j0Y7XDZaIt9Pya71q/LpyBInuU7Try8IgRv83lOnncWpVvQmCECfeTq4iM9kVQxe5kD81PGeSdLbzw7AapbaXA==
+"@abp/timeago@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.2.tgz#8788d21008964f1094c9a7e099b1b5777b223f4e"
+ integrity sha512-ucQqQ5gP54Ui9jBS68DR6KPmm/Yw5Up0A78FYha1sF9L7DvZKnQWId1p3RJcwZHgoI6hQgEVOntL77kKxTgDYA==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
timeago "^1.6.7"
-"@abp/tui-editor@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-10.7.0-rc.1.tgz#b51c0ac1a6847a38e142bdec9d3ff2d73d90ebf1"
- integrity sha512-NzvJuyoBsHjgjGf4asgboFkzAKSV3Lg15vlz0PFTkWIyY5wS898zQygP1l1OV6reBTlRlpNVJFsS/ICJTtepMA==
+"@abp/tui-editor@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-10.7.0-rc.2.tgz#de991dbea63ba42f9d4e56ba1c166ae31477dce0"
+ integrity sha512-dvw2H2dXz5i09ZGNBjCze6ycnyKWumn61n4RMGUpiEE6oU/03ibXbplO8RFdnzz7HiwROpkUmXnuiAXf++zdQw==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
- "@abp/prismjs" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
+ "@abp/prismjs" "~10.7.0-rc.2"
-"@abp/utils@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.1.tgz#e727045304bec1cdb65132e0c0fcfe18337fa767"
- integrity sha512-kkqzS2Pd/+CKkxVEpYwyRs4yHye0xi4kc3Ip4TIEZXCJ+whjB9b4qKh+AuglKGwz3RvnFvB+QxQhluUHu0oyaA==
+"@abp/utils@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.2.tgz#671c3bc01d9b5e51aaaf50b96d4014f044a443a0"
+ integrity sha512-7Y6tCsphuOBZw7cPt04WFLRnhk89dt94BkGpt9B40wEl3oT7VuH6+xajYSAxVp9REzNJ0Zfu64780Eq2SyAA3g==
dependencies:
just-compare "^2.3.0"
@@ -299,6 +300,11 @@ good-listener@^1.2.2:
dependencies:
delegate "^3.1.2"
+jquery-migrate@~4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/jquery-migrate/-/jquery-migrate-4.0.2.tgz#d296a64e05073017c54877462ac563f1927ee21f"
+ integrity sha512-J15ilpECoAsObLv2robklj0qf1qt9QCnZwwNcJAXkM7dIiOgcac2dqC3HgDtUF0fmRwKZa/ggTkxTj9S4Vk+HQ==
+
jquery-mousewheel@>=3.0.6:
version "3.1.13"
resolved "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz#06f0335f16e353a695e7206bf50503cb523a6ee5"
@@ -312,21 +318,31 @@ jquery-validation-unobtrusive@^4.0.0:
jquery "^3.6.0"
jquery-validation ">=1.19"
-jquery-validation@>=1.19, jquery-validation@^1.21.0:
+jquery-validation@>=1.19:
version "1.21.0"
resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.21.0.tgz#78fc05ab76020912a246af3661b3f54a438bca93"
integrity sha512-xNot0rlUIgu7duMcQ5qb6MGkGL/Z1PQaRJQoZAURW9+a/2PGOUxY36o/WyNeP2T9R6jvWB8Z9lUVvvQWI/Zs5w==
+jquery-validation@^1.22.1:
+ version "1.22.1"
+ resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.22.1.tgz#fc1ae3256110332c929245a44d69ee76fee0e481"
+ integrity sha512-ePLXLWK7Rh5eR652YsuIu7YPeGlCXrsJUteVw5iZopiU17yaMd3FaDggs6yyNMl56p8TYVeDRmKGK3fPZrMeQw==
+
jquery@>=1.10, "jquery@>=1.5.0 <4.0", jquery@>=1.7, jquery@>=1.8.3:
version "3.6.4"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.4.tgz#ba065c188142100be4833699852bf7c24dc0252f"
integrity sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ==
-"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0, jquery@~3.7.1:
+"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0:
version "3.7.1"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.1.tgz#083ef98927c9a6a74d05a6af02806566d16274de"
integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==
+jquery@~4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/jquery/-/jquery-4.0.0.tgz#95c33ac29005ff72ec444c5ba1cf457e61404fbb"
+ integrity sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==
+
just-compare@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7"
diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/package.json b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/package.json
index 567086d01d..08aca60048 100644
--- a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/package.json
+++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/package.json
@@ -3,6 +3,6 @@
"name": "client-simulation-web",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2"
}
}
diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock
index 61346f2ede..ef5f89c648 100644
--- a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock
+++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock
@@ -2,186 +2,187 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.1.tgz#522fa8936c5572ffb97629a32e3c0cecab2cb20e"
- integrity sha512-0XW2QxEfL+A1Aw4kzknRuZAflHLBaA4TEiTP6rWHXTSUjuStbyfhjdOWZReK62wn7tDDAKOGS/ZGP9d3Gqt3UA==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.2.tgz#ffcbf8a9c11247bd913ea3b656af5271b0185aee"
+ integrity sha512-+HoXUWl8h6rintKh+bz9JhK7RLPP4ai5SGSBl9z0joPBG0SIABAKIdOQXSrRqw/ouL3xtOKAbu8ROOMOeEWs0g==
dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.2"
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.1.tgz#8bf6231769ebaeb72773a4c22b028ebf74cbfcfd"
- integrity sha512-o1LveBACL83sPwiTu++t276wMR9hzdcc3vTogHbZJpoDTVnfy9Uhtlt+d9GpT0e69Ox8/ftcZqzl4JXDKuklFQ==
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.2.tgz#113baea4635c63ca4722082d51444f54dad09481"
+ integrity sha512-/Z0wNC1JeyTGLiObl7JLXrFc1PG34ngBexgjjYkQzlDHPKzURaFGAPlwWHh1V/SarK8d43rfFuKM2O7SjlBYHA==
dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.1"
- "@abp/bootstrap" "~10.7.0-rc.1"
- "@abp/bootstrap-datepicker" "~10.7.0-rc.1"
- "@abp/bootstrap-daterangepicker" "~10.7.0-rc.1"
- "@abp/datatables.net-bs5" "~10.7.0-rc.1"
- "@abp/font-awesome" "~10.7.0-rc.1"
- "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.1"
- "@abp/lodash" "~10.7.0-rc.1"
- "@abp/luxon" "~10.7.0-rc.1"
- "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.1"
- "@abp/moment" "~10.7.0-rc.1"
- "@abp/select2" "~10.7.0-rc.1"
- "@abp/sweetalert2" "~10.7.0-rc.1"
- "@abp/timeago" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.1.tgz#984580897f4e557e24e52538e4b028543bb1f3f9"
- integrity sha512-GJNfb+NkVjGYRQNmuGREeFAJ7WFnuV3QXWnRRhWB/X/dPbc4BdLNUuYaWO/elA1YGU82m8sLtQk0bBLgX1sW6w==
+ "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.2"
+ "@abp/bootstrap" "~10.7.0-rc.2"
+ "@abp/bootstrap-datepicker" "~10.7.0-rc.2"
+ "@abp/bootstrap-daterangepicker" "~10.7.0-rc.2"
+ "@abp/datatables.net-bs5" "~10.7.0-rc.2"
+ "@abp/font-awesome" "~10.7.0-rc.2"
+ "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.2"
+ "@abp/lodash" "~10.7.0-rc.2"
+ "@abp/luxon" "~10.7.0-rc.2"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.2"
+ "@abp/moment" "~10.7.0-rc.2"
+ "@abp/select2" "~10.7.0-rc.2"
+ "@abp/sweetalert2" "~10.7.0-rc.2"
+ "@abp/timeago" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.2.tgz#e2970aa035e973d79d6bb56ee2ee28acb6eda8e9"
+ integrity sha512-dOYIcYkt+DsOv9rM05GM/KFJTZz1QzgysIa/rRc12Sh0v2rGGVKnFmZHaA0k4J2TMfyxSxKoQsyPX3C8hjfKxg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.1.tgz#a2b0f4c194dbe4008baeb6377deddcde57615558"
- integrity sha512-gy+Cq+w4rTCwbRKsbJvRGI5bZqd8cn0RrkPmWM5OdoKHB270fJZYv1s2GbU1hp3ELfS6LpycbNNjKMIywGCbjg==
+"@abp/bootstrap-datepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.2.tgz#0eee3cbda1b07eadd0e9cfe37bd14baf45109c4b"
+ integrity sha512-Wmp1AfYE1RrqY5c0SNzeHUwxPoGz/QOC8itLh1rGzfsVK46b/0PSITCsQWZ17iGYgJW68gNUp4jl2ku+Y6tjOQ==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.1.tgz#77bc951ab3df6c06e4f2e2b3474c2dc8fff8a9ee"
- integrity sha512-Q/BsC0LvrKTlfHCdBWAoeFYdbrkqlcNKTIQfdKYtavUsqS4fkcqt6vEe4y60kSUGzgkr9VIhN4d+e/yd9KNqTg==
+"@abp/bootstrap-daterangepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.2.tgz#4a5ad2cad1abbf8802a0627614a49e00e3e5c0da"
+ integrity sha512-voLXh2FBH24fAK1p9Q07PRvlyJAsyB+IWXp6SmyTcvH45evrahKofzyjvc6AJHn7QJ8DgXL3pC8Jyx5LXXuUtg==
dependencies:
- "@abp/moment" "~10.7.0-rc.1"
+ "@abp/moment" "~10.7.0-rc.2"
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.1.tgz#0fd48f4451527192f9e2b361bc001f0f2b710e6e"
- integrity sha512-2l5chEgpPOoGP3DSwsfnILmAeBxvA55cUoktGKGqBIo9tgQvVBZOwltLcQhEWVmZ4vmONgkBp96XwnEY9W3TKA==
+"@abp/bootstrap@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.2.tgz#f58165b7ac3af7a513e60514c3e1102c2d884684"
+ integrity sha512-s5JP80N8HR5jZVlr/hEWMfMk3QDhTLcIK7LAMDrTzlL41CaqjHiKb5stpl7xtzWZuIPEi92WCfDHIWSmqULR3g==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- "@abp/popper.js" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
+ "@abp/popper.js" "~10.7.0-rc.2"
bootstrap "^5.3.8"
-"@abp/core@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.1.tgz#40017b504c37e9b4b8e5e85823ed59768e49d93c"
- integrity sha512-aoAIRmrkHXdw06ZTxC2rF7Bj6zNSw+WHG39dC2vYQXc70MAZ78v2J4xEY/hk8+12UNdjKIVmwvqhMi2DJwSQjg==
+"@abp/core@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.2.tgz#363b875024cf665302c4199d0e7ab744e7e0bfec"
+ integrity sha512-gpnCPKzJyM8nAubZ5O/OjBKlIbP7F2qJ61VVqSPQiGzGBDk+BnQ+vosLxcjncwN9g4k6ZnAxnGgcnJCz6M/h6Q==
dependencies:
- "@abp/utils" "~10.7.0-rc.1"
+ "@abp/utils" "~10.7.0-rc.2"
-"@abp/datatables.net-bs5@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.1.tgz#e3a3d1e0bc39c80bb85db72ee23e9fd2b1a3480d"
- integrity sha512-24zyvsCA8sc/w0O7ZxxVZwtrb0+EUV5Jw/QWOLCSxkLi7c62lJQJ8FT3BueAx/AN+9fMMV8CVL23o3stWkXsEg==
+"@abp/datatables.net-bs5@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.2.tgz#bbb086344ede0f75f3c23ad81b4cce517db41f29"
+ integrity sha512-hg5XQUNfpxj/NqIjeGzolubTWbb4D/Y/Bf4DWjZvzSLhj/IxkQ8xGcEoxXLF91gRgH06cnHiZTJ3YaXW342a/g==
dependencies:
- "@abp/datatables.net" "~10.7.0-rc.1"
+ "@abp/datatables.net" "~10.7.0-rc.2"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.1.tgz#e73ebad5895ea4c095b75b2d4c934b4658547d10"
- integrity sha512-XImGEEv6zJDFOHNQKUF/sOk2MJzX5jovRRa752v9g8KCVOhUWB6mz4G/QuJ73uKqdXSS7sUZ04sqk3VGq8/9mA==
+"@abp/datatables.net@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.2.tgz#695dbb16c282202452684ba3e601781eae43e3a2"
+ integrity sha512-Rkz+PzaG0MTM5s2Bco2gpmr67I7bmSeMSdRy3+zDCKiNuRO97jFss76EA5nSW6CcatntGCOWWoXNQih45LWLWw==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.1.tgz#1c15dc1f91be572c315cdf49e0e35685d094ed23"
- integrity sha512-hRslYk5B1hC0qj0TGPyQ0KLWMpWleENamKh0ostjiXKPZdd0OG/+iKPtwX5qlz8SUY9vSm/DAtI2+cNzOK6lvQ==
+"@abp/font-awesome@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.2.tgz#4934e38a4c73eb04c9c4a4e301c71273fe3b0c90"
+ integrity sha512-Q6JgayhrIOaMvs0w9RYkp824iZiAQDKgmSoxqJDnLOml4a8UXWLGbw5ZhQFXAGkiJSKXEZ/KUXGz04D4tABuvw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-validation-unobtrusive@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.1.tgz#69a853a5d987676aaba2eeb79853cc56e5ae07b0"
- integrity sha512-apzrew9h0HSKvqZV9MTQO2pz7lagKsfRjIA4iq/0O7zhVgenLDul09OePxRUB624OifBTAgOD80mlCEXb+cjrg==
+"@abp/jquery-validation-unobtrusive@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.2.tgz#c4f4f8b5f4406bf0c693fdb0b4d72c1dc8aa2cf5"
+ integrity sha512-354+XIQJXNmsG70g72JcWxPtXAL9+yj595scP4vsPeHBXQr+QNLKjoEx7F43Mm6nFVLbedMRfpumErix18PiCg==
dependencies:
- "@abp/jquery-validation" "~10.7.0-rc.1"
+ "@abp/jquery-validation" "~10.7.0-rc.2"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.1.tgz#71b741ea5e0424c3f7ac0378ce17821718be7316"
- integrity sha512-FUcYgT7hoVGGdVqYxe3CzNQYcpCqUzpwMp5To8GJ8NA4fHyjPv/hRZlCjBXH+o0KbhCGbgKllV5/ly/UJwgUDw==
+"@abp/jquery-validation@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.2.tgz#6b1fab4cef76893a909fee51ffab7b97e907d54e"
+ integrity sha512-YtcrcmIWhNu52ssxSxJ6LuF4JU3WkhCCYJ4MT3upx4kltFxihMH5b1BDAj+s5Qb+qLi3jDn1D80IynJ5lxmnZg==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
- jquery-validation "^1.21.0"
+ "@abp/jquery" "~10.7.0-rc.2"
+ jquery-validation "^1.22.1"
-"@abp/jquery@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.1.tgz#84dc6ae11dc3e696978a4d07be95b5d96afbb74d"
- integrity sha512-fESdFdo4dfG2FrdSU1v6r3jXik9WWY3umN8OfHZSbMu7d9+eoTxpJEIDYFvFrGf4t5AQ8vhbxdmm6A+Kg5q4uw==
+"@abp/jquery@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.2.tgz#356b7e678258e95056a029558bef6d6e7bc1a3ec"
+ integrity sha512-vl6o63cW3k4VooyRgnBkrcj/krSjxoS5/EX9ZraG11QMk48Crl00isZvjcxswVUUooXTbzjRG9+Dwx3xRSvohA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- jquery "~3.7.1"
-
-"@abp/lodash@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.1.tgz#0bfbf9bee2e70f13bc46af40c8952e51e3a1ab39"
- integrity sha512-3Jo6QBl2/MjOKo2w1Q/reZ5z4zAuVYoGmNjEA+zBGOErNC/f94GdKhnjI9WkTMSBdYyaliyzx9NQBY9ZxV6Vag==
+ "@abp/core" "~10.7.0-rc.2"
+ jquery "~4.0.0"
+ jquery-migrate "~4.0.2"
+
+"@abp/lodash@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.2.tgz#40b2849fb36702652ace65c3b128e7c6b6cb0c05"
+ integrity sha512-WkxHOriKsaNHQEOKeLpTzzvbr90pbi747dldzV1T3typwZtpwL6xtqcivPVIAkfDxfdnzmsC+HiIX0mTHJA7sA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
lodash "^4.18.1"
-"@abp/luxon@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.1.tgz#038e3519dfaed24f79a4bc2c3f505bdff9f013d8"
- integrity sha512-Eb8dvWUodLxvdD00aQjUfwf08TWW4x2KcdrI388RyiXDhA9aXBG8yKCCpapY/QChkUt/V6tHAuZtHWs9g75T7A==
+"@abp/luxon@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.2.tgz#2650adc4bf32711a47a0f4c4452eead915899015"
+ integrity sha512-ReVQeloBgC0B2+O6IEwDP8joUyf/Qy2WlMFVz7VNXIylQFwr1hQ70CScKHm+mvACfIHoNSXl8EUET4XpXvhgPw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.1.tgz#c53cf649ad54a30ed10d0f949617f9f2fe74b17b"
- integrity sha512-e9EnklZy7LGJZT/nqnsgdba0LSuqjLSFy7o+FesDY574zJniE34q1dewc60eLElEW8ghY6W2ykLadfFoOtQ+mQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.2.tgz#0eae6ab79bf83158006afda892d20120c9b1b91c"
+ integrity sha512-v/gQyNEBBur2wfsU66700aFH57gS7lyMptObYOb9BTsZuRZ1WLA56JSz2EquOiYS8nvoSpqA63bs7LzHQvuiSg==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.1.tgz#c6c5c60c8e86dcb933ad59f3d2a8d64d3eda5ee2"
- integrity sha512-pMA7GO68yiLDpUxajnnQWuGPd3GegrPJDE5fTtCYK7qoVYeh8eiSeggVybrsfZSTo7BPEyb2jkfqsRcVGWgf8g==
+"@abp/moment@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.2.tgz#97f81e33c7bba19c815b26c71d5b9316b9aed268"
+ integrity sha512-Iks6nWoxUF4SVjqdAb7Ck6N/ArXGn48HeAzJvg7NCm4Kk31xSGVB598hbiezzVO0hBC9S7PBesz670P0m/2UUw==
dependencies:
moment "^2.30.1"
-"@abp/popper.js@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.1.tgz#24b02dccfbfa599cd4cca0ee15bccc6c7b61dda3"
- integrity sha512-AOxyY2m8QvcIMVGnosPJrguzR/TWfWACoEQRSPqeraNdu6yh3Z/5j6sVx0TDs0BBSsfa6EUnAavzxNvVY39T8Q==
+"@abp/popper.js@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.2.tgz#f133390b31f2572263a6d74c05fdd967c96edac1"
+ integrity sha512-CEAZ9eKBtHoigQ5P0bJR7W/4gVSrBO9RM0s0bKACb6ibZXtlRhxVudSgZ35SrGSYrRENSWSNvE5O4sDlebBx6w==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@popperjs/core" "^2.11.8"
-"@abp/select2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.1.tgz#ed88702039bbcf064d1fdf0b003c6a782a033b43"
- integrity sha512-Lz/dtUf7EzOG5bovG9WAKylmSCo2OD9W7wpW3Fs5EFQx/HStm1k+EFASFp/Y/kORcXgd6uKAqckGAqwAjoycPA==
+"@abp/select2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.2.tgz#6432cbaef11e28aad1a6e0643fcdc50ea8570b0b"
+ integrity sha512-2pDsRDfVuEznGjI39JVTDB8E4rkjjAtOu9DmFNIsg2bFkuVUCRymmNZ0jgwyJhkkZ+JmbkFCnSI5YWasl5KBwA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.1.tgz#847eb66b6b3e444ecb2c1e948f6f08e0a3494834"
- integrity sha512-iT/FcFFTLzfgKPvadJR0JLcKMHsl8hazbb1Sle1I4sb9weEQnKU1IUyYP4XxWA71m8bE8pigK7MHJOzTpddCTQ==
+"@abp/sweetalert2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.2.tgz#94cd053d0978516e713a1b323af78d1885e0973c"
+ integrity sha512-vtNUgp+mpIc91YzMv4hTHfQCNmMehE02LHoVFFx/CB+vMR35VKSNYBCuBpUfMVYBPplFVdXwFqJsPCW4zG9ulw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.1.tgz#fd8c0bc437d412288a7ed8df33b8efcee6cbc6cb"
- integrity sha512-j0Y7XDZaIt9Pya71q/LpyBInuU7Try8IgRv83lOnncWpVvQmCECfeTq4iM9kVQxe5kD81PGeSdLbzw7AapbaXA==
+"@abp/timeago@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.2.tgz#8788d21008964f1094c9a7e099b1b5777b223f4e"
+ integrity sha512-ucQqQ5gP54Ui9jBS68DR6KPmm/Yw5Up0A78FYha1sF9L7DvZKnQWId1p3RJcwZHgoI6hQgEVOntL77kKxTgDYA==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
timeago "^1.6.7"
-"@abp/utils@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.1.tgz#e727045304bec1cdb65132e0c0fcfe18337fa767"
- integrity sha512-kkqzS2Pd/+CKkxVEpYwyRs4yHye0xi4kc3Ip4TIEZXCJ+whjB9b4qKh+AuglKGwz3RvnFvB+QxQhluUHu0oyaA==
+"@abp/utils@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.2.tgz#671c3bc01d9b5e51aaaf50b96d4014f044a443a0"
+ integrity sha512-7Y6tCsphuOBZw7cPt04WFLRnhk89dt94BkGpt9B40wEl3oT7VuH6+xajYSAxVp9REzNJ0Zfu64780Eq2SyAA3g==
dependencies:
just-compare "^2.3.0"
@@ -235,6 +236,11 @@ datatables.net@2.3.4, datatables.net@^2.3.4:
dependencies:
jquery ">=1.7"
+jquery-migrate@~4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/jquery-migrate/-/jquery-migrate-4.0.2.tgz#d296a64e05073017c54877462ac563f1927ee21f"
+ integrity sha512-J15ilpECoAsObLv2robklj0qf1qt9QCnZwwNcJAXkM7dIiOgcac2dqC3HgDtUF0fmRwKZa/ggTkxTj9S4Vk+HQ==
+
jquery-mousewheel@>=3.0.6:
version "3.1.13"
resolved "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz#06f0335f16e353a695e7206bf50503cb523a6ee5"
@@ -248,21 +254,31 @@ jquery-validation-unobtrusive@^4.0.0:
jquery "^3.6.0"
jquery-validation ">=1.19"
-jquery-validation@>=1.19, jquery-validation@^1.21.0:
+jquery-validation@>=1.19:
version "1.21.0"
resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.21.0.tgz#78fc05ab76020912a246af3661b3f54a438bca93"
integrity sha512-xNot0rlUIgu7duMcQ5qb6MGkGL/Z1PQaRJQoZAURW9+a/2PGOUxY36o/WyNeP2T9R6jvWB8Z9lUVvvQWI/Zs5w==
+jquery-validation@^1.22.1:
+ version "1.22.1"
+ resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.22.1.tgz#fc1ae3256110332c929245a44d69ee76fee0e481"
+ integrity sha512-ePLXLWK7Rh5eR652YsuIu7YPeGlCXrsJUteVw5iZopiU17yaMd3FaDggs6yyNMl56p8TYVeDRmKGK3fPZrMeQw==
+
jquery@>=1.10, "jquery@>=1.5.0 <4.0", jquery@>=1.7:
version "3.6.4"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.4.tgz#ba065c188142100be4833699852bf7c24dc0252f"
integrity sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ==
-"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0, jquery@~3.7.1:
+"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0:
version "3.7.1"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.1.tgz#083ef98927c9a6a74d05a6af02806566d16274de"
integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==
+jquery@~4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/jquery/-/jquery-4.0.0.tgz#95c33ac29005ff72ec444c5ba1cf457e61404fbb"
+ integrity sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==
+
just-compare@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7"
diff --git a/modules/cms-kit/angular/package.json b/modules/cms-kit/angular/package.json
index 5e28af9879..76f41d8955 100644
--- a/modules/cms-kit/angular/package.json
+++ b/modules/cms-kit/angular/package.json
@@ -15,11 +15,11 @@
},
"private": true,
"dependencies": {
- "@abp/ng.account": "~10.6.0",
- "@abp/ng.identity": "~10.6.0",
- "@abp/ng.setting-management": "~10.7.0-rc.1",
- "@abp/ng.tenant-management": "~10.7.0-rc.1",
- "@abp/ng.theme.basic": "~10.7.0-rc.1",
+ "@abp/ng.account": "~10.7.0-rc.1",
+ "@abp/ng.identity": "~10.7.0-rc.2",
+ "@abp/ng.setting-management": "~10.7.0-rc.2",
+ "@abp/ng.tenant-management": "~10.7.0-rc.2",
+ "@abp/ng.theme.basic": "~10.7.0-rc.2",
"@angular/animations": "~10.0.0",
"@angular/common": "~10.0.0",
"@angular/compiler": "~10.0.0",
diff --git a/modules/cms-kit/angular/projects/cms-kit/package.json b/modules/cms-kit/angular/projects/cms-kit/package.json
index 31ab00fe1b..3ed72c4f43 100644
--- a/modules/cms-kit/angular/projects/cms-kit/package.json
+++ b/modules/cms-kit/angular/projects/cms-kit/package.json
@@ -4,8 +4,8 @@
"peerDependencies": {
"@angular/common": "^9.1.11",
"@angular/core": "^9.1.11",
- "@abp/ng.core": ">=10.7.0-rc.1",
- "@abp/ng.theme.shared": ">=10.7.0-rc.1"
+ "@abp/ng.core": ">=10.7.0-rc.2",
+ "@abp/ng.theme.shared": ">=10.7.0-rc.2"
},
"dependencies": {
"tslib": "^2.0.0"
diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/package.json b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/package.json
index 6661f60968..bbc259b506 100644
--- a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/package.json
+++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/package.json
@@ -3,6 +3,6 @@
"name": "my-app-identityserver",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2"
}
}
diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock
index 61346f2ede..ef5f89c648 100644
--- a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock
+++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock
@@ -2,186 +2,187 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.1.tgz#522fa8936c5572ffb97629a32e3c0cecab2cb20e"
- integrity sha512-0XW2QxEfL+A1Aw4kzknRuZAflHLBaA4TEiTP6rWHXTSUjuStbyfhjdOWZReK62wn7tDDAKOGS/ZGP9d3Gqt3UA==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.2.tgz#ffcbf8a9c11247bd913ea3b656af5271b0185aee"
+ integrity sha512-+HoXUWl8h6rintKh+bz9JhK7RLPP4ai5SGSBl9z0joPBG0SIABAKIdOQXSrRqw/ouL3xtOKAbu8ROOMOeEWs0g==
dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.2"
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.1.tgz#8bf6231769ebaeb72773a4c22b028ebf74cbfcfd"
- integrity sha512-o1LveBACL83sPwiTu++t276wMR9hzdcc3vTogHbZJpoDTVnfy9Uhtlt+d9GpT0e69Ox8/ftcZqzl4JXDKuklFQ==
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.2.tgz#113baea4635c63ca4722082d51444f54dad09481"
+ integrity sha512-/Z0wNC1JeyTGLiObl7JLXrFc1PG34ngBexgjjYkQzlDHPKzURaFGAPlwWHh1V/SarK8d43rfFuKM2O7SjlBYHA==
dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.1"
- "@abp/bootstrap" "~10.7.0-rc.1"
- "@abp/bootstrap-datepicker" "~10.7.0-rc.1"
- "@abp/bootstrap-daterangepicker" "~10.7.0-rc.1"
- "@abp/datatables.net-bs5" "~10.7.0-rc.1"
- "@abp/font-awesome" "~10.7.0-rc.1"
- "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.1"
- "@abp/lodash" "~10.7.0-rc.1"
- "@abp/luxon" "~10.7.0-rc.1"
- "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.1"
- "@abp/moment" "~10.7.0-rc.1"
- "@abp/select2" "~10.7.0-rc.1"
- "@abp/sweetalert2" "~10.7.0-rc.1"
- "@abp/timeago" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.1.tgz#984580897f4e557e24e52538e4b028543bb1f3f9"
- integrity sha512-GJNfb+NkVjGYRQNmuGREeFAJ7WFnuV3QXWnRRhWB/X/dPbc4BdLNUuYaWO/elA1YGU82m8sLtQk0bBLgX1sW6w==
+ "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.2"
+ "@abp/bootstrap" "~10.7.0-rc.2"
+ "@abp/bootstrap-datepicker" "~10.7.0-rc.2"
+ "@abp/bootstrap-daterangepicker" "~10.7.0-rc.2"
+ "@abp/datatables.net-bs5" "~10.7.0-rc.2"
+ "@abp/font-awesome" "~10.7.0-rc.2"
+ "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.2"
+ "@abp/lodash" "~10.7.0-rc.2"
+ "@abp/luxon" "~10.7.0-rc.2"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.2"
+ "@abp/moment" "~10.7.0-rc.2"
+ "@abp/select2" "~10.7.0-rc.2"
+ "@abp/sweetalert2" "~10.7.0-rc.2"
+ "@abp/timeago" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.2.tgz#e2970aa035e973d79d6bb56ee2ee28acb6eda8e9"
+ integrity sha512-dOYIcYkt+DsOv9rM05GM/KFJTZz1QzgysIa/rRc12Sh0v2rGGVKnFmZHaA0k4J2TMfyxSxKoQsyPX3C8hjfKxg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.1.tgz#a2b0f4c194dbe4008baeb6377deddcde57615558"
- integrity sha512-gy+Cq+w4rTCwbRKsbJvRGI5bZqd8cn0RrkPmWM5OdoKHB270fJZYv1s2GbU1hp3ELfS6LpycbNNjKMIywGCbjg==
+"@abp/bootstrap-datepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.2.tgz#0eee3cbda1b07eadd0e9cfe37bd14baf45109c4b"
+ integrity sha512-Wmp1AfYE1RrqY5c0SNzeHUwxPoGz/QOC8itLh1rGzfsVK46b/0PSITCsQWZ17iGYgJW68gNUp4jl2ku+Y6tjOQ==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.1.tgz#77bc951ab3df6c06e4f2e2b3474c2dc8fff8a9ee"
- integrity sha512-Q/BsC0LvrKTlfHCdBWAoeFYdbrkqlcNKTIQfdKYtavUsqS4fkcqt6vEe4y60kSUGzgkr9VIhN4d+e/yd9KNqTg==
+"@abp/bootstrap-daterangepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.2.tgz#4a5ad2cad1abbf8802a0627614a49e00e3e5c0da"
+ integrity sha512-voLXh2FBH24fAK1p9Q07PRvlyJAsyB+IWXp6SmyTcvH45evrahKofzyjvc6AJHn7QJ8DgXL3pC8Jyx5LXXuUtg==
dependencies:
- "@abp/moment" "~10.7.0-rc.1"
+ "@abp/moment" "~10.7.0-rc.2"
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.1.tgz#0fd48f4451527192f9e2b361bc001f0f2b710e6e"
- integrity sha512-2l5chEgpPOoGP3DSwsfnILmAeBxvA55cUoktGKGqBIo9tgQvVBZOwltLcQhEWVmZ4vmONgkBp96XwnEY9W3TKA==
+"@abp/bootstrap@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.2.tgz#f58165b7ac3af7a513e60514c3e1102c2d884684"
+ integrity sha512-s5JP80N8HR5jZVlr/hEWMfMk3QDhTLcIK7LAMDrTzlL41CaqjHiKb5stpl7xtzWZuIPEi92WCfDHIWSmqULR3g==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- "@abp/popper.js" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
+ "@abp/popper.js" "~10.7.0-rc.2"
bootstrap "^5.3.8"
-"@abp/core@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.1.tgz#40017b504c37e9b4b8e5e85823ed59768e49d93c"
- integrity sha512-aoAIRmrkHXdw06ZTxC2rF7Bj6zNSw+WHG39dC2vYQXc70MAZ78v2J4xEY/hk8+12UNdjKIVmwvqhMi2DJwSQjg==
+"@abp/core@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.2.tgz#363b875024cf665302c4199d0e7ab744e7e0bfec"
+ integrity sha512-gpnCPKzJyM8nAubZ5O/OjBKlIbP7F2qJ61VVqSPQiGzGBDk+BnQ+vosLxcjncwN9g4k6ZnAxnGgcnJCz6M/h6Q==
dependencies:
- "@abp/utils" "~10.7.0-rc.1"
+ "@abp/utils" "~10.7.0-rc.2"
-"@abp/datatables.net-bs5@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.1.tgz#e3a3d1e0bc39c80bb85db72ee23e9fd2b1a3480d"
- integrity sha512-24zyvsCA8sc/w0O7ZxxVZwtrb0+EUV5Jw/QWOLCSxkLi7c62lJQJ8FT3BueAx/AN+9fMMV8CVL23o3stWkXsEg==
+"@abp/datatables.net-bs5@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.2.tgz#bbb086344ede0f75f3c23ad81b4cce517db41f29"
+ integrity sha512-hg5XQUNfpxj/NqIjeGzolubTWbb4D/Y/Bf4DWjZvzSLhj/IxkQ8xGcEoxXLF91gRgH06cnHiZTJ3YaXW342a/g==
dependencies:
- "@abp/datatables.net" "~10.7.0-rc.1"
+ "@abp/datatables.net" "~10.7.0-rc.2"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.1.tgz#e73ebad5895ea4c095b75b2d4c934b4658547d10"
- integrity sha512-XImGEEv6zJDFOHNQKUF/sOk2MJzX5jovRRa752v9g8KCVOhUWB6mz4G/QuJ73uKqdXSS7sUZ04sqk3VGq8/9mA==
+"@abp/datatables.net@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.2.tgz#695dbb16c282202452684ba3e601781eae43e3a2"
+ integrity sha512-Rkz+PzaG0MTM5s2Bco2gpmr67I7bmSeMSdRy3+zDCKiNuRO97jFss76EA5nSW6CcatntGCOWWoXNQih45LWLWw==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.1.tgz#1c15dc1f91be572c315cdf49e0e35685d094ed23"
- integrity sha512-hRslYk5B1hC0qj0TGPyQ0KLWMpWleENamKh0ostjiXKPZdd0OG/+iKPtwX5qlz8SUY9vSm/DAtI2+cNzOK6lvQ==
+"@abp/font-awesome@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.2.tgz#4934e38a4c73eb04c9c4a4e301c71273fe3b0c90"
+ integrity sha512-Q6JgayhrIOaMvs0w9RYkp824iZiAQDKgmSoxqJDnLOml4a8UXWLGbw5ZhQFXAGkiJSKXEZ/KUXGz04D4tABuvw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-validation-unobtrusive@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.1.tgz#69a853a5d987676aaba2eeb79853cc56e5ae07b0"
- integrity sha512-apzrew9h0HSKvqZV9MTQO2pz7lagKsfRjIA4iq/0O7zhVgenLDul09OePxRUB624OifBTAgOD80mlCEXb+cjrg==
+"@abp/jquery-validation-unobtrusive@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.2.tgz#c4f4f8b5f4406bf0c693fdb0b4d72c1dc8aa2cf5"
+ integrity sha512-354+XIQJXNmsG70g72JcWxPtXAL9+yj595scP4vsPeHBXQr+QNLKjoEx7F43Mm6nFVLbedMRfpumErix18PiCg==
dependencies:
- "@abp/jquery-validation" "~10.7.0-rc.1"
+ "@abp/jquery-validation" "~10.7.0-rc.2"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.1.tgz#71b741ea5e0424c3f7ac0378ce17821718be7316"
- integrity sha512-FUcYgT7hoVGGdVqYxe3CzNQYcpCqUzpwMp5To8GJ8NA4fHyjPv/hRZlCjBXH+o0KbhCGbgKllV5/ly/UJwgUDw==
+"@abp/jquery-validation@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.2.tgz#6b1fab4cef76893a909fee51ffab7b97e907d54e"
+ integrity sha512-YtcrcmIWhNu52ssxSxJ6LuF4JU3WkhCCYJ4MT3upx4kltFxihMH5b1BDAj+s5Qb+qLi3jDn1D80IynJ5lxmnZg==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
- jquery-validation "^1.21.0"
+ "@abp/jquery" "~10.7.0-rc.2"
+ jquery-validation "^1.22.1"
-"@abp/jquery@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.1.tgz#84dc6ae11dc3e696978a4d07be95b5d96afbb74d"
- integrity sha512-fESdFdo4dfG2FrdSU1v6r3jXik9WWY3umN8OfHZSbMu7d9+eoTxpJEIDYFvFrGf4t5AQ8vhbxdmm6A+Kg5q4uw==
+"@abp/jquery@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.2.tgz#356b7e678258e95056a029558bef6d6e7bc1a3ec"
+ integrity sha512-vl6o63cW3k4VooyRgnBkrcj/krSjxoS5/EX9ZraG11QMk48Crl00isZvjcxswVUUooXTbzjRG9+Dwx3xRSvohA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- jquery "~3.7.1"
-
-"@abp/lodash@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.1.tgz#0bfbf9bee2e70f13bc46af40c8952e51e3a1ab39"
- integrity sha512-3Jo6QBl2/MjOKo2w1Q/reZ5z4zAuVYoGmNjEA+zBGOErNC/f94GdKhnjI9WkTMSBdYyaliyzx9NQBY9ZxV6Vag==
+ "@abp/core" "~10.7.0-rc.2"
+ jquery "~4.0.0"
+ jquery-migrate "~4.0.2"
+
+"@abp/lodash@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.2.tgz#40b2849fb36702652ace65c3b128e7c6b6cb0c05"
+ integrity sha512-WkxHOriKsaNHQEOKeLpTzzvbr90pbi747dldzV1T3typwZtpwL6xtqcivPVIAkfDxfdnzmsC+HiIX0mTHJA7sA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
lodash "^4.18.1"
-"@abp/luxon@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.1.tgz#038e3519dfaed24f79a4bc2c3f505bdff9f013d8"
- integrity sha512-Eb8dvWUodLxvdD00aQjUfwf08TWW4x2KcdrI388RyiXDhA9aXBG8yKCCpapY/QChkUt/V6tHAuZtHWs9g75T7A==
+"@abp/luxon@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.2.tgz#2650adc4bf32711a47a0f4c4452eead915899015"
+ integrity sha512-ReVQeloBgC0B2+O6IEwDP8joUyf/Qy2WlMFVz7VNXIylQFwr1hQ70CScKHm+mvACfIHoNSXl8EUET4XpXvhgPw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.1.tgz#c53cf649ad54a30ed10d0f949617f9f2fe74b17b"
- integrity sha512-e9EnklZy7LGJZT/nqnsgdba0LSuqjLSFy7o+FesDY574zJniE34q1dewc60eLElEW8ghY6W2ykLadfFoOtQ+mQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.2.tgz#0eae6ab79bf83158006afda892d20120c9b1b91c"
+ integrity sha512-v/gQyNEBBur2wfsU66700aFH57gS7lyMptObYOb9BTsZuRZ1WLA56JSz2EquOiYS8nvoSpqA63bs7LzHQvuiSg==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.1.tgz#c6c5c60c8e86dcb933ad59f3d2a8d64d3eda5ee2"
- integrity sha512-pMA7GO68yiLDpUxajnnQWuGPd3GegrPJDE5fTtCYK7qoVYeh8eiSeggVybrsfZSTo7BPEyb2jkfqsRcVGWgf8g==
+"@abp/moment@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.2.tgz#97f81e33c7bba19c815b26c71d5b9316b9aed268"
+ integrity sha512-Iks6nWoxUF4SVjqdAb7Ck6N/ArXGn48HeAzJvg7NCm4Kk31xSGVB598hbiezzVO0hBC9S7PBesz670P0m/2UUw==
dependencies:
moment "^2.30.1"
-"@abp/popper.js@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.1.tgz#24b02dccfbfa599cd4cca0ee15bccc6c7b61dda3"
- integrity sha512-AOxyY2m8QvcIMVGnosPJrguzR/TWfWACoEQRSPqeraNdu6yh3Z/5j6sVx0TDs0BBSsfa6EUnAavzxNvVY39T8Q==
+"@abp/popper.js@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.2.tgz#f133390b31f2572263a6d74c05fdd967c96edac1"
+ integrity sha512-CEAZ9eKBtHoigQ5P0bJR7W/4gVSrBO9RM0s0bKACb6ibZXtlRhxVudSgZ35SrGSYrRENSWSNvE5O4sDlebBx6w==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@popperjs/core" "^2.11.8"
-"@abp/select2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.1.tgz#ed88702039bbcf064d1fdf0b003c6a782a033b43"
- integrity sha512-Lz/dtUf7EzOG5bovG9WAKylmSCo2OD9W7wpW3Fs5EFQx/HStm1k+EFASFp/Y/kORcXgd6uKAqckGAqwAjoycPA==
+"@abp/select2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.2.tgz#6432cbaef11e28aad1a6e0643fcdc50ea8570b0b"
+ integrity sha512-2pDsRDfVuEznGjI39JVTDB8E4rkjjAtOu9DmFNIsg2bFkuVUCRymmNZ0jgwyJhkkZ+JmbkFCnSI5YWasl5KBwA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.1.tgz#847eb66b6b3e444ecb2c1e948f6f08e0a3494834"
- integrity sha512-iT/FcFFTLzfgKPvadJR0JLcKMHsl8hazbb1Sle1I4sb9weEQnKU1IUyYP4XxWA71m8bE8pigK7MHJOzTpddCTQ==
+"@abp/sweetalert2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.2.tgz#94cd053d0978516e713a1b323af78d1885e0973c"
+ integrity sha512-vtNUgp+mpIc91YzMv4hTHfQCNmMehE02LHoVFFx/CB+vMR35VKSNYBCuBpUfMVYBPplFVdXwFqJsPCW4zG9ulw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.1.tgz#fd8c0bc437d412288a7ed8df33b8efcee6cbc6cb"
- integrity sha512-j0Y7XDZaIt9Pya71q/LpyBInuU7Try8IgRv83lOnncWpVvQmCECfeTq4iM9kVQxe5kD81PGeSdLbzw7AapbaXA==
+"@abp/timeago@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.2.tgz#8788d21008964f1094c9a7e099b1b5777b223f4e"
+ integrity sha512-ucQqQ5gP54Ui9jBS68DR6KPmm/Yw5Up0A78FYha1sF9L7DvZKnQWId1p3RJcwZHgoI6hQgEVOntL77kKxTgDYA==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
timeago "^1.6.7"
-"@abp/utils@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.1.tgz#e727045304bec1cdb65132e0c0fcfe18337fa767"
- integrity sha512-kkqzS2Pd/+CKkxVEpYwyRs4yHye0xi4kc3Ip4TIEZXCJ+whjB9b4qKh+AuglKGwz3RvnFvB+QxQhluUHu0oyaA==
+"@abp/utils@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.2.tgz#671c3bc01d9b5e51aaaf50b96d4014f044a443a0"
+ integrity sha512-7Y6tCsphuOBZw7cPt04WFLRnhk89dt94BkGpt9B40wEl3oT7VuH6+xajYSAxVp9REzNJ0Zfu64780Eq2SyAA3g==
dependencies:
just-compare "^2.3.0"
@@ -235,6 +236,11 @@ datatables.net@2.3.4, datatables.net@^2.3.4:
dependencies:
jquery ">=1.7"
+jquery-migrate@~4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/jquery-migrate/-/jquery-migrate-4.0.2.tgz#d296a64e05073017c54877462ac563f1927ee21f"
+ integrity sha512-J15ilpECoAsObLv2robklj0qf1qt9QCnZwwNcJAXkM7dIiOgcac2dqC3HgDtUF0fmRwKZa/ggTkxTj9S4Vk+HQ==
+
jquery-mousewheel@>=3.0.6:
version "3.1.13"
resolved "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz#06f0335f16e353a695e7206bf50503cb523a6ee5"
@@ -248,21 +254,31 @@ jquery-validation-unobtrusive@^4.0.0:
jquery "^3.6.0"
jquery-validation ">=1.19"
-jquery-validation@>=1.19, jquery-validation@^1.21.0:
+jquery-validation@>=1.19:
version "1.21.0"
resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.21.0.tgz#78fc05ab76020912a246af3661b3f54a438bca93"
integrity sha512-xNot0rlUIgu7duMcQ5qb6MGkGL/Z1PQaRJQoZAURW9+a/2PGOUxY36o/WyNeP2T9R6jvWB8Z9lUVvvQWI/Zs5w==
+jquery-validation@^1.22.1:
+ version "1.22.1"
+ resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.22.1.tgz#fc1ae3256110332c929245a44d69ee76fee0e481"
+ integrity sha512-ePLXLWK7Rh5eR652YsuIu7YPeGlCXrsJUteVw5iZopiU17yaMd3FaDggs6yyNMl56p8TYVeDRmKGK3fPZrMeQw==
+
jquery@>=1.10, "jquery@>=1.5.0 <4.0", jquery@>=1.7:
version "3.6.4"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.4.tgz#ba065c188142100be4833699852bf7c24dc0252f"
integrity sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ==
-"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0, jquery@~3.7.1:
+"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0:
version "3.7.1"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.1.tgz#083ef98927c9a6a74d05a6af02806566d16274de"
integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==
+jquery@~4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/jquery/-/jquery-4.0.0.tgz#95c33ac29005ff72ec444c5ba1cf457e61404fbb"
+ integrity sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==
+
just-compare@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7"
diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Host/package.json b/modules/cms-kit/host/Volo.CmsKit.Web.Host/package.json
index a972f58c1c..36ad42397a 100644
--- a/modules/cms-kit/host/Volo.CmsKit.Web.Host/package.json
+++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2"
}
}
diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock b/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock
index 61346f2ede..ef5f89c648 100644
--- a/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock
+++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock
@@ -2,186 +2,187 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.1.tgz#522fa8936c5572ffb97629a32e3c0cecab2cb20e"
- integrity sha512-0XW2QxEfL+A1Aw4kzknRuZAflHLBaA4TEiTP6rWHXTSUjuStbyfhjdOWZReK62wn7tDDAKOGS/ZGP9d3Gqt3UA==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.2.tgz#ffcbf8a9c11247bd913ea3b656af5271b0185aee"
+ integrity sha512-+HoXUWl8h6rintKh+bz9JhK7RLPP4ai5SGSBl9z0joPBG0SIABAKIdOQXSrRqw/ouL3xtOKAbu8ROOMOeEWs0g==
dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.2"
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.1.tgz#8bf6231769ebaeb72773a4c22b028ebf74cbfcfd"
- integrity sha512-o1LveBACL83sPwiTu++t276wMR9hzdcc3vTogHbZJpoDTVnfy9Uhtlt+d9GpT0e69Ox8/ftcZqzl4JXDKuklFQ==
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.2.tgz#113baea4635c63ca4722082d51444f54dad09481"
+ integrity sha512-/Z0wNC1JeyTGLiObl7JLXrFc1PG34ngBexgjjYkQzlDHPKzURaFGAPlwWHh1V/SarK8d43rfFuKM2O7SjlBYHA==
dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.1"
- "@abp/bootstrap" "~10.7.0-rc.1"
- "@abp/bootstrap-datepicker" "~10.7.0-rc.1"
- "@abp/bootstrap-daterangepicker" "~10.7.0-rc.1"
- "@abp/datatables.net-bs5" "~10.7.0-rc.1"
- "@abp/font-awesome" "~10.7.0-rc.1"
- "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.1"
- "@abp/lodash" "~10.7.0-rc.1"
- "@abp/luxon" "~10.7.0-rc.1"
- "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.1"
- "@abp/moment" "~10.7.0-rc.1"
- "@abp/select2" "~10.7.0-rc.1"
- "@abp/sweetalert2" "~10.7.0-rc.1"
- "@abp/timeago" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.1.tgz#984580897f4e557e24e52538e4b028543bb1f3f9"
- integrity sha512-GJNfb+NkVjGYRQNmuGREeFAJ7WFnuV3QXWnRRhWB/X/dPbc4BdLNUuYaWO/elA1YGU82m8sLtQk0bBLgX1sW6w==
+ "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.2"
+ "@abp/bootstrap" "~10.7.0-rc.2"
+ "@abp/bootstrap-datepicker" "~10.7.0-rc.2"
+ "@abp/bootstrap-daterangepicker" "~10.7.0-rc.2"
+ "@abp/datatables.net-bs5" "~10.7.0-rc.2"
+ "@abp/font-awesome" "~10.7.0-rc.2"
+ "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.2"
+ "@abp/lodash" "~10.7.0-rc.2"
+ "@abp/luxon" "~10.7.0-rc.2"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.2"
+ "@abp/moment" "~10.7.0-rc.2"
+ "@abp/select2" "~10.7.0-rc.2"
+ "@abp/sweetalert2" "~10.7.0-rc.2"
+ "@abp/timeago" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.2.tgz#e2970aa035e973d79d6bb56ee2ee28acb6eda8e9"
+ integrity sha512-dOYIcYkt+DsOv9rM05GM/KFJTZz1QzgysIa/rRc12Sh0v2rGGVKnFmZHaA0k4J2TMfyxSxKoQsyPX3C8hjfKxg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.1.tgz#a2b0f4c194dbe4008baeb6377deddcde57615558"
- integrity sha512-gy+Cq+w4rTCwbRKsbJvRGI5bZqd8cn0RrkPmWM5OdoKHB270fJZYv1s2GbU1hp3ELfS6LpycbNNjKMIywGCbjg==
+"@abp/bootstrap-datepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.2.tgz#0eee3cbda1b07eadd0e9cfe37bd14baf45109c4b"
+ integrity sha512-Wmp1AfYE1RrqY5c0SNzeHUwxPoGz/QOC8itLh1rGzfsVK46b/0PSITCsQWZ17iGYgJW68gNUp4jl2ku+Y6tjOQ==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.1.tgz#77bc951ab3df6c06e4f2e2b3474c2dc8fff8a9ee"
- integrity sha512-Q/BsC0LvrKTlfHCdBWAoeFYdbrkqlcNKTIQfdKYtavUsqS4fkcqt6vEe4y60kSUGzgkr9VIhN4d+e/yd9KNqTg==
+"@abp/bootstrap-daterangepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.2.tgz#4a5ad2cad1abbf8802a0627614a49e00e3e5c0da"
+ integrity sha512-voLXh2FBH24fAK1p9Q07PRvlyJAsyB+IWXp6SmyTcvH45evrahKofzyjvc6AJHn7QJ8DgXL3pC8Jyx5LXXuUtg==
dependencies:
- "@abp/moment" "~10.7.0-rc.1"
+ "@abp/moment" "~10.7.0-rc.2"
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.1.tgz#0fd48f4451527192f9e2b361bc001f0f2b710e6e"
- integrity sha512-2l5chEgpPOoGP3DSwsfnILmAeBxvA55cUoktGKGqBIo9tgQvVBZOwltLcQhEWVmZ4vmONgkBp96XwnEY9W3TKA==
+"@abp/bootstrap@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.2.tgz#f58165b7ac3af7a513e60514c3e1102c2d884684"
+ integrity sha512-s5JP80N8HR5jZVlr/hEWMfMk3QDhTLcIK7LAMDrTzlL41CaqjHiKb5stpl7xtzWZuIPEi92WCfDHIWSmqULR3g==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- "@abp/popper.js" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
+ "@abp/popper.js" "~10.7.0-rc.2"
bootstrap "^5.3.8"
-"@abp/core@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.1.tgz#40017b504c37e9b4b8e5e85823ed59768e49d93c"
- integrity sha512-aoAIRmrkHXdw06ZTxC2rF7Bj6zNSw+WHG39dC2vYQXc70MAZ78v2J4xEY/hk8+12UNdjKIVmwvqhMi2DJwSQjg==
+"@abp/core@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.2.tgz#363b875024cf665302c4199d0e7ab744e7e0bfec"
+ integrity sha512-gpnCPKzJyM8nAubZ5O/OjBKlIbP7F2qJ61VVqSPQiGzGBDk+BnQ+vosLxcjncwN9g4k6ZnAxnGgcnJCz6M/h6Q==
dependencies:
- "@abp/utils" "~10.7.0-rc.1"
+ "@abp/utils" "~10.7.0-rc.2"
-"@abp/datatables.net-bs5@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.1.tgz#e3a3d1e0bc39c80bb85db72ee23e9fd2b1a3480d"
- integrity sha512-24zyvsCA8sc/w0O7ZxxVZwtrb0+EUV5Jw/QWOLCSxkLi7c62lJQJ8FT3BueAx/AN+9fMMV8CVL23o3stWkXsEg==
+"@abp/datatables.net-bs5@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.2.tgz#bbb086344ede0f75f3c23ad81b4cce517db41f29"
+ integrity sha512-hg5XQUNfpxj/NqIjeGzolubTWbb4D/Y/Bf4DWjZvzSLhj/IxkQ8xGcEoxXLF91gRgH06cnHiZTJ3YaXW342a/g==
dependencies:
- "@abp/datatables.net" "~10.7.0-rc.1"
+ "@abp/datatables.net" "~10.7.0-rc.2"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.1.tgz#e73ebad5895ea4c095b75b2d4c934b4658547d10"
- integrity sha512-XImGEEv6zJDFOHNQKUF/sOk2MJzX5jovRRa752v9g8KCVOhUWB6mz4G/QuJ73uKqdXSS7sUZ04sqk3VGq8/9mA==
+"@abp/datatables.net@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.2.tgz#695dbb16c282202452684ba3e601781eae43e3a2"
+ integrity sha512-Rkz+PzaG0MTM5s2Bco2gpmr67I7bmSeMSdRy3+zDCKiNuRO97jFss76EA5nSW6CcatntGCOWWoXNQih45LWLWw==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.1.tgz#1c15dc1f91be572c315cdf49e0e35685d094ed23"
- integrity sha512-hRslYk5B1hC0qj0TGPyQ0KLWMpWleENamKh0ostjiXKPZdd0OG/+iKPtwX5qlz8SUY9vSm/DAtI2+cNzOK6lvQ==
+"@abp/font-awesome@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.2.tgz#4934e38a4c73eb04c9c4a4e301c71273fe3b0c90"
+ integrity sha512-Q6JgayhrIOaMvs0w9RYkp824iZiAQDKgmSoxqJDnLOml4a8UXWLGbw5ZhQFXAGkiJSKXEZ/KUXGz04D4tABuvw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-validation-unobtrusive@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.1.tgz#69a853a5d987676aaba2eeb79853cc56e5ae07b0"
- integrity sha512-apzrew9h0HSKvqZV9MTQO2pz7lagKsfRjIA4iq/0O7zhVgenLDul09OePxRUB624OifBTAgOD80mlCEXb+cjrg==
+"@abp/jquery-validation-unobtrusive@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.2.tgz#c4f4f8b5f4406bf0c693fdb0b4d72c1dc8aa2cf5"
+ integrity sha512-354+XIQJXNmsG70g72JcWxPtXAL9+yj595scP4vsPeHBXQr+QNLKjoEx7F43Mm6nFVLbedMRfpumErix18PiCg==
dependencies:
- "@abp/jquery-validation" "~10.7.0-rc.1"
+ "@abp/jquery-validation" "~10.7.0-rc.2"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.1.tgz#71b741ea5e0424c3f7ac0378ce17821718be7316"
- integrity sha512-FUcYgT7hoVGGdVqYxe3CzNQYcpCqUzpwMp5To8GJ8NA4fHyjPv/hRZlCjBXH+o0KbhCGbgKllV5/ly/UJwgUDw==
+"@abp/jquery-validation@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.2.tgz#6b1fab4cef76893a909fee51ffab7b97e907d54e"
+ integrity sha512-YtcrcmIWhNu52ssxSxJ6LuF4JU3WkhCCYJ4MT3upx4kltFxihMH5b1BDAj+s5Qb+qLi3jDn1D80IynJ5lxmnZg==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
- jquery-validation "^1.21.0"
+ "@abp/jquery" "~10.7.0-rc.2"
+ jquery-validation "^1.22.1"
-"@abp/jquery@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.1.tgz#84dc6ae11dc3e696978a4d07be95b5d96afbb74d"
- integrity sha512-fESdFdo4dfG2FrdSU1v6r3jXik9WWY3umN8OfHZSbMu7d9+eoTxpJEIDYFvFrGf4t5AQ8vhbxdmm6A+Kg5q4uw==
+"@abp/jquery@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.2.tgz#356b7e678258e95056a029558bef6d6e7bc1a3ec"
+ integrity sha512-vl6o63cW3k4VooyRgnBkrcj/krSjxoS5/EX9ZraG11QMk48Crl00isZvjcxswVUUooXTbzjRG9+Dwx3xRSvohA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- jquery "~3.7.1"
-
-"@abp/lodash@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.1.tgz#0bfbf9bee2e70f13bc46af40c8952e51e3a1ab39"
- integrity sha512-3Jo6QBl2/MjOKo2w1Q/reZ5z4zAuVYoGmNjEA+zBGOErNC/f94GdKhnjI9WkTMSBdYyaliyzx9NQBY9ZxV6Vag==
+ "@abp/core" "~10.7.0-rc.2"
+ jquery "~4.0.0"
+ jquery-migrate "~4.0.2"
+
+"@abp/lodash@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.2.tgz#40b2849fb36702652ace65c3b128e7c6b6cb0c05"
+ integrity sha512-WkxHOriKsaNHQEOKeLpTzzvbr90pbi747dldzV1T3typwZtpwL6xtqcivPVIAkfDxfdnzmsC+HiIX0mTHJA7sA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
lodash "^4.18.1"
-"@abp/luxon@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.1.tgz#038e3519dfaed24f79a4bc2c3f505bdff9f013d8"
- integrity sha512-Eb8dvWUodLxvdD00aQjUfwf08TWW4x2KcdrI388RyiXDhA9aXBG8yKCCpapY/QChkUt/V6tHAuZtHWs9g75T7A==
+"@abp/luxon@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.2.tgz#2650adc4bf32711a47a0f4c4452eead915899015"
+ integrity sha512-ReVQeloBgC0B2+O6IEwDP8joUyf/Qy2WlMFVz7VNXIylQFwr1hQ70CScKHm+mvACfIHoNSXl8EUET4XpXvhgPw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.1.tgz#c53cf649ad54a30ed10d0f949617f9f2fe74b17b"
- integrity sha512-e9EnklZy7LGJZT/nqnsgdba0LSuqjLSFy7o+FesDY574zJniE34q1dewc60eLElEW8ghY6W2ykLadfFoOtQ+mQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.2.tgz#0eae6ab79bf83158006afda892d20120c9b1b91c"
+ integrity sha512-v/gQyNEBBur2wfsU66700aFH57gS7lyMptObYOb9BTsZuRZ1WLA56JSz2EquOiYS8nvoSpqA63bs7LzHQvuiSg==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.1.tgz#c6c5c60c8e86dcb933ad59f3d2a8d64d3eda5ee2"
- integrity sha512-pMA7GO68yiLDpUxajnnQWuGPd3GegrPJDE5fTtCYK7qoVYeh8eiSeggVybrsfZSTo7BPEyb2jkfqsRcVGWgf8g==
+"@abp/moment@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.2.tgz#97f81e33c7bba19c815b26c71d5b9316b9aed268"
+ integrity sha512-Iks6nWoxUF4SVjqdAb7Ck6N/ArXGn48HeAzJvg7NCm4Kk31xSGVB598hbiezzVO0hBC9S7PBesz670P0m/2UUw==
dependencies:
moment "^2.30.1"
-"@abp/popper.js@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.1.tgz#24b02dccfbfa599cd4cca0ee15bccc6c7b61dda3"
- integrity sha512-AOxyY2m8QvcIMVGnosPJrguzR/TWfWACoEQRSPqeraNdu6yh3Z/5j6sVx0TDs0BBSsfa6EUnAavzxNvVY39T8Q==
+"@abp/popper.js@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.2.tgz#f133390b31f2572263a6d74c05fdd967c96edac1"
+ integrity sha512-CEAZ9eKBtHoigQ5P0bJR7W/4gVSrBO9RM0s0bKACb6ibZXtlRhxVudSgZ35SrGSYrRENSWSNvE5O4sDlebBx6w==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@popperjs/core" "^2.11.8"
-"@abp/select2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.1.tgz#ed88702039bbcf064d1fdf0b003c6a782a033b43"
- integrity sha512-Lz/dtUf7EzOG5bovG9WAKylmSCo2OD9W7wpW3Fs5EFQx/HStm1k+EFASFp/Y/kORcXgd6uKAqckGAqwAjoycPA==
+"@abp/select2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.2.tgz#6432cbaef11e28aad1a6e0643fcdc50ea8570b0b"
+ integrity sha512-2pDsRDfVuEznGjI39JVTDB8E4rkjjAtOu9DmFNIsg2bFkuVUCRymmNZ0jgwyJhkkZ+JmbkFCnSI5YWasl5KBwA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.1.tgz#847eb66b6b3e444ecb2c1e948f6f08e0a3494834"
- integrity sha512-iT/FcFFTLzfgKPvadJR0JLcKMHsl8hazbb1Sle1I4sb9weEQnKU1IUyYP4XxWA71m8bE8pigK7MHJOzTpddCTQ==
+"@abp/sweetalert2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.2.tgz#94cd053d0978516e713a1b323af78d1885e0973c"
+ integrity sha512-vtNUgp+mpIc91YzMv4hTHfQCNmMehE02LHoVFFx/CB+vMR35VKSNYBCuBpUfMVYBPplFVdXwFqJsPCW4zG9ulw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.1.tgz#fd8c0bc437d412288a7ed8df33b8efcee6cbc6cb"
- integrity sha512-j0Y7XDZaIt9Pya71q/LpyBInuU7Try8IgRv83lOnncWpVvQmCECfeTq4iM9kVQxe5kD81PGeSdLbzw7AapbaXA==
+"@abp/timeago@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.2.tgz#8788d21008964f1094c9a7e099b1b5777b223f4e"
+ integrity sha512-ucQqQ5gP54Ui9jBS68DR6KPmm/Yw5Up0A78FYha1sF9L7DvZKnQWId1p3RJcwZHgoI6hQgEVOntL77kKxTgDYA==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
timeago "^1.6.7"
-"@abp/utils@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.1.tgz#e727045304bec1cdb65132e0c0fcfe18337fa767"
- integrity sha512-kkqzS2Pd/+CKkxVEpYwyRs4yHye0xi4kc3Ip4TIEZXCJ+whjB9b4qKh+AuglKGwz3RvnFvB+QxQhluUHu0oyaA==
+"@abp/utils@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.2.tgz#671c3bc01d9b5e51aaaf50b96d4014f044a443a0"
+ integrity sha512-7Y6tCsphuOBZw7cPt04WFLRnhk89dt94BkGpt9B40wEl3oT7VuH6+xajYSAxVp9REzNJ0Zfu64780Eq2SyAA3g==
dependencies:
just-compare "^2.3.0"
@@ -235,6 +236,11 @@ datatables.net@2.3.4, datatables.net@^2.3.4:
dependencies:
jquery ">=1.7"
+jquery-migrate@~4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/jquery-migrate/-/jquery-migrate-4.0.2.tgz#d296a64e05073017c54877462ac563f1927ee21f"
+ integrity sha512-J15ilpECoAsObLv2robklj0qf1qt9QCnZwwNcJAXkM7dIiOgcac2dqC3HgDtUF0fmRwKZa/ggTkxTj9S4Vk+HQ==
+
jquery-mousewheel@>=3.0.6:
version "3.1.13"
resolved "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz#06f0335f16e353a695e7206bf50503cb523a6ee5"
@@ -248,21 +254,31 @@ jquery-validation-unobtrusive@^4.0.0:
jquery "^3.6.0"
jquery-validation ">=1.19"
-jquery-validation@>=1.19, jquery-validation@^1.21.0:
+jquery-validation@>=1.19:
version "1.21.0"
resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.21.0.tgz#78fc05ab76020912a246af3661b3f54a438bca93"
integrity sha512-xNot0rlUIgu7duMcQ5qb6MGkGL/Z1PQaRJQoZAURW9+a/2PGOUxY36o/WyNeP2T9R6jvWB8Z9lUVvvQWI/Zs5w==
+jquery-validation@^1.22.1:
+ version "1.22.1"
+ resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.22.1.tgz#fc1ae3256110332c929245a44d69ee76fee0e481"
+ integrity sha512-ePLXLWK7Rh5eR652YsuIu7YPeGlCXrsJUteVw5iZopiU17yaMd3FaDggs6yyNMl56p8TYVeDRmKGK3fPZrMeQw==
+
jquery@>=1.10, "jquery@>=1.5.0 <4.0", jquery@>=1.7:
version "3.6.4"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.4.tgz#ba065c188142100be4833699852bf7c24dc0252f"
integrity sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ==
-"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0, jquery@~3.7.1:
+"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0:
version "3.7.1"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.1.tgz#083ef98927c9a6a74d05a6af02806566d16274de"
integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==
+jquery@~4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/jquery/-/jquery-4.0.0.tgz#95c33ac29005ff72ec444c5ba1cf457e61404fbb"
+ integrity sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==
+
just-compare@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7"
diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/package.json b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/package.json
index 5179a0fc21..8f7a9b33ca 100644
--- a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/package.json
+++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/package.json
@@ -3,7 +3,7 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1",
- "@abp/cms-kit": "10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2",
+ "@abp/cms-kit": "10.7.0-rc.2"
}
}
diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock
index 10c3388db2..561ccfc3cb 100644
--- a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock
+++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock
@@ -2,298 +2,299 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.1.tgz#522fa8936c5572ffb97629a32e3c0cecab2cb20e"
- integrity sha512-0XW2QxEfL+A1Aw4kzknRuZAflHLBaA4TEiTP6rWHXTSUjuStbyfhjdOWZReK62wn7tDDAKOGS/ZGP9d3Gqt3UA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.1.tgz#8bf6231769ebaeb72773a4c22b028ebf74cbfcfd"
- integrity sha512-o1LveBACL83sPwiTu++t276wMR9hzdcc3vTogHbZJpoDTVnfy9Uhtlt+d9GpT0e69Ox8/ftcZqzl4JXDKuklFQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.1"
- "@abp/bootstrap" "~10.7.0-rc.1"
- "@abp/bootstrap-datepicker" "~10.7.0-rc.1"
- "@abp/bootstrap-daterangepicker" "~10.7.0-rc.1"
- "@abp/datatables.net-bs5" "~10.7.0-rc.1"
- "@abp/font-awesome" "~10.7.0-rc.1"
- "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.1"
- "@abp/lodash" "~10.7.0-rc.1"
- "@abp/luxon" "~10.7.0-rc.1"
- "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.1"
- "@abp/moment" "~10.7.0-rc.1"
- "@abp/select2" "~10.7.0-rc.1"
- "@abp/sweetalert2" "~10.7.0-rc.1"
- "@abp/timeago" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.1.tgz#984580897f4e557e24e52538e4b028543bb1f3f9"
- integrity sha512-GJNfb+NkVjGYRQNmuGREeFAJ7WFnuV3QXWnRRhWB/X/dPbc4BdLNUuYaWO/elA1YGU82m8sLtQk0bBLgX1sW6w==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.2.tgz#ffcbf8a9c11247bd913ea3b656af5271b0185aee"
+ integrity sha512-+HoXUWl8h6rintKh+bz9JhK7RLPP4ai5SGSBl9z0joPBG0SIABAKIdOQXSrRqw/ouL3xtOKAbu8ROOMOeEWs0g==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.2.tgz#113baea4635c63ca4722082d51444f54dad09481"
+ integrity sha512-/Z0wNC1JeyTGLiObl7JLXrFc1PG34ngBexgjjYkQzlDHPKzURaFGAPlwWHh1V/SarK8d43rfFuKM2O7SjlBYHA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.2"
+ "@abp/bootstrap" "~10.7.0-rc.2"
+ "@abp/bootstrap-datepicker" "~10.7.0-rc.2"
+ "@abp/bootstrap-daterangepicker" "~10.7.0-rc.2"
+ "@abp/datatables.net-bs5" "~10.7.0-rc.2"
+ "@abp/font-awesome" "~10.7.0-rc.2"
+ "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.2"
+ "@abp/lodash" "~10.7.0-rc.2"
+ "@abp/luxon" "~10.7.0-rc.2"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.2"
+ "@abp/moment" "~10.7.0-rc.2"
+ "@abp/select2" "~10.7.0-rc.2"
+ "@abp/sweetalert2" "~10.7.0-rc.2"
+ "@abp/timeago" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.2.tgz#e2970aa035e973d79d6bb56ee2ee28acb6eda8e9"
+ integrity sha512-dOYIcYkt+DsOv9rM05GM/KFJTZz1QzgysIa/rRc12Sh0v2rGGVKnFmZHaA0k4J2TMfyxSxKoQsyPX3C8hjfKxg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.1.tgz#a2b0f4c194dbe4008baeb6377deddcde57615558"
- integrity sha512-gy+Cq+w4rTCwbRKsbJvRGI5bZqd8cn0RrkPmWM5OdoKHB270fJZYv1s2GbU1hp3ELfS6LpycbNNjKMIywGCbjg==
+"@abp/bootstrap-datepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.2.tgz#0eee3cbda1b07eadd0e9cfe37bd14baf45109c4b"
+ integrity sha512-Wmp1AfYE1RrqY5c0SNzeHUwxPoGz/QOC8itLh1rGzfsVK46b/0PSITCsQWZ17iGYgJW68gNUp4jl2ku+Y6tjOQ==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.1.tgz#77bc951ab3df6c06e4f2e2b3474c2dc8fff8a9ee"
- integrity sha512-Q/BsC0LvrKTlfHCdBWAoeFYdbrkqlcNKTIQfdKYtavUsqS4fkcqt6vEe4y60kSUGzgkr9VIhN4d+e/yd9KNqTg==
+"@abp/bootstrap-daterangepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.2.tgz#4a5ad2cad1abbf8802a0627614a49e00e3e5c0da"
+ integrity sha512-voLXh2FBH24fAK1p9Q07PRvlyJAsyB+IWXp6SmyTcvH45evrahKofzyjvc6AJHn7QJ8DgXL3pC8Jyx5LXXuUtg==
dependencies:
- "@abp/moment" "~10.7.0-rc.1"
+ "@abp/moment" "~10.7.0-rc.2"
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.1.tgz#0fd48f4451527192f9e2b361bc001f0f2b710e6e"
- integrity sha512-2l5chEgpPOoGP3DSwsfnILmAeBxvA55cUoktGKGqBIo9tgQvVBZOwltLcQhEWVmZ4vmONgkBp96XwnEY9W3TKA==
+"@abp/bootstrap@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.2.tgz#f58165b7ac3af7a513e60514c3e1102c2d884684"
+ integrity sha512-s5JP80N8HR5jZVlr/hEWMfMk3QDhTLcIK7LAMDrTzlL41CaqjHiKb5stpl7xtzWZuIPEi92WCfDHIWSmqULR3g==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- "@abp/popper.js" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
+ "@abp/popper.js" "~10.7.0-rc.2"
bootstrap "^5.3.8"
-"@abp/clipboard@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.7.0-rc.1.tgz#01f30621be3e002eab3769c166df49bebd55c0e1"
- integrity sha512-cokw1hVY8H1opXXaZ1MTl71R+PzivuAd+SbRotUtDYDhZo5uG1jqHrZSVBPsC4Hp2w5yyMmBUzUqwMRAdarkYQ==
+"@abp/clipboard@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.7.0-rc.2.tgz#a9b4cdeb4a1bb559f75b0ef488ad856f43b9191f"
+ integrity sha512-YV9jxC7sJRRbz2VOVsKGOeno2bK5Tbn4ecQxkGiOG2KxtwQrCwIYXh/+1x2HDdTHy8jMkWinamMWiME6vYNrLw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
clipboard "^2.0.11"
-"@abp/cms-kit.admin@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-10.7.0-rc.1.tgz#b0210fb253c2e14cb808ef6862f080edb9baeff5"
- integrity sha512-QWDZCobvN+sCuasiNHS+blAeCbuGJCXyk+TecBRkGDCKl5oj1IrRe6dTOAucHylNyoM8bbIFbkMfyRHBtezMVg==
+"@abp/cms-kit.admin@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-10.7.0-rc.2.tgz#8749bbc889eaaef6349407c9719ee4dd363cad2e"
+ integrity sha512-LSIXDVfZvgE1C9x1yhXJqg1EtYPwoymsfSqxWAz7hjmOOgxxRRJyQldrzjZ2pHNh4AD7qQbW7HVhxs+cH8VqFg==
dependencies:
- "@abp/codemirror" "~10.7.0-rc.1"
- "@abp/jstree" "~10.7.0-rc.1"
- "@abp/markdown-it" "~10.7.0-rc.1"
- "@abp/slugify" "~10.7.0-rc.1"
- "@abp/tui-editor" "~10.7.0-rc.1"
- "@abp/uppy" "~10.7.0-rc.1"
+ "@abp/codemirror" "~10.7.0-rc.2"
+ "@abp/jstree" "~10.7.0-rc.2"
+ "@abp/markdown-it" "~10.7.0-rc.2"
+ "@abp/slugify" "~10.7.0-rc.2"
+ "@abp/tui-editor" "~10.7.0-rc.2"
+ "@abp/uppy" "~10.7.0-rc.2"
-"@abp/cms-kit.public@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-10.7.0-rc.1.tgz#e1591ade657a29111769cfdd8a99fa9a1d83f7a7"
- integrity sha512-FOxMbHQ35kzxMG3pbSuk5OnBRkQcJpUCHh3+6XFxomvn6ZPDE+hKJz1ykhmPNWUyjTF+XKrWV4mFRhczWIrNng==
+"@abp/cms-kit.public@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-10.7.0-rc.2.tgz#16547a3b9eae4ae76893bb6bc694fbc6266a2453"
+ integrity sha512-WfGJb+yPhfDJvKmVtOkzWbawaEQ9b70aTXNYj2DG76TRGmcE0IbETRNzOL0EStIwm/++/amfUkAWByTeJbiwrg==
dependencies:
- "@abp/highlight.js" "~10.7.0-rc.1"
- "@abp/star-rating-svg" "~10.7.0-rc.1"
+ "@abp/highlight.js" "~10.7.0-rc.2"
+ "@abp/star-rating-svg" "~10.7.0-rc.2"
-"@abp/cms-kit@10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-10.7.0-rc.1.tgz#391afc1969c7372c635ce85ba67ca18e15367370"
- integrity sha512-KIdv3/B7+dn9v1Z4nqvLc0bwRThyHWMc/xSwOz5845JyJr2lOcx1FMCMXNjfVK0XQL5mKEU5QGL344sN+ioKFw==
+"@abp/cms-kit@10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-10.7.0-rc.2.tgz#b1518fb16cd3aacea72f4ae9f7489b5a10f1775c"
+ integrity sha512-62VGLJNUtG1azbCD3maS6Xb2h8/2GmM/wmuWndPw22OlWvp50Z0P9t/7i9WkSBTL498fLidnmOzeRxyo1DiGpg==
dependencies:
- "@abp/cms-kit.admin" "~10.7.0-rc.1"
- "@abp/cms-kit.public" "~10.7.0-rc.1"
+ "@abp/cms-kit.admin" "~10.7.0-rc.2"
+ "@abp/cms-kit.public" "~10.7.0-rc.2"
-"@abp/codemirror@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-10.7.0-rc.1.tgz#804ee0bb6b042b923eb3021fd296625f6ea240dd"
- integrity sha512-oDX/F2e8Ajw7XGCMWMAdA91dhCgP3tvyGU65YI6ImW1jucRh+4iXMvnMPKqEAyOxkcEMG6e9jkSkA5/cm0P9CA==
+"@abp/codemirror@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-10.7.0-rc.2.tgz#283f490d97c9df69b5903a7f4e01fd266521f19c"
+ integrity sha512-wSFx3vAYdgx9YYdboFdA65RC8fJhIVBCCQGEju6uYtdEvoaUQxp2DZ1q0Cm8F2fRMh6LNXOr13RD3wYg2Sz0YQ==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@codemirror/lang-css" "^6.0.0"
"@codemirror/lang-javascript" "^6.0.0"
"@codemirror/state" "^6.0.0"
"@codemirror/view" "^6.0.0"
codemirror "^6.0.2"
-"@abp/core@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.1.tgz#40017b504c37e9b4b8e5e85823ed59768e49d93c"
- integrity sha512-aoAIRmrkHXdw06ZTxC2rF7Bj6zNSw+WHG39dC2vYQXc70MAZ78v2J4xEY/hk8+12UNdjKIVmwvqhMi2DJwSQjg==
+"@abp/core@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.2.tgz#363b875024cf665302c4199d0e7ab744e7e0bfec"
+ integrity sha512-gpnCPKzJyM8nAubZ5O/OjBKlIbP7F2qJ61VVqSPQiGzGBDk+BnQ+vosLxcjncwN9g4k6ZnAxnGgcnJCz6M/h6Q==
dependencies:
- "@abp/utils" "~10.7.0-rc.1"
+ "@abp/utils" "~10.7.0-rc.2"
-"@abp/datatables.net-bs5@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.1.tgz#e3a3d1e0bc39c80bb85db72ee23e9fd2b1a3480d"
- integrity sha512-24zyvsCA8sc/w0O7ZxxVZwtrb0+EUV5Jw/QWOLCSxkLi7c62lJQJ8FT3BueAx/AN+9fMMV8CVL23o3stWkXsEg==
+"@abp/datatables.net-bs5@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.2.tgz#bbb086344ede0f75f3c23ad81b4cce517db41f29"
+ integrity sha512-hg5XQUNfpxj/NqIjeGzolubTWbb4D/Y/Bf4DWjZvzSLhj/IxkQ8xGcEoxXLF91gRgH06cnHiZTJ3YaXW342a/g==
dependencies:
- "@abp/datatables.net" "~10.7.0-rc.1"
+ "@abp/datatables.net" "~10.7.0-rc.2"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.1.tgz#e73ebad5895ea4c095b75b2d4c934b4658547d10"
- integrity sha512-XImGEEv6zJDFOHNQKUF/sOk2MJzX5jovRRa752v9g8KCVOhUWB6mz4G/QuJ73uKqdXSS7sUZ04sqk3VGq8/9mA==
+"@abp/datatables.net@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.2.tgz#695dbb16c282202452684ba3e601781eae43e3a2"
+ integrity sha512-Rkz+PzaG0MTM5s2Bco2gpmr67I7bmSeMSdRy3+zDCKiNuRO97jFss76EA5nSW6CcatntGCOWWoXNQih45LWLWw==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.1.tgz#1c15dc1f91be572c315cdf49e0e35685d094ed23"
- integrity sha512-hRslYk5B1hC0qj0TGPyQ0KLWMpWleENamKh0ostjiXKPZdd0OG/+iKPtwX5qlz8SUY9vSm/DAtI2+cNzOK6lvQ==
+"@abp/font-awesome@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.2.tgz#4934e38a4c73eb04c9c4a4e301c71273fe3b0c90"
+ integrity sha512-Q6JgayhrIOaMvs0w9RYkp824iZiAQDKgmSoxqJDnLOml4a8UXWLGbw5ZhQFXAGkiJSKXEZ/KUXGz04D4tABuvw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/highlight.js@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-10.7.0-rc.1.tgz#75055272c1844c0c47ed66fc177a1f34e48a4fed"
- integrity sha512-Hw4kVF9BIEdiXl5vWR0zx7f877xcWoXIDUdNKtG/ESD4icdBn7+0FJOselO93iMhfifw2BziBMkn946kLuzV4w==
+"@abp/highlight.js@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-10.7.0-rc.2.tgz#e8b35567ad9191ec77cc5b1a384168221a31020e"
+ integrity sha512-mLoNFP3sAcfMw3cHHtK0f3rPGhTav86MByvdTDEUTQrTaDvylIeGkGJu2MuossRyAqRbFw8Q9JqYu/lXWxRA0g==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@highlightjs/cdn-assets" "~11.11.1"
-"@abp/jquery-validation-unobtrusive@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.1.tgz#69a853a5d987676aaba2eeb79853cc56e5ae07b0"
- integrity sha512-apzrew9h0HSKvqZV9MTQO2pz7lagKsfRjIA4iq/0O7zhVgenLDul09OePxRUB624OifBTAgOD80mlCEXb+cjrg==
+"@abp/jquery-validation-unobtrusive@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.2.tgz#c4f4f8b5f4406bf0c693fdb0b4d72c1dc8aa2cf5"
+ integrity sha512-354+XIQJXNmsG70g72JcWxPtXAL9+yj595scP4vsPeHBXQr+QNLKjoEx7F43Mm6nFVLbedMRfpumErix18PiCg==
dependencies:
- "@abp/jquery-validation" "~10.7.0-rc.1"
+ "@abp/jquery-validation" "~10.7.0-rc.2"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.1.tgz#71b741ea5e0424c3f7ac0378ce17821718be7316"
- integrity sha512-FUcYgT7hoVGGdVqYxe3CzNQYcpCqUzpwMp5To8GJ8NA4fHyjPv/hRZlCjBXH+o0KbhCGbgKllV5/ly/UJwgUDw==
+"@abp/jquery-validation@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.2.tgz#6b1fab4cef76893a909fee51ffab7b97e907d54e"
+ integrity sha512-YtcrcmIWhNu52ssxSxJ6LuF4JU3WkhCCYJ4MT3upx4kltFxihMH5b1BDAj+s5Qb+qLi3jDn1D80IynJ5lxmnZg==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
- jquery-validation "^1.21.0"
+ "@abp/jquery" "~10.7.0-rc.2"
+ jquery-validation "^1.22.1"
-"@abp/jquery@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.1.tgz#84dc6ae11dc3e696978a4d07be95b5d96afbb74d"
- integrity sha512-fESdFdo4dfG2FrdSU1v6r3jXik9WWY3umN8OfHZSbMu7d9+eoTxpJEIDYFvFrGf4t5AQ8vhbxdmm6A+Kg5q4uw==
+"@abp/jquery@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.2.tgz#356b7e678258e95056a029558bef6d6e7bc1a3ec"
+ integrity sha512-vl6o63cW3k4VooyRgnBkrcj/krSjxoS5/EX9ZraG11QMk48Crl00isZvjcxswVUUooXTbzjRG9+Dwx3xRSvohA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- jquery "~3.7.1"
+ "@abp/core" "~10.7.0-rc.2"
+ jquery "~4.0.0"
+ jquery-migrate "~4.0.2"
-"@abp/jstree@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-10.7.0-rc.1.tgz#ff31bbcf9995e21453477a24d0af83e85cd5fe72"
- integrity sha512-AR3MdRn8cAtIanC3CFI6PyWFiJJMtaAeV04Z4xGEOc7y3oF8gzcbWAZxAORt9svog9vVQEWNdh/VojcqD+xsyQ==
+"@abp/jstree@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-10.7.0-rc.2.tgz#b38dd59455851158f931009a9aa21728b8720fed"
+ integrity sha512-AEN2FpgZzJnIUJIjTPxaqUyS3U1J7nYIjCl9Bbqd2DXy5kli47ATGhhd9xpOt4Kdv5yf6bQQYGsRTrFU/AvFxw==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
jstree "^3.3.17"
-"@abp/lodash@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.1.tgz#0bfbf9bee2e70f13bc46af40c8952e51e3a1ab39"
- integrity sha512-3Jo6QBl2/MjOKo2w1Q/reZ5z4zAuVYoGmNjEA+zBGOErNC/f94GdKhnjI9WkTMSBdYyaliyzx9NQBY9ZxV6Vag==
+"@abp/lodash@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.2.tgz#40b2849fb36702652ace65c3b128e7c6b6cb0c05"
+ integrity sha512-WkxHOriKsaNHQEOKeLpTzzvbr90pbi747dldzV1T3typwZtpwL6xtqcivPVIAkfDxfdnzmsC+HiIX0mTHJA7sA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
lodash "^4.18.1"
-"@abp/luxon@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.1.tgz#038e3519dfaed24f79a4bc2c3f505bdff9f013d8"
- integrity sha512-Eb8dvWUodLxvdD00aQjUfwf08TWW4x2KcdrI388RyiXDhA9aXBG8yKCCpapY/QChkUt/V6tHAuZtHWs9g75T7A==
+"@abp/luxon@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.2.tgz#2650adc4bf32711a47a0f4c4452eead915899015"
+ integrity sha512-ReVQeloBgC0B2+O6IEwDP8joUyf/Qy2WlMFVz7VNXIylQFwr1hQ70CScKHm+mvACfIHoNSXl8EUET4XpXvhgPw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.1.tgz#c53cf649ad54a30ed10d0f949617f9f2fe74b17b"
- integrity sha512-e9EnklZy7LGJZT/nqnsgdba0LSuqjLSFy7o+FesDY574zJniE34q1dewc60eLElEW8ghY6W2ykLadfFoOtQ+mQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.2.tgz#0eae6ab79bf83158006afda892d20120c9b1b91c"
+ integrity sha512-v/gQyNEBBur2wfsU66700aFH57gS7lyMptObYOb9BTsZuRZ1WLA56JSz2EquOiYS8nvoSpqA63bs7LzHQvuiSg==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/markdown-it@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/markdown-it/-/markdown-it-10.7.0-rc.1.tgz#fb70cade74f8ce4a597a5946fea708e211d624eb"
- integrity sha512-KCODaQyuuNsM1MjS5m8FJWpNdsbmiaaQt8ECmpi5p3cjzSGUen5v9O05t12BTA8UoVP+wlhaHAyUVDL1sHrGZQ==
+"@abp/markdown-it@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/markdown-it/-/markdown-it-10.7.0-rc.2.tgz#4cafd0451eb1b8052ed1ff8468a146ee7f140bc8"
+ integrity sha512-iVg8jddt5B/fRzmZFlcd77pUnqiydH+CoX2mFr6wloqMvCdRO2LD5cbX3FZOkAl/CkZlrGhfmatF+vs/qr3ywQ==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
markdown-it "^14.1.0"
-"@abp/moment@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.1.tgz#c6c5c60c8e86dcb933ad59f3d2a8d64d3eda5ee2"
- integrity sha512-pMA7GO68yiLDpUxajnnQWuGPd3GegrPJDE5fTtCYK7qoVYeh8eiSeggVybrsfZSTo7BPEyb2jkfqsRcVGWgf8g==
+"@abp/moment@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.2.tgz#97f81e33c7bba19c815b26c71d5b9316b9aed268"
+ integrity sha512-Iks6nWoxUF4SVjqdAb7Ck6N/ArXGn48HeAzJvg7NCm4Kk31xSGVB598hbiezzVO0hBC9S7PBesz670P0m/2UUw==
dependencies:
moment "^2.30.1"
-"@abp/popper.js@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.1.tgz#24b02dccfbfa599cd4cca0ee15bccc6c7b61dda3"
- integrity sha512-AOxyY2m8QvcIMVGnosPJrguzR/TWfWACoEQRSPqeraNdu6yh3Z/5j6sVx0TDs0BBSsfa6EUnAavzxNvVY39T8Q==
+"@abp/popper.js@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.2.tgz#f133390b31f2572263a6d74c05fdd967c96edac1"
+ integrity sha512-CEAZ9eKBtHoigQ5P0bJR7W/4gVSrBO9RM0s0bKACb6ibZXtlRhxVudSgZ35SrGSYrRENSWSNvE5O4sDlebBx6w==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@popperjs/core" "^2.11.8"
-"@abp/prismjs@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.7.0-rc.1.tgz#c51c745e07328bf922ca033f54ab262e3e94170f"
- integrity sha512-xX68Yl2fsUdARxVEVyDZdFyqA/QpkIJ1bQ7OeTy3eoN/XgkiYpKUekUbwM3GE2xQvvf5cmKjhkLUPGW7necAXA==
+"@abp/prismjs@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.7.0-rc.2.tgz#2dbf97051f4f3a7fcf48a4dfff8e8cc527142e91"
+ integrity sha512-UgY4Zj0kLtmmMGFVJlRfGNCqhg1mLXoCZ7MQJJ5cSwf6RbL4LL9XFVFxj5Yy7ZrmXun7TXy1LUf4K6wJDcPKQg==
dependencies:
- "@abp/clipboard" "~10.7.0-rc.1"
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/clipboard" "~10.7.0-rc.2"
+ "@abp/core" "~10.7.0-rc.2"
prismjs "^1.30.0"
-"@abp/select2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.1.tgz#ed88702039bbcf064d1fdf0b003c6a782a033b43"
- integrity sha512-Lz/dtUf7EzOG5bovG9WAKylmSCo2OD9W7wpW3Fs5EFQx/HStm1k+EFASFp/Y/kORcXgd6uKAqckGAqwAjoycPA==
+"@abp/select2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.2.tgz#6432cbaef11e28aad1a6e0643fcdc50ea8570b0b"
+ integrity sha512-2pDsRDfVuEznGjI39JVTDB8E4rkjjAtOu9DmFNIsg2bFkuVUCRymmNZ0jgwyJhkkZ+JmbkFCnSI5YWasl5KBwA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
select2 "^4.0.13"
-"@abp/slugify@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-10.7.0-rc.1.tgz#d1a81b5b7d3b524416ecf0f6f0aca53bcaefb48a"
- integrity sha512-JScZm33cGQSroZ56pBCmKX3sK8ztCV8FDs8acwP1HK68HF+GiRru8f6Os6Sn+FQi4bI8GseTDUTPr8iVNgbmLg==
+"@abp/slugify@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-10.7.0-rc.2.tgz#3badde001328b522ddb0ccb5b1203477ed905263"
+ integrity sha512-CLMZLCeunazaVDuxcYnluSWXfGZzmKfaGSRseUNtm68CE7ayNIVPin7gt+vGyobgTbRlVs8Fg+6zp7ZGGTIRpA==
dependencies:
slugify "^1.6.6"
-"@abp/star-rating-svg@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-10.7.0-rc.1.tgz#ef8a208a73170e61550687d695172e21977e39a8"
- integrity sha512-6IDGanEDmV0ZA4HoTxWzXO1tQAnq6I4EHI+Lji9Ofjp0egjVttlniqPWFGD7Pj/wZ7Mh0/zvigl/QitKeZyA8A==
+"@abp/star-rating-svg@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-10.7.0-rc.2.tgz#6c0662ca6b9ddaf0f7b0d3ac88c0a34833819a6f"
+ integrity sha512-AaD+6KKmoKJJ9ThrRVweKeW+ko3XM4JoF6ig102b80ZUOR4A4YmzncplQOfG+0niv/xdAvIl/tbv232ujObHpg==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
star-rating-svg "^3.5.0"
-"@abp/sweetalert2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.1.tgz#847eb66b6b3e444ecb2c1e948f6f08e0a3494834"
- integrity sha512-iT/FcFFTLzfgKPvadJR0JLcKMHsl8hazbb1Sle1I4sb9weEQnKU1IUyYP4XxWA71m8bE8pigK7MHJOzTpddCTQ==
+"@abp/sweetalert2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.2.tgz#94cd053d0978516e713a1b323af78d1885e0973c"
+ integrity sha512-vtNUgp+mpIc91YzMv4hTHfQCNmMehE02LHoVFFx/CB+vMR35VKSNYBCuBpUfMVYBPplFVdXwFqJsPCW4zG9ulw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.1.tgz#fd8c0bc437d412288a7ed8df33b8efcee6cbc6cb"
- integrity sha512-j0Y7XDZaIt9Pya71q/LpyBInuU7Try8IgRv83lOnncWpVvQmCECfeTq4iM9kVQxe5kD81PGeSdLbzw7AapbaXA==
+"@abp/timeago@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.2.tgz#8788d21008964f1094c9a7e099b1b5777b223f4e"
+ integrity sha512-ucQqQ5gP54Ui9jBS68DR6KPmm/Yw5Up0A78FYha1sF9L7DvZKnQWId1p3RJcwZHgoI6hQgEVOntL77kKxTgDYA==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
timeago "^1.6.7"
-"@abp/tui-editor@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-10.7.0-rc.1.tgz#b51c0ac1a6847a38e142bdec9d3ff2d73d90ebf1"
- integrity sha512-NzvJuyoBsHjgjGf4asgboFkzAKSV3Lg15vlz0PFTkWIyY5wS898zQygP1l1OV6reBTlRlpNVJFsS/ICJTtepMA==
+"@abp/tui-editor@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-10.7.0-rc.2.tgz#de991dbea63ba42f9d4e56ba1c166ae31477dce0"
+ integrity sha512-dvw2H2dXz5i09ZGNBjCze6ycnyKWumn61n4RMGUpiEE6oU/03ibXbplO8RFdnzz7HiwROpkUmXnuiAXf++zdQw==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
- "@abp/prismjs" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
+ "@abp/prismjs" "~10.7.0-rc.2"
-"@abp/uppy@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-10.7.0-rc.1.tgz#176675f9fe7060639582563949381b51c3d44670"
- integrity sha512-YWVCqt2rwW3Lal4LzoJCfj4usUzQ61J7akckRtSNrVtO9+fv1BvBMnSth6tI8RIDqSONZkR7DKbpu03Kr/s7tA==
+"@abp/uppy@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-10.7.0-rc.2.tgz#53cb6e5c83f0e0864d848e93c03e696d22c549d5"
+ integrity sha512-84CXfEBf3oMRVwhiid3qKNMIUal/+7qS8sM35/TUHkCkurimsDYIS6e4laPqtlqsmzuZdwF3CroHUpAvU1ZHqw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
uppy "^5.1.2"
-"@abp/utils@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.1.tgz#e727045304bec1cdb65132e0c0fcfe18337fa767"
- integrity sha512-kkqzS2Pd/+CKkxVEpYwyRs4yHye0xi4kc3Ip4TIEZXCJ+whjB9b4qKh+AuglKGwz3RvnFvB+QxQhluUHu0oyaA==
+"@abp/utils@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.2.tgz#671c3bc01d9b5e51aaaf50b96d4014f044a443a0"
+ integrity sha512-7Y6tCsphuOBZw7cPt04WFLRnhk89dt94BkGpt9B40wEl3oT7VuH6+xajYSAxVp9REzNJ0Zfu64780Eq2SyAA3g==
dependencies:
just-compare "^2.3.0"
@@ -2306,6 +2307,11 @@ is-stream@^4.0.1:
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-4.0.1.tgz#375cf891e16d2e4baec250b85926cffc14720d9b"
integrity sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==
+jquery-migrate@~4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/jquery-migrate/-/jquery-migrate-4.0.2.tgz#d296a64e05073017c54877462ac563f1927ee21f"
+ integrity sha512-J15ilpECoAsObLv2robklj0qf1qt9QCnZwwNcJAXkM7dIiOgcac2dqC3HgDtUF0fmRwKZa/ggTkxTj9S4Vk+HQ==
+
jquery-mousewheel@>=3.0.6:
version "3.1.13"
resolved "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz#06f0335f16e353a695e7206bf50503cb523a6ee5"
@@ -2319,21 +2325,31 @@ jquery-validation-unobtrusive@^4.0.0:
jquery "^3.6.0"
jquery-validation ">=1.19"
-jquery-validation@>=1.19, jquery-validation@^1.21.0:
+jquery-validation@>=1.19:
version "1.21.0"
resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.21.0.tgz#78fc05ab76020912a246af3661b3f54a438bca93"
integrity sha512-xNot0rlUIgu7duMcQ5qb6MGkGL/Z1PQaRJQoZAURW9+a/2PGOUxY36o/WyNeP2T9R6jvWB8Z9lUVvvQWI/Zs5w==
+jquery-validation@^1.22.1:
+ version "1.22.1"
+ resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.22.1.tgz#fc1ae3256110332c929245a44d69ee76fee0e481"
+ integrity sha512-ePLXLWK7Rh5eR652YsuIu7YPeGlCXrsJUteVw5iZopiU17yaMd3FaDggs6yyNMl56p8TYVeDRmKGK3fPZrMeQw==
+
jquery@>=1.10, "jquery@>=1.5.0 <4.0", jquery@>=1.7, jquery@^3.5.0:
version "3.6.4"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.4.tgz#ba065c188142100be4833699852bf7c24dc0252f"
integrity sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ==
-"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0, jquery@~3.7.1:
+"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0:
version "3.7.1"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.1.tgz#083ef98927c9a6a74d05a6af02806566d16274de"
integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==
+jquery@~4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/jquery/-/jquery-4.0.0.tgz#95c33ac29005ff72ec444c5ba1cf457e61404fbb"
+ integrity sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==
+
js-base64@^3.7.2:
version "3.7.5"
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-3.7.5.tgz#21e24cf6b886f76d6f5f165bfcd69cc55b9e3fca"
diff --git a/modules/docs/app/VoloDocs.Web/package.json b/modules/docs/app/VoloDocs.Web/package.json
index 99ef953363..c91256fd95 100644
--- a/modules/docs/app/VoloDocs.Web/package.json
+++ b/modules/docs/app/VoloDocs.Web/package.json
@@ -3,7 +3,7 @@
"name": "volo.docstestapp",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1",
- "@abp/docs": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2",
+ "@abp/docs": "~10.7.0-rc.2"
}
}
diff --git a/modules/docs/app/VoloDocs.Web/yarn.lock b/modules/docs/app/VoloDocs.Web/yarn.lock
index 3476ad921c..f12b721df8 100644
--- a/modules/docs/app/VoloDocs.Web/yarn.lock
+++ b/modules/docs/app/VoloDocs.Web/yarn.lock
@@ -2,222 +2,223 @@
# yarn lockfile v1
-"@abp/anchor-js@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-10.7.0-rc.1.tgz#a98545d880d3b087a0fc443a8a59e75d0c3fe349"
- integrity sha512-a+CU6kQnRTzuoyMirCETKwWXXNraJUgtkierQiwa9UtuAqFqe2k5vA2+Mi9ZdlOdtlQrXVOVhKsMzMRxKCgqdw==
+"@abp/anchor-js@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-10.7.0-rc.2.tgz#2a58d3718a871491e9d5a30b4a1eaee714bd445d"
+ integrity sha512-dw0dtvXz7tD7MJrx1l54nP/azGGqNFX6xu3k7T2/7/CSSxneaW7sBhhtFHJ9CtL2zAcxJGoCbzFClJTZqK+4aA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
anchor-js "^5.0.0"
-"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.1.tgz#522fa8936c5572ffb97629a32e3c0cecab2cb20e"
- integrity sha512-0XW2QxEfL+A1Aw4kzknRuZAflHLBaA4TEiTP6rWHXTSUjuStbyfhjdOWZReK62wn7tDDAKOGS/ZGP9d3Gqt3UA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.1.tgz#8bf6231769ebaeb72773a4c22b028ebf74cbfcfd"
- integrity sha512-o1LveBACL83sPwiTu++t276wMR9hzdcc3vTogHbZJpoDTVnfy9Uhtlt+d9GpT0e69Ox8/ftcZqzl4JXDKuklFQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.1"
- "@abp/bootstrap" "~10.7.0-rc.1"
- "@abp/bootstrap-datepicker" "~10.7.0-rc.1"
- "@abp/bootstrap-daterangepicker" "~10.7.0-rc.1"
- "@abp/datatables.net-bs5" "~10.7.0-rc.1"
- "@abp/font-awesome" "~10.7.0-rc.1"
- "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.1"
- "@abp/lodash" "~10.7.0-rc.1"
- "@abp/luxon" "~10.7.0-rc.1"
- "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.1"
- "@abp/moment" "~10.7.0-rc.1"
- "@abp/select2" "~10.7.0-rc.1"
- "@abp/sweetalert2" "~10.7.0-rc.1"
- "@abp/timeago" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.1.tgz#984580897f4e557e24e52538e4b028543bb1f3f9"
- integrity sha512-GJNfb+NkVjGYRQNmuGREeFAJ7WFnuV3QXWnRRhWB/X/dPbc4BdLNUuYaWO/elA1YGU82m8sLtQk0bBLgX1sW6w==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.2.tgz#ffcbf8a9c11247bd913ea3b656af5271b0185aee"
+ integrity sha512-+HoXUWl8h6rintKh+bz9JhK7RLPP4ai5SGSBl9z0joPBG0SIABAKIdOQXSrRqw/ouL3xtOKAbu8ROOMOeEWs0g==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.2.tgz#113baea4635c63ca4722082d51444f54dad09481"
+ integrity sha512-/Z0wNC1JeyTGLiObl7JLXrFc1PG34ngBexgjjYkQzlDHPKzURaFGAPlwWHh1V/SarK8d43rfFuKM2O7SjlBYHA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.2"
+ "@abp/bootstrap" "~10.7.0-rc.2"
+ "@abp/bootstrap-datepicker" "~10.7.0-rc.2"
+ "@abp/bootstrap-daterangepicker" "~10.7.0-rc.2"
+ "@abp/datatables.net-bs5" "~10.7.0-rc.2"
+ "@abp/font-awesome" "~10.7.0-rc.2"
+ "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.2"
+ "@abp/lodash" "~10.7.0-rc.2"
+ "@abp/luxon" "~10.7.0-rc.2"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.2"
+ "@abp/moment" "~10.7.0-rc.2"
+ "@abp/select2" "~10.7.0-rc.2"
+ "@abp/sweetalert2" "~10.7.0-rc.2"
+ "@abp/timeago" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.2.tgz#e2970aa035e973d79d6bb56ee2ee28acb6eda8e9"
+ integrity sha512-dOYIcYkt+DsOv9rM05GM/KFJTZz1QzgysIa/rRc12Sh0v2rGGVKnFmZHaA0k4J2TMfyxSxKoQsyPX3C8hjfKxg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.1.tgz#a2b0f4c194dbe4008baeb6377deddcde57615558"
- integrity sha512-gy+Cq+w4rTCwbRKsbJvRGI5bZqd8cn0RrkPmWM5OdoKHB270fJZYv1s2GbU1hp3ELfS6LpycbNNjKMIywGCbjg==
+"@abp/bootstrap-datepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.2.tgz#0eee3cbda1b07eadd0e9cfe37bd14baf45109c4b"
+ integrity sha512-Wmp1AfYE1RrqY5c0SNzeHUwxPoGz/QOC8itLh1rGzfsVK46b/0PSITCsQWZ17iGYgJW68gNUp4jl2ku+Y6tjOQ==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.1.tgz#77bc951ab3df6c06e4f2e2b3474c2dc8fff8a9ee"
- integrity sha512-Q/BsC0LvrKTlfHCdBWAoeFYdbrkqlcNKTIQfdKYtavUsqS4fkcqt6vEe4y60kSUGzgkr9VIhN4d+e/yd9KNqTg==
+"@abp/bootstrap-daterangepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.2.tgz#4a5ad2cad1abbf8802a0627614a49e00e3e5c0da"
+ integrity sha512-voLXh2FBH24fAK1p9Q07PRvlyJAsyB+IWXp6SmyTcvH45evrahKofzyjvc6AJHn7QJ8DgXL3pC8Jyx5LXXuUtg==
dependencies:
- "@abp/moment" "~10.7.0-rc.1"
+ "@abp/moment" "~10.7.0-rc.2"
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.1.tgz#0fd48f4451527192f9e2b361bc001f0f2b710e6e"
- integrity sha512-2l5chEgpPOoGP3DSwsfnILmAeBxvA55cUoktGKGqBIo9tgQvVBZOwltLcQhEWVmZ4vmONgkBp96XwnEY9W3TKA==
+"@abp/bootstrap@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.2.tgz#f58165b7ac3af7a513e60514c3e1102c2d884684"
+ integrity sha512-s5JP80N8HR5jZVlr/hEWMfMk3QDhTLcIK7LAMDrTzlL41CaqjHiKb5stpl7xtzWZuIPEi92WCfDHIWSmqULR3g==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- "@abp/popper.js" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
+ "@abp/popper.js" "~10.7.0-rc.2"
bootstrap "^5.3.8"
-"@abp/clipboard@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.7.0-rc.1.tgz#01f30621be3e002eab3769c166df49bebd55c0e1"
- integrity sha512-cokw1hVY8H1opXXaZ1MTl71R+PzivuAd+SbRotUtDYDhZo5uG1jqHrZSVBPsC4Hp2w5yyMmBUzUqwMRAdarkYQ==
+"@abp/clipboard@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-10.7.0-rc.2.tgz#a9b4cdeb4a1bb559f75b0ef488ad856f43b9191f"
+ integrity sha512-YV9jxC7sJRRbz2VOVsKGOeno2bK5Tbn4ecQxkGiOG2KxtwQrCwIYXh/+1x2HDdTHy8jMkWinamMWiME6vYNrLw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
clipboard "^2.0.11"
-"@abp/core@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.1.tgz#40017b504c37e9b4b8e5e85823ed59768e49d93c"
- integrity sha512-aoAIRmrkHXdw06ZTxC2rF7Bj6zNSw+WHG39dC2vYQXc70MAZ78v2J4xEY/hk8+12UNdjKIVmwvqhMi2DJwSQjg==
+"@abp/core@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.2.tgz#363b875024cf665302c4199d0e7ab744e7e0bfec"
+ integrity sha512-gpnCPKzJyM8nAubZ5O/OjBKlIbP7F2qJ61VVqSPQiGzGBDk+BnQ+vosLxcjncwN9g4k6ZnAxnGgcnJCz6M/h6Q==
dependencies:
- "@abp/utils" "~10.7.0-rc.1"
+ "@abp/utils" "~10.7.0-rc.2"
-"@abp/datatables.net-bs5@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.1.tgz#e3a3d1e0bc39c80bb85db72ee23e9fd2b1a3480d"
- integrity sha512-24zyvsCA8sc/w0O7ZxxVZwtrb0+EUV5Jw/QWOLCSxkLi7c62lJQJ8FT3BueAx/AN+9fMMV8CVL23o3stWkXsEg==
+"@abp/datatables.net-bs5@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.2.tgz#bbb086344ede0f75f3c23ad81b4cce517db41f29"
+ integrity sha512-hg5XQUNfpxj/NqIjeGzolubTWbb4D/Y/Bf4DWjZvzSLhj/IxkQ8xGcEoxXLF91gRgH06cnHiZTJ3YaXW342a/g==
dependencies:
- "@abp/datatables.net" "~10.7.0-rc.1"
+ "@abp/datatables.net" "~10.7.0-rc.2"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.1.tgz#e73ebad5895ea4c095b75b2d4c934b4658547d10"
- integrity sha512-XImGEEv6zJDFOHNQKUF/sOk2MJzX5jovRRa752v9g8KCVOhUWB6mz4G/QuJ73uKqdXSS7sUZ04sqk3VGq8/9mA==
+"@abp/datatables.net@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.2.tgz#695dbb16c282202452684ba3e601781eae43e3a2"
+ integrity sha512-Rkz+PzaG0MTM5s2Bco2gpmr67I7bmSeMSdRy3+zDCKiNuRO97jFss76EA5nSW6CcatntGCOWWoXNQih45LWLWw==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
datatables.net "^2.3.4"
-"@abp/docs@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-10.7.0-rc.1.tgz#50d12653dc3c2565bc47b128336d7acd11d3a45e"
- integrity sha512-kksp6NDPkC9eVN5ccMFrWRBfEPUQQjDKbQoqZjIrR8rJKUy4qD7q6JbNrYYIKz1GYtuj96+yMyCqKSpZqWBwpQ==
+"@abp/docs@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-10.7.0-rc.2.tgz#4747538e66c33fbb4e08ccf78d2b96f39bc97eed"
+ integrity sha512-z7atzqlduHOdwPEpYCNOzQi0qhbrJ8ISaPkhKTdFG9BHO3l8CPrM+OnfUFM4fgCxC3z17ktQ4ZT3eakkOD+lSQ==
dependencies:
- "@abp/anchor-js" "~10.7.0-rc.1"
- "@abp/clipboard" "~10.7.0-rc.1"
- "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.1"
- "@abp/popper.js" "~10.7.0-rc.1"
- "@abp/prismjs" "~10.7.0-rc.1"
+ "@abp/anchor-js" "~10.7.0-rc.2"
+ "@abp/clipboard" "~10.7.0-rc.2"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.2"
+ "@abp/popper.js" "~10.7.0-rc.2"
+ "@abp/prismjs" "~10.7.0-rc.2"
-"@abp/font-awesome@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.1.tgz#1c15dc1f91be572c315cdf49e0e35685d094ed23"
- integrity sha512-hRslYk5B1hC0qj0TGPyQ0KLWMpWleENamKh0ostjiXKPZdd0OG/+iKPtwX5qlz8SUY9vSm/DAtI2+cNzOK6lvQ==
+"@abp/font-awesome@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.2.tgz#4934e38a4c73eb04c9c4a4e301c71273fe3b0c90"
+ integrity sha512-Q6JgayhrIOaMvs0w9RYkp824iZiAQDKgmSoxqJDnLOml4a8UXWLGbw5ZhQFXAGkiJSKXEZ/KUXGz04D4tABuvw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-validation-unobtrusive@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.1.tgz#69a853a5d987676aaba2eeb79853cc56e5ae07b0"
- integrity sha512-apzrew9h0HSKvqZV9MTQO2pz7lagKsfRjIA4iq/0O7zhVgenLDul09OePxRUB624OifBTAgOD80mlCEXb+cjrg==
+"@abp/jquery-validation-unobtrusive@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.2.tgz#c4f4f8b5f4406bf0c693fdb0b4d72c1dc8aa2cf5"
+ integrity sha512-354+XIQJXNmsG70g72JcWxPtXAL9+yj595scP4vsPeHBXQr+QNLKjoEx7F43Mm6nFVLbedMRfpumErix18PiCg==
dependencies:
- "@abp/jquery-validation" "~10.7.0-rc.1"
+ "@abp/jquery-validation" "~10.7.0-rc.2"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.1.tgz#71b741ea5e0424c3f7ac0378ce17821718be7316"
- integrity sha512-FUcYgT7hoVGGdVqYxe3CzNQYcpCqUzpwMp5To8GJ8NA4fHyjPv/hRZlCjBXH+o0KbhCGbgKllV5/ly/UJwgUDw==
+"@abp/jquery-validation@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.2.tgz#6b1fab4cef76893a909fee51ffab7b97e907d54e"
+ integrity sha512-YtcrcmIWhNu52ssxSxJ6LuF4JU3WkhCCYJ4MT3upx4kltFxihMH5b1BDAj+s5Qb+qLi3jDn1D80IynJ5lxmnZg==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
- jquery-validation "^1.21.0"
+ "@abp/jquery" "~10.7.0-rc.2"
+ jquery-validation "^1.22.1"
-"@abp/jquery@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.1.tgz#84dc6ae11dc3e696978a4d07be95b5d96afbb74d"
- integrity sha512-fESdFdo4dfG2FrdSU1v6r3jXik9WWY3umN8OfHZSbMu7d9+eoTxpJEIDYFvFrGf4t5AQ8vhbxdmm6A+Kg5q4uw==
+"@abp/jquery@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.2.tgz#356b7e678258e95056a029558bef6d6e7bc1a3ec"
+ integrity sha512-vl6o63cW3k4VooyRgnBkrcj/krSjxoS5/EX9ZraG11QMk48Crl00isZvjcxswVUUooXTbzjRG9+Dwx3xRSvohA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- jquery "~3.7.1"
+ "@abp/core" "~10.7.0-rc.2"
+ jquery "~4.0.0"
+ jquery-migrate "~4.0.2"
-"@abp/lodash@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.1.tgz#0bfbf9bee2e70f13bc46af40c8952e51e3a1ab39"
- integrity sha512-3Jo6QBl2/MjOKo2w1Q/reZ5z4zAuVYoGmNjEA+zBGOErNC/f94GdKhnjI9WkTMSBdYyaliyzx9NQBY9ZxV6Vag==
+"@abp/lodash@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.2.tgz#40b2849fb36702652ace65c3b128e7c6b6cb0c05"
+ integrity sha512-WkxHOriKsaNHQEOKeLpTzzvbr90pbi747dldzV1T3typwZtpwL6xtqcivPVIAkfDxfdnzmsC+HiIX0mTHJA7sA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
lodash "^4.18.1"
-"@abp/luxon@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.1.tgz#038e3519dfaed24f79a4bc2c3f505bdff9f013d8"
- integrity sha512-Eb8dvWUodLxvdD00aQjUfwf08TWW4x2KcdrI388RyiXDhA9aXBG8yKCCpapY/QChkUt/V6tHAuZtHWs9g75T7A==
+"@abp/luxon@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.2.tgz#2650adc4bf32711a47a0f4c4452eead915899015"
+ integrity sha512-ReVQeloBgC0B2+O6IEwDP8joUyf/Qy2WlMFVz7VNXIylQFwr1hQ70CScKHm+mvACfIHoNSXl8EUET4XpXvhgPw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.1.tgz#c53cf649ad54a30ed10d0f949617f9f2fe74b17b"
- integrity sha512-e9EnklZy7LGJZT/nqnsgdba0LSuqjLSFy7o+FesDY574zJniE34q1dewc60eLElEW8ghY6W2ykLadfFoOtQ+mQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.2.tgz#0eae6ab79bf83158006afda892d20120c9b1b91c"
+ integrity sha512-v/gQyNEBBur2wfsU66700aFH57gS7lyMptObYOb9BTsZuRZ1WLA56JSz2EquOiYS8nvoSpqA63bs7LzHQvuiSg==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.1.tgz#c6c5c60c8e86dcb933ad59f3d2a8d64d3eda5ee2"
- integrity sha512-pMA7GO68yiLDpUxajnnQWuGPd3GegrPJDE5fTtCYK7qoVYeh8eiSeggVybrsfZSTo7BPEyb2jkfqsRcVGWgf8g==
+"@abp/moment@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.2.tgz#97f81e33c7bba19c815b26c71d5b9316b9aed268"
+ integrity sha512-Iks6nWoxUF4SVjqdAb7Ck6N/ArXGn48HeAzJvg7NCm4Kk31xSGVB598hbiezzVO0hBC9S7PBesz670P0m/2UUw==
dependencies:
moment "^2.30.1"
-"@abp/popper.js@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.1.tgz#24b02dccfbfa599cd4cca0ee15bccc6c7b61dda3"
- integrity sha512-AOxyY2m8QvcIMVGnosPJrguzR/TWfWACoEQRSPqeraNdu6yh3Z/5j6sVx0TDs0BBSsfa6EUnAavzxNvVY39T8Q==
+"@abp/popper.js@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.2.tgz#f133390b31f2572263a6d74c05fdd967c96edac1"
+ integrity sha512-CEAZ9eKBtHoigQ5P0bJR7W/4gVSrBO9RM0s0bKACb6ibZXtlRhxVudSgZ35SrGSYrRENSWSNvE5O4sDlebBx6w==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@popperjs/core" "^2.11.8"
-"@abp/prismjs@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.7.0-rc.1.tgz#c51c745e07328bf922ca033f54ab262e3e94170f"
- integrity sha512-xX68Yl2fsUdARxVEVyDZdFyqA/QpkIJ1bQ7OeTy3eoN/XgkiYpKUekUbwM3GE2xQvvf5cmKjhkLUPGW7necAXA==
+"@abp/prismjs@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-10.7.0-rc.2.tgz#2dbf97051f4f3a7fcf48a4dfff8e8cc527142e91"
+ integrity sha512-UgY4Zj0kLtmmMGFVJlRfGNCqhg1mLXoCZ7MQJJ5cSwf6RbL4LL9XFVFxj5Yy7ZrmXun7TXy1LUf4K6wJDcPKQg==
dependencies:
- "@abp/clipboard" "~10.7.0-rc.1"
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/clipboard" "~10.7.0-rc.2"
+ "@abp/core" "~10.7.0-rc.2"
prismjs "^1.30.0"
-"@abp/select2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.1.tgz#ed88702039bbcf064d1fdf0b003c6a782a033b43"
- integrity sha512-Lz/dtUf7EzOG5bovG9WAKylmSCo2OD9W7wpW3Fs5EFQx/HStm1k+EFASFp/Y/kORcXgd6uKAqckGAqwAjoycPA==
+"@abp/select2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.2.tgz#6432cbaef11e28aad1a6e0643fcdc50ea8570b0b"
+ integrity sha512-2pDsRDfVuEznGjI39JVTDB8E4rkjjAtOu9DmFNIsg2bFkuVUCRymmNZ0jgwyJhkkZ+JmbkFCnSI5YWasl5KBwA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.1.tgz#847eb66b6b3e444ecb2c1e948f6f08e0a3494834"
- integrity sha512-iT/FcFFTLzfgKPvadJR0JLcKMHsl8hazbb1Sle1I4sb9weEQnKU1IUyYP4XxWA71m8bE8pigK7MHJOzTpddCTQ==
+"@abp/sweetalert2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.2.tgz#94cd053d0978516e713a1b323af78d1885e0973c"
+ integrity sha512-vtNUgp+mpIc91YzMv4hTHfQCNmMehE02LHoVFFx/CB+vMR35VKSNYBCuBpUfMVYBPplFVdXwFqJsPCW4zG9ulw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.1.tgz#fd8c0bc437d412288a7ed8df33b8efcee6cbc6cb"
- integrity sha512-j0Y7XDZaIt9Pya71q/LpyBInuU7Try8IgRv83lOnncWpVvQmCECfeTq4iM9kVQxe5kD81PGeSdLbzw7AapbaXA==
+"@abp/timeago@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.2.tgz#8788d21008964f1094c9a7e099b1b5777b223f4e"
+ integrity sha512-ucQqQ5gP54Ui9jBS68DR6KPmm/Yw5Up0A78FYha1sF9L7DvZKnQWId1p3RJcwZHgoI6hQgEVOntL77kKxTgDYA==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
timeago "^1.6.7"
-"@abp/utils@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.1.tgz#e727045304bec1cdb65132e0c0fcfe18337fa767"
- integrity sha512-kkqzS2Pd/+CKkxVEpYwyRs4yHye0xi4kc3Ip4TIEZXCJ+whjB9b4qKh+AuglKGwz3RvnFvB+QxQhluUHu0oyaA==
+"@abp/utils@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.2.tgz#671c3bc01d9b5e51aaaf50b96d4014f044a443a0"
+ integrity sha512-7Y6tCsphuOBZw7cPt04WFLRnhk89dt94BkGpt9B40wEl3oT7VuH6+xajYSAxVp9REzNJ0Zfu64780Eq2SyAA3g==
dependencies:
just-compare "^2.3.0"
@@ -297,6 +298,11 @@ good-listener@^1.2.2:
dependencies:
delegate "^3.1.2"
+jquery-migrate@~4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/jquery-migrate/-/jquery-migrate-4.0.2.tgz#d296a64e05073017c54877462ac563f1927ee21f"
+ integrity sha512-J15ilpECoAsObLv2robklj0qf1qt9QCnZwwNcJAXkM7dIiOgcac2dqC3HgDtUF0fmRwKZa/ggTkxTj9S4Vk+HQ==
+
jquery-mousewheel@>=3.0.6:
version "3.1.13"
resolved "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz#06f0335f16e353a695e7206bf50503cb523a6ee5"
@@ -310,21 +316,31 @@ jquery-validation-unobtrusive@^4.0.0:
jquery "^3.6.0"
jquery-validation ">=1.19"
-jquery-validation@>=1.19, jquery-validation@^1.21.0:
+jquery-validation@>=1.19:
version "1.21.0"
resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.21.0.tgz#78fc05ab76020912a246af3661b3f54a438bca93"
integrity sha512-xNot0rlUIgu7duMcQ5qb6MGkGL/Z1PQaRJQoZAURW9+a/2PGOUxY36o/WyNeP2T9R6jvWB8Z9lUVvvQWI/Zs5w==
+jquery-validation@^1.22.1:
+ version "1.22.1"
+ resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.22.1.tgz#fc1ae3256110332c929245a44d69ee76fee0e481"
+ integrity sha512-ePLXLWK7Rh5eR652YsuIu7YPeGlCXrsJUteVw5iZopiU17yaMd3FaDggs6yyNMl56p8TYVeDRmKGK3fPZrMeQw==
+
jquery@>=1.10, "jquery@>=1.5.0 <4.0", jquery@>=1.7:
version "3.6.4"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.4.tgz#ba065c188142100be4833699852bf7c24dc0252f"
integrity sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ==
-"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0, jquery@~3.7.1:
+"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0:
version "3.7.1"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.1.tgz#083ef98927c9a6a74d05a6af02806566d16274de"
integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==
+jquery@~4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/jquery/-/jquery-4.0.0.tgz#95c33ac29005ff72ec444c5ba1cf457e61404fbb"
+ integrity sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==
+
just-compare@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7"
diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.MudBlazor/Components/FeatureManagementModal.razor b/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.MudBlazor/Components/FeatureManagementModal.razor
index 17062b39a6..efd2c3980a 100644
--- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.MudBlazor/Components/FeatureManagementModal.razor
+++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.MudBlazor/Components/FeatureManagementModal.razor
@@ -18,10 +18,11 @@
{
- @foreach (var group in Groups)
- {
-
-
+ @{
+ @* The features come from the definitions, so there is no known input to put
+ AutoFocus on. The first panel gets a container that takes the focus. *@
+ RenderFragment renderGroup = group =>
+ @
@group.DisplayName
@foreach (var feature in group.Features)
{
@@ -68,7 +69,24 @@
}
}
-
+ ;
+ }
+ @for (var groupIndex = 0; groupIndex < Groups.Count; groupIndex++)
+ {
+ var group = Groups[groupIndex];
+ @* MudTabs renders the panel content after the loop is over. *@
+ var isFirstGroup = groupIndex == 0;
+
+ @if (isFirstGroup)
+ {
+
+ @renderGroup(group)
+
+ }
+ else
+ {
+ @renderGroup(group)
+ }
}
diff --git a/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.MudBlazor/Components/FeatureManagementModal.razor.cs b/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.MudBlazor/Components/FeatureManagementModal.razor.cs
index c913b05f3c..2b0c50a103 100644
--- a/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.MudBlazor/Components/FeatureManagementModal.razor.cs
+++ b/modules/feature-management/src/Volo.Abp.FeatureManagement.Blazor.MudBlazor/Components/FeatureManagementModal.razor.cs
@@ -4,6 +4,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components;
using Microsoft.Extensions.Localization;
+using Microsoft.JSInterop;
using Microsoft.Extensions.Options;
using MudBlazor;
using Volo.Abp.AspNetCore.Components.Messages;
@@ -44,6 +45,14 @@ public partial class FeatureManagementModal
protected Dictionary SelectionStringValues = new();
+ protected const int MaxFocusRenderCount = 5;
+
+ protected ElementReference _firstGroupContainer;
+
+ protected bool _shouldFocusFirstGroup;
+
+ protected int _focusRenderCount;
+
public virtual async Task OpenAsync(string providerName, string? providerKey = null, string? providerKeyDisplayName = null)
{
try
@@ -89,6 +98,10 @@ public partial class FeatureManagementModal
}
_isVisible = true;
+ // The previous reference points to an element that is gone by now.
+ _firstGroupContainer = default;
+ _shouldFocusFirstGroup = Groups.Any();
+ _focusRenderCount = 0;
await InvokeAsync(StateHasChanged);
}
catch (Exception ex)
@@ -97,6 +110,49 @@ public partial class FeatureManagementModal
}
}
+ protected override async Task OnAfterRenderAsync(bool firstRender)
+ {
+ await base.OnAfterRenderAsync(firstRender);
+
+ if (!_shouldFocusFirstGroup)
+ {
+ return;
+ }
+
+ if (!_isVisible)
+ {
+ _shouldFocusFirstGroup = false;
+ return;
+ }
+
+ // The dialog provider renders the content in a later batch, so rendering again is what brings
+ // this method back once the container is bound.
+ if (_firstGroupContainer.Id.IsNullOrEmpty())
+ {
+ if (_focusRenderCount++ < MaxFocusRenderCount)
+ {
+ await InvokeAsync(StateHasChanged);
+ }
+ else
+ {
+ _shouldFocusFirstGroup = false;
+ }
+
+ return;
+ }
+
+ _shouldFocusFirstGroup = false;
+
+ try
+ {
+ await _firstGroupContainer.MudFocusFirstAsync();
+ }
+ catch (JSException)
+ {
+ // The dialog was closed before the focus call reached the element.
+ }
+ }
+
public virtual Task CloseModal()
{
_isVisible = false;
diff --git a/modules/openiddict/app/OpenIddict.Demo.Server/package.json b/modules/openiddict/app/OpenIddict.Demo.Server/package.json
index a972f58c1c..36ad42397a 100644
--- a/modules/openiddict/app/OpenIddict.Demo.Server/package.json
+++ b/modules/openiddict/app/OpenIddict.Demo.Server/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2"
}
}
diff --git a/modules/openiddict/app/angular/package.json b/modules/openiddict/app/angular/package.json
index 06bb1a1b4d..8b2efe26ac 100644
--- a/modules/openiddict/app/angular/package.json
+++ b/modules/openiddict/app/angular/package.json
@@ -12,15 +12,15 @@
},
"private": true,
"dependencies": {
- "@abp/ng.account": "~10.7.0-rc.1",
- "@abp/ng.components": "~10.7.0-rc.1",
- "@abp/ng.core": "~10.7.0-rc.1",
- "@abp/ng.oauth": "~10.7.0-rc.1",
- "@abp/ng.identity": "~10.7.0-rc.1",
- "@abp/ng.setting-management": "~10.7.0-rc.1",
- "@abp/ng.tenant-management": "~10.7.0-rc.1",
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
- "@abp/ng.theme.lepton-x": "~5.7.0-rc.1",
+ "@abp/ng.account": "~10.7.0-rc.2",
+ "@abp/ng.components": "~10.7.0-rc.2",
+ "@abp/ng.core": "~10.7.0-rc.2",
+ "@abp/ng.oauth": "~10.7.0-rc.2",
+ "@abp/ng.identity": "~10.7.0-rc.2",
+ "@abp/ng.setting-management": "~10.7.0-rc.2",
+ "@abp/ng.tenant-management": "~10.7.0-rc.2",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
+ "@abp/ng.theme.lepton-x": "~5.7.0-rc.2",
"@angular/animations": "^15.0.1",
"@angular/common": "^15.0.1",
"@angular/compiler": "^15.0.1",
@@ -36,7 +36,7 @@
"zone.js": "~0.11.4"
},
"devDependencies": {
- "@abp/ng.schematics": "~10.7.0-rc.1",
+ "@abp/ng.schematics": "~10.7.0-rc.2",
"@angular-devkit/build-angular": "^15.0.1",
"@angular-eslint/builder": "~15.1.0",
"@angular-eslint/eslint-plugin": "~15.1.0",
diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/PermissionManagementModal.razor b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/PermissionManagementModal.razor
index 8333db25ac..ebaf4536d5 100644
--- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/PermissionManagementModal.razor
+++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/PermissionManagementModal.razor
@@ -16,6 +16,7 @@
UserAttributes="@(new Dictionary { { "aria-label", L["Search"].Value } })"
Adornment="Adornment.Start"
AdornmentIcon="@Icons.Material.Filled.Search"
+ AutoFocus="true"
Immediate="true" />
diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/ResourcePermissionManagementModal.razor b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/ResourcePermissionManagementModal.razor
index be05954983..7f01a7bcec 100644
--- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/ResourcePermissionManagementModal.razor
+++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/Components/ResourcePermissionManagementModal.razor
@@ -24,14 +24,14 @@
-
-
+
+
@L["Edit"]
-
-
+
+
@L["Delete"]
-
-
+
+
diff --git a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/_Imports.razor b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/_Imports.razor
index 614bc218c7..aa44b2cc7f 100644
--- a/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/_Imports.razor
+++ b/modules/permission-management/src/Volo.Abp.PermissionManagement.Blazor.MudBlazor/_Imports.razor
@@ -2,3 +2,4 @@
@using Volo.Abp.AspNetCore.Components.Web
@using Volo.Abp.AspNetCore.Components.Web.Theming.MudBlazor.Layout
@using MudBlazor
+@using Volo.Abp.MudBlazorUI.Components
diff --git a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/package.json b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/package.json
index 3c95af4f35..ed2b0ff258 100644
--- a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/package.json
+++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/package.json
@@ -3,6 +3,6 @@
"name": "demo-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2"
}
}
diff --git a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock
index 61346f2ede..ef5f89c648 100644
--- a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock
+++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock
@@ -2,186 +2,187 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.1.tgz#522fa8936c5572ffb97629a32e3c0cecab2cb20e"
- integrity sha512-0XW2QxEfL+A1Aw4kzknRuZAflHLBaA4TEiTP6rWHXTSUjuStbyfhjdOWZReK62wn7tDDAKOGS/ZGP9d3Gqt3UA==
+"@abp/aspnetcore.mvc.ui.theme.basic@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-10.7.0-rc.2.tgz#ffcbf8a9c11247bd913ea3b656af5271b0185aee"
+ integrity sha512-+HoXUWl8h6rintKh+bz9JhK7RLPP4ai5SGSBl9z0joPBG0SIABAKIdOQXSrRqw/ouL3xtOKAbu8ROOMOeEWs0g==
dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~10.7.0-rc.2"
-"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.1.tgz#8bf6231769ebaeb72773a4c22b028ebf74cbfcfd"
- integrity sha512-o1LveBACL83sPwiTu++t276wMR9hzdcc3vTogHbZJpoDTVnfy9Uhtlt+d9GpT0e69Ox8/ftcZqzl4JXDKuklFQ==
+"@abp/aspnetcore.mvc.ui.theme.shared@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-10.7.0-rc.2.tgz#113baea4635c63ca4722082d51444f54dad09481"
+ integrity sha512-/Z0wNC1JeyTGLiObl7JLXrFc1PG34ngBexgjjYkQzlDHPKzURaFGAPlwWHh1V/SarK8d43rfFuKM2O7SjlBYHA==
dependencies:
- "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.1"
- "@abp/bootstrap" "~10.7.0-rc.1"
- "@abp/bootstrap-datepicker" "~10.7.0-rc.1"
- "@abp/bootstrap-daterangepicker" "~10.7.0-rc.1"
- "@abp/datatables.net-bs5" "~10.7.0-rc.1"
- "@abp/font-awesome" "~10.7.0-rc.1"
- "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.1"
- "@abp/lodash" "~10.7.0-rc.1"
- "@abp/luxon" "~10.7.0-rc.1"
- "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.1"
- "@abp/moment" "~10.7.0-rc.1"
- "@abp/select2" "~10.7.0-rc.1"
- "@abp/sweetalert2" "~10.7.0-rc.1"
- "@abp/timeago" "~10.7.0-rc.1"
-
-"@abp/aspnetcore.mvc.ui@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.1.tgz#984580897f4e557e24e52538e4b028543bb1f3f9"
- integrity sha512-GJNfb+NkVjGYRQNmuGREeFAJ7WFnuV3QXWnRRhWB/X/dPbc4BdLNUuYaWO/elA1YGU82m8sLtQk0bBLgX1sW6w==
+ "@abp/aspnetcore.mvc.ui" "~10.7.0-rc.2"
+ "@abp/bootstrap" "~10.7.0-rc.2"
+ "@abp/bootstrap-datepicker" "~10.7.0-rc.2"
+ "@abp/bootstrap-daterangepicker" "~10.7.0-rc.2"
+ "@abp/datatables.net-bs5" "~10.7.0-rc.2"
+ "@abp/font-awesome" "~10.7.0-rc.2"
+ "@abp/jquery-validation-unobtrusive" "~10.7.0-rc.2"
+ "@abp/lodash" "~10.7.0-rc.2"
+ "@abp/luxon" "~10.7.0-rc.2"
+ "@abp/malihu-custom-scrollbar-plugin" "~10.7.0-rc.2"
+ "@abp/moment" "~10.7.0-rc.2"
+ "@abp/select2" "~10.7.0-rc.2"
+ "@abp/sweetalert2" "~10.7.0-rc.2"
+ "@abp/timeago" "~10.7.0-rc.2"
+
+"@abp/aspnetcore.mvc.ui@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-10.7.0-rc.2.tgz#e2970aa035e973d79d6bb56ee2ee28acb6eda8e9"
+ integrity sha512-dOYIcYkt+DsOv9rM05GM/KFJTZz1QzgysIa/rRc12Sh0v2rGGVKnFmZHaA0k4J2TMfyxSxKoQsyPX3C8hjfKxg==
dependencies:
ansi-colors "^4.1.3"
-"@abp/bootstrap-datepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.1.tgz#a2b0f4c194dbe4008baeb6377deddcde57615558"
- integrity sha512-gy+Cq+w4rTCwbRKsbJvRGI5bZqd8cn0RrkPmWM5OdoKHB270fJZYv1s2GbU1hp3ELfS6LpycbNNjKMIywGCbjg==
+"@abp/bootstrap-datepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-10.7.0-rc.2.tgz#0eee3cbda1b07eadd0e9cfe37bd14baf45109c4b"
+ integrity sha512-Wmp1AfYE1RrqY5c0SNzeHUwxPoGz/QOC8itLh1rGzfsVK46b/0PSITCsQWZ17iGYgJW68gNUp4jl2ku+Y6tjOQ==
dependencies:
bootstrap-datepicker "^1.10.1"
-"@abp/bootstrap-daterangepicker@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.1.tgz#77bc951ab3df6c06e4f2e2b3474c2dc8fff8a9ee"
- integrity sha512-Q/BsC0LvrKTlfHCdBWAoeFYdbrkqlcNKTIQfdKYtavUsqS4fkcqt6vEe4y60kSUGzgkr9VIhN4d+e/yd9KNqTg==
+"@abp/bootstrap-daterangepicker@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-10.7.0-rc.2.tgz#4a5ad2cad1abbf8802a0627614a49e00e3e5c0da"
+ integrity sha512-voLXh2FBH24fAK1p9Q07PRvlyJAsyB+IWXp6SmyTcvH45evrahKofzyjvc6AJHn7QJ8DgXL3pC8Jyx5LXXuUtg==
dependencies:
- "@abp/moment" "~10.7.0-rc.1"
+ "@abp/moment" "~10.7.0-rc.2"
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.1.tgz#0fd48f4451527192f9e2b361bc001f0f2b710e6e"
- integrity sha512-2l5chEgpPOoGP3DSwsfnILmAeBxvA55cUoktGKGqBIo9tgQvVBZOwltLcQhEWVmZ4vmONgkBp96XwnEY9W3TKA==
+"@abp/bootstrap@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-10.7.0-rc.2.tgz#f58165b7ac3af7a513e60514c3e1102c2d884684"
+ integrity sha512-s5JP80N8HR5jZVlr/hEWMfMk3QDhTLcIK7LAMDrTzlL41CaqjHiKb5stpl7xtzWZuIPEi92WCfDHIWSmqULR3g==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- "@abp/popper.js" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
+ "@abp/popper.js" "~10.7.0-rc.2"
bootstrap "^5.3.8"
-"@abp/core@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.1.tgz#40017b504c37e9b4b8e5e85823ed59768e49d93c"
- integrity sha512-aoAIRmrkHXdw06ZTxC2rF7Bj6zNSw+WHG39dC2vYQXc70MAZ78v2J4xEY/hk8+12UNdjKIVmwvqhMi2DJwSQjg==
+"@abp/core@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-10.7.0-rc.2.tgz#363b875024cf665302c4199d0e7ab744e7e0bfec"
+ integrity sha512-gpnCPKzJyM8nAubZ5O/OjBKlIbP7F2qJ61VVqSPQiGzGBDk+BnQ+vosLxcjncwN9g4k6ZnAxnGgcnJCz6M/h6Q==
dependencies:
- "@abp/utils" "~10.7.0-rc.1"
+ "@abp/utils" "~10.7.0-rc.2"
-"@abp/datatables.net-bs5@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.1.tgz#e3a3d1e0bc39c80bb85db72ee23e9fd2b1a3480d"
- integrity sha512-24zyvsCA8sc/w0O7ZxxVZwtrb0+EUV5Jw/QWOLCSxkLi7c62lJQJ8FT3BueAx/AN+9fMMV8CVL23o3stWkXsEg==
+"@abp/datatables.net-bs5@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-10.7.0-rc.2.tgz#bbb086344ede0f75f3c23ad81b4cce517db41f29"
+ integrity sha512-hg5XQUNfpxj/NqIjeGzolubTWbb4D/Y/Bf4DWjZvzSLhj/IxkQ8xGcEoxXLF91gRgH06cnHiZTJ3YaXW342a/g==
dependencies:
- "@abp/datatables.net" "~10.7.0-rc.1"
+ "@abp/datatables.net" "~10.7.0-rc.2"
datatables.net-bs5 "^2.3.4"
-"@abp/datatables.net@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.1.tgz#e73ebad5895ea4c095b75b2d4c934b4658547d10"
- integrity sha512-XImGEEv6zJDFOHNQKUF/sOk2MJzX5jovRRa752v9g8KCVOhUWB6mz4G/QuJ73uKqdXSS7sUZ04sqk3VGq8/9mA==
+"@abp/datatables.net@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-10.7.0-rc.2.tgz#695dbb16c282202452684ba3e601781eae43e3a2"
+ integrity sha512-Rkz+PzaG0MTM5s2Bco2gpmr67I7bmSeMSdRy3+zDCKiNuRO97jFss76EA5nSW6CcatntGCOWWoXNQih45LWLWw==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
datatables.net "^2.3.4"
-"@abp/font-awesome@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.1.tgz#1c15dc1f91be572c315cdf49e0e35685d094ed23"
- integrity sha512-hRslYk5B1hC0qj0TGPyQ0KLWMpWleENamKh0ostjiXKPZdd0OG/+iKPtwX5qlz8SUY9vSm/DAtI2+cNzOK6lvQ==
+"@abp/font-awesome@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-10.7.0-rc.2.tgz#4934e38a4c73eb04c9c4a4e301c71273fe3b0c90"
+ integrity sha512-Q6JgayhrIOaMvs0w9RYkp824iZiAQDKgmSoxqJDnLOml4a8UXWLGbw5ZhQFXAGkiJSKXEZ/KUXGz04D4tABuvw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@fortawesome/fontawesome-free" "^7.0.1"
-"@abp/jquery-validation-unobtrusive@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.1.tgz#69a853a5d987676aaba2eeb79853cc56e5ae07b0"
- integrity sha512-apzrew9h0HSKvqZV9MTQO2pz7lagKsfRjIA4iq/0O7zhVgenLDul09OePxRUB624OifBTAgOD80mlCEXb+cjrg==
+"@abp/jquery-validation-unobtrusive@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-10.7.0-rc.2.tgz#c4f4f8b5f4406bf0c693fdb0b4d72c1dc8aa2cf5"
+ integrity sha512-354+XIQJXNmsG70g72JcWxPtXAL9+yj595scP4vsPeHBXQr+QNLKjoEx7F43Mm6nFVLbedMRfpumErix18PiCg==
dependencies:
- "@abp/jquery-validation" "~10.7.0-rc.1"
+ "@abp/jquery-validation" "~10.7.0-rc.2"
jquery-validation-unobtrusive "^4.0.0"
-"@abp/jquery-validation@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.1.tgz#71b741ea5e0424c3f7ac0378ce17821718be7316"
- integrity sha512-FUcYgT7hoVGGdVqYxe3CzNQYcpCqUzpwMp5To8GJ8NA4fHyjPv/hRZlCjBXH+o0KbhCGbgKllV5/ly/UJwgUDw==
+"@abp/jquery-validation@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-10.7.0-rc.2.tgz#6b1fab4cef76893a909fee51ffab7b97e907d54e"
+ integrity sha512-YtcrcmIWhNu52ssxSxJ6LuF4JU3WkhCCYJ4MT3upx4kltFxihMH5b1BDAj+s5Qb+qLi3jDn1D80IynJ5lxmnZg==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
- jquery-validation "^1.21.0"
+ "@abp/jquery" "~10.7.0-rc.2"
+ jquery-validation "^1.22.1"
-"@abp/jquery@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.1.tgz#84dc6ae11dc3e696978a4d07be95b5d96afbb74d"
- integrity sha512-fESdFdo4dfG2FrdSU1v6r3jXik9WWY3umN8OfHZSbMu7d9+eoTxpJEIDYFvFrGf4t5AQ8vhbxdmm6A+Kg5q4uw==
+"@abp/jquery@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-10.7.0-rc.2.tgz#356b7e678258e95056a029558bef6d6e7bc1a3ec"
+ integrity sha512-vl6o63cW3k4VooyRgnBkrcj/krSjxoS5/EX9ZraG11QMk48Crl00isZvjcxswVUUooXTbzjRG9+Dwx3xRSvohA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
- jquery "~3.7.1"
-
-"@abp/lodash@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.1.tgz#0bfbf9bee2e70f13bc46af40c8952e51e3a1ab39"
- integrity sha512-3Jo6QBl2/MjOKo2w1Q/reZ5z4zAuVYoGmNjEA+zBGOErNC/f94GdKhnjI9WkTMSBdYyaliyzx9NQBY9ZxV6Vag==
+ "@abp/core" "~10.7.0-rc.2"
+ jquery "~4.0.0"
+ jquery-migrate "~4.0.2"
+
+"@abp/lodash@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-10.7.0-rc.2.tgz#40b2849fb36702652ace65c3b128e7c6b6cb0c05"
+ integrity sha512-WkxHOriKsaNHQEOKeLpTzzvbr90pbi747dldzV1T3typwZtpwL6xtqcivPVIAkfDxfdnzmsC+HiIX0mTHJA7sA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
lodash "^4.18.1"
-"@abp/luxon@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.1.tgz#038e3519dfaed24f79a4bc2c3f505bdff9f013d8"
- integrity sha512-Eb8dvWUodLxvdD00aQjUfwf08TWW4x2KcdrI388RyiXDhA9aXBG8yKCCpapY/QChkUt/V6tHAuZtHWs9g75T7A==
+"@abp/luxon@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-10.7.0-rc.2.tgz#2650adc4bf32711a47a0f4c4452eead915899015"
+ integrity sha512-ReVQeloBgC0B2+O6IEwDP8joUyf/Qy2WlMFVz7VNXIylQFwr1hQ70CScKHm+mvACfIHoNSXl8EUET4XpXvhgPw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
luxon "^3.7.2"
-"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.1.tgz#c53cf649ad54a30ed10d0f949617f9f2fe74b17b"
- integrity sha512-e9EnklZy7LGJZT/nqnsgdba0LSuqjLSFy7o+FesDY574zJniE34q1dewc60eLElEW8ghY6W2ykLadfFoOtQ+mQ==
+"@abp/malihu-custom-scrollbar-plugin@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-10.7.0-rc.2.tgz#0eae6ab79bf83158006afda892d20120c9b1b91c"
+ integrity sha512-v/gQyNEBBur2wfsU66700aFH57gS7lyMptObYOb9BTsZuRZ1WLA56JSz2EquOiYS8nvoSpqA63bs7LzHQvuiSg==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.1.tgz#c6c5c60c8e86dcb933ad59f3d2a8d64d3eda5ee2"
- integrity sha512-pMA7GO68yiLDpUxajnnQWuGPd3GegrPJDE5fTtCYK7qoVYeh8eiSeggVybrsfZSTo7BPEyb2jkfqsRcVGWgf8g==
+"@abp/moment@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-10.7.0-rc.2.tgz#97f81e33c7bba19c815b26c71d5b9316b9aed268"
+ integrity sha512-Iks6nWoxUF4SVjqdAb7Ck6N/ArXGn48HeAzJvg7NCm4Kk31xSGVB598hbiezzVO0hBC9S7PBesz670P0m/2UUw==
dependencies:
moment "^2.30.1"
-"@abp/popper.js@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.1.tgz#24b02dccfbfa599cd4cca0ee15bccc6c7b61dda3"
- integrity sha512-AOxyY2m8QvcIMVGnosPJrguzR/TWfWACoEQRSPqeraNdu6yh3Z/5j6sVx0TDs0BBSsfa6EUnAavzxNvVY39T8Q==
+"@abp/popper.js@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-10.7.0-rc.2.tgz#f133390b31f2572263a6d74c05fdd967c96edac1"
+ integrity sha512-CEAZ9eKBtHoigQ5P0bJR7W/4gVSrBO9RM0s0bKACb6ibZXtlRhxVudSgZ35SrGSYrRENSWSNvE5O4sDlebBx6w==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
"@popperjs/core" "^2.11.8"
-"@abp/select2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.1.tgz#ed88702039bbcf064d1fdf0b003c6a782a033b43"
- integrity sha512-Lz/dtUf7EzOG5bovG9WAKylmSCo2OD9W7wpW3Fs5EFQx/HStm1k+EFASFp/Y/kORcXgd6uKAqckGAqwAjoycPA==
+"@abp/select2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-10.7.0-rc.2.tgz#6432cbaef11e28aad1a6e0643fcdc50ea8570b0b"
+ integrity sha512-2pDsRDfVuEznGjI39JVTDB8E4rkjjAtOu9DmFNIsg2bFkuVUCRymmNZ0jgwyJhkkZ+JmbkFCnSI5YWasl5KBwA==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
select2 "^4.0.13"
-"@abp/sweetalert2@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.1.tgz#847eb66b6b3e444ecb2c1e948f6f08e0a3494834"
- integrity sha512-iT/FcFFTLzfgKPvadJR0JLcKMHsl8hazbb1Sle1I4sb9weEQnKU1IUyYP4XxWA71m8bE8pigK7MHJOzTpddCTQ==
+"@abp/sweetalert2@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-10.7.0-rc.2.tgz#94cd053d0978516e713a1b323af78d1885e0973c"
+ integrity sha512-vtNUgp+mpIc91YzMv4hTHfQCNmMehE02LHoVFFx/CB+vMR35VKSNYBCuBpUfMVYBPplFVdXwFqJsPCW4zG9ulw==
dependencies:
- "@abp/core" "~10.7.0-rc.1"
+ "@abp/core" "~10.7.0-rc.2"
sweetalert2 "^11.23.0"
-"@abp/timeago@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.1.tgz#fd8c0bc437d412288a7ed8df33b8efcee6cbc6cb"
- integrity sha512-j0Y7XDZaIt9Pya71q/LpyBInuU7Try8IgRv83lOnncWpVvQmCECfeTq4iM9kVQxe5kD81PGeSdLbzw7AapbaXA==
+"@abp/timeago@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-10.7.0-rc.2.tgz#8788d21008964f1094c9a7e099b1b5777b223f4e"
+ integrity sha512-ucQqQ5gP54Ui9jBS68DR6KPmm/Yw5Up0A78FYha1sF9L7DvZKnQWId1p3RJcwZHgoI6hQgEVOntL77kKxTgDYA==
dependencies:
- "@abp/jquery" "~10.7.0-rc.1"
+ "@abp/jquery" "~10.7.0-rc.2"
timeago "^1.6.7"
-"@abp/utils@~10.7.0-rc.1":
- version "10.7.0-rc.1"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.1.tgz#e727045304bec1cdb65132e0c0fcfe18337fa767"
- integrity sha512-kkqzS2Pd/+CKkxVEpYwyRs4yHye0xi4kc3Ip4TIEZXCJ+whjB9b4qKh+AuglKGwz3RvnFvB+QxQhluUHu0oyaA==
+"@abp/utils@~10.7.0-rc.2":
+ version "10.7.0-rc.2"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-10.7.0-rc.2.tgz#671c3bc01d9b5e51aaaf50b96d4014f044a443a0"
+ integrity sha512-7Y6tCsphuOBZw7cPt04WFLRnhk89dt94BkGpt9B40wEl3oT7VuH6+xajYSAxVp9REzNJ0Zfu64780Eq2SyAA3g==
dependencies:
just-compare "^2.3.0"
@@ -235,6 +236,11 @@ datatables.net@2.3.4, datatables.net@^2.3.4:
dependencies:
jquery ">=1.7"
+jquery-migrate@~4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/jquery-migrate/-/jquery-migrate-4.0.2.tgz#d296a64e05073017c54877462ac563f1927ee21f"
+ integrity sha512-J15ilpECoAsObLv2robklj0qf1qt9QCnZwwNcJAXkM7dIiOgcac2dqC3HgDtUF0fmRwKZa/ggTkxTj9S4Vk+HQ==
+
jquery-mousewheel@>=3.0.6:
version "3.1.13"
resolved "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz#06f0335f16e353a695e7206bf50503cb523a6ee5"
@@ -248,21 +254,31 @@ jquery-validation-unobtrusive@^4.0.0:
jquery "^3.6.0"
jquery-validation ">=1.19"
-jquery-validation@>=1.19, jquery-validation@^1.21.0:
+jquery-validation@>=1.19:
version "1.21.0"
resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.21.0.tgz#78fc05ab76020912a246af3661b3f54a438bca93"
integrity sha512-xNot0rlUIgu7duMcQ5qb6MGkGL/Z1PQaRJQoZAURW9+a/2PGOUxY36o/WyNeP2T9R6jvWB8Z9lUVvvQWI/Zs5w==
+jquery-validation@^1.22.1:
+ version "1.22.1"
+ resolved "https://registry.yarnpkg.com/jquery-validation/-/jquery-validation-1.22.1.tgz#fc1ae3256110332c929245a44d69ee76fee0e481"
+ integrity sha512-ePLXLWK7Rh5eR652YsuIu7YPeGlCXrsJUteVw5iZopiU17yaMd3FaDggs6yyNMl56p8TYVeDRmKGK3fPZrMeQw==
+
jquery@>=1.10, "jquery@>=1.5.0 <4.0", jquery@>=1.7:
version "3.6.4"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.4.tgz#ba065c188142100be4833699852bf7c24dc0252f"
integrity sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ==
-"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0, jquery@~3.7.1:
+"jquery@>=3.4.0 <4.0.0", jquery@^3.6.0:
version "3.7.1"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.1.tgz#083ef98927c9a6a74d05a6af02806566d16274de"
integrity sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==
+jquery@~4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/jquery/-/jquery-4.0.0.tgz#95c33ac29005ff72ec444c5ba1cf457e61404fbb"
+ integrity sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==
+
just-compare@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7"
diff --git a/modules/virtual-file-explorer/app/package.json b/modules/virtual-file-explorer/app/package.json
index 2e22611cf0..92ad5423a6 100644
--- a/modules/virtual-file-explorer/app/package.json
+++ b/modules/virtual-file-explorer/app/package.json
@@ -3,7 +3,7 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1",
- "@abp/virtual-file-explorer": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2",
+ "@abp/virtual-file-explorer": "~10.7.0-rc.2"
}
}
diff --git a/npm/lerna.json b/npm/lerna.json
index 07488dbc77..33b558e69c 100644
--- a/npm/lerna.json
+++ b/npm/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"packages": [
"packs/*"
],
diff --git a/npm/ng-packs/package.json b/npm/ng-packs/package.json
index 405e0e15d9..66bb2b441a 100644
--- a/npm/ng-packs/package.json
+++ b/npm/ng-packs/package.json
@@ -48,9 +48,9 @@
},
"private": true,
"devDependencies": {
- "@abp/ng.theme.lepton-x": "~5.7.0-rc.1",
- "@abp/ng.schematics": "~10.7.0-rc.1",
- "@abp/utils": "~10.7.0-rc.1",
+ "@abp/ng.theme.lepton-x": "~5.7.0-rc.2",
+ "@abp/ng.schematics": "~10.7.0-rc.2",
+ "@abp/utils": "~10.7.0-rc.2",
"@angular-devkit/build-angular": "~22.1.0",
"@angular-devkit/core": "~22.1.0",
"@angular-devkit/schematics": "~22.1.0",
diff --git a/npm/ng-packs/packages/account-core/package.json b/npm/ng-packs/packages/account-core/package.json
index c3e7a93f12..888f969a41 100644
--- a/npm/ng-packs/packages/account-core/package.json
+++ b/npm/ng-packs/packages/account-core/package.json
@@ -1,14 +1,14 @@
{
"name": "@abp/ng.account.core",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.core": "~10.7.0-rc.1",
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
+ "@abp/ng.core": "~10.7.0-rc.2",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/account/package.json b/npm/ng-packs/packages/account/package.json
index 9c138bfb5a..60dd35f3cf 100644
--- a/npm/ng-packs/packages/account/package.json
+++ b/npm/ng-packs/packages/account/package.json
@@ -1,14 +1,14 @@
{
"name": "@abp/ng.account",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.account.core": "~10.7.0-rc.1",
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
+ "@abp/ng.account.core": "~10.7.0-rc.2",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/cms-kit/package.json b/npm/ng-packs/packages/cms-kit/package.json
index 3b97b17f5d..379d479d7f 100644
--- a/npm/ng-packs/packages/cms-kit/package.json
+++ b/npm/ng-packs/packages/cms-kit/package.json
@@ -1,15 +1,15 @@
{
"name": "@abp/ng.cms-kit",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.components": "~10.7.0-rc.1",
- "@abp/ng.setting-management": "~10.7.0-rc.1",
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
+ "@abp/ng.components": "~10.7.0-rc.2",
+ "@abp/ng.setting-management": "~10.7.0-rc.2",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
"@toast-ui/editor": "~3.0.0",
"codemirror": "~6.0.0",
"tslib": "^2.0.0"
diff --git a/npm/ng-packs/packages/components/package.json b/npm/ng-packs/packages/components/package.json
index c6bf8b44f9..1bc6c6f895 100644
--- a/npm/ng-packs/packages/components/package.json
+++ b/npm/ng-packs/packages/components/package.json
@@ -1,14 +1,14 @@
{
"name": "@abp/ng.components",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"peerDependencies": {
- "@abp/ng.core": ">=10.7.0-rc.1",
- "@abp/ng.theme.shared": ">=10.7.0-rc.1"
+ "@abp/ng.core": ">=10.7.0-rc.2",
+ "@abp/ng.theme.shared": ">=10.7.0-rc.2"
},
"dependencies": {
"chart.js": "^3.5.1",
diff --git a/npm/ng-packs/packages/core/package.json b/npm/ng-packs/packages/core/package.json
index 0349c2e59d..d0fbbb5676 100644
--- a/npm/ng-packs/packages/core/package.json
+++ b/npm/ng-packs/packages/core/package.json
@@ -1,13 +1,13 @@
{
"name": "@abp/ng.core",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/utils": "~10.7.0-rc.1",
+ "@abp/utils": "~10.7.0-rc.2",
"just-clone": "^6.0.0",
"just-compare": "^2.0.0",
"ts-toolbelt": "^9.0.0",
diff --git a/npm/ng-packs/packages/feature-management/package.json b/npm/ng-packs/packages/feature-management/package.json
index 512561583d..d603736aa5 100644
--- a/npm/ng-packs/packages/feature-management/package.json
+++ b/npm/ng-packs/packages/feature-management/package.json
@@ -1,13 +1,13 @@
{
"name": "@abp/ng.feature-management",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
"tslib": "^2.0.0"
},
"peerDependencies": {
diff --git a/npm/ng-packs/packages/generators/package.json b/npm/ng-packs/packages/generators/package.json
index 5286461e78..a652f1a8c3 100644
--- a/npm/ng-packs/packages/generators/package.json
+++ b/npm/ng-packs/packages/generators/package.json
@@ -1,6 +1,6 @@
{
"name": "@abp/nx.generators",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"generators": "./generators.json",
"type": "commonjs",
diff --git a/npm/ng-packs/packages/identity/package.json b/npm/ng-packs/packages/identity/package.json
index 930113e973..b0b7f7ccdc 100644
--- a/npm/ng-packs/packages/identity/package.json
+++ b/npm/ng-packs/packages/identity/package.json
@@ -1,15 +1,15 @@
{
"name": "@abp/ng.identity",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.components": "~10.7.0-rc.1",
- "@abp/ng.permission-management": "~10.7.0-rc.1",
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
+ "@abp/ng.components": "~10.7.0-rc.2",
+ "@abp/ng.permission-management": "~10.7.0-rc.2",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/oauth/package.json b/npm/ng-packs/packages/oauth/package.json
index 36f73d6a6a..5a1fea68ac 100644
--- a/npm/ng-packs/packages/oauth/package.json
+++ b/npm/ng-packs/packages/oauth/package.json
@@ -1,14 +1,14 @@
{
"name": "@abp/ng.oauth",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.core": "~10.7.0-rc.1",
- "@abp/utils": "~10.7.0-rc.1",
+ "@abp/ng.core": "~10.7.0-rc.2",
+ "@abp/utils": "~10.7.0-rc.2",
"angular-oauth2-oidc": "^20.0.0",
"just-clone": "^6.0.0",
"just-compare": "^2.0.0",
diff --git a/npm/ng-packs/packages/permission-management/package.json b/npm/ng-packs/packages/permission-management/package.json
index 25f90bb13f..75961ce58e 100644
--- a/npm/ng-packs/packages/permission-management/package.json
+++ b/npm/ng-packs/packages/permission-management/package.json
@@ -1,13 +1,13 @@
{
"name": "@abp/ng.permission-management",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
"tslib": "^2.0.0"
},
"peerDependencies": {
diff --git a/npm/ng-packs/packages/schematics/package.json b/npm/ng-packs/packages/schematics/package.json
index 1a928c4668..c3df139fb9 100644
--- a/npm/ng-packs/packages/schematics/package.json
+++ b/npm/ng-packs/packages/schematics/package.json
@@ -1,6 +1,6 @@
{
"name": "@abp/ng.schematics",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"author": "",
"schematics": "./collection.json",
"dependencies": {
diff --git a/npm/ng-packs/packages/setting-management/package.json b/npm/ng-packs/packages/setting-management/package.json
index f166095800..faf2f1c7bc 100644
--- a/npm/ng-packs/packages/setting-management/package.json
+++ b/npm/ng-packs/packages/setting-management/package.json
@@ -1,14 +1,14 @@
{
"name": "@abp/ng.setting-management",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.components": "~10.7.0-rc.1",
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
+ "@abp/ng.components": "~10.7.0-rc.2",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
"tslib": "^2.0.0"
},
"peerDependencies": {
diff --git a/npm/ng-packs/packages/tenant-management/package.json b/npm/ng-packs/packages/tenant-management/package.json
index 9064f81d8e..38464e8129 100644
--- a/npm/ng-packs/packages/tenant-management/package.json
+++ b/npm/ng-packs/packages/tenant-management/package.json
@@ -1,14 +1,14 @@
{
"name": "@abp/ng.tenant-management",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.feature-management": "~10.7.0-rc.1",
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
+ "@abp/ng.feature-management": "~10.7.0-rc.2",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/theme-basic/package.json b/npm/ng-packs/packages/theme-basic/package.json
index b9670b4ceb..820ff0fdbb 100644
--- a/npm/ng-packs/packages/theme-basic/package.json
+++ b/npm/ng-packs/packages/theme-basic/package.json
@@ -1,14 +1,14 @@
{
"name": "@abp/ng.theme.basic",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.account.core": "~10.7.0-rc.1",
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
+ "@abp/ng.account.core": "~10.7.0-rc.2",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/theme-shared/package.json b/npm/ng-packs/packages/theme-shared/package.json
index ffeeeb4ebd..fb5e9b085a 100644
--- a/npm/ng-packs/packages/theme-shared/package.json
+++ b/npm/ng-packs/packages/theme-shared/package.json
@@ -1,13 +1,13 @@
{
"name": "@abp/ng.theme.shared",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.core": "~10.7.0-rc.1",
+ "@abp/ng.core": "~10.7.0-rc.2",
"@fortawesome/fontawesome-free": "^6.0.0",
"@ng-bootstrap/ng-bootstrap": "~20.0.0",
"@ngx-validate/core": "^0.2.0",
diff --git a/npm/packs/anchor-js/package.json b/npm/packs/anchor-js/package.json
index 86aca327ee..00ff07786b 100644
--- a/npm/packs/anchor-js/package.json
+++ b/npm/packs/anchor-js/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/anchor-js",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"anchor-js": "^5.0.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/aspnetcore.components.server.basictheme/package.json b/npm/packs/aspnetcore.components.server.basictheme/package.json
index 8620035529..39a92ed469 100644
--- a/npm/packs/aspnetcore.components.server.basictheme/package.json
+++ b/npm/packs/aspnetcore.components.server.basictheme/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/aspnetcore.components.server.basictheme",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/aspnetcore.components.server.theming": "~10.7.0-rc.1"
+ "@abp/aspnetcore.components.server.theming": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/aspnetcore.components.server.theming/package.json b/npm/packs/aspnetcore.components.server.theming/package.json
index f444e9fc82..765601eaa9 100644
--- a/npm/packs/aspnetcore.components.server.theming/package.json
+++ b/npm/packs/aspnetcore.components.server.theming/package.json
@@ -1,12 +1,12 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/aspnetcore.components.server.theming",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/bootstrap": "~10.7.0-rc.1",
- "@abp/font-awesome": "~10.7.0-rc.1"
+ "@abp/bootstrap": "~10.7.0-rc.2",
+ "@abp/font-awesome": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json b/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json
index 265d966cc9..4af1782a21 100644
--- a/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json
+++ b/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/aspnetcore.mvc.ui.theme.basic",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.shared": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.shared": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json b/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json
index 90a127146b..7309b0b259 100644
--- a/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json
+++ b/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/aspnetcore.mvc.ui.theme.shared",
"repository": {
"type": "git",
@@ -10,20 +10,20 @@
"access": "public"
},
"dependencies": {
- "@abp/aspnetcore.mvc.ui": "~10.7.0-rc.1",
- "@abp/bootstrap": "~10.7.0-rc.1",
- "@abp/bootstrap-datepicker": "~10.7.0-rc.1",
- "@abp/bootstrap-daterangepicker": "~10.7.0-rc.1",
- "@abp/datatables.net-bs5": "~10.7.0-rc.1",
- "@abp/font-awesome": "~10.7.0-rc.1",
- "@abp/jquery-validation-unobtrusive": "~10.7.0-rc.1",
- "@abp/lodash": "~10.7.0-rc.1",
- "@abp/luxon": "~10.7.0-rc.1",
- "@abp/malihu-custom-scrollbar-plugin": "~10.7.0-rc.1",
- "@abp/moment": "~10.7.0-rc.1",
- "@abp/select2": "~10.7.0-rc.1",
- "@abp/sweetalert2": "~10.7.0-rc.1",
- "@abp/timeago": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui": "~10.7.0-rc.2",
+ "@abp/bootstrap": "~10.7.0-rc.2",
+ "@abp/bootstrap-datepicker": "~10.7.0-rc.2",
+ "@abp/bootstrap-daterangepicker": "~10.7.0-rc.2",
+ "@abp/datatables.net-bs5": "~10.7.0-rc.2",
+ "@abp/font-awesome": "~10.7.0-rc.2",
+ "@abp/jquery-validation-unobtrusive": "~10.7.0-rc.2",
+ "@abp/lodash": "~10.7.0-rc.2",
+ "@abp/luxon": "~10.7.0-rc.2",
+ "@abp/malihu-custom-scrollbar-plugin": "~10.7.0-rc.2",
+ "@abp/moment": "~10.7.0-rc.2",
+ "@abp/select2": "~10.7.0-rc.2",
+ "@abp/sweetalert2": "~10.7.0-rc.2",
+ "@abp/timeago": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/aspnetcore.mvc.ui/package-lock.json b/npm/packs/aspnetcore.mvc.ui/package-lock.json
index 7af3114fe5..524cc39dbb 100644
--- a/npm/packs/aspnetcore.mvc.ui/package-lock.json
+++ b/npm/packs/aspnetcore.mvc.ui/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "@abp/aspnetcore.mvc.ui",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"lockfileVersion": 1,
"requires": true,
"packages": {
diff --git a/npm/packs/aspnetcore.mvc.ui/package.json b/npm/packs/aspnetcore.mvc.ui/package.json
index ff41341359..4f317029d4 100644
--- a/npm/packs/aspnetcore.mvc.ui/package.json
+++ b/npm/packs/aspnetcore.mvc.ui/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/aspnetcore.mvc.ui",
"repository": {
"type": "git",
diff --git a/npm/packs/blogging/package.json b/npm/packs/blogging/package.json
index beb5aa545e..1136c72ab4 100644
--- a/npm/packs/blogging/package.json
+++ b/npm/packs/blogging/package.json
@@ -1,14 +1,14 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/blogging",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.shared": "~10.7.0-rc.1",
- "@abp/owl.carousel": "~10.7.0-rc.1",
- "@abp/prismjs": "~10.7.0-rc.1",
- "@abp/tui-editor": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.shared": "~10.7.0-rc.2",
+ "@abp/owl.carousel": "~10.7.0-rc.2",
+ "@abp/prismjs": "~10.7.0-rc.2",
+ "@abp/tui-editor": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/bootstrap-datepicker/package.json b/npm/packs/bootstrap-datepicker/package.json
index 9b76cd8b06..7f62d223db 100644
--- a/npm/packs/bootstrap-datepicker/package.json
+++ b/npm/packs/bootstrap-datepicker/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/bootstrap-datepicker",
"repository": {
"type": "git",
diff --git a/npm/packs/bootstrap-daterangepicker/package.json b/npm/packs/bootstrap-daterangepicker/package.json
index 21c9c239cb..bc22fe866e 100644
--- a/npm/packs/bootstrap-daterangepicker/package.json
+++ b/npm/packs/bootstrap-daterangepicker/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/bootstrap-daterangepicker",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/moment": "~10.7.0-rc.1",
+ "@abp/moment": "~10.7.0-rc.2",
"bootstrap-daterangepicker": "^3.1.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/bootstrap/package.json b/npm/packs/bootstrap/package.json
index c8b850fa39..c0b4ec5e46 100644
--- a/npm/packs/bootstrap/package.json
+++ b/npm/packs/bootstrap/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/bootstrap",
"repository": {
"type": "git",
@@ -10,8 +10,8 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
- "@abp/popper.js": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
+ "@abp/popper.js": "~10.7.0-rc.2",
"bootstrap": "^5.3.8"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/chart.js/package.json b/npm/packs/chart.js/package.json
index ace550e80a..2fa2dab749 100644
--- a/npm/packs/chart.js/package.json
+++ b/npm/packs/chart.js/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/chart.js",
"publishConfig": {
"access": "public"
diff --git a/npm/packs/clipboard/package.json b/npm/packs/clipboard/package.json
index 878a4cd1d3..b9b947a30a 100644
--- a/npm/packs/clipboard/package.json
+++ b/npm/packs/clipboard/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/clipboard",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"clipboard": "^2.0.11"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/cms-kit.admin/package.json b/npm/packs/cms-kit.admin/package.json
index ecd432ceaf..e64904125b 100644
--- a/npm/packs/cms-kit.admin/package.json
+++ b/npm/packs/cms-kit.admin/package.json
@@ -1,16 +1,16 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/cms-kit.admin",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/codemirror": "~10.7.0-rc.1",
- "@abp/jstree": "~10.7.0-rc.1",
- "@abp/markdown-it": "~10.7.0-rc.1",
- "@abp/slugify": "~10.7.0-rc.1",
- "@abp/tui-editor": "~10.7.0-rc.1",
- "@abp/uppy": "~10.7.0-rc.1"
+ "@abp/codemirror": "~10.7.0-rc.2",
+ "@abp/jstree": "~10.7.0-rc.2",
+ "@abp/markdown-it": "~10.7.0-rc.2",
+ "@abp/slugify": "~10.7.0-rc.2",
+ "@abp/tui-editor": "~10.7.0-rc.2",
+ "@abp/uppy": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/cms-kit.public/package.json b/npm/packs/cms-kit.public/package.json
index a659a63f9f..f8dd4b3fb8 100644
--- a/npm/packs/cms-kit.public/package.json
+++ b/npm/packs/cms-kit.public/package.json
@@ -1,12 +1,12 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/cms-kit.public",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/highlight.js": "~10.7.0-rc.1",
- "@abp/star-rating-svg": "~10.7.0-rc.1"
+ "@abp/highlight.js": "~10.7.0-rc.2",
+ "@abp/star-rating-svg": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/cms-kit/package.json b/npm/packs/cms-kit/package.json
index 4015863dce..1497879028 100644
--- a/npm/packs/cms-kit/package.json
+++ b/npm/packs/cms-kit/package.json
@@ -1,12 +1,12 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/cms-kit",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/cms-kit.admin": "~10.7.0-rc.1",
- "@abp/cms-kit.public": "~10.7.0-rc.1"
+ "@abp/cms-kit.admin": "~10.7.0-rc.2",
+ "@abp/cms-kit.public": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/codemirror/package.json b/npm/packs/codemirror/package.json
index 437b5fd11b..5f9945aac7 100644
--- a/npm/packs/codemirror/package.json
+++ b/npm/packs/codemirror/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/codemirror",
"publishConfig": {
"access": "public"
@@ -8,7 +8,7 @@
"build": "node ./scripts/build.js"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"@codemirror/lang-css": "^6.0.0",
"@codemirror/lang-javascript": "^6.0.0",
"@codemirror/state": "^6.0.0",
diff --git a/npm/packs/core/package.json b/npm/packs/core/package.json
index 4432669dff..4c607cfc3d 100644
--- a/npm/packs/core/package.json
+++ b/npm/packs/core/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/core",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/utils": "~10.7.0-rc.1"
+ "@abp/utils": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/cropperjs/package.json b/npm/packs/cropperjs/package.json
index 6236e94fb6..cdb3605438 100644
--- a/npm/packs/cropperjs/package.json
+++ b/npm/packs/cropperjs/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/cropperjs",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"cropperjs": "^1.6.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/datatables.net-bs4/package.json b/npm/packs/datatables.net-bs4/package.json
index ed41d697ef..94e6532046 100644
--- a/npm/packs/datatables.net-bs4/package.json
+++ b/npm/packs/datatables.net-bs4/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/datatables.net-bs4",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/datatables.net": "~10.7.0-rc.1",
+ "@abp/datatables.net": "~10.7.0-rc.2",
"datatables.net-bs4": "^2.3.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/datatables.net-bs5/package.json b/npm/packs/datatables.net-bs5/package.json
index dbe7cd320d..853369b60f 100644
--- a/npm/packs/datatables.net-bs5/package.json
+++ b/npm/packs/datatables.net-bs5/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/datatables.net-bs5",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/datatables.net": "~10.7.0-rc.1",
+ "@abp/datatables.net": "~10.7.0-rc.2",
"datatables.net-bs5": "^2.3.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/datatables.net/package.json b/npm/packs/datatables.net/package.json
index 7cf4e6c4b4..844d8450e2 100644
--- a/npm/packs/datatables.net/package.json
+++ b/npm/packs/datatables.net/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/datatables.net",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.7.0-rc.1",
+ "@abp/jquery": "~10.7.0-rc.2",
"datatables.net": "^2.3.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/docs/package.json b/npm/packs/docs/package.json
index d1d5d0122e..9e93fdae7e 100644
--- a/npm/packs/docs/package.json
+++ b/npm/packs/docs/package.json
@@ -1,15 +1,15 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/docs",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/anchor-js": "~10.7.0-rc.1",
- "@abp/clipboard": "~10.7.0-rc.1",
- "@abp/malihu-custom-scrollbar-plugin": "~10.7.0-rc.1",
- "@abp/popper.js": "~10.7.0-rc.1",
- "@abp/prismjs": "~10.7.0-rc.1"
+ "@abp/anchor-js": "~10.7.0-rc.2",
+ "@abp/clipboard": "~10.7.0-rc.2",
+ "@abp/malihu-custom-scrollbar-plugin": "~10.7.0-rc.2",
+ "@abp/popper.js": "~10.7.0-rc.2",
+ "@abp/prismjs": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/flag-icon-css/package.json b/npm/packs/flag-icon-css/package.json
index ec2190a793..3ca7707a9e 100644
--- a/npm/packs/flag-icon-css/package.json
+++ b/npm/packs/flag-icon-css/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/flag-icon-css",
"publishConfig": {
"access": "public"
diff --git a/npm/packs/flag-icons/package.json b/npm/packs/flag-icons/package.json
index aaed433d1c..de7f499aec 100644
--- a/npm/packs/flag-icons/package.json
+++ b/npm/packs/flag-icons/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/flag-icons",
"publishConfig": {
"access": "public"
diff --git a/npm/packs/font-awesome/package.json b/npm/packs/font-awesome/package.json
index 9ff66fc93d..a1b4b66cab 100644
--- a/npm/packs/font-awesome/package.json
+++ b/npm/packs/font-awesome/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/font-awesome",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"@fortawesome/fontawesome-free": "^7.0.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/highlight.js/package.json b/npm/packs/highlight.js/package.json
index cde3331b25..298a57c3b8 100644
--- a/npm/packs/highlight.js/package.json
+++ b/npm/packs/highlight.js/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/highlight.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"@highlightjs/cdn-assets": "~11.11.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/jquery-form/package.json b/npm/packs/jquery-form/package.json
index 590fa13fc4..fac7772e5d 100644
--- a/npm/packs/jquery-form/package.json
+++ b/npm/packs/jquery-form/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/jquery-form",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.7.0-rc.1",
+ "@abp/jquery": "~10.7.0-rc.2",
"jquery-form": "^4.3.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/jquery-validation-unobtrusive/package.json b/npm/packs/jquery-validation-unobtrusive/package.json
index c6f7e9eaa3..c71b6fcbdc 100644
--- a/npm/packs/jquery-validation-unobtrusive/package.json
+++ b/npm/packs/jquery-validation-unobtrusive/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/jquery-validation-unobtrusive",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery-validation": "~10.7.0-rc.1",
+ "@abp/jquery-validation": "~10.7.0-rc.2",
"jquery-validation-unobtrusive": "^4.0.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/jquery-validation/package.json b/npm/packs/jquery-validation/package.json
index 217c7a905a..f68efc13f7 100644
--- a/npm/packs/jquery-validation/package.json
+++ b/npm/packs/jquery-validation/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/jquery-validation",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.7.0-rc.1",
+ "@abp/jquery": "~10.7.0-rc.2",
"jquery-validation": "^1.22.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/jquery/package.json b/npm/packs/jquery/package.json
index 16b5f45d75..04abe17cc6 100644
--- a/npm/packs/jquery/package.json
+++ b/npm/packs/jquery/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/jquery",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"jquery": "~4.0.0",
"jquery-migrate": "~4.0.2"
},
diff --git a/npm/packs/jstree/package.json b/npm/packs/jstree/package.json
index 736b038e26..934b50e898 100644
--- a/npm/packs/jstree/package.json
+++ b/npm/packs/jstree/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/jstree",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.7.0-rc.1",
+ "@abp/jquery": "~10.7.0-rc.2",
"jstree": "^3.3.17"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/lodash/package.json b/npm/packs/lodash/package.json
index fbc7c7dea1..e52aecbd15 100644
--- a/npm/packs/lodash/package.json
+++ b/npm/packs/lodash/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/lodash",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"lodash": "^4.18.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/luxon/package.json b/npm/packs/luxon/package.json
index f5770da104..de64253391 100644
--- a/npm/packs/luxon/package.json
+++ b/npm/packs/luxon/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/luxon",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"luxon": "^3.7.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/malihu-custom-scrollbar-plugin/package.json b/npm/packs/malihu-custom-scrollbar-plugin/package.json
index 5ef74d2745..3deaed5178 100644
--- a/npm/packs/malihu-custom-scrollbar-plugin/package.json
+++ b/npm/packs/malihu-custom-scrollbar-plugin/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/malihu-custom-scrollbar-plugin",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"malihu-custom-scrollbar-plugin": "^3.1.5"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/markdown-it/package.json b/npm/packs/markdown-it/package.json
index 9331cf7547..b01a0e062e 100644
--- a/npm/packs/markdown-it/package.json
+++ b/npm/packs/markdown-it/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/markdown-it",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"markdown-it": "^14.1.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/moment/package.json b/npm/packs/moment/package.json
index 1c020d01c4..7e791ccb80 100644
--- a/npm/packs/moment/package.json
+++ b/npm/packs/moment/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/moment",
"repository": {
"type": "git",
diff --git a/npm/packs/owl.carousel/package.json b/npm/packs/owl.carousel/package.json
index 658a565ee5..897e9ddb9f 100644
--- a/npm/packs/owl.carousel/package.json
+++ b/npm/packs/owl.carousel/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/owl.carousel",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"owl.carousel": "^2.3.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/popper.js/package.json b/npm/packs/popper.js/package.json
index fcbdb2abf4..9758fed221 100644
--- a/npm/packs/popper.js/package.json
+++ b/npm/packs/popper.js/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/popper.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"@popperjs/core": "^2.11.8"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/prismjs/package.json b/npm/packs/prismjs/package.json
index 653292084e..f872092d1e 100644
--- a/npm/packs/prismjs/package.json
+++ b/npm/packs/prismjs/package.json
@@ -1,12 +1,12 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/prismjs",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/clipboard": "~10.7.0-rc.1",
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/clipboard": "~10.7.0-rc.2",
+ "@abp/core": "~10.7.0-rc.2",
"prismjs": "^1.30.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/qrcode/package.json b/npm/packs/qrcode/package.json
index dfea1d8efc..08bdc6b18c 100644
--- a/npm/packs/qrcode/package.json
+++ b/npm/packs/qrcode/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/qrcode",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1"
+ "@abp/core": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/select2/package.json b/npm/packs/select2/package.json
index b6106b4dee..1cdce80d83 100644
--- a/npm/packs/select2/package.json
+++ b/npm/packs/select2/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/select2",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"select2": "^4.0.13"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/signalr/package.json b/npm/packs/signalr/package.json
index b26f81b973..db2eb3edb0 100644
--- a/npm/packs/signalr/package.json
+++ b/npm/packs/signalr/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/signalr",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"@microsoft/signalr": "~9.0.6"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/slugify/package.json b/npm/packs/slugify/package.json
index d0fb29f40e..bf11e77c30 100644
--- a/npm/packs/slugify/package.json
+++ b/npm/packs/slugify/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/slugify",
"publishConfig": {
"access": "public"
diff --git a/npm/packs/star-rating-svg/package.json b/npm/packs/star-rating-svg/package.json
index 4277abf98e..41b5d7d7ad 100644
--- a/npm/packs/star-rating-svg/package.json
+++ b/npm/packs/star-rating-svg/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/star-rating-svg",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.7.0-rc.1",
+ "@abp/jquery": "~10.7.0-rc.2",
"star-rating-svg": "^3.5.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/sweetalert2/package.json b/npm/packs/sweetalert2/package.json
index a34febf20d..dc3a553a85 100644
--- a/npm/packs/sweetalert2/package.json
+++ b/npm/packs/sweetalert2/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/sweetalert2",
"publishConfig": {
"access": "public"
@@ -10,7 +10,7 @@
"directory": "npm/packs/sweetalert2"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"sweetalert2": "^11.23.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/timeago/package.json b/npm/packs/timeago/package.json
index 3bfee2fd7f..79aa378353 100644
--- a/npm/packs/timeago/package.json
+++ b/npm/packs/timeago/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/timeago",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.7.0-rc.1",
+ "@abp/jquery": "~10.7.0-rc.2",
"timeago": "^1.6.7"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/toastr/package.json b/npm/packs/toastr/package.json
index 36b2b81ed6..598c64e80a 100644
--- a/npm/packs/toastr/package.json
+++ b/npm/packs/toastr/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/toastr",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.7.0-rc.1",
+ "@abp/jquery": "~10.7.0-rc.2",
"toastr": "^2.1.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/tui-editor/package.json b/npm/packs/tui-editor/package.json
index f2b08bdfb4..4f085d1e11 100644
--- a/npm/packs/tui-editor/package.json
+++ b/npm/packs/tui-editor/package.json
@@ -1,12 +1,12 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/tui-editor",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~10.7.0-rc.1",
- "@abp/prismjs": "~10.7.0-rc.1"
+ "@abp/jquery": "~10.7.0-rc.2",
+ "@abp/prismjs": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/uppy/package.json b/npm/packs/uppy/package.json
index 8ec2d61c07..145bb720b3 100644
--- a/npm/packs/uppy/package.json
+++ b/npm/packs/uppy/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/uppy",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"uppy": "^5.1.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/utils/package.json b/npm/packs/utils/package.json
index f00443bc21..6cfb3d5e95 100644
--- a/npm/packs/utils/package.json
+++ b/npm/packs/utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@abp/utils",
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"scripts": {
"prepublishOnly": "yarn install --ignore-scripts && node prepublish.js",
"ng": "ng",
diff --git a/npm/packs/vee-validate/package.json b/npm/packs/vee-validate/package.json
index 5074aa476c..1cd6fea688 100644
--- a/npm/packs/vee-validate/package.json
+++ b/npm/packs/vee-validate/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/vee-validate",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/vue": "~10.7.0-rc.1",
+ "@abp/vue": "~10.7.0-rc.2",
"vee-validate": "~3.4.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/virtual-file-explorer/package.json b/npm/packs/virtual-file-explorer/package.json
index a43f478029..8cb869f805 100644
--- a/npm/packs/virtual-file-explorer/package.json
+++ b/npm/packs/virtual-file-explorer/package.json
@@ -1,12 +1,12 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/virtual-file-explorer",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/clipboard": "~10.7.0-rc.1",
- "@abp/prismjs": "~10.7.0-rc.1"
+ "@abp/clipboard": "~10.7.0-rc.2",
+ "@abp/prismjs": "~10.7.0-rc.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/vue/package.json b/npm/packs/vue/package.json
index b82dd9041a..ac77b93919 100644
--- a/npm/packs/vue/package.json
+++ b/npm/packs/vue/package.json
@@ -1,5 +1,5 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/vue",
"publishConfig": {
"access": "public"
diff --git a/npm/packs/zxcvbn/package.json b/npm/packs/zxcvbn/package.json
index d3e6e400ee..380485d97f 100644
--- a/npm/packs/zxcvbn/package.json
+++ b/npm/packs/zxcvbn/package.json
@@ -1,11 +1,11 @@
{
- "version": "10.7.0-rc.1",
+ "version": "10.7.0-rc.2",
"name": "@abp/zxcvbn",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~10.7.0-rc.1",
+ "@abp/core": "~10.7.0-rc.2",
"zxcvbn": "^4.4.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/source-code/Volo.Abp.Account.SourceCode/Volo.Abp.Account.SourceCode.zip b/source-code/Volo.Abp.Account.SourceCode/Volo.Abp.Account.SourceCode.zip
index 0832cb6d10..f1c365fa1a 100644
Binary files a/source-code/Volo.Abp.Account.SourceCode/Volo.Abp.Account.SourceCode.zip and b/source-code/Volo.Abp.Account.SourceCode/Volo.Abp.Account.SourceCode.zip differ
diff --git a/source-code/Volo.Abp.AuditLogging.SourceCode/Volo.Abp.AuditLogging.SourceCode.zip b/source-code/Volo.Abp.AuditLogging.SourceCode/Volo.Abp.AuditLogging.SourceCode.zip
index 26e388d1af..b8d0161883 100644
Binary files a/source-code/Volo.Abp.AuditLogging.SourceCode/Volo.Abp.AuditLogging.SourceCode.zip and b/source-code/Volo.Abp.AuditLogging.SourceCode/Volo.Abp.AuditLogging.SourceCode.zip differ
diff --git a/source-code/Volo.Abp.BackgroundJobs.SourceCode/Volo.Abp.BackgroundJobs.SourceCode.zip b/source-code/Volo.Abp.BackgroundJobs.SourceCode/Volo.Abp.BackgroundJobs.SourceCode.zip
index 1ab0a6026b..7c9dcf6d10 100644
Binary files a/source-code/Volo.Abp.BackgroundJobs.SourceCode/Volo.Abp.BackgroundJobs.SourceCode.zip and b/source-code/Volo.Abp.BackgroundJobs.SourceCode/Volo.Abp.BackgroundJobs.SourceCode.zip differ
diff --git a/source-code/Volo.Abp.BlobStoring.Database.SourceCode/Volo.Abp.BlobStoring.Database.SourceCode.zip b/source-code/Volo.Abp.BlobStoring.Database.SourceCode/Volo.Abp.BlobStoring.Database.SourceCode.zip
index 7ef8c187de..0e8714c3bc 100644
Binary files a/source-code/Volo.Abp.BlobStoring.Database.SourceCode/Volo.Abp.BlobStoring.Database.SourceCode.zip and b/source-code/Volo.Abp.BlobStoring.Database.SourceCode/Volo.Abp.BlobStoring.Database.SourceCode.zip differ
diff --git a/source-code/Volo.Abp.FeatureManagement.SourceCode/Volo.Abp.FeatureManagement.SourceCode.zip b/source-code/Volo.Abp.FeatureManagement.SourceCode/Volo.Abp.FeatureManagement.SourceCode.zip
index a3065199bf..adcdc15070 100644
Binary files a/source-code/Volo.Abp.FeatureManagement.SourceCode/Volo.Abp.FeatureManagement.SourceCode.zip and b/source-code/Volo.Abp.FeatureManagement.SourceCode/Volo.Abp.FeatureManagement.SourceCode.zip differ
diff --git a/source-code/Volo.Abp.Identity.SourceCode/Volo.Abp.Identity.SourceCode.zip b/source-code/Volo.Abp.Identity.SourceCode/Volo.Abp.Identity.SourceCode.zip
index 525e1d287c..fca1bf5a03 100644
Binary files a/source-code/Volo.Abp.Identity.SourceCode/Volo.Abp.Identity.SourceCode.zip and b/source-code/Volo.Abp.Identity.SourceCode/Volo.Abp.Identity.SourceCode.zip differ
diff --git a/source-code/Volo.Abp.IdentityServer.SourceCode/Volo.Abp.IdentityServer.SourceCode.zip b/source-code/Volo.Abp.IdentityServer.SourceCode/Volo.Abp.IdentityServer.SourceCode.zip
index c158284fd6..5a34333119 100644
Binary files a/source-code/Volo.Abp.IdentityServer.SourceCode/Volo.Abp.IdentityServer.SourceCode.zip and b/source-code/Volo.Abp.IdentityServer.SourceCode/Volo.Abp.IdentityServer.SourceCode.zip differ
diff --git a/source-code/Volo.Abp.OpenIddict.SourceCode/Volo.Abp.OpenIddict.SourceCode.zip b/source-code/Volo.Abp.OpenIddict.SourceCode/Volo.Abp.OpenIddict.SourceCode.zip
index 718dc2bc49..83f4672139 100644
Binary files a/source-code/Volo.Abp.OpenIddict.SourceCode/Volo.Abp.OpenIddict.SourceCode.zip and b/source-code/Volo.Abp.OpenIddict.SourceCode/Volo.Abp.OpenIddict.SourceCode.zip differ
diff --git a/source-code/Volo.Abp.PermissionManagement.SourceCode/Volo.Abp.PermissionManagement.SourceCode.zip b/source-code/Volo.Abp.PermissionManagement.SourceCode/Volo.Abp.PermissionManagement.SourceCode.zip
index c019c7a519..5393787fa5 100644
Binary files a/source-code/Volo.Abp.PermissionManagement.SourceCode/Volo.Abp.PermissionManagement.SourceCode.zip and b/source-code/Volo.Abp.PermissionManagement.SourceCode/Volo.Abp.PermissionManagement.SourceCode.zip differ
diff --git a/source-code/Volo.Abp.SettingManagement.SourceCode/Volo.Abp.SettingManagement.SourceCode.zip b/source-code/Volo.Abp.SettingManagement.SourceCode/Volo.Abp.SettingManagement.SourceCode.zip
index 9c4f50dab6..a4ea5a0a2e 100644
Binary files a/source-code/Volo.Abp.SettingManagement.SourceCode/Volo.Abp.SettingManagement.SourceCode.zip and b/source-code/Volo.Abp.SettingManagement.SourceCode/Volo.Abp.SettingManagement.SourceCode.zip differ
diff --git a/source-code/Volo.Abp.TenantManagement.SourceCode/Volo.Abp.TenantManagement.SourceCode.zip b/source-code/Volo.Abp.TenantManagement.SourceCode/Volo.Abp.TenantManagement.SourceCode.zip
index 8b338a2538..986f2265dc 100644
Binary files a/source-code/Volo.Abp.TenantManagement.SourceCode/Volo.Abp.TenantManagement.SourceCode.zip and b/source-code/Volo.Abp.TenantManagement.SourceCode/Volo.Abp.TenantManagement.SourceCode.zip differ
diff --git a/source-code/Volo.Abp.Users.SourceCode/Volo.Abp.Users.SourceCode.zip b/source-code/Volo.Abp.Users.SourceCode/Volo.Abp.Users.SourceCode.zip
index 8a211b1fd7..58d78f7bb3 100644
Binary files a/source-code/Volo.Abp.Users.SourceCode/Volo.Abp.Users.SourceCode.zip and b/source-code/Volo.Abp.Users.SourceCode/Volo.Abp.Users.SourceCode.zip differ
diff --git a/source-code/Volo.Abp.VirtualFileExplorer.SourceCode/Volo.Abp.VirtualFileExplorer.SourceCode.zip b/source-code/Volo.Abp.VirtualFileExplorer.SourceCode/Volo.Abp.VirtualFileExplorer.SourceCode.zip
index c157737c4a..b32d2eadf1 100644
Binary files a/source-code/Volo.Abp.VirtualFileExplorer.SourceCode/Volo.Abp.VirtualFileExplorer.SourceCode.zip and b/source-code/Volo.Abp.VirtualFileExplorer.SourceCode/Volo.Abp.VirtualFileExplorer.SourceCode.zip differ
diff --git a/source-code/Volo.Blogging.SourceCode/Volo.Blogging.SourceCode.zip b/source-code/Volo.Blogging.SourceCode/Volo.Blogging.SourceCode.zip
index 37020ba8bc..a07298f324 100644
Binary files a/source-code/Volo.Blogging.SourceCode/Volo.Blogging.SourceCode.zip and b/source-code/Volo.Blogging.SourceCode/Volo.Blogging.SourceCode.zip differ
diff --git a/source-code/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.zip b/source-code/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.zip
index 10f1040aac..8856d663a6 100644
Binary files a/source-code/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.zip and b/source-code/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.zip differ
diff --git a/source-code/Volo.Docs.SourceCode/Volo.Docs.SourceCode.zip b/source-code/Volo.Docs.SourceCode/Volo.Docs.SourceCode.zip
index 32d123f9e1..4557be0c29 100644
Binary files a/source-code/Volo.Docs.SourceCode/Volo.Docs.SourceCode.zip and b/source-code/Volo.Docs.SourceCode/Volo.Docs.SourceCode.zip differ
diff --git a/templates/app-nolayers/angular/package.json b/templates/app-nolayers/angular/package.json
index d526be0fd6..ab882df903 100644
--- a/templates/app-nolayers/angular/package.json
+++ b/templates/app-nolayers/angular/package.json
@@ -12,15 +12,15 @@
},
"private": true,
"dependencies": {
- "@abp/ng.account": "~10.7.0-rc.1",
- "@abp/ng.components": "~10.7.0-rc.1",
- "@abp/ng.core": "~10.7.0-rc.1",
- "@abp/ng.identity": "~10.7.0-rc.1",
- "@abp/ng.oauth": "~10.7.0-rc.1",
- "@abp/ng.setting-management": "~10.7.0-rc.1",
- "@abp/ng.tenant-management": "~10.7.0-rc.1",
- "@abp/ng.theme.lepton-x": "~5.7.0-rc.1",
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
+ "@abp/ng.account": "~10.7.0-rc.2",
+ "@abp/ng.components": "~10.7.0-rc.2",
+ "@abp/ng.core": "~10.7.0-rc.2",
+ "@abp/ng.identity": "~10.7.0-rc.2",
+ "@abp/ng.oauth": "~10.7.0-rc.2",
+ "@abp/ng.setting-management": "~10.7.0-rc.2",
+ "@abp/ng.tenant-management": "~10.7.0-rc.2",
+ "@abp/ng.theme.lepton-x": "~5.7.0-rc.2",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
"@angular/animations": "~22.1.0",
"@angular/aria": "~22.1.0",
"@angular/common": "~22.1.0",
@@ -37,7 +37,7 @@
"zone.js": "~0.15.0"
},
"devDependencies": {
- "@abp/ng.schematics": "~10.7.0-rc.1",
+ "@abp/ng.schematics": "~10.7.0-rc.2",
"@angular-eslint/builder": "~22.1.0",
"@angular-eslint/eslint-plugin": "~22.1.0",
"@angular-eslint/eslint-plugin-template": "~22.1.0",
diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json
index 20a9e326b1..0ccb2565d2 100644
--- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json
+++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json
@@ -3,7 +3,7 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.components.server.leptonxlitetheme": "~5.7.0-rc.1",
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1"
+ "@abp/aspnetcore.components.server.leptonxlitetheme": "~5.7.0-rc.2",
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2"
}
}
diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/package.json
index 35c6f5cb8f..cc0aa7f429 100644
--- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/package.json
+++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/package.json
@@ -3,7 +3,7 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1",
- "@abp/aspnetcore.components.server.leptonxlitetheme": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2",
+ "@abp/aspnetcore.components.server.leptonxlitetheme": "~5.7.0-rc.2"
}
}
diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/package.json
index 9dc6064ee4..ee2f27c963 100644
--- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/package.json
+++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2"
}
}
diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/package.json
index 9dc6064ee4..ee2f27c963 100644
--- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/package.json
+++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2"
}
}
diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/package.json
index 9dc6064ee4..ee2f27c963 100644
--- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/package.json
+++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2"
}
}
diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/package.json
index 9dc6064ee4..ee2f27c963 100644
--- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/package.json
+++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2"
}
}
diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/package.json
index 9dc6064ee4..ee2f27c963 100644
--- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/package.json
+++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2"
}
}
diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/package.json
index 9dc6064ee4..ee2f27c963 100644
--- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/package.json
+++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2"
}
}
diff --git a/templates/app/angular/package.json b/templates/app/angular/package.json
index 8e14c60e29..bfb62c4af1 100644
--- a/templates/app/angular/package.json
+++ b/templates/app/angular/package.json
@@ -12,15 +12,15 @@
},
"private": true,
"dependencies": {
- "@abp/ng.account": "~10.7.0-rc.1",
- "@abp/ng.components": "~10.7.0-rc.1",
- "@abp/ng.core": "~10.7.0-rc.1",
- "@abp/ng.identity": "~10.7.0-rc.1",
- "@abp/ng.oauth": "~10.7.0-rc.1",
- "@abp/ng.setting-management": "~10.7.0-rc.1",
- "@abp/ng.tenant-management": "~10.7.0-rc.1",
- "@abp/ng.theme.lepton-x": "~5.7.0-rc.1",
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
+ "@abp/ng.account": "~10.7.0-rc.2",
+ "@abp/ng.components": "~10.7.0-rc.2",
+ "@abp/ng.core": "~10.7.0-rc.2",
+ "@abp/ng.identity": "~10.7.0-rc.2",
+ "@abp/ng.oauth": "~10.7.0-rc.2",
+ "@abp/ng.setting-management": "~10.7.0-rc.2",
+ "@abp/ng.tenant-management": "~10.7.0-rc.2",
+ "@abp/ng.theme.lepton-x": "~5.7.0-rc.2",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
"@angular/animations": "~22.1.0",
"@angular/aria": "~22.1.0",
"@angular/common": "~22.1.0",
@@ -37,7 +37,7 @@
"zone.js": "~0.15.0"
},
"devDependencies": {
- "@abp/ng.schematics": "~10.7.0-rc.1",
+ "@abp/ng.schematics": "~10.7.0-rc.2",
"@angular-eslint/builder": "~22.1.0",
"@angular-eslint/eslint-plugin": "~22.1.0",
"@angular-eslint/eslint-plugin-template": "~22.1.0",
diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/package.json
index 838708095c..5deef5b6d6 100644
--- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/package.json
+++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/package.json
@@ -3,6 +3,6 @@
"name": "my-app-authserver",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2"
}
}
diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/package.json
index 35c6f5cb8f..cc0aa7f429 100644
--- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/package.json
+++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/package.json
@@ -3,7 +3,7 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1",
- "@abp/aspnetcore.components.server.leptonxlitetheme": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2",
+ "@abp/aspnetcore.components.server.leptonxlitetheme": "~5.7.0-rc.2"
}
}
diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/package.json
index 35c6f5cb8f..cc0aa7f429 100644
--- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/package.json
+++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/package.json
@@ -3,7 +3,7 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1",
- "@abp/aspnetcore.components.server.leptonxlitetheme": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2",
+ "@abp/aspnetcore.components.server.leptonxlitetheme": "~5.7.0-rc.2"
}
}
diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/package.json
index 35c6f5cb8f..cc0aa7f429 100644
--- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/package.json
+++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/package.json
@@ -3,7 +3,7 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1",
- "@abp/aspnetcore.components.server.leptonxlitetheme": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2",
+ "@abp/aspnetcore.components.server.leptonxlitetheme": "~5.7.0-rc.2"
}
}
diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/package.json
index 35c6f5cb8f..cc0aa7f429 100644
--- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/package.json
+++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp/package.json
@@ -3,7 +3,7 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1",
- "@abp/aspnetcore.components.server.leptonxlitetheme": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2",
+ "@abp/aspnetcore.components.server.leptonxlitetheme": "~5.7.0-rc.2"
}
}
diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package.json
index 9dc6064ee4..ee2f27c963 100644
--- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package.json
+++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2"
}
}
diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/package.json
index 9dc6064ee4..ee2f27c963 100644
--- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/package.json
+++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2"
}
}
diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/package.json
index 9dc6064ee4..ee2f27c963 100644
--- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/package.json
+++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~5.7.0-rc.2"
}
}
diff --git a/templates/module/angular/package.json b/templates/module/angular/package.json
index 4c85fe517f..233c7c4b53 100644
--- a/templates/module/angular/package.json
+++ b/templates/module/angular/package.json
@@ -13,15 +13,15 @@
},
"private": true,
"dependencies": {
- "@abp/ng.account": "~10.7.0-rc.1",
- "@abp/ng.components": "~10.7.0-rc.1",
- "@abp/ng.core": "~10.7.0-rc.1",
- "@abp/ng.identity": "~10.7.0-rc.1",
- "@abp/ng.oauth": "~10.7.0-rc.1",
- "@abp/ng.setting-management": "~10.7.0-rc.1",
- "@abp/ng.tenant-management": "~10.7.0-rc.1",
- "@abp/ng.theme.basic": "~10.7.0-rc.1",
- "@abp/ng.theme.shared": "~10.7.0-rc.1",
+ "@abp/ng.account": "~10.7.0-rc.2",
+ "@abp/ng.components": "~10.7.0-rc.2",
+ "@abp/ng.core": "~10.7.0-rc.2",
+ "@abp/ng.identity": "~10.7.0-rc.2",
+ "@abp/ng.oauth": "~10.7.0-rc.2",
+ "@abp/ng.setting-management": "~10.7.0-rc.2",
+ "@abp/ng.tenant-management": "~10.7.0-rc.2",
+ "@abp/ng.theme.basic": "~10.7.0-rc.2",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2",
"@angular/animations": "~22.1.0",
"@angular/aria": "~22.1.0",
"@angular/common": "~22.1.0",
@@ -37,7 +37,7 @@
"zone.js": "~0.15.0"
},
"devDependencies": {
- "@abp/ng.schematics": "~10.7.0-rc.1",
+ "@abp/ng.schematics": "~10.7.0-rc.2",
"@angular-eslint/builder": "~22.1.0",
"@angular-eslint/eslint-plugin": "~22.1.0",
"@angular-eslint/eslint-plugin-template": "~22.1.0",
diff --git a/templates/module/angular/projects/my-project-name/package.json b/templates/module/angular/projects/my-project-name/package.json
index 823fd14f1a..4df8580f57 100644
--- a/templates/module/angular/projects/my-project-name/package.json
+++ b/templates/module/angular/projects/my-project-name/package.json
@@ -4,8 +4,8 @@
"peerDependencies": {
"@angular/common": "~22.1.0",
"@angular/core": "~22.1.0",
- "@abp/ng.core": "~10.7.0-rc.1",
- "@abp/ng.theme.shared": "~10.7.0-rc.1"
+ "@abp/ng.core": "~10.7.0-rc.2",
+ "@abp/ng.theme.shared": "~10.7.0-rc.2"
},
"dependencies": {
"tslib": "^2.1.0"
diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/package.json b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/package.json
index 71f5a48f55..73ea1da184 100644
--- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/package.json
+++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/package.json
@@ -3,6 +3,6 @@
"name": "my-app-authserver",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2"
}
}
diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/package.json b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/package.json
index fbcbe8d957..d36189336e 100644
--- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/package.json
+++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/package.json
@@ -3,7 +3,7 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1",
- "@abp/aspnetcore.components.server.basictheme": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2",
+ "@abp/aspnetcore.components.server.basictheme": "~10.7.0-rc.2"
}
}
diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/package.json b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/package.json
index 3ac145adf1..fbb354c68e 100644
--- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/package.json
+++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2"
}
}
diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/package.json b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/package.json
index 3ac145adf1..fbb354c68e 100644
--- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/package.json
+++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/package.json
@@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.1"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~10.7.0-rc.2"
}
}