diff --git a/abp_io/AbpIoLocalization/AbpIoLocalization/Account/Localization/Resources/en-GB.json b/abp_io/AbpIoLocalization/AbpIoLocalization/Account/Localization/Resources/en-GB.json
index 9b8dd444bc..cee74a670b 100644
--- a/abp_io/AbpIoLocalization/AbpIoLocalization/Account/Localization/Resources/en-GB.json
+++ b/abp_io/AbpIoLocalization/AbpIoLocalization/Account/Localization/Resources/en-GB.json
@@ -8,8 +8,8 @@
"FrameworkDocumentation": "Framework documentation",
"OfficialBlog": "Official blog",
"CommercialHomePage": "Commercial home page",
- "CommercialSupportWebSite": "Commercial support web site",
- "CommunityWebSite": "ABP community web site",
+ "CommercialSupportWebSite": "Commercial support website",
+ "CommunityWebSite": "ABP community website",
"ManageAccount": "My Account | ABP.IO",
"ManageYourProfile": "Manage your profile"
}
diff --git a/abp_io/AbpIoLocalization/AbpIoLocalization/Account/Localization/Resources/en.json b/abp_io/AbpIoLocalization/AbpIoLocalization/Account/Localization/Resources/en.json
index f34bbd49c2..8470709c99 100644
--- a/abp_io/AbpIoLocalization/AbpIoLocalization/Account/Localization/Resources/en.json
+++ b/abp_io/AbpIoLocalization/AbpIoLocalization/Account/Localization/Resources/en.json
@@ -8,8 +8,8 @@
"FrameworkDocumentation": "Framework documentation",
"OfficialBlog": "Official blog",
"CommercialHomePage": "Commercial home page",
- "CommercialSupportWebSite": "Commercial support web site",
- "CommunityWebSite": "ABP community web site",
+ "CommercialSupportWebSite": "Commercial support website",
+ "CommunityWebSite": "ABP community website",
"ManageAccount": "My Account | ABP.IO",
"ManageYourProfile": "Manage your profile",
"ReturnToApplication": "Return to application"
diff --git a/abp_io/AbpIoLocalization/AbpIoLocalization/Www/Localization/Resources/en.json b/abp_io/AbpIoLocalization/AbpIoLocalization/Www/Localization/Resources/en.json
index 4c382603e2..71bc1bf66a 100644
--- a/abp_io/AbpIoLocalization/AbpIoLocalization/Www/Localization/Resources/en.json
+++ b/abp_io/AbpIoLocalization/AbpIoLocalization/Www/Localization/Resources/en.json
@@ -460,7 +460,9 @@
"SelectCountryPlaceholder": "Your country.",
"YouAreNotAuthorizedToWriteTestimonial": "To be able to write testimonial letter, you must be sign in.",
"Share": "Share",
- "UnAuthorizeTestimonialInfo": "If you want to share your opinion, you must be sign in"
+ "UnAuthorizeTestimonialInfo": "If you want to share your opinion, you must be sign in",
+ "TheFileIsTooLargeForImage": "Maximum file size is 1 MB.",
+ "ThisExtensionIsNotAllowedForImage": "This extension is not allowed."
}
}
diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js
index 15d290fa37..7060597756 100644
--- a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js
+++ b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js
@@ -248,8 +248,6 @@ var abp = abp || {};
return;
}
- var cells = $(nRow).children("td");
-
for (var colIndex = 0; colIndex < columns.length; colIndex++) {
var column = columns[colIndex];
if (column.rowAction) {
@@ -257,9 +255,16 @@ var abp = abp || {};
hideEmptyColumn($actionContainer, tableInstance, colIndex);
if ($actionContainer) {
- var $actionButton = $(cells[colIndex]).find(".abp-action-button");
- if ($actionButton.length === 0) {
- $(cells[colIndex]).empty().append($actionContainer);
+ var cells = $(nRow).children("td");
+ for (var i = 0; i < cells.length; i++) {
+ var cell = cells[i];
+ if (cell._DT_CellIndex && cell._DT_CellIndex.row === iDisplayIndex && cell._DT_CellIndex.column === colIndex) {
+ var $actionButton = $(cell).find(".abp-action-button");
+ if ($actionButton.length === 0) {
+ $(cell).empty().append($actionContainer);
+ };
+ break;
+ }
}
}
}
diff --git a/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/CrudAppService.cs b/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/CrudAppService.cs
index d8ccce3b73..672d85a2be 100644
--- a/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/CrudAppService.cs
+++ b/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/CrudAppService.cs
@@ -11,7 +11,6 @@ namespace Volo.Abp.Application.Services;
public abstract class CrudAppService
: CrudAppService
where TEntity : class, IEntity
- where TEntityDto : IEntityDto
{
protected CrudAppService(IRepository repository)
: base(repository)
@@ -23,7 +22,6 @@ public abstract class CrudAppService
public abstract class CrudAppService
: CrudAppService
where TEntity : class, IEntity
- where TEntityDto : IEntityDto
{
protected CrudAppService(IRepository repository)
: base(repository)
@@ -35,7 +33,6 @@ public abstract class CrudAppService
public abstract class CrudAppService
: CrudAppService
where TEntity : class, IEntity
- where TEntityDto : IEntityDto
{
protected CrudAppService(IRepository repository)
: base(repository)
@@ -47,7 +44,6 @@ public abstract class CrudAppService
: CrudAppService
where TEntity : class, IEntity
- where TEntityDto : IEntityDto
{
protected CrudAppService(IRepository repository)
: base(repository)
@@ -69,8 +65,6 @@ public abstract class CrudAppService
: AbstractKeyCrudAppService
where TEntity : class, IEntity
- where TGetOutputDto : IEntityDto
- where TGetListOutputDto : IEntityDto
{
protected new IRepository Repository { get; }
diff --git a/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/ReadOnlyAppService.cs b/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/ReadOnlyAppService.cs
index b81455e1bb..867ca35ad4 100644
--- a/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/ReadOnlyAppService.cs
+++ b/framework/src/Volo.Abp.Ddd.Application/Volo/Abp/Application/Services/ReadOnlyAppService.cs
@@ -11,7 +11,6 @@ namespace Volo.Abp.Application.Services;
public abstract class ReadOnlyAppService
: ReadOnlyAppService
where TEntity : class, IEntity
- where TEntityDto : IEntityDto
{
protected ReadOnlyAppService(IReadOnlyRepository repository)
: base(repository)
@@ -23,7 +22,6 @@ public abstract class ReadOnlyAppService
public abstract class ReadOnlyAppService
: ReadOnlyAppService
where TEntity : class, IEntity
- where TEntityDto : IEntityDto
{
protected ReadOnlyAppService(IReadOnlyRepository repository)
: base(repository)
@@ -35,8 +33,6 @@ public abstract class ReadOnlyAppService
: AbstractKeyReadOnlyAppService
where TEntity : class, IEntity
- where TGetOutputDto : IEntityDto
- where TGetListOutputDto : IEntityDto
{
protected IReadOnlyRepository Repository { get; }
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 a03b9853cb..ac10fb87f0 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,7 +3,7 @@
"name": "asp.net",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.shared": "~8.0.0-rc.3",
+ "@abp/aspnetcore.mvc.ui.theme.shared": "~8.0.0",
"@abp/prismjs": "^~7.3.2",
"@abp/highlight.js": "^~7.3.2"
},
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 b2ef358fd8..e99d414686 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": "~8.0.0-rc.3",
- "@abp/prismjs": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0",
+ "@abp/prismjs": "~8.0.0"
},
"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 f27a4233d9..cd60eee899 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,39 +2,39 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0-rc.3.tgz#637ea220c9f988c1d0e1b152928f4409696439f2"
- integrity sha512-xFJkcC2Oa8vLqMW0gU/3nXHsdFZOQq8+o9gUeLqDAhHZomnvEWsoivcd+LZs0xSDgQOee7N9h2buv9ERBoYGiA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0-rc.3.tgz#88904633feb5ce7dface4d27e9a31f4e5ace6b30"
- integrity sha512-gMYI+xz/0JDgW2U7T3Lesx1o1U+Y+7zG/jVZO5FuMtlrsYhvT6V5BsKa9q/N7kSR0tfK8vsjblMBobqvbmG3SQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~8.0.0-rc.3"
- "@abp/bootstrap" "~8.0.0-rc.3"
- "@abp/bootstrap-datepicker" "~8.0.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~8.0.0-rc.3"
- "@abp/datatables.net-bs5" "~8.0.0-rc.3"
- "@abp/font-awesome" "~8.0.0-rc.3"
- "@abp/jquery-form" "~8.0.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~8.0.0-rc.3"
- "@abp/lodash" "~8.0.0-rc.3"
- "@abp/luxon" "~8.0.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~8.0.0-rc.3"
- "@abp/moment" "~8.0.0-rc.3"
- "@abp/select2" "~8.0.0-rc.3"
- "@abp/sweetalert2" "~8.0.0-rc.3"
- "@abp/timeago" "~8.0.0-rc.3"
- "@abp/toastr" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0-rc.3.tgz#09402ed4e7504c09b49a84d6ee590a5c87017ab8"
- integrity sha512-82GfU8DtReq5RTrb2Fl0UHm+vEO0PvC/6DyFHm57nyWiL2dKByUqLd8NXQz+gqubWOA+IvJoLehbcC6iD+Y0VQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0.tgz#c58d15186ad9842834c953e4d712009597ead5c2"
+ integrity sha512-d43CG48iS8vQvA85tSK7OlSHdcC9JuBT7mpN7DlLViiQewVeoKwdKkMhl5nkX4k0yNtqaRbWYlDD6kDp95TktA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0.tgz#4931d9bd40fba2d3e38d3a2a8da2d2e1c1198cb1"
+ integrity sha512-YPusLRaR6sBN13rAH/rewZv4GIM3bUsmMjz7o8qVK/3CYTx/iCAn7JSvNBbhCJT151RLmdYrahOsr8UUXx4k8Q==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~8.0.0"
+ "@abp/bootstrap" "~8.0.0"
+ "@abp/bootstrap-datepicker" "~8.0.0"
+ "@abp/bootstrap-daterangepicker" "~8.0.0"
+ "@abp/datatables.net-bs5" "~8.0.0"
+ "@abp/font-awesome" "~8.0.0"
+ "@abp/jquery-form" "~8.0.0"
+ "@abp/jquery-validation-unobtrusive" "~8.0.0"
+ "@abp/lodash" "~8.0.0"
+ "@abp/luxon" "~8.0.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~8.0.0"
+ "@abp/moment" "~8.0.0"
+ "@abp/select2" "~8.0.0"
+ "@abp/sweetalert2" "~8.0.0"
+ "@abp/timeago" "~8.0.0"
+ "@abp/toastr" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0.tgz#9760a1e4be0e2632e11a3f570209b1eefdf81607"
+ integrity sha512-+WBwpQfDmhP64BVSjyyiqRENpn5EBgcmA7JVMfmdmEJTrzx9ma7WSbLd5QxUxawMSkcjjnK95c5JdMVZXdaL8g==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@@ -43,175 +43,175 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
-"@abp/bootstrap-datepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0-rc.3.tgz#7656fef148c8bdf7993fdae937427564535dea74"
- integrity sha512-qW1XQ2zL+/9f9+Q9Db3E5eIOD8Itjtr0KFAO59tY3G3WEwvCOS85pXJ/I17nLRRo/A2Na4kx4Q/jdYr3DkOgDQ==
+"@abp/bootstrap-datepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0.tgz#458e0acaf6aedbfb03df692b9b2ec87b9fdad954"
+ integrity sha512-UetR0ldw0u5i2ohNpeI8+W0AGrov8tiglTTNyx8sF6WMGcCNCtU72jZCOc9/z/q91AijQrtdHIqpN/1B91YiMw==
dependencies:
bootstrap-datepicker "^1.9.0"
-"@abp/bootstrap-daterangepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0-rc.3.tgz#b6eb599b198f58c9a0690d2f779548137e10889f"
- integrity sha512-TnZdtV0JHweVrrXCJZjxz+Cbk0lYznzELaA6oBbikCPhzIr2XvLqyHuLvERrFVxq80BZGsF7xUgC2K/Tw/RA8w==
+"@abp/bootstrap-daterangepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0.tgz#613d2984d0f3981e0270d337b360c27397dbc480"
+ integrity sha512-nQFDtCp1+EuUfnoRmMcGvOgd4yZPMqjsThiW3m2KIV2Y+YlT52mZLBVpqRBpC2993Bs8E9Zpp4R7ebHJgacePg==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0-rc.3.tgz#8865c2536c353b904e6e96cb70e4280fe9928412"
- integrity sha512-h7rDAp3eBQwARAkEZfJU+IBTXEiLwi3I5CYFQ92QdX/mC66R1cX1gYY7pR5Wj5f68VS2pURnNxJnONtS3E/Cyw==
+"@abp/bootstrap@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0.tgz#7d679f88af98de6ac2c0725b86d43f9ce40c4f5b"
+ integrity sha512-JX6o8uMrsqiMMvbkDRePDqfPFHtWTuKhSTDa77ryp/AZYKOEvJfkdLZGZmYWy7UsB1RNXilth8kMyibqnw0CGg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
bootstrap "^5.1.3"
-"@abp/clipboard@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-8.0.0-rc.3.tgz#eb7211804967c97cf6678c42b7d756438ffcc22a"
- integrity sha512-w9a1gJs8yZbeNkRQqSXxiOUqCLknh+5QM3CoVQudU46Kl4zh39ugPuEMKZhxcGaDsZWSTNuyMgUjzAWFhE/w6g==
+"@abp/clipboard@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-8.0.0.tgz#cb597686e07e9ef68a09ebf7101498281939fb10"
+ integrity sha512-JonHbsCwJQ5iI45zy6lFu9kwXUYoRZC+t31N1w7fDMxekwPEjenBR4g33aGLIySTL7ExKiYjBsEVrCg8GKG/mg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
clipboard "^2.0.8"
-"@abp/core@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0-rc.3.tgz#f399bc55c6ad20c2515a03bb9572c6a4499cfcf0"
- integrity sha512-HUa0AfCDX3URnGWsZ/7aZMsXXQFjott05ebK9wF7QDcI7uInyMT5axlrQ/CniyU8GLaFEt3mdtLB7pOZzDnsRw==
+"@abp/core@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0.tgz#cc4d9c0da10fb922a4adea8df67f60bb02d95365"
+ integrity sha512-qM7jSTR2uAhjAcsaFNchA89rLBiiJpUsvDBFCz0SyOuFz5DYAHo1njlhICcVAHF7H3NxQfVIndGVSjvmqmLC7Q==
dependencies:
- "@abp/utils" "~8.0.0-rc.3"
+ "@abp/utils" "~8.0.0"
-"@abp/datatables.net-bs5@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0-rc.3.tgz#902d0770c54a5888f805cc97de0ed25d0c53dde9"
- integrity sha512-gxYYBeEh81+R8SAh27uMm3paVffq+bYiQgUxpXNgEcyPGP2X7/hnzZNwViuI1t+IgpSuTf6AAt14db9eV6Masg==
+"@abp/datatables.net-bs5@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0.tgz#c874180ea85fd0b2598fde90e2207bea267870c6"
+ integrity sha512-8w4oXTQwFnb56NTpeXjUsITGeMtuxv18ZAPK8Zmw28s5uOoIV/d/bEp11hXPwSk3SrjlyLw0lDcZCItwD+W8DQ==
dependencies:
- "@abp/datatables.net" "~8.0.0-rc.3"
+ "@abp/datatables.net" "~8.0.0"
datatables.net-bs5 "^1.11.4"
-"@abp/datatables.net@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0-rc.3.tgz#4ddfa9fe3246e72807c3b19307c7484af749f969"
- integrity sha512-vQBenQsDxzryspNv0FEzpyUPBXddIkVhXUJ6tHc+IZ8q/+/2wUE0ZciSJm7qS/GQnGrYZv9wpIGbSRh/RgVvVA==
+"@abp/datatables.net@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0.tgz#09ef3575a611f6ec123d2a9d4d55b8c89e30d115"
+ integrity sha512-WmsAfQEGPWMTqHGbeiX3RVfIdfkrMOtUfJmR0JaYJMuQo3STmMSnzOgNMKviDeQdzplgoOOKp6j0OgIqcciowg==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
datatables.net "^1.11.4"
-"@abp/font-awesome@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0-rc.3.tgz#5f850c5479f48cf1c951de2354050d38fec6beab"
- integrity sha512-GYwhoOThD5Bw0Ain5DkVXgHLpca83QGAy1T7I+6SmYyibYu5SdxV9ytD65tARH+dx9VpB3p9NeC5lRYuWdPzCQ==
+"@abp/font-awesome@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0.tgz#ce7debf296fddbdf79139147f6c9761ec68b6587"
+ integrity sha512-qeihwiim6YMcL3KfHU0CViVl5MamQXbTp4606r/hKQejCSbdqR9XupYVbTAyojXLCCRqfnDVuXwqWCFTKVbQow==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
"@fortawesome/fontawesome-free" "^5.15.4"
-"@abp/jquery-form@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0-rc.3.tgz#e414a0599448c37df3197af77a91c9a66d3ef77f"
- integrity sha512-w58Zi28Ci/0DIzMzC/ihu+np7G2Hv+9DLrhLZKddEI9WisFuxao5EAhKseq7LWMPzG/QSw8skLZAY12YrEtp6w==
+"@abp/jquery-form@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0.tgz#466343a87baa2f53fb57cf377e0fb0c07ff02bb9"
+ integrity sha512-xinU2Yu0YWNjoaYnBm+OoN8oNX/BDPzbqGtjlH1s5I+M/S0yf/qlPEzvzL5+epBlt0GKza/SqwSsuAVsfuFrKQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0-rc.3.tgz#a3ab6b5078449ba94c7206ed96286b902a766b6b"
- integrity sha512-Gvmujjhrvqzu51fGSTAssxGVu4XolTLEwW3qR0zwWCc0+kXF/AXB98DD66A+hmGau54sTKRXVmBTpc4J3KpoWg==
+"@abp/jquery-validation-unobtrusive@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0.tgz#a641cc4bff6de178ed3429987017c00bf68e81f9"
+ integrity sha512-nUcktSW5tPifa6yNX9Y8zCi0VCUJklVSSd4f3eKfjU8SIcWq1eNfR6R+MHRZEVVmyB7xeYMBlc0yjxVYwUUlEw==
dependencies:
- "@abp/jquery-validation" "~8.0.0-rc.3"
+ "@abp/jquery-validation" "~8.0.0"
jquery-validation-unobtrusive "^3.2.12"
-"@abp/jquery-validation@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0-rc.3.tgz#eee433a5fc076d92d734e7cea4bce00fbaacc963"
- integrity sha512-Dq5Ru5WWqDKIDzetUicJzp6DHkGhNNHcjYyHF3n9o9+3T4+6dgRbXy5OYjIv9CADfui55rzckWH57FbCExiUSw==
+"@abp/jquery-validation@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0.tgz#674fe49294c622b07b843ab8721a5ae32024b7b9"
+ integrity sha512-B/aFZsKbILP4FPuc3eU17APkbBWJhjWXSQCiSXbHpDZYJN5km1l52gpuWR+7Yo5CXnAP06N+zUYHf86tNCZyBw==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-validation "^1.19.3"
-"@abp/jquery@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0-rc.3.tgz#e230c5db7a9aff526564c1b4b1820cd983a10726"
- integrity sha512-o9xBZt55fT+ZYqmLjQ9dahtIgsRqz4VrXUsLgyKkUzr2p3gtgXCQqKfkIpdeE5aE3p1/T+et5U6FOMUCRZegvg==
+"@abp/jquery@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0.tgz#67bf40f87c335b1cba73f406f0102f35e820fd84"
+ integrity sha512-QhjBz/s1hVJcsYCbuZwNOtOCvsC93OMzMJHoZ2COaKkOZlt6tiRHhawdYVZloKDaMdfcd5tvqbkNhXtQ4K9AXg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
jquery "~3.6.0"
-"@abp/lodash@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0-rc.3.tgz#5bf8019fa0e69ec1fac6ccacb1625b8564ed8944"
- integrity sha512-Mo2r+bNZXdmM7Ri8SBi+M4OsfnLYejbQmcJ7wkDUPb4B3cDJtTB4YuJn8NWBBjaXwi08Myt1MvSFnT04N/t8Eg==
+"@abp/lodash@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0.tgz#4c809c4755ed11e70875d30f04312b0ff10a2dbb"
+ integrity sha512-V0y4k9HlggBvJtK5m35Gkori2IN0E4ec1JpBgGeaOStcvThAL1EtXip1kqPORMbC4wm+bgpT0QWhiqCeKBFoLg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
lodash "^4.17.21"
-"@abp/luxon@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0-rc.3.tgz#cc0adcab4f1fa6bea2055be478ec9a86d00f1ba6"
- integrity sha512-vKwfpAPL7GUJLvCpsJoJ5eXRH5Ypciez9J6QiK2Mjx1NauxR514wYtBqM/2I7hoJ4Oc9XvrAjcIon3r21dvCqQ==
+"@abp/luxon@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0.tgz#13a1145dc79d908f3398944c4bf0fb0457d94217"
+ integrity sha512-ZEGegnr+KCczPUrxxPmBUKGyiWkjAa4hDWb06mozdVP14zHQbbZfyKKXwrPfanwcj96Ui9i2klnrKPXuyppBJw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
luxon "^2.3.0"
-"@abp/malihu-custom-scrollbar-plugin@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0-rc.3.tgz#195c897dced708de627941ce017e047c62191a56"
- integrity sha512-svD7YJzHvufjmhoCKgQcjApIdVcGJwWhpsK260lwLiCvkdNDhxFjH+jfChhLMXPYpOnozrgrVx56oJqDWDrU3A==
+"@abp/malihu-custom-scrollbar-plugin@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0.tgz#fd4428d66ee38b4b2c02c0e300d5bd75dcda414d"
+ integrity sha512-jrD4AHd2Pdr28Ps3QtEDVDMSnK7xSumCKKSJl0R5SJcMyskByJ6gwydYqMGeQkCVnk1ztEZFfJNhOO35A+SBWA==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0-rc.3.tgz#7e2a74cd23c434b45f903b4f826f807a31b5982b"
- integrity sha512-E0mob3xj0frslPovdHbsdaFB5oLimORFA86uQJ5KVSEaDOXYKuEqUomMcqg2LRVdzzKd7ai6QkuH3p7qbJonww==
+"@abp/moment@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0.tgz#26d0932bf4dac4dee25d0940eea50fcfeb37a69b"
+ integrity sha512-fgh0pXdxPi5Y9VnC6f12kwJmGQL4dowZtVp8lbNEjnCFiocAhEOOuN9gkTGk8y0xEhXroliW7wbaB2MJPINKhg==
dependencies:
moment "^2.9.0"
-"@abp/prismjs@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-8.0.0-rc.3.tgz#237bb9c55ad1b202418c5bd1452e73a101706c25"
- integrity sha512-adgMYfZhK7aPpxNdQhdOqE7oOvXUDq5qqhIVOVzmrQ4Dy/uCItT/Zq0yqqYLr2d7D17vRzfBM7R8ubgxnsMfbw==
+"@abp/prismjs@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-8.0.0.tgz#174ccbd33d47bb687fe35bed35f7c834ca5ee328"
+ integrity sha512-Udx3pdlUU2MO+di1BZgG3jKNIeImWoPySmBA8YaStqsAkD/yb+YyUD2QmCUfI55kqzRyhAKE467ZusDFFOY20w==
dependencies:
- "@abp/clipboard" "~8.0.0-rc.3"
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/clipboard" "~8.0.0"
+ "@abp/core" "~8.0.0"
prismjs "^1.26.0"
-"@abp/select2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0-rc.3.tgz#77dd12185f6d03553230c7516e40603310f28f4f"
- integrity sha512-9O+IHIB6n+WfLzh6SVyC01OIU3qWzhoT3DofAc329cyI73NJSPuOvmkQtQVYWnkAI/6+B6qYF3A4umD/EoPouQ==
+"@abp/select2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0.tgz#4a4ebd63f2b79d663dab709decb2f1b1f510950f"
+ integrity sha512-kl3of/L0GSHyxt6WYnBDdBqqtoUscY9qubaMHZrk9y1zOVXOM0JUQoyu2KDQhOZm7iCu34ATX47NAw59eb9Omw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0-rc.3.tgz#021afc3457cf72c2b6dd298bb981faa741fc1293"
- integrity sha512-b67UC/uZ9gWt2X5MeUnKg98FkhvJ+Azsq4PHcFBdUTZL/5ItJ8F6UsOTpT7Z7cUXFmJn/RTcPrgQDsK63CZltw==
+"@abp/sweetalert2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0.tgz#369c04e433eead8e7171cd84298bb3e4ecb14050"
+ integrity sha512-riaHcFdozJ8R/sAdhtnfa7GHhWjptnQODrZ2bqBkcKuw2d8LKQ+2v3tcflaWWHwsOmGVbki3EhJJPdFWOtli/w==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
sweetalert2 "^11.3.6"
-"@abp/timeago@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0-rc.3.tgz#b3e63ff94bce8ad59b02d8c4490f580e60630f00"
- integrity sha512-Pmm6Jj7VT1PW/Wfh1ozFFIdpFvH8cGKfHU2sYgwHuw4U9YQUd8ZTIDaZRMhuN9QqnGlmFtUZsXzoIMZJDvOq5w==
+"@abp/timeago@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0.tgz#93947505b68f369df10bb38cd8c05376e1c1cbcb"
+ integrity sha512-Q+e5CvvFAU21hGuIXREtIeEl8WlGpsNqK+QbCRbjNvM0HgCPH/gRQNpAV+S7TqaI5W2Uggfcsd7GvTH3GtMv7g==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
timeago "^1.6.7"
-"@abp/toastr@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0-rc.3.tgz#5b0d267951e025ca77a611c2fa9b606e92bd830a"
- integrity sha512-hfDzyMSgbjriAALdrcnx/qonN2lquF7HM4QH8nt1E8/vWOkd8bUL/kyAoIL8rfS94zr62UUZTEDezoCfHwif+w==
+"@abp/toastr@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0.tgz#d409fec3fb1e5a886d0a03b0f58449a2f8a563d9"
+ integrity sha512-7evxuHJ+ZJtyCoIv0+HY/av5FC8Y5UzBtVjEB8Ol8RvhH5PBkErguPg9qPZvYcpHjJlYN+iKYAuXdQLZdXHwUQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
toastr "^2.1.4"
-"@abp/utils@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0-rc.3.tgz#01491fb943eb3a41d4ddbe854e5330b66807d522"
- integrity sha512-cuTwsy+FEh3dEnlDDi0s8d3qpWgP3rwqWgg5LlMF0pY/OobJcCLtuo5Zy9bncKL3wFHXVEk6UviYcNkSOkzvtQ==
+"@abp/utils@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0.tgz#3de8e34e97e10ac9c2b8c1c194bf6b034fde302f"
+ integrity sha512-F8LsEedqkngbeFsszdZi1lshFqr++anyJFBoaRsKRw6hJPDPrYtHoOWEQ+p7QcH5UVVzVywQUGMNM+gmAT0vGQ==
dependencies:
just-compare "^2.3.0"
diff --git a/modules/blogging/app/Volo.BloggingTestApp/package.json b/modules/blogging/app/Volo.BloggingTestApp/package.json
index ab204c945d..d4c175892a 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": "~8.0.0-rc.3",
- "@abp/blogging": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0",
+ "@abp/blogging": "~8.0.0"
}
}
diff --git a/modules/blogging/app/Volo.BloggingTestApp/yarn.lock b/modules/blogging/app/Volo.BloggingTestApp/yarn.lock
index da4259626e..2ea0f18895 100644
--- a/modules/blogging/app/Volo.BloggingTestApp/yarn.lock
+++ b/modules/blogging/app/Volo.BloggingTestApp/yarn.lock
@@ -2,39 +2,39 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0-rc.3.tgz#637ea220c9f988c1d0e1b152928f4409696439f2"
- integrity sha512-xFJkcC2Oa8vLqMW0gU/3nXHsdFZOQq8+o9gUeLqDAhHZomnvEWsoivcd+LZs0xSDgQOee7N9h2buv9ERBoYGiA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0-rc.3.tgz#88904633feb5ce7dface4d27e9a31f4e5ace6b30"
- integrity sha512-gMYI+xz/0JDgW2U7T3Lesx1o1U+Y+7zG/jVZO5FuMtlrsYhvT6V5BsKa9q/N7kSR0tfK8vsjblMBobqvbmG3SQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~8.0.0-rc.3"
- "@abp/bootstrap" "~8.0.0-rc.3"
- "@abp/bootstrap-datepicker" "~8.0.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~8.0.0-rc.3"
- "@abp/datatables.net-bs5" "~8.0.0-rc.3"
- "@abp/font-awesome" "~8.0.0-rc.3"
- "@abp/jquery-form" "~8.0.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~8.0.0-rc.3"
- "@abp/lodash" "~8.0.0-rc.3"
- "@abp/luxon" "~8.0.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~8.0.0-rc.3"
- "@abp/moment" "~8.0.0-rc.3"
- "@abp/select2" "~8.0.0-rc.3"
- "@abp/sweetalert2" "~8.0.0-rc.3"
- "@abp/timeago" "~8.0.0-rc.3"
- "@abp/toastr" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0-rc.3.tgz#09402ed4e7504c09b49a84d6ee590a5c87017ab8"
- integrity sha512-82GfU8DtReq5RTrb2Fl0UHm+vEO0PvC/6DyFHm57nyWiL2dKByUqLd8NXQz+gqubWOA+IvJoLehbcC6iD+Y0VQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0.tgz#c58d15186ad9842834c953e4d712009597ead5c2"
+ integrity sha512-d43CG48iS8vQvA85tSK7OlSHdcC9JuBT7mpN7DlLViiQewVeoKwdKkMhl5nkX4k0yNtqaRbWYlDD6kDp95TktA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0.tgz#4931d9bd40fba2d3e38d3a2a8da2d2e1c1198cb1"
+ integrity sha512-YPusLRaR6sBN13rAH/rewZv4GIM3bUsmMjz7o8qVK/3CYTx/iCAn7JSvNBbhCJT151RLmdYrahOsr8UUXx4k8Q==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~8.0.0"
+ "@abp/bootstrap" "~8.0.0"
+ "@abp/bootstrap-datepicker" "~8.0.0"
+ "@abp/bootstrap-daterangepicker" "~8.0.0"
+ "@abp/datatables.net-bs5" "~8.0.0"
+ "@abp/font-awesome" "~8.0.0"
+ "@abp/jquery-form" "~8.0.0"
+ "@abp/jquery-validation-unobtrusive" "~8.0.0"
+ "@abp/lodash" "~8.0.0"
+ "@abp/luxon" "~8.0.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~8.0.0"
+ "@abp/moment" "~8.0.0"
+ "@abp/select2" "~8.0.0"
+ "@abp/sweetalert2" "~8.0.0"
+ "@abp/timeago" "~8.0.0"
+ "@abp/toastr" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0.tgz#9760a1e4be0e2632e11a3f570209b1eefdf81607"
+ integrity sha512-+WBwpQfDmhP64BVSjyyiqRENpn5EBgcmA7JVMfmdmEJTrzx9ma7WSbLd5QxUxawMSkcjjnK95c5JdMVZXdaL8g==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@@ -43,201 +43,201 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
-"@abp/blogging@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-8.0.0-rc.3.tgz#f8b4b1e70555c67e5796ea8bf226e26b50e5f526"
- integrity sha512-55Xo1/092Y4GBGhJbbo57JkiJS6x6bBNLmCwdJ3/Pr8AasHZD+enm/wyWC7mlABU/gyAZKyj151jbSui3qp8jA==
+"@abp/blogging@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-8.0.0.tgz#25f805de6bc3ba9f26ba49798e72168950b8b97c"
+ integrity sha512-N56rtJiAontTMy6M/vqB/n46xZF3FCp1Q0d7/E4ObwmkBRvreN/Zq+zfbPxfvRXodHWAogE6h73vxbixGFnsuQ==
dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0-rc.3"
- "@abp/owl.carousel" "~8.0.0-rc.3"
- "@abp/prismjs" "~8.0.0-rc.3"
- "@abp/tui-editor" "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0"
+ "@abp/owl.carousel" "~8.0.0"
+ "@abp/prismjs" "~8.0.0"
+ "@abp/tui-editor" "~8.0.0"
-"@abp/bootstrap-datepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0-rc.3.tgz#7656fef148c8bdf7993fdae937427564535dea74"
- integrity sha512-qW1XQ2zL+/9f9+Q9Db3E5eIOD8Itjtr0KFAO59tY3G3WEwvCOS85pXJ/I17nLRRo/A2Na4kx4Q/jdYr3DkOgDQ==
+"@abp/bootstrap-datepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0.tgz#458e0acaf6aedbfb03df692b9b2ec87b9fdad954"
+ integrity sha512-UetR0ldw0u5i2ohNpeI8+W0AGrov8tiglTTNyx8sF6WMGcCNCtU72jZCOc9/z/q91AijQrtdHIqpN/1B91YiMw==
dependencies:
bootstrap-datepicker "^1.9.0"
-"@abp/bootstrap-daterangepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0-rc.3.tgz#b6eb599b198f58c9a0690d2f779548137e10889f"
- integrity sha512-TnZdtV0JHweVrrXCJZjxz+Cbk0lYznzELaA6oBbikCPhzIr2XvLqyHuLvERrFVxq80BZGsF7xUgC2K/Tw/RA8w==
+"@abp/bootstrap-daterangepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0.tgz#613d2984d0f3981e0270d337b360c27397dbc480"
+ integrity sha512-nQFDtCp1+EuUfnoRmMcGvOgd4yZPMqjsThiW3m2KIV2Y+YlT52mZLBVpqRBpC2993Bs8E9Zpp4R7ebHJgacePg==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0-rc.3.tgz#8865c2536c353b904e6e96cb70e4280fe9928412"
- integrity sha512-h7rDAp3eBQwARAkEZfJU+IBTXEiLwi3I5CYFQ92QdX/mC66R1cX1gYY7pR5Wj5f68VS2pURnNxJnONtS3E/Cyw==
+"@abp/bootstrap@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0.tgz#7d679f88af98de6ac2c0725b86d43f9ce40c4f5b"
+ integrity sha512-JX6o8uMrsqiMMvbkDRePDqfPFHtWTuKhSTDa77ryp/AZYKOEvJfkdLZGZmYWy7UsB1RNXilth8kMyibqnw0CGg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
bootstrap "^5.1.3"
-"@abp/clipboard@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-8.0.0-rc.3.tgz#eb7211804967c97cf6678c42b7d756438ffcc22a"
- integrity sha512-w9a1gJs8yZbeNkRQqSXxiOUqCLknh+5QM3CoVQudU46Kl4zh39ugPuEMKZhxcGaDsZWSTNuyMgUjzAWFhE/w6g==
+"@abp/clipboard@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-8.0.0.tgz#cb597686e07e9ef68a09ebf7101498281939fb10"
+ integrity sha512-JonHbsCwJQ5iI45zy6lFu9kwXUYoRZC+t31N1w7fDMxekwPEjenBR4g33aGLIySTL7ExKiYjBsEVrCg8GKG/mg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
clipboard "^2.0.8"
-"@abp/core@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0-rc.3.tgz#f399bc55c6ad20c2515a03bb9572c6a4499cfcf0"
- integrity sha512-HUa0AfCDX3URnGWsZ/7aZMsXXQFjott05ebK9wF7QDcI7uInyMT5axlrQ/CniyU8GLaFEt3mdtLB7pOZzDnsRw==
+"@abp/core@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0.tgz#cc4d9c0da10fb922a4adea8df67f60bb02d95365"
+ integrity sha512-qM7jSTR2uAhjAcsaFNchA89rLBiiJpUsvDBFCz0SyOuFz5DYAHo1njlhICcVAHF7H3NxQfVIndGVSjvmqmLC7Q==
dependencies:
- "@abp/utils" "~8.0.0-rc.3"
+ "@abp/utils" "~8.0.0"
-"@abp/datatables.net-bs5@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0-rc.3.tgz#902d0770c54a5888f805cc97de0ed25d0c53dde9"
- integrity sha512-gxYYBeEh81+R8SAh27uMm3paVffq+bYiQgUxpXNgEcyPGP2X7/hnzZNwViuI1t+IgpSuTf6AAt14db9eV6Masg==
+"@abp/datatables.net-bs5@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0.tgz#c874180ea85fd0b2598fde90e2207bea267870c6"
+ integrity sha512-8w4oXTQwFnb56NTpeXjUsITGeMtuxv18ZAPK8Zmw28s5uOoIV/d/bEp11hXPwSk3SrjlyLw0lDcZCItwD+W8DQ==
dependencies:
- "@abp/datatables.net" "~8.0.0-rc.3"
+ "@abp/datatables.net" "~8.0.0"
datatables.net-bs5 "^1.11.4"
-"@abp/datatables.net@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0-rc.3.tgz#4ddfa9fe3246e72807c3b19307c7484af749f969"
- integrity sha512-vQBenQsDxzryspNv0FEzpyUPBXddIkVhXUJ6tHc+IZ8q/+/2wUE0ZciSJm7qS/GQnGrYZv9wpIGbSRh/RgVvVA==
+"@abp/datatables.net@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0.tgz#09ef3575a611f6ec123d2a9d4d55b8c89e30d115"
+ integrity sha512-WmsAfQEGPWMTqHGbeiX3RVfIdfkrMOtUfJmR0JaYJMuQo3STmMSnzOgNMKviDeQdzplgoOOKp6j0OgIqcciowg==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
datatables.net "^1.11.4"
-"@abp/font-awesome@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0-rc.3.tgz#5f850c5479f48cf1c951de2354050d38fec6beab"
- integrity sha512-GYwhoOThD5Bw0Ain5DkVXgHLpca83QGAy1T7I+6SmYyibYu5SdxV9ytD65tARH+dx9VpB3p9NeC5lRYuWdPzCQ==
+"@abp/font-awesome@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0.tgz#ce7debf296fddbdf79139147f6c9761ec68b6587"
+ integrity sha512-qeihwiim6YMcL3KfHU0CViVl5MamQXbTp4606r/hKQejCSbdqR9XupYVbTAyojXLCCRqfnDVuXwqWCFTKVbQow==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
"@fortawesome/fontawesome-free" "^5.15.4"
-"@abp/jquery-form@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0-rc.3.tgz#e414a0599448c37df3197af77a91c9a66d3ef77f"
- integrity sha512-w58Zi28Ci/0DIzMzC/ihu+np7G2Hv+9DLrhLZKddEI9WisFuxao5EAhKseq7LWMPzG/QSw8skLZAY12YrEtp6w==
+"@abp/jquery-form@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0.tgz#466343a87baa2f53fb57cf377e0fb0c07ff02bb9"
+ integrity sha512-xinU2Yu0YWNjoaYnBm+OoN8oNX/BDPzbqGtjlH1s5I+M/S0yf/qlPEzvzL5+epBlt0GKza/SqwSsuAVsfuFrKQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0-rc.3.tgz#a3ab6b5078449ba94c7206ed96286b902a766b6b"
- integrity sha512-Gvmujjhrvqzu51fGSTAssxGVu4XolTLEwW3qR0zwWCc0+kXF/AXB98DD66A+hmGau54sTKRXVmBTpc4J3KpoWg==
+"@abp/jquery-validation-unobtrusive@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0.tgz#a641cc4bff6de178ed3429987017c00bf68e81f9"
+ integrity sha512-nUcktSW5tPifa6yNX9Y8zCi0VCUJklVSSd4f3eKfjU8SIcWq1eNfR6R+MHRZEVVmyB7xeYMBlc0yjxVYwUUlEw==
dependencies:
- "@abp/jquery-validation" "~8.0.0-rc.3"
+ "@abp/jquery-validation" "~8.0.0"
jquery-validation-unobtrusive "^3.2.12"
-"@abp/jquery-validation@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0-rc.3.tgz#eee433a5fc076d92d734e7cea4bce00fbaacc963"
- integrity sha512-Dq5Ru5WWqDKIDzetUicJzp6DHkGhNNHcjYyHF3n9o9+3T4+6dgRbXy5OYjIv9CADfui55rzckWH57FbCExiUSw==
+"@abp/jquery-validation@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0.tgz#674fe49294c622b07b843ab8721a5ae32024b7b9"
+ integrity sha512-B/aFZsKbILP4FPuc3eU17APkbBWJhjWXSQCiSXbHpDZYJN5km1l52gpuWR+7Yo5CXnAP06N+zUYHf86tNCZyBw==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-validation "^1.19.3"
-"@abp/jquery@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0-rc.3.tgz#e230c5db7a9aff526564c1b4b1820cd983a10726"
- integrity sha512-o9xBZt55fT+ZYqmLjQ9dahtIgsRqz4VrXUsLgyKkUzr2p3gtgXCQqKfkIpdeE5aE3p1/T+et5U6FOMUCRZegvg==
+"@abp/jquery@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0.tgz#67bf40f87c335b1cba73f406f0102f35e820fd84"
+ integrity sha512-QhjBz/s1hVJcsYCbuZwNOtOCvsC93OMzMJHoZ2COaKkOZlt6tiRHhawdYVZloKDaMdfcd5tvqbkNhXtQ4K9AXg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
jquery "~3.6.0"
-"@abp/lodash@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0-rc.3.tgz#5bf8019fa0e69ec1fac6ccacb1625b8564ed8944"
- integrity sha512-Mo2r+bNZXdmM7Ri8SBi+M4OsfnLYejbQmcJ7wkDUPb4B3cDJtTB4YuJn8NWBBjaXwi08Myt1MvSFnT04N/t8Eg==
+"@abp/lodash@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0.tgz#4c809c4755ed11e70875d30f04312b0ff10a2dbb"
+ integrity sha512-V0y4k9HlggBvJtK5m35Gkori2IN0E4ec1JpBgGeaOStcvThAL1EtXip1kqPORMbC4wm+bgpT0QWhiqCeKBFoLg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
lodash "^4.17.21"
-"@abp/luxon@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0-rc.3.tgz#cc0adcab4f1fa6bea2055be478ec9a86d00f1ba6"
- integrity sha512-vKwfpAPL7GUJLvCpsJoJ5eXRH5Ypciez9J6QiK2Mjx1NauxR514wYtBqM/2I7hoJ4Oc9XvrAjcIon3r21dvCqQ==
+"@abp/luxon@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0.tgz#13a1145dc79d908f3398944c4bf0fb0457d94217"
+ integrity sha512-ZEGegnr+KCczPUrxxPmBUKGyiWkjAa4hDWb06mozdVP14zHQbbZfyKKXwrPfanwcj96Ui9i2klnrKPXuyppBJw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
luxon "^2.3.0"
-"@abp/malihu-custom-scrollbar-plugin@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0-rc.3.tgz#195c897dced708de627941ce017e047c62191a56"
- integrity sha512-svD7YJzHvufjmhoCKgQcjApIdVcGJwWhpsK260lwLiCvkdNDhxFjH+jfChhLMXPYpOnozrgrVx56oJqDWDrU3A==
+"@abp/malihu-custom-scrollbar-plugin@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0.tgz#fd4428d66ee38b4b2c02c0e300d5bd75dcda414d"
+ integrity sha512-jrD4AHd2Pdr28Ps3QtEDVDMSnK7xSumCKKSJl0R5SJcMyskByJ6gwydYqMGeQkCVnk1ztEZFfJNhOO35A+SBWA==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0-rc.3.tgz#7e2a74cd23c434b45f903b4f826f807a31b5982b"
- integrity sha512-E0mob3xj0frslPovdHbsdaFB5oLimORFA86uQJ5KVSEaDOXYKuEqUomMcqg2LRVdzzKd7ai6QkuH3p7qbJonww==
+"@abp/moment@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0.tgz#26d0932bf4dac4dee25d0940eea50fcfeb37a69b"
+ integrity sha512-fgh0pXdxPi5Y9VnC6f12kwJmGQL4dowZtVp8lbNEjnCFiocAhEOOuN9gkTGk8y0xEhXroliW7wbaB2MJPINKhg==
dependencies:
moment "^2.9.0"
-"@abp/owl.carousel@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-8.0.0-rc.3.tgz#db3e9590ae4df9b567584dce45132e02caaf476b"
- integrity sha512-tbEu4mm8w4RjmLP+rivasVd4KKWSiVhjM7p6H717sMDzOQ4GEelsda9m69Vc+8k5t/Xfu+ilBEt0vZ0OmJC0ZQ==
+"@abp/owl.carousel@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-8.0.0.tgz#250ba286ad0676341d1ecafca1a0138eb77cff2c"
+ integrity sha512-FeVLf3Y84QQWNWJfX405pWTAiub7v4yObnZW1lpBRUOaAozJpDN7RYfsqnO9vU9xZbCZZOTNFmpY5AlLGXmxUg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
owl.carousel "^2.3.4"
-"@abp/prismjs@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-8.0.0-rc.3.tgz#237bb9c55ad1b202418c5bd1452e73a101706c25"
- integrity sha512-adgMYfZhK7aPpxNdQhdOqE7oOvXUDq5qqhIVOVzmrQ4Dy/uCItT/Zq0yqqYLr2d7D17vRzfBM7R8ubgxnsMfbw==
+"@abp/prismjs@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-8.0.0.tgz#174ccbd33d47bb687fe35bed35f7c834ca5ee328"
+ integrity sha512-Udx3pdlUU2MO+di1BZgG3jKNIeImWoPySmBA8YaStqsAkD/yb+YyUD2QmCUfI55kqzRyhAKE467ZusDFFOY20w==
dependencies:
- "@abp/clipboard" "~8.0.0-rc.3"
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/clipboard" "~8.0.0"
+ "@abp/core" "~8.0.0"
prismjs "^1.26.0"
-"@abp/select2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0-rc.3.tgz#77dd12185f6d03553230c7516e40603310f28f4f"
- integrity sha512-9O+IHIB6n+WfLzh6SVyC01OIU3qWzhoT3DofAc329cyI73NJSPuOvmkQtQVYWnkAI/6+B6qYF3A4umD/EoPouQ==
+"@abp/select2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0.tgz#4a4ebd63f2b79d663dab709decb2f1b1f510950f"
+ integrity sha512-kl3of/L0GSHyxt6WYnBDdBqqtoUscY9qubaMHZrk9y1zOVXOM0JUQoyu2KDQhOZm7iCu34ATX47NAw59eb9Omw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0-rc.3.tgz#021afc3457cf72c2b6dd298bb981faa741fc1293"
- integrity sha512-b67UC/uZ9gWt2X5MeUnKg98FkhvJ+Azsq4PHcFBdUTZL/5ItJ8F6UsOTpT7Z7cUXFmJn/RTcPrgQDsK63CZltw==
+"@abp/sweetalert2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0.tgz#369c04e433eead8e7171cd84298bb3e4ecb14050"
+ integrity sha512-riaHcFdozJ8R/sAdhtnfa7GHhWjptnQODrZ2bqBkcKuw2d8LKQ+2v3tcflaWWHwsOmGVbki3EhJJPdFWOtli/w==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
sweetalert2 "^11.3.6"
-"@abp/timeago@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0-rc.3.tgz#b3e63ff94bce8ad59b02d8c4490f580e60630f00"
- integrity sha512-Pmm6Jj7VT1PW/Wfh1ozFFIdpFvH8cGKfHU2sYgwHuw4U9YQUd8ZTIDaZRMhuN9QqnGlmFtUZsXzoIMZJDvOq5w==
+"@abp/timeago@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0.tgz#93947505b68f369df10bb38cd8c05376e1c1cbcb"
+ integrity sha512-Q+e5CvvFAU21hGuIXREtIeEl8WlGpsNqK+QbCRbjNvM0HgCPH/gRQNpAV+S7TqaI5W2Uggfcsd7GvTH3GtMv7g==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
timeago "^1.6.7"
-"@abp/toastr@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0-rc.3.tgz#5b0d267951e025ca77a611c2fa9b606e92bd830a"
- integrity sha512-hfDzyMSgbjriAALdrcnx/qonN2lquF7HM4QH8nt1E8/vWOkd8bUL/kyAoIL8rfS94zr62UUZTEDezoCfHwif+w==
+"@abp/toastr@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0.tgz#d409fec3fb1e5a886d0a03b0f58449a2f8a563d9"
+ integrity sha512-7evxuHJ+ZJtyCoIv0+HY/av5FC8Y5UzBtVjEB8Ol8RvhH5PBkErguPg9qPZvYcpHjJlYN+iKYAuXdQLZdXHwUQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
toastr "^2.1.4"
-"@abp/tui-editor@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-8.0.0-rc.3.tgz#b5cc1470598b1a478733767d21275334d130bfc1"
- integrity sha512-EdPrVdTV9Yv18Ke4UTf6/BPF4eZx+eEECI3zSQMrnDlGv5C1gBG1MS37KdqMeHvvhz95rIv/RO6kpjGkJYEm9g==
+"@abp/tui-editor@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-8.0.0.tgz#580737ed8e3a29ada576866556afbce5655cddfc"
+ integrity sha512-bsFwmAxLIV9IkcTqJor0ev0+noQqWsczxIkaSx9HWw08/YkNPfG0ak7gICU1I/gZoB7IMoaiwC6dXfY27BKSWA==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
- "@abp/prismjs" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
+ "@abp/prismjs" "~8.0.0"
-"@abp/utils@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0-rc.3.tgz#01491fb943eb3a41d4ddbe854e5330b66807d522"
- integrity sha512-cuTwsy+FEh3dEnlDDi0s8d3qpWgP3rwqWgg5LlMF0pY/OobJcCLtuo5Zy9bncKL3wFHXVEk6UviYcNkSOkzvtQ==
+"@abp/utils@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0.tgz#3de8e34e97e10ac9c2b8c1c194bf6b034fde302f"
+ integrity sha512-F8LsEedqkngbeFsszdZi1lshFqr++anyJFBoaRsKRw6hJPDPrYtHoOWEQ+p7QcH5UVVzVywQUGMNM+gmAT0vGQ==
dependencies:
just-compare "^2.3.0"
diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/package.json b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/package.json
index 4e6412e3ba..1a48bf14cc 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": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0"
}
}
diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock
index 1d0f3b4e2a..f9b7466558 100644
--- a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock
+++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock
@@ -2,39 +2,39 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0-rc.3.tgz#637ea220c9f988c1d0e1b152928f4409696439f2"
- integrity sha512-xFJkcC2Oa8vLqMW0gU/3nXHsdFZOQq8+o9gUeLqDAhHZomnvEWsoivcd+LZs0xSDgQOee7N9h2buv9ERBoYGiA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0-rc.3.tgz#88904633feb5ce7dface4d27e9a31f4e5ace6b30"
- integrity sha512-gMYI+xz/0JDgW2U7T3Lesx1o1U+Y+7zG/jVZO5FuMtlrsYhvT6V5BsKa9q/N7kSR0tfK8vsjblMBobqvbmG3SQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~8.0.0-rc.3"
- "@abp/bootstrap" "~8.0.0-rc.3"
- "@abp/bootstrap-datepicker" "~8.0.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~8.0.0-rc.3"
- "@abp/datatables.net-bs5" "~8.0.0-rc.3"
- "@abp/font-awesome" "~8.0.0-rc.3"
- "@abp/jquery-form" "~8.0.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~8.0.0-rc.3"
- "@abp/lodash" "~8.0.0-rc.3"
- "@abp/luxon" "~8.0.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~8.0.0-rc.3"
- "@abp/moment" "~8.0.0-rc.3"
- "@abp/select2" "~8.0.0-rc.3"
- "@abp/sweetalert2" "~8.0.0-rc.3"
- "@abp/timeago" "~8.0.0-rc.3"
- "@abp/toastr" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0-rc.3.tgz#09402ed4e7504c09b49a84d6ee590a5c87017ab8"
- integrity sha512-82GfU8DtReq5RTrb2Fl0UHm+vEO0PvC/6DyFHm57nyWiL2dKByUqLd8NXQz+gqubWOA+IvJoLehbcC6iD+Y0VQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0.tgz#c58d15186ad9842834c953e4d712009597ead5c2"
+ integrity sha512-d43CG48iS8vQvA85tSK7OlSHdcC9JuBT7mpN7DlLViiQewVeoKwdKkMhl5nkX4k0yNtqaRbWYlDD6kDp95TktA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0.tgz#4931d9bd40fba2d3e38d3a2a8da2d2e1c1198cb1"
+ integrity sha512-YPusLRaR6sBN13rAH/rewZv4GIM3bUsmMjz7o8qVK/3CYTx/iCAn7JSvNBbhCJT151RLmdYrahOsr8UUXx4k8Q==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~8.0.0"
+ "@abp/bootstrap" "~8.0.0"
+ "@abp/bootstrap-datepicker" "~8.0.0"
+ "@abp/bootstrap-daterangepicker" "~8.0.0"
+ "@abp/datatables.net-bs5" "~8.0.0"
+ "@abp/font-awesome" "~8.0.0"
+ "@abp/jquery-form" "~8.0.0"
+ "@abp/jquery-validation-unobtrusive" "~8.0.0"
+ "@abp/lodash" "~8.0.0"
+ "@abp/luxon" "~8.0.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~8.0.0"
+ "@abp/moment" "~8.0.0"
+ "@abp/select2" "~8.0.0"
+ "@abp/sweetalert2" "~8.0.0"
+ "@abp/timeago" "~8.0.0"
+ "@abp/toastr" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0.tgz#9760a1e4be0e2632e11a3f570209b1eefdf81607"
+ integrity sha512-+WBwpQfDmhP64BVSjyyiqRENpn5EBgcmA7JVMfmdmEJTrzx9ma7WSbLd5QxUxawMSkcjjnK95c5JdMVZXdaL8g==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@@ -43,158 +43,158 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
-"@abp/bootstrap-datepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0-rc.3.tgz#7656fef148c8bdf7993fdae937427564535dea74"
- integrity sha512-qW1XQ2zL+/9f9+Q9Db3E5eIOD8Itjtr0KFAO59tY3G3WEwvCOS85pXJ/I17nLRRo/A2Na4kx4Q/jdYr3DkOgDQ==
+"@abp/bootstrap-datepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0.tgz#458e0acaf6aedbfb03df692b9b2ec87b9fdad954"
+ integrity sha512-UetR0ldw0u5i2ohNpeI8+W0AGrov8tiglTTNyx8sF6WMGcCNCtU72jZCOc9/z/q91AijQrtdHIqpN/1B91YiMw==
dependencies:
bootstrap-datepicker "^1.9.0"
-"@abp/bootstrap-daterangepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0-rc.3.tgz#b6eb599b198f58c9a0690d2f779548137e10889f"
- integrity sha512-TnZdtV0JHweVrrXCJZjxz+Cbk0lYznzELaA6oBbikCPhzIr2XvLqyHuLvERrFVxq80BZGsF7xUgC2K/Tw/RA8w==
+"@abp/bootstrap-daterangepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0.tgz#613d2984d0f3981e0270d337b360c27397dbc480"
+ integrity sha512-nQFDtCp1+EuUfnoRmMcGvOgd4yZPMqjsThiW3m2KIV2Y+YlT52mZLBVpqRBpC2993Bs8E9Zpp4R7ebHJgacePg==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0-rc.3.tgz#8865c2536c353b904e6e96cb70e4280fe9928412"
- integrity sha512-h7rDAp3eBQwARAkEZfJU+IBTXEiLwi3I5CYFQ92QdX/mC66R1cX1gYY7pR5Wj5f68VS2pURnNxJnONtS3E/Cyw==
+"@abp/bootstrap@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0.tgz#7d679f88af98de6ac2c0725b86d43f9ce40c4f5b"
+ integrity sha512-JX6o8uMrsqiMMvbkDRePDqfPFHtWTuKhSTDa77ryp/AZYKOEvJfkdLZGZmYWy7UsB1RNXilth8kMyibqnw0CGg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
bootstrap "^5.1.3"
-"@abp/core@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0-rc.3.tgz#f399bc55c6ad20c2515a03bb9572c6a4499cfcf0"
- integrity sha512-HUa0AfCDX3URnGWsZ/7aZMsXXQFjott05ebK9wF7QDcI7uInyMT5axlrQ/CniyU8GLaFEt3mdtLB7pOZzDnsRw==
+"@abp/core@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0.tgz#cc4d9c0da10fb922a4adea8df67f60bb02d95365"
+ integrity sha512-qM7jSTR2uAhjAcsaFNchA89rLBiiJpUsvDBFCz0SyOuFz5DYAHo1njlhICcVAHF7H3NxQfVIndGVSjvmqmLC7Q==
dependencies:
- "@abp/utils" "~8.0.0-rc.3"
+ "@abp/utils" "~8.0.0"
-"@abp/datatables.net-bs5@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0-rc.3.tgz#902d0770c54a5888f805cc97de0ed25d0c53dde9"
- integrity sha512-gxYYBeEh81+R8SAh27uMm3paVffq+bYiQgUxpXNgEcyPGP2X7/hnzZNwViuI1t+IgpSuTf6AAt14db9eV6Masg==
+"@abp/datatables.net-bs5@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0.tgz#c874180ea85fd0b2598fde90e2207bea267870c6"
+ integrity sha512-8w4oXTQwFnb56NTpeXjUsITGeMtuxv18ZAPK8Zmw28s5uOoIV/d/bEp11hXPwSk3SrjlyLw0lDcZCItwD+W8DQ==
dependencies:
- "@abp/datatables.net" "~8.0.0-rc.3"
+ "@abp/datatables.net" "~8.0.0"
datatables.net-bs5 "^1.11.4"
-"@abp/datatables.net@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0-rc.3.tgz#4ddfa9fe3246e72807c3b19307c7484af749f969"
- integrity sha512-vQBenQsDxzryspNv0FEzpyUPBXddIkVhXUJ6tHc+IZ8q/+/2wUE0ZciSJm7qS/GQnGrYZv9wpIGbSRh/RgVvVA==
+"@abp/datatables.net@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0.tgz#09ef3575a611f6ec123d2a9d4d55b8c89e30d115"
+ integrity sha512-WmsAfQEGPWMTqHGbeiX3RVfIdfkrMOtUfJmR0JaYJMuQo3STmMSnzOgNMKviDeQdzplgoOOKp6j0OgIqcciowg==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
datatables.net "^1.11.4"
-"@abp/font-awesome@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0-rc.3.tgz#5f850c5479f48cf1c951de2354050d38fec6beab"
- integrity sha512-GYwhoOThD5Bw0Ain5DkVXgHLpca83QGAy1T7I+6SmYyibYu5SdxV9ytD65tARH+dx9VpB3p9NeC5lRYuWdPzCQ==
+"@abp/font-awesome@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0.tgz#ce7debf296fddbdf79139147f6c9761ec68b6587"
+ integrity sha512-qeihwiim6YMcL3KfHU0CViVl5MamQXbTp4606r/hKQejCSbdqR9XupYVbTAyojXLCCRqfnDVuXwqWCFTKVbQow==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
"@fortawesome/fontawesome-free" "^5.15.4"
-"@abp/jquery-form@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0-rc.3.tgz#e414a0599448c37df3197af77a91c9a66d3ef77f"
- integrity sha512-w58Zi28Ci/0DIzMzC/ihu+np7G2Hv+9DLrhLZKddEI9WisFuxao5EAhKseq7LWMPzG/QSw8skLZAY12YrEtp6w==
+"@abp/jquery-form@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0.tgz#466343a87baa2f53fb57cf377e0fb0c07ff02bb9"
+ integrity sha512-xinU2Yu0YWNjoaYnBm+OoN8oNX/BDPzbqGtjlH1s5I+M/S0yf/qlPEzvzL5+epBlt0GKza/SqwSsuAVsfuFrKQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0-rc.3.tgz#a3ab6b5078449ba94c7206ed96286b902a766b6b"
- integrity sha512-Gvmujjhrvqzu51fGSTAssxGVu4XolTLEwW3qR0zwWCc0+kXF/AXB98DD66A+hmGau54sTKRXVmBTpc4J3KpoWg==
+"@abp/jquery-validation-unobtrusive@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0.tgz#a641cc4bff6de178ed3429987017c00bf68e81f9"
+ integrity sha512-nUcktSW5tPifa6yNX9Y8zCi0VCUJklVSSd4f3eKfjU8SIcWq1eNfR6R+MHRZEVVmyB7xeYMBlc0yjxVYwUUlEw==
dependencies:
- "@abp/jquery-validation" "~8.0.0-rc.3"
+ "@abp/jquery-validation" "~8.0.0"
jquery-validation-unobtrusive "^3.2.12"
-"@abp/jquery-validation@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0-rc.3.tgz#eee433a5fc076d92d734e7cea4bce00fbaacc963"
- integrity sha512-Dq5Ru5WWqDKIDzetUicJzp6DHkGhNNHcjYyHF3n9o9+3T4+6dgRbXy5OYjIv9CADfui55rzckWH57FbCExiUSw==
+"@abp/jquery-validation@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0.tgz#674fe49294c622b07b843ab8721a5ae32024b7b9"
+ integrity sha512-B/aFZsKbILP4FPuc3eU17APkbBWJhjWXSQCiSXbHpDZYJN5km1l52gpuWR+7Yo5CXnAP06N+zUYHf86tNCZyBw==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-validation "^1.19.3"
-"@abp/jquery@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0-rc.3.tgz#e230c5db7a9aff526564c1b4b1820cd983a10726"
- integrity sha512-o9xBZt55fT+ZYqmLjQ9dahtIgsRqz4VrXUsLgyKkUzr2p3gtgXCQqKfkIpdeE5aE3p1/T+et5U6FOMUCRZegvg==
+"@abp/jquery@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0.tgz#67bf40f87c335b1cba73f406f0102f35e820fd84"
+ integrity sha512-QhjBz/s1hVJcsYCbuZwNOtOCvsC93OMzMJHoZ2COaKkOZlt6tiRHhawdYVZloKDaMdfcd5tvqbkNhXtQ4K9AXg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
jquery "~3.6.0"
-"@abp/lodash@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0-rc.3.tgz#5bf8019fa0e69ec1fac6ccacb1625b8564ed8944"
- integrity sha512-Mo2r+bNZXdmM7Ri8SBi+M4OsfnLYejbQmcJ7wkDUPb4B3cDJtTB4YuJn8NWBBjaXwi08Myt1MvSFnT04N/t8Eg==
+"@abp/lodash@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0.tgz#4c809c4755ed11e70875d30f04312b0ff10a2dbb"
+ integrity sha512-V0y4k9HlggBvJtK5m35Gkori2IN0E4ec1JpBgGeaOStcvThAL1EtXip1kqPORMbC4wm+bgpT0QWhiqCeKBFoLg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
lodash "^4.17.21"
-"@abp/luxon@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0-rc.3.tgz#cc0adcab4f1fa6bea2055be478ec9a86d00f1ba6"
- integrity sha512-vKwfpAPL7GUJLvCpsJoJ5eXRH5Ypciez9J6QiK2Mjx1NauxR514wYtBqM/2I7hoJ4Oc9XvrAjcIon3r21dvCqQ==
+"@abp/luxon@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0.tgz#13a1145dc79d908f3398944c4bf0fb0457d94217"
+ integrity sha512-ZEGegnr+KCczPUrxxPmBUKGyiWkjAa4hDWb06mozdVP14zHQbbZfyKKXwrPfanwcj96Ui9i2klnrKPXuyppBJw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
luxon "^2.3.0"
-"@abp/malihu-custom-scrollbar-plugin@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0-rc.3.tgz#195c897dced708de627941ce017e047c62191a56"
- integrity sha512-svD7YJzHvufjmhoCKgQcjApIdVcGJwWhpsK260lwLiCvkdNDhxFjH+jfChhLMXPYpOnozrgrVx56oJqDWDrU3A==
+"@abp/malihu-custom-scrollbar-plugin@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0.tgz#fd4428d66ee38b4b2c02c0e300d5bd75dcda414d"
+ integrity sha512-jrD4AHd2Pdr28Ps3QtEDVDMSnK7xSumCKKSJl0R5SJcMyskByJ6gwydYqMGeQkCVnk1ztEZFfJNhOO35A+SBWA==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0-rc.3.tgz#7e2a74cd23c434b45f903b4f826f807a31b5982b"
- integrity sha512-E0mob3xj0frslPovdHbsdaFB5oLimORFA86uQJ5KVSEaDOXYKuEqUomMcqg2LRVdzzKd7ai6QkuH3p7qbJonww==
+"@abp/moment@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0.tgz#26d0932bf4dac4dee25d0940eea50fcfeb37a69b"
+ integrity sha512-fgh0pXdxPi5Y9VnC6f12kwJmGQL4dowZtVp8lbNEjnCFiocAhEOOuN9gkTGk8y0xEhXroliW7wbaB2MJPINKhg==
dependencies:
moment "^2.9.0"
-"@abp/select2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0-rc.3.tgz#77dd12185f6d03553230c7516e40603310f28f4f"
- integrity sha512-9O+IHIB6n+WfLzh6SVyC01OIU3qWzhoT3DofAc329cyI73NJSPuOvmkQtQVYWnkAI/6+B6qYF3A4umD/EoPouQ==
+"@abp/select2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0.tgz#4a4ebd63f2b79d663dab709decb2f1b1f510950f"
+ integrity sha512-kl3of/L0GSHyxt6WYnBDdBqqtoUscY9qubaMHZrk9y1zOVXOM0JUQoyu2KDQhOZm7iCu34ATX47NAw59eb9Omw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0-rc.3.tgz#021afc3457cf72c2b6dd298bb981faa741fc1293"
- integrity sha512-b67UC/uZ9gWt2X5MeUnKg98FkhvJ+Azsq4PHcFBdUTZL/5ItJ8F6UsOTpT7Z7cUXFmJn/RTcPrgQDsK63CZltw==
+"@abp/sweetalert2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0.tgz#369c04e433eead8e7171cd84298bb3e4ecb14050"
+ integrity sha512-riaHcFdozJ8R/sAdhtnfa7GHhWjptnQODrZ2bqBkcKuw2d8LKQ+2v3tcflaWWHwsOmGVbki3EhJJPdFWOtli/w==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
sweetalert2 "^11.3.6"
-"@abp/timeago@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0-rc.3.tgz#b3e63ff94bce8ad59b02d8c4490f580e60630f00"
- integrity sha512-Pmm6Jj7VT1PW/Wfh1ozFFIdpFvH8cGKfHU2sYgwHuw4U9YQUd8ZTIDaZRMhuN9QqnGlmFtUZsXzoIMZJDvOq5w==
+"@abp/timeago@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0.tgz#93947505b68f369df10bb38cd8c05376e1c1cbcb"
+ integrity sha512-Q+e5CvvFAU21hGuIXREtIeEl8WlGpsNqK+QbCRbjNvM0HgCPH/gRQNpAV+S7TqaI5W2Uggfcsd7GvTH3GtMv7g==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
timeago "^1.6.7"
-"@abp/toastr@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0-rc.3.tgz#5b0d267951e025ca77a611c2fa9b606e92bd830a"
- integrity sha512-hfDzyMSgbjriAALdrcnx/qonN2lquF7HM4QH8nt1E8/vWOkd8bUL/kyAoIL8rfS94zr62UUZTEDezoCfHwif+w==
+"@abp/toastr@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0.tgz#d409fec3fb1e5a886d0a03b0f58449a2f8a563d9"
+ integrity sha512-7evxuHJ+ZJtyCoIv0+HY/av5FC8Y5UzBtVjEB8Ol8RvhH5PBkErguPg9qPZvYcpHjJlYN+iKYAuXdQLZdXHwUQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
toastr "^2.1.4"
-"@abp/utils@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0-rc.3.tgz#01491fb943eb3a41d4ddbe854e5330b66807d522"
- integrity sha512-cuTwsy+FEh3dEnlDDi0s8d3qpWgP3rwqWgg5LlMF0pY/OobJcCLtuo5Zy9bncKL3wFHXVEk6UviYcNkSOkzvtQ==
+"@abp/utils@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0.tgz#3de8e34e97e10ac9c2b8c1c194bf6b034fde302f"
+ integrity sha512-F8LsEedqkngbeFsszdZi1lshFqr++anyJFBoaRsKRw6hJPDPrYtHoOWEQ+p7QcH5UVVzVywQUGMNM+gmAT0vGQ==
dependencies:
just-compare "^2.3.0"
diff --git a/modules/cms-kit/angular/package.json b/modules/cms-kit/angular/package.json
index cb8349d464..2367cb95dd 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": "~8.0.0-rc.3",
- "@abp/ng.identity": "~8.0.0-rc.3",
- "@abp/ng.setting-management": "~8.0.0-rc.3",
- "@abp/ng.tenant-management": "~8.0.0-rc.3",
- "@abp/ng.theme.basic": "~8.0.0-rc.3",
+ "@abp/ng.account": "~8.0.0",
+ "@abp/ng.identity": "~8.0.0",
+ "@abp/ng.setting-management": "~8.0.0",
+ "@abp/ng.tenant-management": "~8.0.0",
+ "@abp/ng.theme.basic": "~8.0.0",
"@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 19f5b464ed..9e9fc83a60 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": ">=8.0.0-rc.3",
- "@abp/ng.theme.shared": ">=8.0.0-rc.3"
+ "@abp/ng.core": ">=8.0.0",
+ "@abp/ng.theme.shared": ">=8.0.0"
},
"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 a047885652..c3095a2845 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": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0"
}
}
diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock
index 1d0f3b4e2a..f9b7466558 100644
--- a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock
+++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock
@@ -2,39 +2,39 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0-rc.3.tgz#637ea220c9f988c1d0e1b152928f4409696439f2"
- integrity sha512-xFJkcC2Oa8vLqMW0gU/3nXHsdFZOQq8+o9gUeLqDAhHZomnvEWsoivcd+LZs0xSDgQOee7N9h2buv9ERBoYGiA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0-rc.3.tgz#88904633feb5ce7dface4d27e9a31f4e5ace6b30"
- integrity sha512-gMYI+xz/0JDgW2U7T3Lesx1o1U+Y+7zG/jVZO5FuMtlrsYhvT6V5BsKa9q/N7kSR0tfK8vsjblMBobqvbmG3SQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~8.0.0-rc.3"
- "@abp/bootstrap" "~8.0.0-rc.3"
- "@abp/bootstrap-datepicker" "~8.0.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~8.0.0-rc.3"
- "@abp/datatables.net-bs5" "~8.0.0-rc.3"
- "@abp/font-awesome" "~8.0.0-rc.3"
- "@abp/jquery-form" "~8.0.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~8.0.0-rc.3"
- "@abp/lodash" "~8.0.0-rc.3"
- "@abp/luxon" "~8.0.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~8.0.0-rc.3"
- "@abp/moment" "~8.0.0-rc.3"
- "@abp/select2" "~8.0.0-rc.3"
- "@abp/sweetalert2" "~8.0.0-rc.3"
- "@abp/timeago" "~8.0.0-rc.3"
- "@abp/toastr" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0-rc.3.tgz#09402ed4e7504c09b49a84d6ee590a5c87017ab8"
- integrity sha512-82GfU8DtReq5RTrb2Fl0UHm+vEO0PvC/6DyFHm57nyWiL2dKByUqLd8NXQz+gqubWOA+IvJoLehbcC6iD+Y0VQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0.tgz#c58d15186ad9842834c953e4d712009597ead5c2"
+ integrity sha512-d43CG48iS8vQvA85tSK7OlSHdcC9JuBT7mpN7DlLViiQewVeoKwdKkMhl5nkX4k0yNtqaRbWYlDD6kDp95TktA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0.tgz#4931d9bd40fba2d3e38d3a2a8da2d2e1c1198cb1"
+ integrity sha512-YPusLRaR6sBN13rAH/rewZv4GIM3bUsmMjz7o8qVK/3CYTx/iCAn7JSvNBbhCJT151RLmdYrahOsr8UUXx4k8Q==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~8.0.0"
+ "@abp/bootstrap" "~8.0.0"
+ "@abp/bootstrap-datepicker" "~8.0.0"
+ "@abp/bootstrap-daterangepicker" "~8.0.0"
+ "@abp/datatables.net-bs5" "~8.0.0"
+ "@abp/font-awesome" "~8.0.0"
+ "@abp/jquery-form" "~8.0.0"
+ "@abp/jquery-validation-unobtrusive" "~8.0.0"
+ "@abp/lodash" "~8.0.0"
+ "@abp/luxon" "~8.0.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~8.0.0"
+ "@abp/moment" "~8.0.0"
+ "@abp/select2" "~8.0.0"
+ "@abp/sweetalert2" "~8.0.0"
+ "@abp/timeago" "~8.0.0"
+ "@abp/toastr" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0.tgz#9760a1e4be0e2632e11a3f570209b1eefdf81607"
+ integrity sha512-+WBwpQfDmhP64BVSjyyiqRENpn5EBgcmA7JVMfmdmEJTrzx9ma7WSbLd5QxUxawMSkcjjnK95c5JdMVZXdaL8g==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@@ -43,158 +43,158 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
-"@abp/bootstrap-datepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0-rc.3.tgz#7656fef148c8bdf7993fdae937427564535dea74"
- integrity sha512-qW1XQ2zL+/9f9+Q9Db3E5eIOD8Itjtr0KFAO59tY3G3WEwvCOS85pXJ/I17nLRRo/A2Na4kx4Q/jdYr3DkOgDQ==
+"@abp/bootstrap-datepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0.tgz#458e0acaf6aedbfb03df692b9b2ec87b9fdad954"
+ integrity sha512-UetR0ldw0u5i2ohNpeI8+W0AGrov8tiglTTNyx8sF6WMGcCNCtU72jZCOc9/z/q91AijQrtdHIqpN/1B91YiMw==
dependencies:
bootstrap-datepicker "^1.9.0"
-"@abp/bootstrap-daterangepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0-rc.3.tgz#b6eb599b198f58c9a0690d2f779548137e10889f"
- integrity sha512-TnZdtV0JHweVrrXCJZjxz+Cbk0lYznzELaA6oBbikCPhzIr2XvLqyHuLvERrFVxq80BZGsF7xUgC2K/Tw/RA8w==
+"@abp/bootstrap-daterangepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0.tgz#613d2984d0f3981e0270d337b360c27397dbc480"
+ integrity sha512-nQFDtCp1+EuUfnoRmMcGvOgd4yZPMqjsThiW3m2KIV2Y+YlT52mZLBVpqRBpC2993Bs8E9Zpp4R7ebHJgacePg==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0-rc.3.tgz#8865c2536c353b904e6e96cb70e4280fe9928412"
- integrity sha512-h7rDAp3eBQwARAkEZfJU+IBTXEiLwi3I5CYFQ92QdX/mC66R1cX1gYY7pR5Wj5f68VS2pURnNxJnONtS3E/Cyw==
+"@abp/bootstrap@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0.tgz#7d679f88af98de6ac2c0725b86d43f9ce40c4f5b"
+ integrity sha512-JX6o8uMrsqiMMvbkDRePDqfPFHtWTuKhSTDa77ryp/AZYKOEvJfkdLZGZmYWy7UsB1RNXilth8kMyibqnw0CGg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
bootstrap "^5.1.3"
-"@abp/core@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0-rc.3.tgz#f399bc55c6ad20c2515a03bb9572c6a4499cfcf0"
- integrity sha512-HUa0AfCDX3URnGWsZ/7aZMsXXQFjott05ebK9wF7QDcI7uInyMT5axlrQ/CniyU8GLaFEt3mdtLB7pOZzDnsRw==
+"@abp/core@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0.tgz#cc4d9c0da10fb922a4adea8df67f60bb02d95365"
+ integrity sha512-qM7jSTR2uAhjAcsaFNchA89rLBiiJpUsvDBFCz0SyOuFz5DYAHo1njlhICcVAHF7H3NxQfVIndGVSjvmqmLC7Q==
dependencies:
- "@abp/utils" "~8.0.0-rc.3"
+ "@abp/utils" "~8.0.0"
-"@abp/datatables.net-bs5@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0-rc.3.tgz#902d0770c54a5888f805cc97de0ed25d0c53dde9"
- integrity sha512-gxYYBeEh81+R8SAh27uMm3paVffq+bYiQgUxpXNgEcyPGP2X7/hnzZNwViuI1t+IgpSuTf6AAt14db9eV6Masg==
+"@abp/datatables.net-bs5@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0.tgz#c874180ea85fd0b2598fde90e2207bea267870c6"
+ integrity sha512-8w4oXTQwFnb56NTpeXjUsITGeMtuxv18ZAPK8Zmw28s5uOoIV/d/bEp11hXPwSk3SrjlyLw0lDcZCItwD+W8DQ==
dependencies:
- "@abp/datatables.net" "~8.0.0-rc.3"
+ "@abp/datatables.net" "~8.0.0"
datatables.net-bs5 "^1.11.4"
-"@abp/datatables.net@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0-rc.3.tgz#4ddfa9fe3246e72807c3b19307c7484af749f969"
- integrity sha512-vQBenQsDxzryspNv0FEzpyUPBXddIkVhXUJ6tHc+IZ8q/+/2wUE0ZciSJm7qS/GQnGrYZv9wpIGbSRh/RgVvVA==
+"@abp/datatables.net@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0.tgz#09ef3575a611f6ec123d2a9d4d55b8c89e30d115"
+ integrity sha512-WmsAfQEGPWMTqHGbeiX3RVfIdfkrMOtUfJmR0JaYJMuQo3STmMSnzOgNMKviDeQdzplgoOOKp6j0OgIqcciowg==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
datatables.net "^1.11.4"
-"@abp/font-awesome@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0-rc.3.tgz#5f850c5479f48cf1c951de2354050d38fec6beab"
- integrity sha512-GYwhoOThD5Bw0Ain5DkVXgHLpca83QGAy1T7I+6SmYyibYu5SdxV9ytD65tARH+dx9VpB3p9NeC5lRYuWdPzCQ==
+"@abp/font-awesome@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0.tgz#ce7debf296fddbdf79139147f6c9761ec68b6587"
+ integrity sha512-qeihwiim6YMcL3KfHU0CViVl5MamQXbTp4606r/hKQejCSbdqR9XupYVbTAyojXLCCRqfnDVuXwqWCFTKVbQow==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
"@fortawesome/fontawesome-free" "^5.15.4"
-"@abp/jquery-form@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0-rc.3.tgz#e414a0599448c37df3197af77a91c9a66d3ef77f"
- integrity sha512-w58Zi28Ci/0DIzMzC/ihu+np7G2Hv+9DLrhLZKddEI9WisFuxao5EAhKseq7LWMPzG/QSw8skLZAY12YrEtp6w==
+"@abp/jquery-form@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0.tgz#466343a87baa2f53fb57cf377e0fb0c07ff02bb9"
+ integrity sha512-xinU2Yu0YWNjoaYnBm+OoN8oNX/BDPzbqGtjlH1s5I+M/S0yf/qlPEzvzL5+epBlt0GKza/SqwSsuAVsfuFrKQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0-rc.3.tgz#a3ab6b5078449ba94c7206ed96286b902a766b6b"
- integrity sha512-Gvmujjhrvqzu51fGSTAssxGVu4XolTLEwW3qR0zwWCc0+kXF/AXB98DD66A+hmGau54sTKRXVmBTpc4J3KpoWg==
+"@abp/jquery-validation-unobtrusive@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0.tgz#a641cc4bff6de178ed3429987017c00bf68e81f9"
+ integrity sha512-nUcktSW5tPifa6yNX9Y8zCi0VCUJklVSSd4f3eKfjU8SIcWq1eNfR6R+MHRZEVVmyB7xeYMBlc0yjxVYwUUlEw==
dependencies:
- "@abp/jquery-validation" "~8.0.0-rc.3"
+ "@abp/jquery-validation" "~8.0.0"
jquery-validation-unobtrusive "^3.2.12"
-"@abp/jquery-validation@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0-rc.3.tgz#eee433a5fc076d92d734e7cea4bce00fbaacc963"
- integrity sha512-Dq5Ru5WWqDKIDzetUicJzp6DHkGhNNHcjYyHF3n9o9+3T4+6dgRbXy5OYjIv9CADfui55rzckWH57FbCExiUSw==
+"@abp/jquery-validation@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0.tgz#674fe49294c622b07b843ab8721a5ae32024b7b9"
+ integrity sha512-B/aFZsKbILP4FPuc3eU17APkbBWJhjWXSQCiSXbHpDZYJN5km1l52gpuWR+7Yo5CXnAP06N+zUYHf86tNCZyBw==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-validation "^1.19.3"
-"@abp/jquery@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0-rc.3.tgz#e230c5db7a9aff526564c1b4b1820cd983a10726"
- integrity sha512-o9xBZt55fT+ZYqmLjQ9dahtIgsRqz4VrXUsLgyKkUzr2p3gtgXCQqKfkIpdeE5aE3p1/T+et5U6FOMUCRZegvg==
+"@abp/jquery@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0.tgz#67bf40f87c335b1cba73f406f0102f35e820fd84"
+ integrity sha512-QhjBz/s1hVJcsYCbuZwNOtOCvsC93OMzMJHoZ2COaKkOZlt6tiRHhawdYVZloKDaMdfcd5tvqbkNhXtQ4K9AXg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
jquery "~3.6.0"
-"@abp/lodash@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0-rc.3.tgz#5bf8019fa0e69ec1fac6ccacb1625b8564ed8944"
- integrity sha512-Mo2r+bNZXdmM7Ri8SBi+M4OsfnLYejbQmcJ7wkDUPb4B3cDJtTB4YuJn8NWBBjaXwi08Myt1MvSFnT04N/t8Eg==
+"@abp/lodash@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0.tgz#4c809c4755ed11e70875d30f04312b0ff10a2dbb"
+ integrity sha512-V0y4k9HlggBvJtK5m35Gkori2IN0E4ec1JpBgGeaOStcvThAL1EtXip1kqPORMbC4wm+bgpT0QWhiqCeKBFoLg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
lodash "^4.17.21"
-"@abp/luxon@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0-rc.3.tgz#cc0adcab4f1fa6bea2055be478ec9a86d00f1ba6"
- integrity sha512-vKwfpAPL7GUJLvCpsJoJ5eXRH5Ypciez9J6QiK2Mjx1NauxR514wYtBqM/2I7hoJ4Oc9XvrAjcIon3r21dvCqQ==
+"@abp/luxon@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0.tgz#13a1145dc79d908f3398944c4bf0fb0457d94217"
+ integrity sha512-ZEGegnr+KCczPUrxxPmBUKGyiWkjAa4hDWb06mozdVP14zHQbbZfyKKXwrPfanwcj96Ui9i2klnrKPXuyppBJw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
luxon "^2.3.0"
-"@abp/malihu-custom-scrollbar-plugin@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0-rc.3.tgz#195c897dced708de627941ce017e047c62191a56"
- integrity sha512-svD7YJzHvufjmhoCKgQcjApIdVcGJwWhpsK260lwLiCvkdNDhxFjH+jfChhLMXPYpOnozrgrVx56oJqDWDrU3A==
+"@abp/malihu-custom-scrollbar-plugin@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0.tgz#fd4428d66ee38b4b2c02c0e300d5bd75dcda414d"
+ integrity sha512-jrD4AHd2Pdr28Ps3QtEDVDMSnK7xSumCKKSJl0R5SJcMyskByJ6gwydYqMGeQkCVnk1ztEZFfJNhOO35A+SBWA==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0-rc.3.tgz#7e2a74cd23c434b45f903b4f826f807a31b5982b"
- integrity sha512-E0mob3xj0frslPovdHbsdaFB5oLimORFA86uQJ5KVSEaDOXYKuEqUomMcqg2LRVdzzKd7ai6QkuH3p7qbJonww==
+"@abp/moment@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0.tgz#26d0932bf4dac4dee25d0940eea50fcfeb37a69b"
+ integrity sha512-fgh0pXdxPi5Y9VnC6f12kwJmGQL4dowZtVp8lbNEjnCFiocAhEOOuN9gkTGk8y0xEhXroliW7wbaB2MJPINKhg==
dependencies:
moment "^2.9.0"
-"@abp/select2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0-rc.3.tgz#77dd12185f6d03553230c7516e40603310f28f4f"
- integrity sha512-9O+IHIB6n+WfLzh6SVyC01OIU3qWzhoT3DofAc329cyI73NJSPuOvmkQtQVYWnkAI/6+B6qYF3A4umD/EoPouQ==
+"@abp/select2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0.tgz#4a4ebd63f2b79d663dab709decb2f1b1f510950f"
+ integrity sha512-kl3of/L0GSHyxt6WYnBDdBqqtoUscY9qubaMHZrk9y1zOVXOM0JUQoyu2KDQhOZm7iCu34ATX47NAw59eb9Omw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0-rc.3.tgz#021afc3457cf72c2b6dd298bb981faa741fc1293"
- integrity sha512-b67UC/uZ9gWt2X5MeUnKg98FkhvJ+Azsq4PHcFBdUTZL/5ItJ8F6UsOTpT7Z7cUXFmJn/RTcPrgQDsK63CZltw==
+"@abp/sweetalert2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0.tgz#369c04e433eead8e7171cd84298bb3e4ecb14050"
+ integrity sha512-riaHcFdozJ8R/sAdhtnfa7GHhWjptnQODrZ2bqBkcKuw2d8LKQ+2v3tcflaWWHwsOmGVbki3EhJJPdFWOtli/w==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
sweetalert2 "^11.3.6"
-"@abp/timeago@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0-rc.3.tgz#b3e63ff94bce8ad59b02d8c4490f580e60630f00"
- integrity sha512-Pmm6Jj7VT1PW/Wfh1ozFFIdpFvH8cGKfHU2sYgwHuw4U9YQUd8ZTIDaZRMhuN9QqnGlmFtUZsXzoIMZJDvOq5w==
+"@abp/timeago@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0.tgz#93947505b68f369df10bb38cd8c05376e1c1cbcb"
+ integrity sha512-Q+e5CvvFAU21hGuIXREtIeEl8WlGpsNqK+QbCRbjNvM0HgCPH/gRQNpAV+S7TqaI5W2Uggfcsd7GvTH3GtMv7g==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
timeago "^1.6.7"
-"@abp/toastr@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0-rc.3.tgz#5b0d267951e025ca77a611c2fa9b606e92bd830a"
- integrity sha512-hfDzyMSgbjriAALdrcnx/qonN2lquF7HM4QH8nt1E8/vWOkd8bUL/kyAoIL8rfS94zr62UUZTEDezoCfHwif+w==
+"@abp/toastr@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0.tgz#d409fec3fb1e5a886d0a03b0f58449a2f8a563d9"
+ integrity sha512-7evxuHJ+ZJtyCoIv0+HY/av5FC8Y5UzBtVjEB8Ol8RvhH5PBkErguPg9qPZvYcpHjJlYN+iKYAuXdQLZdXHwUQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
toastr "^2.1.4"
-"@abp/utils@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0-rc.3.tgz#01491fb943eb3a41d4ddbe854e5330b66807d522"
- integrity sha512-cuTwsy+FEh3dEnlDDi0s8d3qpWgP3rwqWgg5LlMF0pY/OobJcCLtuo5Zy9bncKL3wFHXVEk6UviYcNkSOkzvtQ==
+"@abp/utils@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0.tgz#3de8e34e97e10ac9c2b8c1c194bf6b034fde302f"
+ integrity sha512-F8LsEedqkngbeFsszdZi1lshFqr++anyJFBoaRsKRw6hJPDPrYtHoOWEQ+p7QcH5UVVzVywQUGMNM+gmAT0vGQ==
dependencies:
just-compare "^2.3.0"
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 0d892e1bbf..389a89a36f 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": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0"
}
}
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 1d0f3b4e2a..f9b7466558 100644
--- a/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock
+++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock
@@ -2,39 +2,39 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0-rc.3.tgz#637ea220c9f988c1d0e1b152928f4409696439f2"
- integrity sha512-xFJkcC2Oa8vLqMW0gU/3nXHsdFZOQq8+o9gUeLqDAhHZomnvEWsoivcd+LZs0xSDgQOee7N9h2buv9ERBoYGiA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0-rc.3.tgz#88904633feb5ce7dface4d27e9a31f4e5ace6b30"
- integrity sha512-gMYI+xz/0JDgW2U7T3Lesx1o1U+Y+7zG/jVZO5FuMtlrsYhvT6V5BsKa9q/N7kSR0tfK8vsjblMBobqvbmG3SQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~8.0.0-rc.3"
- "@abp/bootstrap" "~8.0.0-rc.3"
- "@abp/bootstrap-datepicker" "~8.0.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~8.0.0-rc.3"
- "@abp/datatables.net-bs5" "~8.0.0-rc.3"
- "@abp/font-awesome" "~8.0.0-rc.3"
- "@abp/jquery-form" "~8.0.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~8.0.0-rc.3"
- "@abp/lodash" "~8.0.0-rc.3"
- "@abp/luxon" "~8.0.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~8.0.0-rc.3"
- "@abp/moment" "~8.0.0-rc.3"
- "@abp/select2" "~8.0.0-rc.3"
- "@abp/sweetalert2" "~8.0.0-rc.3"
- "@abp/timeago" "~8.0.0-rc.3"
- "@abp/toastr" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0-rc.3.tgz#09402ed4e7504c09b49a84d6ee590a5c87017ab8"
- integrity sha512-82GfU8DtReq5RTrb2Fl0UHm+vEO0PvC/6DyFHm57nyWiL2dKByUqLd8NXQz+gqubWOA+IvJoLehbcC6iD+Y0VQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0.tgz#c58d15186ad9842834c953e4d712009597ead5c2"
+ integrity sha512-d43CG48iS8vQvA85tSK7OlSHdcC9JuBT7mpN7DlLViiQewVeoKwdKkMhl5nkX4k0yNtqaRbWYlDD6kDp95TktA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0.tgz#4931d9bd40fba2d3e38d3a2a8da2d2e1c1198cb1"
+ integrity sha512-YPusLRaR6sBN13rAH/rewZv4GIM3bUsmMjz7o8qVK/3CYTx/iCAn7JSvNBbhCJT151RLmdYrahOsr8UUXx4k8Q==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~8.0.0"
+ "@abp/bootstrap" "~8.0.0"
+ "@abp/bootstrap-datepicker" "~8.0.0"
+ "@abp/bootstrap-daterangepicker" "~8.0.0"
+ "@abp/datatables.net-bs5" "~8.0.0"
+ "@abp/font-awesome" "~8.0.0"
+ "@abp/jquery-form" "~8.0.0"
+ "@abp/jquery-validation-unobtrusive" "~8.0.0"
+ "@abp/lodash" "~8.0.0"
+ "@abp/luxon" "~8.0.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~8.0.0"
+ "@abp/moment" "~8.0.0"
+ "@abp/select2" "~8.0.0"
+ "@abp/sweetalert2" "~8.0.0"
+ "@abp/timeago" "~8.0.0"
+ "@abp/toastr" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0.tgz#9760a1e4be0e2632e11a3f570209b1eefdf81607"
+ integrity sha512-+WBwpQfDmhP64BVSjyyiqRENpn5EBgcmA7JVMfmdmEJTrzx9ma7WSbLd5QxUxawMSkcjjnK95c5JdMVZXdaL8g==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@@ -43,158 +43,158 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
-"@abp/bootstrap-datepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0-rc.3.tgz#7656fef148c8bdf7993fdae937427564535dea74"
- integrity sha512-qW1XQ2zL+/9f9+Q9Db3E5eIOD8Itjtr0KFAO59tY3G3WEwvCOS85pXJ/I17nLRRo/A2Na4kx4Q/jdYr3DkOgDQ==
+"@abp/bootstrap-datepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0.tgz#458e0acaf6aedbfb03df692b9b2ec87b9fdad954"
+ integrity sha512-UetR0ldw0u5i2ohNpeI8+W0AGrov8tiglTTNyx8sF6WMGcCNCtU72jZCOc9/z/q91AijQrtdHIqpN/1B91YiMw==
dependencies:
bootstrap-datepicker "^1.9.0"
-"@abp/bootstrap-daterangepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0-rc.3.tgz#b6eb599b198f58c9a0690d2f779548137e10889f"
- integrity sha512-TnZdtV0JHweVrrXCJZjxz+Cbk0lYznzELaA6oBbikCPhzIr2XvLqyHuLvERrFVxq80BZGsF7xUgC2K/Tw/RA8w==
+"@abp/bootstrap-daterangepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0.tgz#613d2984d0f3981e0270d337b360c27397dbc480"
+ integrity sha512-nQFDtCp1+EuUfnoRmMcGvOgd4yZPMqjsThiW3m2KIV2Y+YlT52mZLBVpqRBpC2993Bs8E9Zpp4R7ebHJgacePg==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0-rc.3.tgz#8865c2536c353b904e6e96cb70e4280fe9928412"
- integrity sha512-h7rDAp3eBQwARAkEZfJU+IBTXEiLwi3I5CYFQ92QdX/mC66R1cX1gYY7pR5Wj5f68VS2pURnNxJnONtS3E/Cyw==
+"@abp/bootstrap@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0.tgz#7d679f88af98de6ac2c0725b86d43f9ce40c4f5b"
+ integrity sha512-JX6o8uMrsqiMMvbkDRePDqfPFHtWTuKhSTDa77ryp/AZYKOEvJfkdLZGZmYWy7UsB1RNXilth8kMyibqnw0CGg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
bootstrap "^5.1.3"
-"@abp/core@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0-rc.3.tgz#f399bc55c6ad20c2515a03bb9572c6a4499cfcf0"
- integrity sha512-HUa0AfCDX3URnGWsZ/7aZMsXXQFjott05ebK9wF7QDcI7uInyMT5axlrQ/CniyU8GLaFEt3mdtLB7pOZzDnsRw==
+"@abp/core@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0.tgz#cc4d9c0da10fb922a4adea8df67f60bb02d95365"
+ integrity sha512-qM7jSTR2uAhjAcsaFNchA89rLBiiJpUsvDBFCz0SyOuFz5DYAHo1njlhICcVAHF7H3NxQfVIndGVSjvmqmLC7Q==
dependencies:
- "@abp/utils" "~8.0.0-rc.3"
+ "@abp/utils" "~8.0.0"
-"@abp/datatables.net-bs5@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0-rc.3.tgz#902d0770c54a5888f805cc97de0ed25d0c53dde9"
- integrity sha512-gxYYBeEh81+R8SAh27uMm3paVffq+bYiQgUxpXNgEcyPGP2X7/hnzZNwViuI1t+IgpSuTf6AAt14db9eV6Masg==
+"@abp/datatables.net-bs5@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0.tgz#c874180ea85fd0b2598fde90e2207bea267870c6"
+ integrity sha512-8w4oXTQwFnb56NTpeXjUsITGeMtuxv18ZAPK8Zmw28s5uOoIV/d/bEp11hXPwSk3SrjlyLw0lDcZCItwD+W8DQ==
dependencies:
- "@abp/datatables.net" "~8.0.0-rc.3"
+ "@abp/datatables.net" "~8.0.0"
datatables.net-bs5 "^1.11.4"
-"@abp/datatables.net@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0-rc.3.tgz#4ddfa9fe3246e72807c3b19307c7484af749f969"
- integrity sha512-vQBenQsDxzryspNv0FEzpyUPBXddIkVhXUJ6tHc+IZ8q/+/2wUE0ZciSJm7qS/GQnGrYZv9wpIGbSRh/RgVvVA==
+"@abp/datatables.net@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0.tgz#09ef3575a611f6ec123d2a9d4d55b8c89e30d115"
+ integrity sha512-WmsAfQEGPWMTqHGbeiX3RVfIdfkrMOtUfJmR0JaYJMuQo3STmMSnzOgNMKviDeQdzplgoOOKp6j0OgIqcciowg==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
datatables.net "^1.11.4"
-"@abp/font-awesome@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0-rc.3.tgz#5f850c5479f48cf1c951de2354050d38fec6beab"
- integrity sha512-GYwhoOThD5Bw0Ain5DkVXgHLpca83QGAy1T7I+6SmYyibYu5SdxV9ytD65tARH+dx9VpB3p9NeC5lRYuWdPzCQ==
+"@abp/font-awesome@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0.tgz#ce7debf296fddbdf79139147f6c9761ec68b6587"
+ integrity sha512-qeihwiim6YMcL3KfHU0CViVl5MamQXbTp4606r/hKQejCSbdqR9XupYVbTAyojXLCCRqfnDVuXwqWCFTKVbQow==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
"@fortawesome/fontawesome-free" "^5.15.4"
-"@abp/jquery-form@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0-rc.3.tgz#e414a0599448c37df3197af77a91c9a66d3ef77f"
- integrity sha512-w58Zi28Ci/0DIzMzC/ihu+np7G2Hv+9DLrhLZKddEI9WisFuxao5EAhKseq7LWMPzG/QSw8skLZAY12YrEtp6w==
+"@abp/jquery-form@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0.tgz#466343a87baa2f53fb57cf377e0fb0c07ff02bb9"
+ integrity sha512-xinU2Yu0YWNjoaYnBm+OoN8oNX/BDPzbqGtjlH1s5I+M/S0yf/qlPEzvzL5+epBlt0GKza/SqwSsuAVsfuFrKQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0-rc.3.tgz#a3ab6b5078449ba94c7206ed96286b902a766b6b"
- integrity sha512-Gvmujjhrvqzu51fGSTAssxGVu4XolTLEwW3qR0zwWCc0+kXF/AXB98DD66A+hmGau54sTKRXVmBTpc4J3KpoWg==
+"@abp/jquery-validation-unobtrusive@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0.tgz#a641cc4bff6de178ed3429987017c00bf68e81f9"
+ integrity sha512-nUcktSW5tPifa6yNX9Y8zCi0VCUJklVSSd4f3eKfjU8SIcWq1eNfR6R+MHRZEVVmyB7xeYMBlc0yjxVYwUUlEw==
dependencies:
- "@abp/jquery-validation" "~8.0.0-rc.3"
+ "@abp/jquery-validation" "~8.0.0"
jquery-validation-unobtrusive "^3.2.12"
-"@abp/jquery-validation@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0-rc.3.tgz#eee433a5fc076d92d734e7cea4bce00fbaacc963"
- integrity sha512-Dq5Ru5WWqDKIDzetUicJzp6DHkGhNNHcjYyHF3n9o9+3T4+6dgRbXy5OYjIv9CADfui55rzckWH57FbCExiUSw==
+"@abp/jquery-validation@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0.tgz#674fe49294c622b07b843ab8721a5ae32024b7b9"
+ integrity sha512-B/aFZsKbILP4FPuc3eU17APkbBWJhjWXSQCiSXbHpDZYJN5km1l52gpuWR+7Yo5CXnAP06N+zUYHf86tNCZyBw==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-validation "^1.19.3"
-"@abp/jquery@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0-rc.3.tgz#e230c5db7a9aff526564c1b4b1820cd983a10726"
- integrity sha512-o9xBZt55fT+ZYqmLjQ9dahtIgsRqz4VrXUsLgyKkUzr2p3gtgXCQqKfkIpdeE5aE3p1/T+et5U6FOMUCRZegvg==
+"@abp/jquery@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0.tgz#67bf40f87c335b1cba73f406f0102f35e820fd84"
+ integrity sha512-QhjBz/s1hVJcsYCbuZwNOtOCvsC93OMzMJHoZ2COaKkOZlt6tiRHhawdYVZloKDaMdfcd5tvqbkNhXtQ4K9AXg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
jquery "~3.6.0"
-"@abp/lodash@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0-rc.3.tgz#5bf8019fa0e69ec1fac6ccacb1625b8564ed8944"
- integrity sha512-Mo2r+bNZXdmM7Ri8SBi+M4OsfnLYejbQmcJ7wkDUPb4B3cDJtTB4YuJn8NWBBjaXwi08Myt1MvSFnT04N/t8Eg==
+"@abp/lodash@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0.tgz#4c809c4755ed11e70875d30f04312b0ff10a2dbb"
+ integrity sha512-V0y4k9HlggBvJtK5m35Gkori2IN0E4ec1JpBgGeaOStcvThAL1EtXip1kqPORMbC4wm+bgpT0QWhiqCeKBFoLg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
lodash "^4.17.21"
-"@abp/luxon@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0-rc.3.tgz#cc0adcab4f1fa6bea2055be478ec9a86d00f1ba6"
- integrity sha512-vKwfpAPL7GUJLvCpsJoJ5eXRH5Ypciez9J6QiK2Mjx1NauxR514wYtBqM/2I7hoJ4Oc9XvrAjcIon3r21dvCqQ==
+"@abp/luxon@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0.tgz#13a1145dc79d908f3398944c4bf0fb0457d94217"
+ integrity sha512-ZEGegnr+KCczPUrxxPmBUKGyiWkjAa4hDWb06mozdVP14zHQbbZfyKKXwrPfanwcj96Ui9i2klnrKPXuyppBJw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
luxon "^2.3.0"
-"@abp/malihu-custom-scrollbar-plugin@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0-rc.3.tgz#195c897dced708de627941ce017e047c62191a56"
- integrity sha512-svD7YJzHvufjmhoCKgQcjApIdVcGJwWhpsK260lwLiCvkdNDhxFjH+jfChhLMXPYpOnozrgrVx56oJqDWDrU3A==
+"@abp/malihu-custom-scrollbar-plugin@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0.tgz#fd4428d66ee38b4b2c02c0e300d5bd75dcda414d"
+ integrity sha512-jrD4AHd2Pdr28Ps3QtEDVDMSnK7xSumCKKSJl0R5SJcMyskByJ6gwydYqMGeQkCVnk1ztEZFfJNhOO35A+SBWA==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0-rc.3.tgz#7e2a74cd23c434b45f903b4f826f807a31b5982b"
- integrity sha512-E0mob3xj0frslPovdHbsdaFB5oLimORFA86uQJ5KVSEaDOXYKuEqUomMcqg2LRVdzzKd7ai6QkuH3p7qbJonww==
+"@abp/moment@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0.tgz#26d0932bf4dac4dee25d0940eea50fcfeb37a69b"
+ integrity sha512-fgh0pXdxPi5Y9VnC6f12kwJmGQL4dowZtVp8lbNEjnCFiocAhEOOuN9gkTGk8y0xEhXroliW7wbaB2MJPINKhg==
dependencies:
moment "^2.9.0"
-"@abp/select2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0-rc.3.tgz#77dd12185f6d03553230c7516e40603310f28f4f"
- integrity sha512-9O+IHIB6n+WfLzh6SVyC01OIU3qWzhoT3DofAc329cyI73NJSPuOvmkQtQVYWnkAI/6+B6qYF3A4umD/EoPouQ==
+"@abp/select2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0.tgz#4a4ebd63f2b79d663dab709decb2f1b1f510950f"
+ integrity sha512-kl3of/L0GSHyxt6WYnBDdBqqtoUscY9qubaMHZrk9y1zOVXOM0JUQoyu2KDQhOZm7iCu34ATX47NAw59eb9Omw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0-rc.3.tgz#021afc3457cf72c2b6dd298bb981faa741fc1293"
- integrity sha512-b67UC/uZ9gWt2X5MeUnKg98FkhvJ+Azsq4PHcFBdUTZL/5ItJ8F6UsOTpT7Z7cUXFmJn/RTcPrgQDsK63CZltw==
+"@abp/sweetalert2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0.tgz#369c04e433eead8e7171cd84298bb3e4ecb14050"
+ integrity sha512-riaHcFdozJ8R/sAdhtnfa7GHhWjptnQODrZ2bqBkcKuw2d8LKQ+2v3tcflaWWHwsOmGVbki3EhJJPdFWOtli/w==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
sweetalert2 "^11.3.6"
-"@abp/timeago@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0-rc.3.tgz#b3e63ff94bce8ad59b02d8c4490f580e60630f00"
- integrity sha512-Pmm6Jj7VT1PW/Wfh1ozFFIdpFvH8cGKfHU2sYgwHuw4U9YQUd8ZTIDaZRMhuN9QqnGlmFtUZsXzoIMZJDvOq5w==
+"@abp/timeago@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0.tgz#93947505b68f369df10bb38cd8c05376e1c1cbcb"
+ integrity sha512-Q+e5CvvFAU21hGuIXREtIeEl8WlGpsNqK+QbCRbjNvM0HgCPH/gRQNpAV+S7TqaI5W2Uggfcsd7GvTH3GtMv7g==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
timeago "^1.6.7"
-"@abp/toastr@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0-rc.3.tgz#5b0d267951e025ca77a611c2fa9b606e92bd830a"
- integrity sha512-hfDzyMSgbjriAALdrcnx/qonN2lquF7HM4QH8nt1E8/vWOkd8bUL/kyAoIL8rfS94zr62UUZTEDezoCfHwif+w==
+"@abp/toastr@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0.tgz#d409fec3fb1e5a886d0a03b0f58449a2f8a563d9"
+ integrity sha512-7evxuHJ+ZJtyCoIv0+HY/av5FC8Y5UzBtVjEB8Ol8RvhH5PBkErguPg9qPZvYcpHjJlYN+iKYAuXdQLZdXHwUQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
toastr "^2.1.4"
-"@abp/utils@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0-rc.3.tgz#01491fb943eb3a41d4ddbe854e5330b66807d522"
- integrity sha512-cuTwsy+FEh3dEnlDDi0s8d3qpWgP3rwqWgg5LlMF0pY/OobJcCLtuo5Zy9bncKL3wFHXVEk6UviYcNkSOkzvtQ==
+"@abp/utils@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0.tgz#3de8e34e97e10ac9c2b8c1c194bf6b034fde302f"
+ integrity sha512-F8LsEedqkngbeFsszdZi1lshFqr++anyJFBoaRsKRw6hJPDPrYtHoOWEQ+p7QcH5UVVzVywQUGMNM+gmAT0vGQ==
dependencies:
just-compare "^2.3.0"
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 c886d9aed7..03a05d027c 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": "~8.0.0-rc.3",
- "@abp/cms-kit": "8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0",
+ "@abp/cms-kit": "8.0.0"
}
}
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 6e9dcf3fb1..4a0c447fd0 100644
--- a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock
+++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock
@@ -2,39 +2,39 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0-rc.3.tgz#637ea220c9f988c1d0e1b152928f4409696439f2"
- integrity sha512-xFJkcC2Oa8vLqMW0gU/3nXHsdFZOQq8+o9gUeLqDAhHZomnvEWsoivcd+LZs0xSDgQOee7N9h2buv9ERBoYGiA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0-rc.3.tgz#88904633feb5ce7dface4d27e9a31f4e5ace6b30"
- integrity sha512-gMYI+xz/0JDgW2U7T3Lesx1o1U+Y+7zG/jVZO5FuMtlrsYhvT6V5BsKa9q/N7kSR0tfK8vsjblMBobqvbmG3SQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~8.0.0-rc.3"
- "@abp/bootstrap" "~8.0.0-rc.3"
- "@abp/bootstrap-datepicker" "~8.0.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~8.0.0-rc.3"
- "@abp/datatables.net-bs5" "~8.0.0-rc.3"
- "@abp/font-awesome" "~8.0.0-rc.3"
- "@abp/jquery-form" "~8.0.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~8.0.0-rc.3"
- "@abp/lodash" "~8.0.0-rc.3"
- "@abp/luxon" "~8.0.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~8.0.0-rc.3"
- "@abp/moment" "~8.0.0-rc.3"
- "@abp/select2" "~8.0.0-rc.3"
- "@abp/sweetalert2" "~8.0.0-rc.3"
- "@abp/timeago" "~8.0.0-rc.3"
- "@abp/toastr" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0-rc.3.tgz#09402ed4e7504c09b49a84d6ee590a5c87017ab8"
- integrity sha512-82GfU8DtReq5RTrb2Fl0UHm+vEO0PvC/6DyFHm57nyWiL2dKByUqLd8NXQz+gqubWOA+IvJoLehbcC6iD+Y0VQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0.tgz#c58d15186ad9842834c953e4d712009597ead5c2"
+ integrity sha512-d43CG48iS8vQvA85tSK7OlSHdcC9JuBT7mpN7DlLViiQewVeoKwdKkMhl5nkX4k0yNtqaRbWYlDD6kDp95TktA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0.tgz#4931d9bd40fba2d3e38d3a2a8da2d2e1c1198cb1"
+ integrity sha512-YPusLRaR6sBN13rAH/rewZv4GIM3bUsmMjz7o8qVK/3CYTx/iCAn7JSvNBbhCJT151RLmdYrahOsr8UUXx4k8Q==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~8.0.0"
+ "@abp/bootstrap" "~8.0.0"
+ "@abp/bootstrap-datepicker" "~8.0.0"
+ "@abp/bootstrap-daterangepicker" "~8.0.0"
+ "@abp/datatables.net-bs5" "~8.0.0"
+ "@abp/font-awesome" "~8.0.0"
+ "@abp/jquery-form" "~8.0.0"
+ "@abp/jquery-validation-unobtrusive" "~8.0.0"
+ "@abp/lodash" "~8.0.0"
+ "@abp/luxon" "~8.0.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~8.0.0"
+ "@abp/moment" "~8.0.0"
+ "@abp/select2" "~8.0.0"
+ "@abp/sweetalert2" "~8.0.0"
+ "@abp/timeago" "~8.0.0"
+ "@abp/toastr" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0.tgz#9760a1e4be0e2632e11a3f570209b1eefdf81607"
+ integrity sha512-+WBwpQfDmhP64BVSjyyiqRENpn5EBgcmA7JVMfmdmEJTrzx9ma7WSbLd5QxUxawMSkcjjnK95c5JdMVZXdaL8g==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@@ -43,257 +43,257 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
-"@abp/bootstrap-datepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0-rc.3.tgz#7656fef148c8bdf7993fdae937427564535dea74"
- integrity sha512-qW1XQ2zL+/9f9+Q9Db3E5eIOD8Itjtr0KFAO59tY3G3WEwvCOS85pXJ/I17nLRRo/A2Na4kx4Q/jdYr3DkOgDQ==
+"@abp/bootstrap-datepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0.tgz#458e0acaf6aedbfb03df692b9b2ec87b9fdad954"
+ integrity sha512-UetR0ldw0u5i2ohNpeI8+W0AGrov8tiglTTNyx8sF6WMGcCNCtU72jZCOc9/z/q91AijQrtdHIqpN/1B91YiMw==
dependencies:
bootstrap-datepicker "^1.9.0"
-"@abp/bootstrap-daterangepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0-rc.3.tgz#b6eb599b198f58c9a0690d2f779548137e10889f"
- integrity sha512-TnZdtV0JHweVrrXCJZjxz+Cbk0lYznzELaA6oBbikCPhzIr2XvLqyHuLvERrFVxq80BZGsF7xUgC2K/Tw/RA8w==
+"@abp/bootstrap-daterangepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0.tgz#613d2984d0f3981e0270d337b360c27397dbc480"
+ integrity sha512-nQFDtCp1+EuUfnoRmMcGvOgd4yZPMqjsThiW3m2KIV2Y+YlT52mZLBVpqRBpC2993Bs8E9Zpp4R7ebHJgacePg==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0-rc.3.tgz#8865c2536c353b904e6e96cb70e4280fe9928412"
- integrity sha512-h7rDAp3eBQwARAkEZfJU+IBTXEiLwi3I5CYFQ92QdX/mC66R1cX1gYY7pR5Wj5f68VS2pURnNxJnONtS3E/Cyw==
+"@abp/bootstrap@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0.tgz#7d679f88af98de6ac2c0725b86d43f9ce40c4f5b"
+ integrity sha512-JX6o8uMrsqiMMvbkDRePDqfPFHtWTuKhSTDa77ryp/AZYKOEvJfkdLZGZmYWy7UsB1RNXilth8kMyibqnw0CGg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
bootstrap "^5.1.3"
-"@abp/clipboard@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-8.0.0-rc.3.tgz#eb7211804967c97cf6678c42b7d756438ffcc22a"
- integrity sha512-w9a1gJs8yZbeNkRQqSXxiOUqCLknh+5QM3CoVQudU46Kl4zh39ugPuEMKZhxcGaDsZWSTNuyMgUjzAWFhE/w6g==
+"@abp/clipboard@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-8.0.0.tgz#cb597686e07e9ef68a09ebf7101498281939fb10"
+ integrity sha512-JonHbsCwJQ5iI45zy6lFu9kwXUYoRZC+t31N1w7fDMxekwPEjenBR4g33aGLIySTL7ExKiYjBsEVrCg8GKG/mg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
clipboard "^2.0.8"
-"@abp/cms-kit.admin@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-8.0.0-rc.3.tgz#68b1c171d375443216fcd124219d60474e8df943"
- integrity sha512-nhr2Gi6m8tM4pMqkiV2t+uxBRt415pwgc6cYw2v2zH17REYZbFwXk+H3JxX8CWMlJG2BICGcYY+M9iwuPAP3Aw==
+"@abp/cms-kit.admin@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-8.0.0.tgz#2eb5ed3eb5c35041b2dcb2a5a03f8804c7af2de7"
+ integrity sha512-5bKUjgql5hty74wxq28xAplGlrFbJrqglIxcB8qTW7H6DH0JTPrANx7YXuSdRcfQay5SX2Sg9qvJmt3uTtND+Q==
dependencies:
- "@abp/codemirror" "~8.0.0-rc.3"
- "@abp/jstree" "~8.0.0-rc.3"
- "@abp/slugify" "~8.0.0-rc.3"
- "@abp/tui-editor" "~8.0.0-rc.3"
- "@abp/uppy" "~8.0.0-rc.3"
+ "@abp/codemirror" "~8.0.0"
+ "@abp/jstree" "~8.0.0"
+ "@abp/slugify" "~8.0.0"
+ "@abp/tui-editor" "~8.0.0"
+ "@abp/uppy" "~8.0.0"
-"@abp/cms-kit.public@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-8.0.0-rc.3.tgz#1d0c1d6bd9d6c6bd5b377ec6bd99a2a2003afb44"
- integrity sha512-rozjFN+lXxz88rPwqkzt9XiXTvu9rmm8oFjQWn4Ew8oivnkMAGb6TkRjVIuobkyLDq4f/jPbxNoiFKi5EBEW9Q==
+"@abp/cms-kit.public@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-8.0.0.tgz#9d0a0bc2f4e596222ebba4745b78543dc94b2abc"
+ integrity sha512-71EM2+VfMfhN5I/8DgLDVhUIy+yUSOS06ScQdtIB9MEutn7aRzP4Q1GptXpGo5hqfZJnnLthdFLyaZ3iXonQNw==
dependencies:
- "@abp/highlight.js" "~8.0.0-rc.3"
- "@abp/star-rating-svg" "~8.0.0-rc.3"
+ "@abp/highlight.js" "~8.0.0"
+ "@abp/star-rating-svg" "~8.0.0"
-"@abp/cms-kit@8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-8.0.0-rc.3.tgz#b549eb3d7fc09f00473b5be3df66f81a12fb79aa"
- integrity sha512-zxxYB3U7ro4A06k0oOAZKCFPBbpySinjtuQU6GuD6p/E/mZgB51TLN/lEaSm8Xp8sd8BpT772MPuyS/My2r3NQ==
+"@abp/cms-kit@8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-8.0.0.tgz#ce2460d03c1e0f016cfad450955dff1b43b2a7d5"
+ integrity sha512-jmAY3i7L64kvGpEYdFXbdzhkh1z11nSCUgLiQlC5b4sTtsxWzlQnGgGAH8lIuk0ZaNmfFNIJdwahff3S+B4nfw==
dependencies:
- "@abp/cms-kit.admin" "~8.0.0-rc.3"
- "@abp/cms-kit.public" "~8.0.0-rc.3"
+ "@abp/cms-kit.admin" "~8.0.0"
+ "@abp/cms-kit.public" "~8.0.0"
-"@abp/codemirror@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-8.0.0-rc.3.tgz#c044a51274c83796b25fa358af971ff9bfce71b0"
- integrity sha512-zuf7fPtTkKjgbg7dfXq9v2oxMUBUOsnauPCYbqJNBx1LVeylzbRoCaBKX2q0EQY+rWcQAn47iZv6w+fGWEVfsA==
+"@abp/codemirror@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-8.0.0.tgz#f9bd3e3fd9f26ac9b6bb43f15805ffd9e59bbd46"
+ integrity sha512-5U5vGJdzk0etDjWTv0zXp6c8sLPlBf6xRefvle4ffelr49vJaSpu1rs9T5gsmjnbcfBkklFNmBwoLemk5Q3DSw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
codemirror "^5.65.1"
-"@abp/core@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0-rc.3.tgz#f399bc55c6ad20c2515a03bb9572c6a4499cfcf0"
- integrity sha512-HUa0AfCDX3URnGWsZ/7aZMsXXQFjott05ebK9wF7QDcI7uInyMT5axlrQ/CniyU8GLaFEt3mdtLB7pOZzDnsRw==
+"@abp/core@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0.tgz#cc4d9c0da10fb922a4adea8df67f60bb02d95365"
+ integrity sha512-qM7jSTR2uAhjAcsaFNchA89rLBiiJpUsvDBFCz0SyOuFz5DYAHo1njlhICcVAHF7H3NxQfVIndGVSjvmqmLC7Q==
dependencies:
- "@abp/utils" "~8.0.0-rc.3"
+ "@abp/utils" "~8.0.0"
-"@abp/datatables.net-bs5@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0-rc.3.tgz#902d0770c54a5888f805cc97de0ed25d0c53dde9"
- integrity sha512-gxYYBeEh81+R8SAh27uMm3paVffq+bYiQgUxpXNgEcyPGP2X7/hnzZNwViuI1t+IgpSuTf6AAt14db9eV6Masg==
+"@abp/datatables.net-bs5@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0.tgz#c874180ea85fd0b2598fde90e2207bea267870c6"
+ integrity sha512-8w4oXTQwFnb56NTpeXjUsITGeMtuxv18ZAPK8Zmw28s5uOoIV/d/bEp11hXPwSk3SrjlyLw0lDcZCItwD+W8DQ==
dependencies:
- "@abp/datatables.net" "~8.0.0-rc.3"
+ "@abp/datatables.net" "~8.0.0"
datatables.net-bs5 "^1.11.4"
-"@abp/datatables.net@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0-rc.3.tgz#4ddfa9fe3246e72807c3b19307c7484af749f969"
- integrity sha512-vQBenQsDxzryspNv0FEzpyUPBXddIkVhXUJ6tHc+IZ8q/+/2wUE0ZciSJm7qS/GQnGrYZv9wpIGbSRh/RgVvVA==
+"@abp/datatables.net@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0.tgz#09ef3575a611f6ec123d2a9d4d55b8c89e30d115"
+ integrity sha512-WmsAfQEGPWMTqHGbeiX3RVfIdfkrMOtUfJmR0JaYJMuQo3STmMSnzOgNMKviDeQdzplgoOOKp6j0OgIqcciowg==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
datatables.net "^1.11.4"
-"@abp/font-awesome@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0-rc.3.tgz#5f850c5479f48cf1c951de2354050d38fec6beab"
- integrity sha512-GYwhoOThD5Bw0Ain5DkVXgHLpca83QGAy1T7I+6SmYyibYu5SdxV9ytD65tARH+dx9VpB3p9NeC5lRYuWdPzCQ==
+"@abp/font-awesome@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0.tgz#ce7debf296fddbdf79139147f6c9761ec68b6587"
+ integrity sha512-qeihwiim6YMcL3KfHU0CViVl5MamQXbTp4606r/hKQejCSbdqR9XupYVbTAyojXLCCRqfnDVuXwqWCFTKVbQow==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
"@fortawesome/fontawesome-free" "^5.15.4"
-"@abp/highlight.js@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-8.0.0-rc.3.tgz#a063a365a190aec6677816c50fb9a15214cae3b6"
- integrity sha512-f6ugQqzuB5w9HX/3nYSwVburFZsTQI1jGdxjAvpwIUIHdIerPocI6kBNjNsGtCX3DYOWAlC/e6OKHcv4waEo1w==
+"@abp/highlight.js@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-8.0.0.tgz#1fd3aa48d0d45540983ff9b98aec48977513262c"
+ integrity sha512-weq7QfRNGaHWaLDjoeJLxCZ98hXCsgA9g9EBVXm5A+qOkzI+bAlOgOP1/3CbBh7jCskD9c9TEpK0KO9kGFw07Q==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
"@highlightjs/cdn-assets" "~11.4.0"
-"@abp/jquery-form@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0-rc.3.tgz#e414a0599448c37df3197af77a91c9a66d3ef77f"
- integrity sha512-w58Zi28Ci/0DIzMzC/ihu+np7G2Hv+9DLrhLZKddEI9WisFuxao5EAhKseq7LWMPzG/QSw8skLZAY12YrEtp6w==
+"@abp/jquery-form@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0.tgz#466343a87baa2f53fb57cf377e0fb0c07ff02bb9"
+ integrity sha512-xinU2Yu0YWNjoaYnBm+OoN8oNX/BDPzbqGtjlH1s5I+M/S0yf/qlPEzvzL5+epBlt0GKza/SqwSsuAVsfuFrKQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0-rc.3.tgz#a3ab6b5078449ba94c7206ed96286b902a766b6b"
- integrity sha512-Gvmujjhrvqzu51fGSTAssxGVu4XolTLEwW3qR0zwWCc0+kXF/AXB98DD66A+hmGau54sTKRXVmBTpc4J3KpoWg==
+"@abp/jquery-validation-unobtrusive@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0.tgz#a641cc4bff6de178ed3429987017c00bf68e81f9"
+ integrity sha512-nUcktSW5tPifa6yNX9Y8zCi0VCUJklVSSd4f3eKfjU8SIcWq1eNfR6R+MHRZEVVmyB7xeYMBlc0yjxVYwUUlEw==
dependencies:
- "@abp/jquery-validation" "~8.0.0-rc.3"
+ "@abp/jquery-validation" "~8.0.0"
jquery-validation-unobtrusive "^3.2.12"
-"@abp/jquery-validation@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0-rc.3.tgz#eee433a5fc076d92d734e7cea4bce00fbaacc963"
- integrity sha512-Dq5Ru5WWqDKIDzetUicJzp6DHkGhNNHcjYyHF3n9o9+3T4+6dgRbXy5OYjIv9CADfui55rzckWH57FbCExiUSw==
+"@abp/jquery-validation@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0.tgz#674fe49294c622b07b843ab8721a5ae32024b7b9"
+ integrity sha512-B/aFZsKbILP4FPuc3eU17APkbBWJhjWXSQCiSXbHpDZYJN5km1l52gpuWR+7Yo5CXnAP06N+zUYHf86tNCZyBw==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-validation "^1.19.3"
-"@abp/jquery@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0-rc.3.tgz#e230c5db7a9aff526564c1b4b1820cd983a10726"
- integrity sha512-o9xBZt55fT+ZYqmLjQ9dahtIgsRqz4VrXUsLgyKkUzr2p3gtgXCQqKfkIpdeE5aE3p1/T+et5U6FOMUCRZegvg==
+"@abp/jquery@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0.tgz#67bf40f87c335b1cba73f406f0102f35e820fd84"
+ integrity sha512-QhjBz/s1hVJcsYCbuZwNOtOCvsC93OMzMJHoZ2COaKkOZlt6tiRHhawdYVZloKDaMdfcd5tvqbkNhXtQ4K9AXg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
jquery "~3.6.0"
-"@abp/jstree@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-8.0.0-rc.3.tgz#4970a5e2ddc0d05491e6fecdb8f0e2604664d814"
- integrity sha512-rKq3tkU7Kb95ojPOBljdlmV8fTAnrEylA7DuVLjfvzNdkVHgAwErVAY8ERYZDMS1ttNa658teJzg5SaXUBeOUA==
+"@abp/jstree@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-8.0.0.tgz#4027c97ca21d7137dfd15a7fbc753e600c151334"
+ integrity sha512-KW46krpLHdyVlNbvXVnrq+lAaKzbKfSU6DT2HRcHdRWSXBkxYsDgCC4KRnGLwg6jdCrWT6BOQxHbyKmaBHb9yQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jstree "^3.3.12"
-"@abp/lodash@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0-rc.3.tgz#5bf8019fa0e69ec1fac6ccacb1625b8564ed8944"
- integrity sha512-Mo2r+bNZXdmM7Ri8SBi+M4OsfnLYejbQmcJ7wkDUPb4B3cDJtTB4YuJn8NWBBjaXwi08Myt1MvSFnT04N/t8Eg==
+"@abp/lodash@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0.tgz#4c809c4755ed11e70875d30f04312b0ff10a2dbb"
+ integrity sha512-V0y4k9HlggBvJtK5m35Gkori2IN0E4ec1JpBgGeaOStcvThAL1EtXip1kqPORMbC4wm+bgpT0QWhiqCeKBFoLg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
lodash "^4.17.21"
-"@abp/luxon@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0-rc.3.tgz#cc0adcab4f1fa6bea2055be478ec9a86d00f1ba6"
- integrity sha512-vKwfpAPL7GUJLvCpsJoJ5eXRH5Ypciez9J6QiK2Mjx1NauxR514wYtBqM/2I7hoJ4Oc9XvrAjcIon3r21dvCqQ==
+"@abp/luxon@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0.tgz#13a1145dc79d908f3398944c4bf0fb0457d94217"
+ integrity sha512-ZEGegnr+KCczPUrxxPmBUKGyiWkjAa4hDWb06mozdVP14zHQbbZfyKKXwrPfanwcj96Ui9i2klnrKPXuyppBJw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
luxon "^2.3.0"
-"@abp/malihu-custom-scrollbar-plugin@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0-rc.3.tgz#195c897dced708de627941ce017e047c62191a56"
- integrity sha512-svD7YJzHvufjmhoCKgQcjApIdVcGJwWhpsK260lwLiCvkdNDhxFjH+jfChhLMXPYpOnozrgrVx56oJqDWDrU3A==
+"@abp/malihu-custom-scrollbar-plugin@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0.tgz#fd4428d66ee38b4b2c02c0e300d5bd75dcda414d"
+ integrity sha512-jrD4AHd2Pdr28Ps3QtEDVDMSnK7xSumCKKSJl0R5SJcMyskByJ6gwydYqMGeQkCVnk1ztEZFfJNhOO35A+SBWA==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0-rc.3.tgz#7e2a74cd23c434b45f903b4f826f807a31b5982b"
- integrity sha512-E0mob3xj0frslPovdHbsdaFB5oLimORFA86uQJ5KVSEaDOXYKuEqUomMcqg2LRVdzzKd7ai6QkuH3p7qbJonww==
+"@abp/moment@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0.tgz#26d0932bf4dac4dee25d0940eea50fcfeb37a69b"
+ integrity sha512-fgh0pXdxPi5Y9VnC6f12kwJmGQL4dowZtVp8lbNEjnCFiocAhEOOuN9gkTGk8y0xEhXroliW7wbaB2MJPINKhg==
dependencies:
moment "^2.9.0"
-"@abp/prismjs@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-8.0.0-rc.3.tgz#237bb9c55ad1b202418c5bd1452e73a101706c25"
- integrity sha512-adgMYfZhK7aPpxNdQhdOqE7oOvXUDq5qqhIVOVzmrQ4Dy/uCItT/Zq0yqqYLr2d7D17vRzfBM7R8ubgxnsMfbw==
+"@abp/prismjs@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-8.0.0.tgz#174ccbd33d47bb687fe35bed35f7c834ca5ee328"
+ integrity sha512-Udx3pdlUU2MO+di1BZgG3jKNIeImWoPySmBA8YaStqsAkD/yb+YyUD2QmCUfI55kqzRyhAKE467ZusDFFOY20w==
dependencies:
- "@abp/clipboard" "~8.0.0-rc.3"
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/clipboard" "~8.0.0"
+ "@abp/core" "~8.0.0"
prismjs "^1.26.0"
-"@abp/select2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0-rc.3.tgz#77dd12185f6d03553230c7516e40603310f28f4f"
- integrity sha512-9O+IHIB6n+WfLzh6SVyC01OIU3qWzhoT3DofAc329cyI73NJSPuOvmkQtQVYWnkAI/6+B6qYF3A4umD/EoPouQ==
+"@abp/select2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0.tgz#4a4ebd63f2b79d663dab709decb2f1b1f510950f"
+ integrity sha512-kl3of/L0GSHyxt6WYnBDdBqqtoUscY9qubaMHZrk9y1zOVXOM0JUQoyu2KDQhOZm7iCu34ATX47NAw59eb9Omw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
select2 "^4.0.13"
-"@abp/slugify@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-8.0.0-rc.3.tgz#4f293c4ce11cba2a605503f2e3f3b6d278c0ed31"
- integrity sha512-CfSatHeh3A0XylfDjUtpU/LBcQ/zx8mDq1TA5rDwd2je19PhkTkJkRjA3A3Ow1zohShe1sj0jl08ZRrlF7tshQ==
+"@abp/slugify@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-8.0.0.tgz#82bfd5706e644c48f712e46694e47b8709b75ae5"
+ integrity sha512-R8fhrGocWf4u3MwNoxD4Bdp+QLv1KWyT45zAMgQcTVUIoSCzjC5d9+1xMIQhVdMJZInKA3OHWnEr/GgJaXHthw==
dependencies:
slugify "^1.6.5"
-"@abp/star-rating-svg@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-8.0.0-rc.3.tgz#ea57e636fe5d2cd950588a2ee6d35b4504f8f65b"
- integrity sha512-TLarYvGYptcH6ITq2EVKXKw9ovg7B6VXxkuYk2hFVRvn6bxT1bNxf2W7DGFFt1jH0WMEs+ShBEb9xTzXLfXMxw==
+"@abp/star-rating-svg@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-8.0.0.tgz#f6b5046f1d06998440a25cedc8d69ad6ff8a4aa3"
+ integrity sha512-u51iKYe2QtdnbMaTRQddHIv7Z7c1g5/Cuo9T4wbNUCEOtbdLSlTstxeAyl+V6dkQaI7zGKemOB9E/gupBZUoKg==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
star-rating-svg "^3.5.0"
-"@abp/sweetalert2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0-rc.3.tgz#021afc3457cf72c2b6dd298bb981faa741fc1293"
- integrity sha512-b67UC/uZ9gWt2X5MeUnKg98FkhvJ+Azsq4PHcFBdUTZL/5ItJ8F6UsOTpT7Z7cUXFmJn/RTcPrgQDsK63CZltw==
+"@abp/sweetalert2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0.tgz#369c04e433eead8e7171cd84298bb3e4ecb14050"
+ integrity sha512-riaHcFdozJ8R/sAdhtnfa7GHhWjptnQODrZ2bqBkcKuw2d8LKQ+2v3tcflaWWHwsOmGVbki3EhJJPdFWOtli/w==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
sweetalert2 "^11.3.6"
-"@abp/timeago@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0-rc.3.tgz#b3e63ff94bce8ad59b02d8c4490f580e60630f00"
- integrity sha512-Pmm6Jj7VT1PW/Wfh1ozFFIdpFvH8cGKfHU2sYgwHuw4U9YQUd8ZTIDaZRMhuN9QqnGlmFtUZsXzoIMZJDvOq5w==
+"@abp/timeago@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0.tgz#93947505b68f369df10bb38cd8c05376e1c1cbcb"
+ integrity sha512-Q+e5CvvFAU21hGuIXREtIeEl8WlGpsNqK+QbCRbjNvM0HgCPH/gRQNpAV+S7TqaI5W2Uggfcsd7GvTH3GtMv7g==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
timeago "^1.6.7"
-"@abp/toastr@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0-rc.3.tgz#5b0d267951e025ca77a611c2fa9b606e92bd830a"
- integrity sha512-hfDzyMSgbjriAALdrcnx/qonN2lquF7HM4QH8nt1E8/vWOkd8bUL/kyAoIL8rfS94zr62UUZTEDezoCfHwif+w==
+"@abp/toastr@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0.tgz#d409fec3fb1e5a886d0a03b0f58449a2f8a563d9"
+ integrity sha512-7evxuHJ+ZJtyCoIv0+HY/av5FC8Y5UzBtVjEB8Ol8RvhH5PBkErguPg9qPZvYcpHjJlYN+iKYAuXdQLZdXHwUQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
toastr "^2.1.4"
-"@abp/tui-editor@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-8.0.0-rc.3.tgz#b5cc1470598b1a478733767d21275334d130bfc1"
- integrity sha512-EdPrVdTV9Yv18Ke4UTf6/BPF4eZx+eEECI3zSQMrnDlGv5C1gBG1MS37KdqMeHvvhz95rIv/RO6kpjGkJYEm9g==
+"@abp/tui-editor@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-8.0.0.tgz#580737ed8e3a29ada576866556afbce5655cddfc"
+ integrity sha512-bsFwmAxLIV9IkcTqJor0ev0+noQqWsczxIkaSx9HWw08/YkNPfG0ak7gICU1I/gZoB7IMoaiwC6dXfY27BKSWA==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
- "@abp/prismjs" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
+ "@abp/prismjs" "~8.0.0"
-"@abp/uppy@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-8.0.0-rc.3.tgz#280e5d59633acc992be69e47740c6c124077ff7d"
- integrity sha512-0Ayn7YX4xNt9A+caoh27JcD27uQfsIdO7PKMiQNAZMp5p+zsN/qGFRnhReq+LMwYtezBkWqiGivZEmeRxN5fyw==
+"@abp/uppy@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-8.0.0.tgz#9da0601a868fcab80a1c125da90e77758c09c640"
+ integrity sha512-Z/Du8qeHQYLjTgI9ZGva7orreBKfEsNRFxmfCXS5eqsytcoYyJsIR6o4tN0XnBRouV3P3C06yYpW0ttWlu6RmQ==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
uppy "^1.16.1"
-"@abp/utils@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0-rc.3.tgz#01491fb943eb3a41d4ddbe854e5330b66807d522"
- integrity sha512-cuTwsy+FEh3dEnlDDi0s8d3qpWgP3rwqWgg5LlMF0pY/OobJcCLtuo5Zy9bncKL3wFHXVEk6UviYcNkSOkzvtQ==
+"@abp/utils@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0.tgz#3de8e34e97e10ac9c2b8c1c194bf6b034fde302f"
+ integrity sha512-F8LsEedqkngbeFsszdZi1lshFqr++anyJFBoaRsKRw6hJPDPrYtHoOWEQ+p7QcH5UVVzVywQUGMNM+gmAT0vGQ==
dependencies:
just-compare "^2.3.0"
diff --git a/modules/docs/app/VoloDocs.Web/package.json b/modules/docs/app/VoloDocs.Web/package.json
index ee0f88f479..6d18347aeb 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": "~8.0.0-rc.3",
- "@abp/docs": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0",
+ "@abp/docs": "~8.0.0"
}
}
diff --git a/modules/docs/app/VoloDocs.Web/yarn.lock b/modules/docs/app/VoloDocs.Web/yarn.lock
index 31d3b4cb8b..8908bb7157 100644
--- a/modules/docs/app/VoloDocs.Web/yarn.lock
+++ b/modules/docs/app/VoloDocs.Web/yarn.lock
@@ -2,47 +2,47 @@
# yarn lockfile v1
-"@abp/anchor-js@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-8.0.0-rc.3.tgz#198d961c69c7faf75c381c88937efd40a8e158e4"
- integrity sha512-BDcp84sDuh4349o6Em3idqWeHAegF64M/zJLSW5QIiX23+46WKzvLorICt7cQkaGiKldr6b/Q6Qx7yDxVxYpGw==
+"@abp/anchor-js@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-8.0.0.tgz#d2a51171d0ef07657d6cb7d5e933cbdbd68bc800"
+ integrity sha512-D98eiLTNS7sP0q4IcFFC5llULjWVBeacRdAeFbZMqak2TAz3i9zwgY1A8A53xrc6fpZKDAnFX3ARuS4VoqhDFQ==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
anchor-js "^4.3.1"
-"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0-rc.3.tgz#637ea220c9f988c1d0e1b152928f4409696439f2"
- integrity sha512-xFJkcC2Oa8vLqMW0gU/3nXHsdFZOQq8+o9gUeLqDAhHZomnvEWsoivcd+LZs0xSDgQOee7N9h2buv9ERBoYGiA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0-rc.3.tgz#88904633feb5ce7dface4d27e9a31f4e5ace6b30"
- integrity sha512-gMYI+xz/0JDgW2U7T3Lesx1o1U+Y+7zG/jVZO5FuMtlrsYhvT6V5BsKa9q/N7kSR0tfK8vsjblMBobqvbmG3SQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~8.0.0-rc.3"
- "@abp/bootstrap" "~8.0.0-rc.3"
- "@abp/bootstrap-datepicker" "~8.0.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~8.0.0-rc.3"
- "@abp/datatables.net-bs5" "~8.0.0-rc.3"
- "@abp/font-awesome" "~8.0.0-rc.3"
- "@abp/jquery-form" "~8.0.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~8.0.0-rc.3"
- "@abp/lodash" "~8.0.0-rc.3"
- "@abp/luxon" "~8.0.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~8.0.0-rc.3"
- "@abp/moment" "~8.0.0-rc.3"
- "@abp/select2" "~8.0.0-rc.3"
- "@abp/sweetalert2" "~8.0.0-rc.3"
- "@abp/timeago" "~8.0.0-rc.3"
- "@abp/toastr" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0-rc.3.tgz#09402ed4e7504c09b49a84d6ee590a5c87017ab8"
- integrity sha512-82GfU8DtReq5RTrb2Fl0UHm+vEO0PvC/6DyFHm57nyWiL2dKByUqLd8NXQz+gqubWOA+IvJoLehbcC6iD+Y0VQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0.tgz#c58d15186ad9842834c953e4d712009597ead5c2"
+ integrity sha512-d43CG48iS8vQvA85tSK7OlSHdcC9JuBT7mpN7DlLViiQewVeoKwdKkMhl5nkX4k0yNtqaRbWYlDD6kDp95TktA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0.tgz#4931d9bd40fba2d3e38d3a2a8da2d2e1c1198cb1"
+ integrity sha512-YPusLRaR6sBN13rAH/rewZv4GIM3bUsmMjz7o8qVK/3CYTx/iCAn7JSvNBbhCJT151RLmdYrahOsr8UUXx4k8Q==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~8.0.0"
+ "@abp/bootstrap" "~8.0.0"
+ "@abp/bootstrap-datepicker" "~8.0.0"
+ "@abp/bootstrap-daterangepicker" "~8.0.0"
+ "@abp/datatables.net-bs5" "~8.0.0"
+ "@abp/font-awesome" "~8.0.0"
+ "@abp/jquery-form" "~8.0.0"
+ "@abp/jquery-validation-unobtrusive" "~8.0.0"
+ "@abp/lodash" "~8.0.0"
+ "@abp/luxon" "~8.0.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~8.0.0"
+ "@abp/moment" "~8.0.0"
+ "@abp/select2" "~8.0.0"
+ "@abp/sweetalert2" "~8.0.0"
+ "@abp/timeago" "~8.0.0"
+ "@abp/toastr" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0.tgz#9760a1e4be0e2632e11a3f570209b1eefdf81607"
+ integrity sha512-+WBwpQfDmhP64BVSjyyiqRENpn5EBgcmA7JVMfmdmEJTrzx9ma7WSbLd5QxUxawMSkcjjnK95c5JdMVZXdaL8g==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@@ -51,194 +51,194 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
-"@abp/bootstrap-datepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0-rc.3.tgz#7656fef148c8bdf7993fdae937427564535dea74"
- integrity sha512-qW1XQ2zL+/9f9+Q9Db3E5eIOD8Itjtr0KFAO59tY3G3WEwvCOS85pXJ/I17nLRRo/A2Na4kx4Q/jdYr3DkOgDQ==
+"@abp/bootstrap-datepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0.tgz#458e0acaf6aedbfb03df692b9b2ec87b9fdad954"
+ integrity sha512-UetR0ldw0u5i2ohNpeI8+W0AGrov8tiglTTNyx8sF6WMGcCNCtU72jZCOc9/z/q91AijQrtdHIqpN/1B91YiMw==
dependencies:
bootstrap-datepicker "^1.9.0"
-"@abp/bootstrap-daterangepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0-rc.3.tgz#b6eb599b198f58c9a0690d2f779548137e10889f"
- integrity sha512-TnZdtV0JHweVrrXCJZjxz+Cbk0lYznzELaA6oBbikCPhzIr2XvLqyHuLvERrFVxq80BZGsF7xUgC2K/Tw/RA8w==
+"@abp/bootstrap-daterangepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0.tgz#613d2984d0f3981e0270d337b360c27397dbc480"
+ integrity sha512-nQFDtCp1+EuUfnoRmMcGvOgd4yZPMqjsThiW3m2KIV2Y+YlT52mZLBVpqRBpC2993Bs8E9Zpp4R7ebHJgacePg==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0-rc.3.tgz#8865c2536c353b904e6e96cb70e4280fe9928412"
- integrity sha512-h7rDAp3eBQwARAkEZfJU+IBTXEiLwi3I5CYFQ92QdX/mC66R1cX1gYY7pR5Wj5f68VS2pURnNxJnONtS3E/Cyw==
+"@abp/bootstrap@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0.tgz#7d679f88af98de6ac2c0725b86d43f9ce40c4f5b"
+ integrity sha512-JX6o8uMrsqiMMvbkDRePDqfPFHtWTuKhSTDa77ryp/AZYKOEvJfkdLZGZmYWy7UsB1RNXilth8kMyibqnw0CGg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
bootstrap "^5.1.3"
-"@abp/clipboard@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-8.0.0-rc.3.tgz#eb7211804967c97cf6678c42b7d756438ffcc22a"
- integrity sha512-w9a1gJs8yZbeNkRQqSXxiOUqCLknh+5QM3CoVQudU46Kl4zh39ugPuEMKZhxcGaDsZWSTNuyMgUjzAWFhE/w6g==
+"@abp/clipboard@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-8.0.0.tgz#cb597686e07e9ef68a09ebf7101498281939fb10"
+ integrity sha512-JonHbsCwJQ5iI45zy6lFu9kwXUYoRZC+t31N1w7fDMxekwPEjenBR4g33aGLIySTL7ExKiYjBsEVrCg8GKG/mg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
clipboard "^2.0.8"
-"@abp/core@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0-rc.3.tgz#f399bc55c6ad20c2515a03bb9572c6a4499cfcf0"
- integrity sha512-HUa0AfCDX3URnGWsZ/7aZMsXXQFjott05ebK9wF7QDcI7uInyMT5axlrQ/CniyU8GLaFEt3mdtLB7pOZzDnsRw==
+"@abp/core@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0.tgz#cc4d9c0da10fb922a4adea8df67f60bb02d95365"
+ integrity sha512-qM7jSTR2uAhjAcsaFNchA89rLBiiJpUsvDBFCz0SyOuFz5DYAHo1njlhICcVAHF7H3NxQfVIndGVSjvmqmLC7Q==
dependencies:
- "@abp/utils" "~8.0.0-rc.3"
+ "@abp/utils" "~8.0.0"
-"@abp/datatables.net-bs5@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0-rc.3.tgz#902d0770c54a5888f805cc97de0ed25d0c53dde9"
- integrity sha512-gxYYBeEh81+R8SAh27uMm3paVffq+bYiQgUxpXNgEcyPGP2X7/hnzZNwViuI1t+IgpSuTf6AAt14db9eV6Masg==
+"@abp/datatables.net-bs5@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0.tgz#c874180ea85fd0b2598fde90e2207bea267870c6"
+ integrity sha512-8w4oXTQwFnb56NTpeXjUsITGeMtuxv18ZAPK8Zmw28s5uOoIV/d/bEp11hXPwSk3SrjlyLw0lDcZCItwD+W8DQ==
dependencies:
- "@abp/datatables.net" "~8.0.0-rc.3"
+ "@abp/datatables.net" "~8.0.0"
datatables.net-bs5 "^1.11.4"
-"@abp/datatables.net@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0-rc.3.tgz#4ddfa9fe3246e72807c3b19307c7484af749f969"
- integrity sha512-vQBenQsDxzryspNv0FEzpyUPBXddIkVhXUJ6tHc+IZ8q/+/2wUE0ZciSJm7qS/GQnGrYZv9wpIGbSRh/RgVvVA==
+"@abp/datatables.net@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0.tgz#09ef3575a611f6ec123d2a9d4d55b8c89e30d115"
+ integrity sha512-WmsAfQEGPWMTqHGbeiX3RVfIdfkrMOtUfJmR0JaYJMuQo3STmMSnzOgNMKviDeQdzplgoOOKp6j0OgIqcciowg==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
datatables.net "^1.11.4"
-"@abp/docs@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-8.0.0-rc.3.tgz#c92687c8a4e18dd500a4a1a5f6820f241424e8fb"
- integrity sha512-T1XGo0KC59t1FkhLzBDOV2F3J0tVahoO9YQRH4fjAidCIGynkFjQdYwu2GHgWvKcKg2bqFVOR6BVIc4142oVPA==
+"@abp/docs@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-8.0.0.tgz#b461b1233bb2e4e64035c374c29c30332f7cbf8d"
+ integrity sha512-StQMsssu+P+pG/+Or1Q3RL1TQRbJj+V1Z12DsybYRAATB8LBvSTOphx4/ico2nee6ZW6npOxze8ke2vS8MjHxA==
dependencies:
- "@abp/anchor-js" "~8.0.0-rc.3"
- "@abp/clipboard" "~8.0.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~8.0.0-rc.3"
- "@abp/popper.js" "~8.0.0-rc.3"
- "@abp/prismjs" "~8.0.0-rc.3"
+ "@abp/anchor-js" "~8.0.0"
+ "@abp/clipboard" "~8.0.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~8.0.0"
+ "@abp/popper.js" "~8.0.0"
+ "@abp/prismjs" "~8.0.0"
-"@abp/font-awesome@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0-rc.3.tgz#5f850c5479f48cf1c951de2354050d38fec6beab"
- integrity sha512-GYwhoOThD5Bw0Ain5DkVXgHLpca83QGAy1T7I+6SmYyibYu5SdxV9ytD65tARH+dx9VpB3p9NeC5lRYuWdPzCQ==
+"@abp/font-awesome@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0.tgz#ce7debf296fddbdf79139147f6c9761ec68b6587"
+ integrity sha512-qeihwiim6YMcL3KfHU0CViVl5MamQXbTp4606r/hKQejCSbdqR9XupYVbTAyojXLCCRqfnDVuXwqWCFTKVbQow==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
"@fortawesome/fontawesome-free" "^5.15.4"
-"@abp/jquery-form@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0-rc.3.tgz#e414a0599448c37df3197af77a91c9a66d3ef77f"
- integrity sha512-w58Zi28Ci/0DIzMzC/ihu+np7G2Hv+9DLrhLZKddEI9WisFuxao5EAhKseq7LWMPzG/QSw8skLZAY12YrEtp6w==
+"@abp/jquery-form@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0.tgz#466343a87baa2f53fb57cf377e0fb0c07ff02bb9"
+ integrity sha512-xinU2Yu0YWNjoaYnBm+OoN8oNX/BDPzbqGtjlH1s5I+M/S0yf/qlPEzvzL5+epBlt0GKza/SqwSsuAVsfuFrKQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0-rc.3.tgz#a3ab6b5078449ba94c7206ed96286b902a766b6b"
- integrity sha512-Gvmujjhrvqzu51fGSTAssxGVu4XolTLEwW3qR0zwWCc0+kXF/AXB98DD66A+hmGau54sTKRXVmBTpc4J3KpoWg==
+"@abp/jquery-validation-unobtrusive@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0.tgz#a641cc4bff6de178ed3429987017c00bf68e81f9"
+ integrity sha512-nUcktSW5tPifa6yNX9Y8zCi0VCUJklVSSd4f3eKfjU8SIcWq1eNfR6R+MHRZEVVmyB7xeYMBlc0yjxVYwUUlEw==
dependencies:
- "@abp/jquery-validation" "~8.0.0-rc.3"
+ "@abp/jquery-validation" "~8.0.0"
jquery-validation-unobtrusive "^3.2.12"
-"@abp/jquery-validation@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0-rc.3.tgz#eee433a5fc076d92d734e7cea4bce00fbaacc963"
- integrity sha512-Dq5Ru5WWqDKIDzetUicJzp6DHkGhNNHcjYyHF3n9o9+3T4+6dgRbXy5OYjIv9CADfui55rzckWH57FbCExiUSw==
+"@abp/jquery-validation@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0.tgz#674fe49294c622b07b843ab8721a5ae32024b7b9"
+ integrity sha512-B/aFZsKbILP4FPuc3eU17APkbBWJhjWXSQCiSXbHpDZYJN5km1l52gpuWR+7Yo5CXnAP06N+zUYHf86tNCZyBw==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-validation "^1.19.3"
-"@abp/jquery@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0-rc.3.tgz#e230c5db7a9aff526564c1b4b1820cd983a10726"
- integrity sha512-o9xBZt55fT+ZYqmLjQ9dahtIgsRqz4VrXUsLgyKkUzr2p3gtgXCQqKfkIpdeE5aE3p1/T+et5U6FOMUCRZegvg==
+"@abp/jquery@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0.tgz#67bf40f87c335b1cba73f406f0102f35e820fd84"
+ integrity sha512-QhjBz/s1hVJcsYCbuZwNOtOCvsC93OMzMJHoZ2COaKkOZlt6tiRHhawdYVZloKDaMdfcd5tvqbkNhXtQ4K9AXg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
jquery "~3.6.0"
-"@abp/lodash@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0-rc.3.tgz#5bf8019fa0e69ec1fac6ccacb1625b8564ed8944"
- integrity sha512-Mo2r+bNZXdmM7Ri8SBi+M4OsfnLYejbQmcJ7wkDUPb4B3cDJtTB4YuJn8NWBBjaXwi08Myt1MvSFnT04N/t8Eg==
+"@abp/lodash@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0.tgz#4c809c4755ed11e70875d30f04312b0ff10a2dbb"
+ integrity sha512-V0y4k9HlggBvJtK5m35Gkori2IN0E4ec1JpBgGeaOStcvThAL1EtXip1kqPORMbC4wm+bgpT0QWhiqCeKBFoLg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
lodash "^4.17.21"
-"@abp/luxon@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0-rc.3.tgz#cc0adcab4f1fa6bea2055be478ec9a86d00f1ba6"
- integrity sha512-vKwfpAPL7GUJLvCpsJoJ5eXRH5Ypciez9J6QiK2Mjx1NauxR514wYtBqM/2I7hoJ4Oc9XvrAjcIon3r21dvCqQ==
+"@abp/luxon@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0.tgz#13a1145dc79d908f3398944c4bf0fb0457d94217"
+ integrity sha512-ZEGegnr+KCczPUrxxPmBUKGyiWkjAa4hDWb06mozdVP14zHQbbZfyKKXwrPfanwcj96Ui9i2klnrKPXuyppBJw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
luxon "^2.3.0"
-"@abp/malihu-custom-scrollbar-plugin@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0-rc.3.tgz#195c897dced708de627941ce017e047c62191a56"
- integrity sha512-svD7YJzHvufjmhoCKgQcjApIdVcGJwWhpsK260lwLiCvkdNDhxFjH+jfChhLMXPYpOnozrgrVx56oJqDWDrU3A==
+"@abp/malihu-custom-scrollbar-plugin@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0.tgz#fd4428d66ee38b4b2c02c0e300d5bd75dcda414d"
+ integrity sha512-jrD4AHd2Pdr28Ps3QtEDVDMSnK7xSumCKKSJl0R5SJcMyskByJ6gwydYqMGeQkCVnk1ztEZFfJNhOO35A+SBWA==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0-rc.3.tgz#7e2a74cd23c434b45f903b4f826f807a31b5982b"
- integrity sha512-E0mob3xj0frslPovdHbsdaFB5oLimORFA86uQJ5KVSEaDOXYKuEqUomMcqg2LRVdzzKd7ai6QkuH3p7qbJonww==
+"@abp/moment@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0.tgz#26d0932bf4dac4dee25d0940eea50fcfeb37a69b"
+ integrity sha512-fgh0pXdxPi5Y9VnC6f12kwJmGQL4dowZtVp8lbNEjnCFiocAhEOOuN9gkTGk8y0xEhXroliW7wbaB2MJPINKhg==
dependencies:
moment "^2.9.0"
-"@abp/popper.js@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-8.0.0-rc.3.tgz#8db4c89a4b2d86e3b04bb6952221d4886a4a3925"
- integrity sha512-migHMxSKeroU/9pDU9I/g/39A+6ZB0PP/RHYyM6KY8xSfgpVrb0k7JzAZk+RqsX7MntWcCBcQX8I7FVViw93OA==
+"@abp/popper.js@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-8.0.0.tgz#7e804a97e778ad2351e22daeabf6161ca58fd7f1"
+ integrity sha512-mqRmzdYq882zWE6+yVbVRHyzgTenvBfM/hfWgHSWJfMOpmt6LclhriaVrQspYFV7CTZQYNdZYX/4tgJ+MYiXZA==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
"@popperjs/core" "^2.11.2"
-"@abp/prismjs@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-8.0.0-rc.3.tgz#237bb9c55ad1b202418c5bd1452e73a101706c25"
- integrity sha512-adgMYfZhK7aPpxNdQhdOqE7oOvXUDq5qqhIVOVzmrQ4Dy/uCItT/Zq0yqqYLr2d7D17vRzfBM7R8ubgxnsMfbw==
+"@abp/prismjs@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-8.0.0.tgz#174ccbd33d47bb687fe35bed35f7c834ca5ee328"
+ integrity sha512-Udx3pdlUU2MO+di1BZgG3jKNIeImWoPySmBA8YaStqsAkD/yb+YyUD2QmCUfI55kqzRyhAKE467ZusDFFOY20w==
dependencies:
- "@abp/clipboard" "~8.0.0-rc.3"
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/clipboard" "~8.0.0"
+ "@abp/core" "~8.0.0"
prismjs "^1.26.0"
-"@abp/select2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0-rc.3.tgz#77dd12185f6d03553230c7516e40603310f28f4f"
- integrity sha512-9O+IHIB6n+WfLzh6SVyC01OIU3qWzhoT3DofAc329cyI73NJSPuOvmkQtQVYWnkAI/6+B6qYF3A4umD/EoPouQ==
+"@abp/select2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0.tgz#4a4ebd63f2b79d663dab709decb2f1b1f510950f"
+ integrity sha512-kl3of/L0GSHyxt6WYnBDdBqqtoUscY9qubaMHZrk9y1zOVXOM0JUQoyu2KDQhOZm7iCu34ATX47NAw59eb9Omw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0-rc.3.tgz#021afc3457cf72c2b6dd298bb981faa741fc1293"
- integrity sha512-b67UC/uZ9gWt2X5MeUnKg98FkhvJ+Azsq4PHcFBdUTZL/5ItJ8F6UsOTpT7Z7cUXFmJn/RTcPrgQDsK63CZltw==
+"@abp/sweetalert2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0.tgz#369c04e433eead8e7171cd84298bb3e4ecb14050"
+ integrity sha512-riaHcFdozJ8R/sAdhtnfa7GHhWjptnQODrZ2bqBkcKuw2d8LKQ+2v3tcflaWWHwsOmGVbki3EhJJPdFWOtli/w==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
sweetalert2 "^11.3.6"
-"@abp/timeago@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0-rc.3.tgz#b3e63ff94bce8ad59b02d8c4490f580e60630f00"
- integrity sha512-Pmm6Jj7VT1PW/Wfh1ozFFIdpFvH8cGKfHU2sYgwHuw4U9YQUd8ZTIDaZRMhuN9QqnGlmFtUZsXzoIMZJDvOq5w==
+"@abp/timeago@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0.tgz#93947505b68f369df10bb38cd8c05376e1c1cbcb"
+ integrity sha512-Q+e5CvvFAU21hGuIXREtIeEl8WlGpsNqK+QbCRbjNvM0HgCPH/gRQNpAV+S7TqaI5W2Uggfcsd7GvTH3GtMv7g==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
timeago "^1.6.7"
-"@abp/toastr@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0-rc.3.tgz#5b0d267951e025ca77a611c2fa9b606e92bd830a"
- integrity sha512-hfDzyMSgbjriAALdrcnx/qonN2lquF7HM4QH8nt1E8/vWOkd8bUL/kyAoIL8rfS94zr62UUZTEDezoCfHwif+w==
+"@abp/toastr@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0.tgz#d409fec3fb1e5a886d0a03b0f58449a2f8a563d9"
+ integrity sha512-7evxuHJ+ZJtyCoIv0+HY/av5FC8Y5UzBtVjEB8Ol8RvhH5PBkErguPg9qPZvYcpHjJlYN+iKYAuXdQLZdXHwUQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
toastr "^2.1.4"
-"@abp/utils@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0-rc.3.tgz#01491fb943eb3a41d4ddbe854e5330b66807d522"
- integrity sha512-cuTwsy+FEh3dEnlDDi0s8d3qpWgP3rwqWgg5LlMF0pY/OobJcCLtuo5Zy9bncKL3wFHXVEk6UviYcNkSOkzvtQ==
+"@abp/utils@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0.tgz#3de8e34e97e10ac9c2b8c1c194bf6b034fde302f"
+ integrity sha512-F8LsEedqkngbeFsszdZi1lshFqr++anyJFBoaRsKRw6hJPDPrYtHoOWEQ+p7QcH5UVVzVywQUGMNM+gmAT0vGQ==
dependencies:
just-compare "^2.3.0"
diff --git a/modules/openiddict/app/OpenIddict.Demo.Server/package.json b/modules/openiddict/app/OpenIddict.Demo.Server/package.json
index 0d892e1bbf..389a89a36f 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": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0"
}
}
diff --git a/modules/openiddict/app/angular/package.json b/modules/openiddict/app/angular/package.json
index 222da19040..1243eac1b6 100644
--- a/modules/openiddict/app/angular/package.json
+++ b/modules/openiddict/app/angular/package.json
@@ -12,14 +12,14 @@
},
"private": true,
"dependencies": {
- "@abp/ng.account": "~8.0.0-rc.3",
- "@abp/ng.components": "~8.0.0-rc.3",
- "@abp/ng.core": "~8.0.0-rc.3",
- "@abp/ng.oauth": "~8.0.0-rc.3",
- "@abp/ng.identity": "~8.0.0-rc.3",
- "@abp/ng.setting-management": "~8.0.0-rc.3",
- "@abp/ng.tenant-management": "~8.0.0-rc.3",
- "@abp/ng.theme.shared": "~8.0.0-rc.3",
+ "@abp/ng.account": "~8.0.0",
+ "@abp/ng.components": "~8.0.0",
+ "@abp/ng.core": "~8.0.0",
+ "@abp/ng.oauth": "~8.0.0",
+ "@abp/ng.identity": "~8.0.0",
+ "@abp/ng.setting-management": "~8.0.0",
+ "@abp/ng.tenant-management": "~8.0.0",
+ "@abp/ng.theme.shared": "~8.0.0",
"@abp/ng.theme.lepton-x": "~3.0.0-rc.1",
"@angular/animations": "^15.0.1",
"@angular/common": "^15.0.1",
@@ -36,7 +36,7 @@
"zone.js": "~0.11.4"
},
"devDependencies": {
- "@abp/ng.schematics": "~8.0.0-rc.3",
+ "@abp/ng.schematics": "~8.0.0",
"@angular-devkit/build-angular": "^15.0.1",
"@angular-eslint/builder": "~15.1.0",
"@angular-eslint/eslint-plugin": "~15.1.0",
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 76419a5b24..9800ea1f6e 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": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0"
}
}
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 1d0f3b4e2a..f9b7466558 100644
--- a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock
+++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock
@@ -2,39 +2,39 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0-rc.3.tgz#637ea220c9f988c1d0e1b152928f4409696439f2"
- integrity sha512-xFJkcC2Oa8vLqMW0gU/3nXHsdFZOQq8+o9gUeLqDAhHZomnvEWsoivcd+LZs0xSDgQOee7N9h2buv9ERBoYGiA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0-rc.3.tgz#88904633feb5ce7dface4d27e9a31f4e5ace6b30"
- integrity sha512-gMYI+xz/0JDgW2U7T3Lesx1o1U+Y+7zG/jVZO5FuMtlrsYhvT6V5BsKa9q/N7kSR0tfK8vsjblMBobqvbmG3SQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~8.0.0-rc.3"
- "@abp/bootstrap" "~8.0.0-rc.3"
- "@abp/bootstrap-datepicker" "~8.0.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~8.0.0-rc.3"
- "@abp/datatables.net-bs5" "~8.0.0-rc.3"
- "@abp/font-awesome" "~8.0.0-rc.3"
- "@abp/jquery-form" "~8.0.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~8.0.0-rc.3"
- "@abp/lodash" "~8.0.0-rc.3"
- "@abp/luxon" "~8.0.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~8.0.0-rc.3"
- "@abp/moment" "~8.0.0-rc.3"
- "@abp/select2" "~8.0.0-rc.3"
- "@abp/sweetalert2" "~8.0.0-rc.3"
- "@abp/timeago" "~8.0.0-rc.3"
- "@abp/toastr" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0-rc.3.tgz#09402ed4e7504c09b49a84d6ee590a5c87017ab8"
- integrity sha512-82GfU8DtReq5RTrb2Fl0UHm+vEO0PvC/6DyFHm57nyWiL2dKByUqLd8NXQz+gqubWOA+IvJoLehbcC6iD+Y0VQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0.tgz#c58d15186ad9842834c953e4d712009597ead5c2"
+ integrity sha512-d43CG48iS8vQvA85tSK7OlSHdcC9JuBT7mpN7DlLViiQewVeoKwdKkMhl5nkX4k0yNtqaRbWYlDD6kDp95TktA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0.tgz#4931d9bd40fba2d3e38d3a2a8da2d2e1c1198cb1"
+ integrity sha512-YPusLRaR6sBN13rAH/rewZv4GIM3bUsmMjz7o8qVK/3CYTx/iCAn7JSvNBbhCJT151RLmdYrahOsr8UUXx4k8Q==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~8.0.0"
+ "@abp/bootstrap" "~8.0.0"
+ "@abp/bootstrap-datepicker" "~8.0.0"
+ "@abp/bootstrap-daterangepicker" "~8.0.0"
+ "@abp/datatables.net-bs5" "~8.0.0"
+ "@abp/font-awesome" "~8.0.0"
+ "@abp/jquery-form" "~8.0.0"
+ "@abp/jquery-validation-unobtrusive" "~8.0.0"
+ "@abp/lodash" "~8.0.0"
+ "@abp/luxon" "~8.0.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~8.0.0"
+ "@abp/moment" "~8.0.0"
+ "@abp/select2" "~8.0.0"
+ "@abp/sweetalert2" "~8.0.0"
+ "@abp/timeago" "~8.0.0"
+ "@abp/toastr" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0.tgz#9760a1e4be0e2632e11a3f570209b1eefdf81607"
+ integrity sha512-+WBwpQfDmhP64BVSjyyiqRENpn5EBgcmA7JVMfmdmEJTrzx9ma7WSbLd5QxUxawMSkcjjnK95c5JdMVZXdaL8g==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@@ -43,158 +43,158 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
-"@abp/bootstrap-datepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0-rc.3.tgz#7656fef148c8bdf7993fdae937427564535dea74"
- integrity sha512-qW1XQ2zL+/9f9+Q9Db3E5eIOD8Itjtr0KFAO59tY3G3WEwvCOS85pXJ/I17nLRRo/A2Na4kx4Q/jdYr3DkOgDQ==
+"@abp/bootstrap-datepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0.tgz#458e0acaf6aedbfb03df692b9b2ec87b9fdad954"
+ integrity sha512-UetR0ldw0u5i2ohNpeI8+W0AGrov8tiglTTNyx8sF6WMGcCNCtU72jZCOc9/z/q91AijQrtdHIqpN/1B91YiMw==
dependencies:
bootstrap-datepicker "^1.9.0"
-"@abp/bootstrap-daterangepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0-rc.3.tgz#b6eb599b198f58c9a0690d2f779548137e10889f"
- integrity sha512-TnZdtV0JHweVrrXCJZjxz+Cbk0lYznzELaA6oBbikCPhzIr2XvLqyHuLvERrFVxq80BZGsF7xUgC2K/Tw/RA8w==
+"@abp/bootstrap-daterangepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0.tgz#613d2984d0f3981e0270d337b360c27397dbc480"
+ integrity sha512-nQFDtCp1+EuUfnoRmMcGvOgd4yZPMqjsThiW3m2KIV2Y+YlT52mZLBVpqRBpC2993Bs8E9Zpp4R7ebHJgacePg==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0-rc.3.tgz#8865c2536c353b904e6e96cb70e4280fe9928412"
- integrity sha512-h7rDAp3eBQwARAkEZfJU+IBTXEiLwi3I5CYFQ92QdX/mC66R1cX1gYY7pR5Wj5f68VS2pURnNxJnONtS3E/Cyw==
+"@abp/bootstrap@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0.tgz#7d679f88af98de6ac2c0725b86d43f9ce40c4f5b"
+ integrity sha512-JX6o8uMrsqiMMvbkDRePDqfPFHtWTuKhSTDa77ryp/AZYKOEvJfkdLZGZmYWy7UsB1RNXilth8kMyibqnw0CGg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
bootstrap "^5.1.3"
-"@abp/core@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0-rc.3.tgz#f399bc55c6ad20c2515a03bb9572c6a4499cfcf0"
- integrity sha512-HUa0AfCDX3URnGWsZ/7aZMsXXQFjott05ebK9wF7QDcI7uInyMT5axlrQ/CniyU8GLaFEt3mdtLB7pOZzDnsRw==
+"@abp/core@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0.tgz#cc4d9c0da10fb922a4adea8df67f60bb02d95365"
+ integrity sha512-qM7jSTR2uAhjAcsaFNchA89rLBiiJpUsvDBFCz0SyOuFz5DYAHo1njlhICcVAHF7H3NxQfVIndGVSjvmqmLC7Q==
dependencies:
- "@abp/utils" "~8.0.0-rc.3"
+ "@abp/utils" "~8.0.0"
-"@abp/datatables.net-bs5@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0-rc.3.tgz#902d0770c54a5888f805cc97de0ed25d0c53dde9"
- integrity sha512-gxYYBeEh81+R8SAh27uMm3paVffq+bYiQgUxpXNgEcyPGP2X7/hnzZNwViuI1t+IgpSuTf6AAt14db9eV6Masg==
+"@abp/datatables.net-bs5@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0.tgz#c874180ea85fd0b2598fde90e2207bea267870c6"
+ integrity sha512-8w4oXTQwFnb56NTpeXjUsITGeMtuxv18ZAPK8Zmw28s5uOoIV/d/bEp11hXPwSk3SrjlyLw0lDcZCItwD+W8DQ==
dependencies:
- "@abp/datatables.net" "~8.0.0-rc.3"
+ "@abp/datatables.net" "~8.0.0"
datatables.net-bs5 "^1.11.4"
-"@abp/datatables.net@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0-rc.3.tgz#4ddfa9fe3246e72807c3b19307c7484af749f969"
- integrity sha512-vQBenQsDxzryspNv0FEzpyUPBXddIkVhXUJ6tHc+IZ8q/+/2wUE0ZciSJm7qS/GQnGrYZv9wpIGbSRh/RgVvVA==
+"@abp/datatables.net@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0.tgz#09ef3575a611f6ec123d2a9d4d55b8c89e30d115"
+ integrity sha512-WmsAfQEGPWMTqHGbeiX3RVfIdfkrMOtUfJmR0JaYJMuQo3STmMSnzOgNMKviDeQdzplgoOOKp6j0OgIqcciowg==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
datatables.net "^1.11.4"
-"@abp/font-awesome@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0-rc.3.tgz#5f850c5479f48cf1c951de2354050d38fec6beab"
- integrity sha512-GYwhoOThD5Bw0Ain5DkVXgHLpca83QGAy1T7I+6SmYyibYu5SdxV9ytD65tARH+dx9VpB3p9NeC5lRYuWdPzCQ==
+"@abp/font-awesome@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0.tgz#ce7debf296fddbdf79139147f6c9761ec68b6587"
+ integrity sha512-qeihwiim6YMcL3KfHU0CViVl5MamQXbTp4606r/hKQejCSbdqR9XupYVbTAyojXLCCRqfnDVuXwqWCFTKVbQow==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
"@fortawesome/fontawesome-free" "^5.15.4"
-"@abp/jquery-form@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0-rc.3.tgz#e414a0599448c37df3197af77a91c9a66d3ef77f"
- integrity sha512-w58Zi28Ci/0DIzMzC/ihu+np7G2Hv+9DLrhLZKddEI9WisFuxao5EAhKseq7LWMPzG/QSw8skLZAY12YrEtp6w==
+"@abp/jquery-form@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0.tgz#466343a87baa2f53fb57cf377e0fb0c07ff02bb9"
+ integrity sha512-xinU2Yu0YWNjoaYnBm+OoN8oNX/BDPzbqGtjlH1s5I+M/S0yf/qlPEzvzL5+epBlt0GKza/SqwSsuAVsfuFrKQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0-rc.3.tgz#a3ab6b5078449ba94c7206ed96286b902a766b6b"
- integrity sha512-Gvmujjhrvqzu51fGSTAssxGVu4XolTLEwW3qR0zwWCc0+kXF/AXB98DD66A+hmGau54sTKRXVmBTpc4J3KpoWg==
+"@abp/jquery-validation-unobtrusive@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0.tgz#a641cc4bff6de178ed3429987017c00bf68e81f9"
+ integrity sha512-nUcktSW5tPifa6yNX9Y8zCi0VCUJklVSSd4f3eKfjU8SIcWq1eNfR6R+MHRZEVVmyB7xeYMBlc0yjxVYwUUlEw==
dependencies:
- "@abp/jquery-validation" "~8.0.0-rc.3"
+ "@abp/jquery-validation" "~8.0.0"
jquery-validation-unobtrusive "^3.2.12"
-"@abp/jquery-validation@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0-rc.3.tgz#eee433a5fc076d92d734e7cea4bce00fbaacc963"
- integrity sha512-Dq5Ru5WWqDKIDzetUicJzp6DHkGhNNHcjYyHF3n9o9+3T4+6dgRbXy5OYjIv9CADfui55rzckWH57FbCExiUSw==
+"@abp/jquery-validation@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0.tgz#674fe49294c622b07b843ab8721a5ae32024b7b9"
+ integrity sha512-B/aFZsKbILP4FPuc3eU17APkbBWJhjWXSQCiSXbHpDZYJN5km1l52gpuWR+7Yo5CXnAP06N+zUYHf86tNCZyBw==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-validation "^1.19.3"
-"@abp/jquery@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0-rc.3.tgz#e230c5db7a9aff526564c1b4b1820cd983a10726"
- integrity sha512-o9xBZt55fT+ZYqmLjQ9dahtIgsRqz4VrXUsLgyKkUzr2p3gtgXCQqKfkIpdeE5aE3p1/T+et5U6FOMUCRZegvg==
+"@abp/jquery@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0.tgz#67bf40f87c335b1cba73f406f0102f35e820fd84"
+ integrity sha512-QhjBz/s1hVJcsYCbuZwNOtOCvsC93OMzMJHoZ2COaKkOZlt6tiRHhawdYVZloKDaMdfcd5tvqbkNhXtQ4K9AXg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
jquery "~3.6.0"
-"@abp/lodash@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0-rc.3.tgz#5bf8019fa0e69ec1fac6ccacb1625b8564ed8944"
- integrity sha512-Mo2r+bNZXdmM7Ri8SBi+M4OsfnLYejbQmcJ7wkDUPb4B3cDJtTB4YuJn8NWBBjaXwi08Myt1MvSFnT04N/t8Eg==
+"@abp/lodash@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0.tgz#4c809c4755ed11e70875d30f04312b0ff10a2dbb"
+ integrity sha512-V0y4k9HlggBvJtK5m35Gkori2IN0E4ec1JpBgGeaOStcvThAL1EtXip1kqPORMbC4wm+bgpT0QWhiqCeKBFoLg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
lodash "^4.17.21"
-"@abp/luxon@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0-rc.3.tgz#cc0adcab4f1fa6bea2055be478ec9a86d00f1ba6"
- integrity sha512-vKwfpAPL7GUJLvCpsJoJ5eXRH5Ypciez9J6QiK2Mjx1NauxR514wYtBqM/2I7hoJ4Oc9XvrAjcIon3r21dvCqQ==
+"@abp/luxon@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0.tgz#13a1145dc79d908f3398944c4bf0fb0457d94217"
+ integrity sha512-ZEGegnr+KCczPUrxxPmBUKGyiWkjAa4hDWb06mozdVP14zHQbbZfyKKXwrPfanwcj96Ui9i2klnrKPXuyppBJw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
luxon "^2.3.0"
-"@abp/malihu-custom-scrollbar-plugin@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0-rc.3.tgz#195c897dced708de627941ce017e047c62191a56"
- integrity sha512-svD7YJzHvufjmhoCKgQcjApIdVcGJwWhpsK260lwLiCvkdNDhxFjH+jfChhLMXPYpOnozrgrVx56oJqDWDrU3A==
+"@abp/malihu-custom-scrollbar-plugin@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0.tgz#fd4428d66ee38b4b2c02c0e300d5bd75dcda414d"
+ integrity sha512-jrD4AHd2Pdr28Ps3QtEDVDMSnK7xSumCKKSJl0R5SJcMyskByJ6gwydYqMGeQkCVnk1ztEZFfJNhOO35A+SBWA==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0-rc.3.tgz#7e2a74cd23c434b45f903b4f826f807a31b5982b"
- integrity sha512-E0mob3xj0frslPovdHbsdaFB5oLimORFA86uQJ5KVSEaDOXYKuEqUomMcqg2LRVdzzKd7ai6QkuH3p7qbJonww==
+"@abp/moment@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0.tgz#26d0932bf4dac4dee25d0940eea50fcfeb37a69b"
+ integrity sha512-fgh0pXdxPi5Y9VnC6f12kwJmGQL4dowZtVp8lbNEjnCFiocAhEOOuN9gkTGk8y0xEhXroliW7wbaB2MJPINKhg==
dependencies:
moment "^2.9.0"
-"@abp/select2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0-rc.3.tgz#77dd12185f6d03553230c7516e40603310f28f4f"
- integrity sha512-9O+IHIB6n+WfLzh6SVyC01OIU3qWzhoT3DofAc329cyI73NJSPuOvmkQtQVYWnkAI/6+B6qYF3A4umD/EoPouQ==
+"@abp/select2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0.tgz#4a4ebd63f2b79d663dab709decb2f1b1f510950f"
+ integrity sha512-kl3of/L0GSHyxt6WYnBDdBqqtoUscY9qubaMHZrk9y1zOVXOM0JUQoyu2KDQhOZm7iCu34ATX47NAw59eb9Omw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0-rc.3.tgz#021afc3457cf72c2b6dd298bb981faa741fc1293"
- integrity sha512-b67UC/uZ9gWt2X5MeUnKg98FkhvJ+Azsq4PHcFBdUTZL/5ItJ8F6UsOTpT7Z7cUXFmJn/RTcPrgQDsK63CZltw==
+"@abp/sweetalert2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0.tgz#369c04e433eead8e7171cd84298bb3e4ecb14050"
+ integrity sha512-riaHcFdozJ8R/sAdhtnfa7GHhWjptnQODrZ2bqBkcKuw2d8LKQ+2v3tcflaWWHwsOmGVbki3EhJJPdFWOtli/w==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
sweetalert2 "^11.3.6"
-"@abp/timeago@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0-rc.3.tgz#b3e63ff94bce8ad59b02d8c4490f580e60630f00"
- integrity sha512-Pmm6Jj7VT1PW/Wfh1ozFFIdpFvH8cGKfHU2sYgwHuw4U9YQUd8ZTIDaZRMhuN9QqnGlmFtUZsXzoIMZJDvOq5w==
+"@abp/timeago@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0.tgz#93947505b68f369df10bb38cd8c05376e1c1cbcb"
+ integrity sha512-Q+e5CvvFAU21hGuIXREtIeEl8WlGpsNqK+QbCRbjNvM0HgCPH/gRQNpAV+S7TqaI5W2Uggfcsd7GvTH3GtMv7g==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
timeago "^1.6.7"
-"@abp/toastr@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0-rc.3.tgz#5b0d267951e025ca77a611c2fa9b606e92bd830a"
- integrity sha512-hfDzyMSgbjriAALdrcnx/qonN2lquF7HM4QH8nt1E8/vWOkd8bUL/kyAoIL8rfS94zr62UUZTEDezoCfHwif+w==
+"@abp/toastr@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0.tgz#d409fec3fb1e5a886d0a03b0f58449a2f8a563d9"
+ integrity sha512-7evxuHJ+ZJtyCoIv0+HY/av5FC8Y5UzBtVjEB8Ol8RvhH5PBkErguPg9qPZvYcpHjJlYN+iKYAuXdQLZdXHwUQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
toastr "^2.1.4"
-"@abp/utils@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0-rc.3.tgz#01491fb943eb3a41d4ddbe854e5330b66807d522"
- integrity sha512-cuTwsy+FEh3dEnlDDi0s8d3qpWgP3rwqWgg5LlMF0pY/OobJcCLtuo5Zy9bncKL3wFHXVEk6UviYcNkSOkzvtQ==
+"@abp/utils@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0.tgz#3de8e34e97e10ac9c2b8c1c194bf6b034fde302f"
+ integrity sha512-F8LsEedqkngbeFsszdZi1lshFqr++anyJFBoaRsKRw6hJPDPrYtHoOWEQ+p7QcH5UVVzVywQUGMNM+gmAT0vGQ==
dependencies:
just-compare "^2.3.0"
diff --git a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/package.json b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/package.json
index f3eab0e448..4ec4342b39 100644
--- a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/package.json
+++ b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/package.json
@@ -3,7 +3,7 @@
"version": "1.0.0",
"private": true,
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0-rc.3",
- "@abp/virtual-file-explorer": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0",
+ "@abp/virtual-file-explorer": "~8.0.0"
}
}
diff --git a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/yarn.lock b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/yarn.lock
index 9983ad8f0c..e8152c7f31 100644
--- a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/yarn.lock
+++ b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/yarn.lock
@@ -2,39 +2,39 @@
# yarn lockfile v1
-"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0-rc.3.tgz#637ea220c9f988c1d0e1b152928f4409696439f2"
- integrity sha512-xFJkcC2Oa8vLqMW0gU/3nXHsdFZOQq8+o9gUeLqDAhHZomnvEWsoivcd+LZs0xSDgQOee7N9h2buv9ERBoYGiA==
- dependencies:
- "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0-rc.3.tgz#88904633feb5ce7dface4d27e9a31f4e5ace6b30"
- integrity sha512-gMYI+xz/0JDgW2U7T3Lesx1o1U+Y+7zG/jVZO5FuMtlrsYhvT6V5BsKa9q/N7kSR0tfK8vsjblMBobqvbmG3SQ==
- dependencies:
- "@abp/aspnetcore.mvc.ui" "~8.0.0-rc.3"
- "@abp/bootstrap" "~8.0.0-rc.3"
- "@abp/bootstrap-datepicker" "~8.0.0-rc.3"
- "@abp/bootstrap-daterangepicker" "~8.0.0-rc.3"
- "@abp/datatables.net-bs5" "~8.0.0-rc.3"
- "@abp/font-awesome" "~8.0.0-rc.3"
- "@abp/jquery-form" "~8.0.0-rc.3"
- "@abp/jquery-validation-unobtrusive" "~8.0.0-rc.3"
- "@abp/lodash" "~8.0.0-rc.3"
- "@abp/luxon" "~8.0.0-rc.3"
- "@abp/malihu-custom-scrollbar-plugin" "~8.0.0-rc.3"
- "@abp/moment" "~8.0.0-rc.3"
- "@abp/select2" "~8.0.0-rc.3"
- "@abp/sweetalert2" "~8.0.0-rc.3"
- "@abp/timeago" "~8.0.0-rc.3"
- "@abp/toastr" "~8.0.0-rc.3"
-
-"@abp/aspnetcore.mvc.ui@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0-rc.3.tgz#09402ed4e7504c09b49a84d6ee590a5c87017ab8"
- integrity sha512-82GfU8DtReq5RTrb2Fl0UHm+vEO0PvC/6DyFHm57nyWiL2dKByUqLd8NXQz+gqubWOA+IvJoLehbcC6iD+Y0VQ==
+"@abp/aspnetcore.mvc.ui.theme.basic@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-8.0.0.tgz#c58d15186ad9842834c953e4d712009597ead5c2"
+ integrity sha512-d43CG48iS8vQvA85tSK7OlSHdcC9JuBT7mpN7DlLViiQewVeoKwdKkMhl5nkX4k0yNtqaRbWYlDD6kDp95TktA==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui.theme.shared" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui.theme.shared@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-8.0.0.tgz#4931d9bd40fba2d3e38d3a2a8da2d2e1c1198cb1"
+ integrity sha512-YPusLRaR6sBN13rAH/rewZv4GIM3bUsmMjz7o8qVK/3CYTx/iCAn7JSvNBbhCJT151RLmdYrahOsr8UUXx4k8Q==
+ dependencies:
+ "@abp/aspnetcore.mvc.ui" "~8.0.0"
+ "@abp/bootstrap" "~8.0.0"
+ "@abp/bootstrap-datepicker" "~8.0.0"
+ "@abp/bootstrap-daterangepicker" "~8.0.0"
+ "@abp/datatables.net-bs5" "~8.0.0"
+ "@abp/font-awesome" "~8.0.0"
+ "@abp/jquery-form" "~8.0.0"
+ "@abp/jquery-validation-unobtrusive" "~8.0.0"
+ "@abp/lodash" "~8.0.0"
+ "@abp/luxon" "~8.0.0"
+ "@abp/malihu-custom-scrollbar-plugin" "~8.0.0"
+ "@abp/moment" "~8.0.0"
+ "@abp/select2" "~8.0.0"
+ "@abp/sweetalert2" "~8.0.0"
+ "@abp/timeago" "~8.0.0"
+ "@abp/toastr" "~8.0.0"
+
+"@abp/aspnetcore.mvc.ui@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-8.0.0.tgz#9760a1e4be0e2632e11a3f570209b1eefdf81607"
+ integrity sha512-+WBwpQfDmhP64BVSjyyiqRENpn5EBgcmA7JVMfmdmEJTrzx9ma7WSbLd5QxUxawMSkcjjnK95c5JdMVZXdaL8g==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@@ -43,185 +43,185 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
-"@abp/bootstrap-datepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0-rc.3.tgz#7656fef148c8bdf7993fdae937427564535dea74"
- integrity sha512-qW1XQ2zL+/9f9+Q9Db3E5eIOD8Itjtr0KFAO59tY3G3WEwvCOS85pXJ/I17nLRRo/A2Na4kx4Q/jdYr3DkOgDQ==
+"@abp/bootstrap-datepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-8.0.0.tgz#458e0acaf6aedbfb03df692b9b2ec87b9fdad954"
+ integrity sha512-UetR0ldw0u5i2ohNpeI8+W0AGrov8tiglTTNyx8sF6WMGcCNCtU72jZCOc9/z/q91AijQrtdHIqpN/1B91YiMw==
dependencies:
bootstrap-datepicker "^1.9.0"
-"@abp/bootstrap-daterangepicker@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0-rc.3.tgz#b6eb599b198f58c9a0690d2f779548137e10889f"
- integrity sha512-TnZdtV0JHweVrrXCJZjxz+Cbk0lYznzELaA6oBbikCPhzIr2XvLqyHuLvERrFVxq80BZGsF7xUgC2K/Tw/RA8w==
+"@abp/bootstrap-daterangepicker@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-8.0.0.tgz#613d2984d0f3981e0270d337b360c27397dbc480"
+ integrity sha512-nQFDtCp1+EuUfnoRmMcGvOgd4yZPMqjsThiW3m2KIV2Y+YlT52mZLBVpqRBpC2993Bs8E9Zpp4R7ebHJgacePg==
dependencies:
bootstrap-daterangepicker "^3.1.0"
-"@abp/bootstrap@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0-rc.3.tgz#8865c2536c353b904e6e96cb70e4280fe9928412"
- integrity sha512-h7rDAp3eBQwARAkEZfJU+IBTXEiLwi3I5CYFQ92QdX/mC66R1cX1gYY7pR5Wj5f68VS2pURnNxJnONtS3E/Cyw==
+"@abp/bootstrap@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-8.0.0.tgz#7d679f88af98de6ac2c0725b86d43f9ce40c4f5b"
+ integrity sha512-JX6o8uMrsqiMMvbkDRePDqfPFHtWTuKhSTDa77ryp/AZYKOEvJfkdLZGZmYWy7UsB1RNXilth8kMyibqnw0CGg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
bootstrap "^5.1.3"
-"@abp/clipboard@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-8.0.0-rc.3.tgz#eb7211804967c97cf6678c42b7d756438ffcc22a"
- integrity sha512-w9a1gJs8yZbeNkRQqSXxiOUqCLknh+5QM3CoVQudU46Kl4zh39ugPuEMKZhxcGaDsZWSTNuyMgUjzAWFhE/w6g==
+"@abp/clipboard@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-8.0.0.tgz#cb597686e07e9ef68a09ebf7101498281939fb10"
+ integrity sha512-JonHbsCwJQ5iI45zy6lFu9kwXUYoRZC+t31N1w7fDMxekwPEjenBR4g33aGLIySTL7ExKiYjBsEVrCg8GKG/mg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
clipboard "^2.0.8"
-"@abp/core@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0-rc.3.tgz#f399bc55c6ad20c2515a03bb9572c6a4499cfcf0"
- integrity sha512-HUa0AfCDX3URnGWsZ/7aZMsXXQFjott05ebK9wF7QDcI7uInyMT5axlrQ/CniyU8GLaFEt3mdtLB7pOZzDnsRw==
+"@abp/core@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/core/-/core-8.0.0.tgz#cc4d9c0da10fb922a4adea8df67f60bb02d95365"
+ integrity sha512-qM7jSTR2uAhjAcsaFNchA89rLBiiJpUsvDBFCz0SyOuFz5DYAHo1njlhICcVAHF7H3NxQfVIndGVSjvmqmLC7Q==
dependencies:
- "@abp/utils" "~8.0.0-rc.3"
+ "@abp/utils" "~8.0.0"
-"@abp/datatables.net-bs5@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0-rc.3.tgz#902d0770c54a5888f805cc97de0ed25d0c53dde9"
- integrity sha512-gxYYBeEh81+R8SAh27uMm3paVffq+bYiQgUxpXNgEcyPGP2X7/hnzZNwViuI1t+IgpSuTf6AAt14db9eV6Masg==
+"@abp/datatables.net-bs5@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-8.0.0.tgz#c874180ea85fd0b2598fde90e2207bea267870c6"
+ integrity sha512-8w4oXTQwFnb56NTpeXjUsITGeMtuxv18ZAPK8Zmw28s5uOoIV/d/bEp11hXPwSk3SrjlyLw0lDcZCItwD+W8DQ==
dependencies:
- "@abp/datatables.net" "~8.0.0-rc.3"
+ "@abp/datatables.net" "~8.0.0"
datatables.net-bs5 "^1.11.4"
-"@abp/datatables.net@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0-rc.3.tgz#4ddfa9fe3246e72807c3b19307c7484af749f969"
- integrity sha512-vQBenQsDxzryspNv0FEzpyUPBXddIkVhXUJ6tHc+IZ8q/+/2wUE0ZciSJm7qS/GQnGrYZv9wpIGbSRh/RgVvVA==
+"@abp/datatables.net@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-8.0.0.tgz#09ef3575a611f6ec123d2a9d4d55b8c89e30d115"
+ integrity sha512-WmsAfQEGPWMTqHGbeiX3RVfIdfkrMOtUfJmR0JaYJMuQo3STmMSnzOgNMKviDeQdzplgoOOKp6j0OgIqcciowg==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
datatables.net "^1.11.4"
-"@abp/font-awesome@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0-rc.3.tgz#5f850c5479f48cf1c951de2354050d38fec6beab"
- integrity sha512-GYwhoOThD5Bw0Ain5DkVXgHLpca83QGAy1T7I+6SmYyibYu5SdxV9ytD65tARH+dx9VpB3p9NeC5lRYuWdPzCQ==
+"@abp/font-awesome@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-8.0.0.tgz#ce7debf296fddbdf79139147f6c9761ec68b6587"
+ integrity sha512-qeihwiim6YMcL3KfHU0CViVl5MamQXbTp4606r/hKQejCSbdqR9XupYVbTAyojXLCCRqfnDVuXwqWCFTKVbQow==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
"@fortawesome/fontawesome-free" "^5.15.4"
-"@abp/jquery-form@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0-rc.3.tgz#e414a0599448c37df3197af77a91c9a66d3ef77f"
- integrity sha512-w58Zi28Ci/0DIzMzC/ihu+np7G2Hv+9DLrhLZKddEI9WisFuxao5EAhKseq7LWMPzG/QSw8skLZAY12YrEtp6w==
+"@abp/jquery-form@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-8.0.0.tgz#466343a87baa2f53fb57cf377e0fb0c07ff02bb9"
+ integrity sha512-xinU2Yu0YWNjoaYnBm+OoN8oNX/BDPzbqGtjlH1s5I+M/S0yf/qlPEzvzL5+epBlt0GKza/SqwSsuAVsfuFrKQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-form "^4.3.0"
-"@abp/jquery-validation-unobtrusive@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0-rc.3.tgz#a3ab6b5078449ba94c7206ed96286b902a766b6b"
- integrity sha512-Gvmujjhrvqzu51fGSTAssxGVu4XolTLEwW3qR0zwWCc0+kXF/AXB98DD66A+hmGau54sTKRXVmBTpc4J3KpoWg==
+"@abp/jquery-validation-unobtrusive@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-8.0.0.tgz#a641cc4bff6de178ed3429987017c00bf68e81f9"
+ integrity sha512-nUcktSW5tPifa6yNX9Y8zCi0VCUJklVSSd4f3eKfjU8SIcWq1eNfR6R+MHRZEVVmyB7xeYMBlc0yjxVYwUUlEw==
dependencies:
- "@abp/jquery-validation" "~8.0.0-rc.3"
+ "@abp/jquery-validation" "~8.0.0"
jquery-validation-unobtrusive "^3.2.12"
-"@abp/jquery-validation@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0-rc.3.tgz#eee433a5fc076d92d734e7cea4bce00fbaacc963"
- integrity sha512-Dq5Ru5WWqDKIDzetUicJzp6DHkGhNNHcjYyHF3n9o9+3T4+6dgRbXy5OYjIv9CADfui55rzckWH57FbCExiUSw==
+"@abp/jquery-validation@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-8.0.0.tgz#674fe49294c622b07b843ab8721a5ae32024b7b9"
+ integrity sha512-B/aFZsKbILP4FPuc3eU17APkbBWJhjWXSQCiSXbHpDZYJN5km1l52gpuWR+7Yo5CXnAP06N+zUYHf86tNCZyBw==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
jquery-validation "^1.19.3"
-"@abp/jquery@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0-rc.3.tgz#e230c5db7a9aff526564c1b4b1820cd983a10726"
- integrity sha512-o9xBZt55fT+ZYqmLjQ9dahtIgsRqz4VrXUsLgyKkUzr2p3gtgXCQqKfkIpdeE5aE3p1/T+et5U6FOMUCRZegvg==
+"@abp/jquery@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-8.0.0.tgz#67bf40f87c335b1cba73f406f0102f35e820fd84"
+ integrity sha512-QhjBz/s1hVJcsYCbuZwNOtOCvsC93OMzMJHoZ2COaKkOZlt6tiRHhawdYVZloKDaMdfcd5tvqbkNhXtQ4K9AXg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
jquery "~3.6.0"
-"@abp/lodash@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0-rc.3.tgz#5bf8019fa0e69ec1fac6ccacb1625b8564ed8944"
- integrity sha512-Mo2r+bNZXdmM7Ri8SBi+M4OsfnLYejbQmcJ7wkDUPb4B3cDJtTB4YuJn8NWBBjaXwi08Myt1MvSFnT04N/t8Eg==
+"@abp/lodash@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-8.0.0.tgz#4c809c4755ed11e70875d30f04312b0ff10a2dbb"
+ integrity sha512-V0y4k9HlggBvJtK5m35Gkori2IN0E4ec1JpBgGeaOStcvThAL1EtXip1kqPORMbC4wm+bgpT0QWhiqCeKBFoLg==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
lodash "^4.17.21"
-"@abp/luxon@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0-rc.3.tgz#cc0adcab4f1fa6bea2055be478ec9a86d00f1ba6"
- integrity sha512-vKwfpAPL7GUJLvCpsJoJ5eXRH5Ypciez9J6QiK2Mjx1NauxR514wYtBqM/2I7hoJ4Oc9XvrAjcIon3r21dvCqQ==
+"@abp/luxon@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-8.0.0.tgz#13a1145dc79d908f3398944c4bf0fb0457d94217"
+ integrity sha512-ZEGegnr+KCczPUrxxPmBUKGyiWkjAa4hDWb06mozdVP14zHQbbZfyKKXwrPfanwcj96Ui9i2klnrKPXuyppBJw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
luxon "^2.3.0"
-"@abp/malihu-custom-scrollbar-plugin@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0-rc.3.tgz#195c897dced708de627941ce017e047c62191a56"
- integrity sha512-svD7YJzHvufjmhoCKgQcjApIdVcGJwWhpsK260lwLiCvkdNDhxFjH+jfChhLMXPYpOnozrgrVx56oJqDWDrU3A==
+"@abp/malihu-custom-scrollbar-plugin@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-8.0.0.tgz#fd4428d66ee38b4b2c02c0e300d5bd75dcda414d"
+ integrity sha512-jrD4AHd2Pdr28Ps3QtEDVDMSnK7xSumCKKSJl0R5SJcMyskByJ6gwydYqMGeQkCVnk1ztEZFfJNhOO35A+SBWA==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
malihu-custom-scrollbar-plugin "^3.1.5"
-"@abp/moment@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0-rc.3.tgz#7e2a74cd23c434b45f903b4f826f807a31b5982b"
- integrity sha512-E0mob3xj0frslPovdHbsdaFB5oLimORFA86uQJ5KVSEaDOXYKuEqUomMcqg2LRVdzzKd7ai6QkuH3p7qbJonww==
+"@abp/moment@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-8.0.0.tgz#26d0932bf4dac4dee25d0940eea50fcfeb37a69b"
+ integrity sha512-fgh0pXdxPi5Y9VnC6f12kwJmGQL4dowZtVp8lbNEjnCFiocAhEOOuN9gkTGk8y0xEhXroliW7wbaB2MJPINKhg==
dependencies:
moment "^2.9.0"
-"@abp/prismjs@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-8.0.0-rc.3.tgz#237bb9c55ad1b202418c5bd1452e73a101706c25"
- integrity sha512-adgMYfZhK7aPpxNdQhdOqE7oOvXUDq5qqhIVOVzmrQ4Dy/uCItT/Zq0yqqYLr2d7D17vRzfBM7R8ubgxnsMfbw==
+"@abp/prismjs@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-8.0.0.tgz#174ccbd33d47bb687fe35bed35f7c834ca5ee328"
+ integrity sha512-Udx3pdlUU2MO+di1BZgG3jKNIeImWoPySmBA8YaStqsAkD/yb+YyUD2QmCUfI55kqzRyhAKE467ZusDFFOY20w==
dependencies:
- "@abp/clipboard" "~8.0.0-rc.3"
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/clipboard" "~8.0.0"
+ "@abp/core" "~8.0.0"
prismjs "^1.26.0"
-"@abp/select2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0-rc.3.tgz#77dd12185f6d03553230c7516e40603310f28f4f"
- integrity sha512-9O+IHIB6n+WfLzh6SVyC01OIU3qWzhoT3DofAc329cyI73NJSPuOvmkQtQVYWnkAI/6+B6qYF3A4umD/EoPouQ==
+"@abp/select2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-8.0.0.tgz#4a4ebd63f2b79d663dab709decb2f1b1f510950f"
+ integrity sha512-kl3of/L0GSHyxt6WYnBDdBqqtoUscY9qubaMHZrk9y1zOVXOM0JUQoyu2KDQhOZm7iCu34ATX47NAw59eb9Omw==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
select2 "^4.0.13"
-"@abp/sweetalert2@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0-rc.3.tgz#021afc3457cf72c2b6dd298bb981faa741fc1293"
- integrity sha512-b67UC/uZ9gWt2X5MeUnKg98FkhvJ+Azsq4PHcFBdUTZL/5ItJ8F6UsOTpT7Z7cUXFmJn/RTcPrgQDsK63CZltw==
+"@abp/sweetalert2@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-8.0.0.tgz#369c04e433eead8e7171cd84298bb3e4ecb14050"
+ integrity sha512-riaHcFdozJ8R/sAdhtnfa7GHhWjptnQODrZ2bqBkcKuw2d8LKQ+2v3tcflaWWHwsOmGVbki3EhJJPdFWOtli/w==
dependencies:
- "@abp/core" "~8.0.0-rc.3"
+ "@abp/core" "~8.0.0"
sweetalert2 "^11.3.6"
-"@abp/timeago@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0-rc.3.tgz#b3e63ff94bce8ad59b02d8c4490f580e60630f00"
- integrity sha512-Pmm6Jj7VT1PW/Wfh1ozFFIdpFvH8cGKfHU2sYgwHuw4U9YQUd8ZTIDaZRMhuN9QqnGlmFtUZsXzoIMZJDvOq5w==
+"@abp/timeago@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-8.0.0.tgz#93947505b68f369df10bb38cd8c05376e1c1cbcb"
+ integrity sha512-Q+e5CvvFAU21hGuIXREtIeEl8WlGpsNqK+QbCRbjNvM0HgCPH/gRQNpAV+S7TqaI5W2Uggfcsd7GvTH3GtMv7g==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
timeago "^1.6.7"
-"@abp/toastr@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0-rc.3.tgz#5b0d267951e025ca77a611c2fa9b606e92bd830a"
- integrity sha512-hfDzyMSgbjriAALdrcnx/qonN2lquF7HM4QH8nt1E8/vWOkd8bUL/kyAoIL8rfS94zr62UUZTEDezoCfHwif+w==
+"@abp/toastr@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-8.0.0.tgz#d409fec3fb1e5a886d0a03b0f58449a2f8a563d9"
+ integrity sha512-7evxuHJ+ZJtyCoIv0+HY/av5FC8Y5UzBtVjEB8Ol8RvhH5PBkErguPg9qPZvYcpHjJlYN+iKYAuXdQLZdXHwUQ==
dependencies:
- "@abp/jquery" "~8.0.0-rc.3"
+ "@abp/jquery" "~8.0.0"
toastr "^2.1.4"
-"@abp/utils@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0-rc.3.tgz#01491fb943eb3a41d4ddbe854e5330b66807d522"
- integrity sha512-cuTwsy+FEh3dEnlDDi0s8d3qpWgP3rwqWgg5LlMF0pY/OobJcCLtuo5Zy9bncKL3wFHXVEk6UviYcNkSOkzvtQ==
+"@abp/utils@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-8.0.0.tgz#3de8e34e97e10ac9c2b8c1c194bf6b034fde302f"
+ integrity sha512-F8LsEedqkngbeFsszdZi1lshFqr++anyJFBoaRsKRw6hJPDPrYtHoOWEQ+p7QcH5UVVzVywQUGMNM+gmAT0vGQ==
dependencies:
just-compare "^2.3.0"
-"@abp/virtual-file-explorer@~8.0.0-rc.3":
- version "8.0.0-rc.3"
- resolved "https://registry.yarnpkg.com/@abp/virtual-file-explorer/-/virtual-file-explorer-8.0.0-rc.3.tgz#ca230f38dbe20403d09c1eefc8673c9cb33d7dcf"
- integrity sha512-RnAoApYkikG3JagAk6ApGX4c9Xvy0DctLyFW0XeC1upL5XbrIRrl2j89xwlfbZEUbFgmTILJ+BZ5uzfMczCtbw==
+"@abp/virtual-file-explorer@~8.0.0":
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@abp/virtual-file-explorer/-/virtual-file-explorer-8.0.0.tgz#9e24742aaf5901df9ed4a41f62c2eb7550965211"
+ integrity sha512-ACXuXR7ktoGkQlrUk26omNYguQGFL0o1uNh/Uwv+CA3qP+tSIefsC88Ifzz/TGfKDoHP9WeOkg31pVY+eM877g==
dependencies:
- "@abp/clipboard" "~8.0.0-rc.3"
- "@abp/prismjs" "~8.0.0-rc.3"
+ "@abp/clipboard" "~8.0.0"
+ "@abp/prismjs" "~8.0.0"
"@fortawesome/fontawesome-free@^5.15.4":
version "5.15.4"
diff --git a/npm/lerna.json b/npm/lerna.json
index 082e3af0ed..be2c26948e 100644
--- a/npm/lerna.json
+++ b/npm/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"packages": [
"packs/*"
],
diff --git a/npm/ng-packs/package.json b/npm/ng-packs/package.json
index 8cf20df565..98f4ba9762 100644
--- a/npm/ng-packs/package.json
+++ b/npm/ng-packs/package.json
@@ -45,7 +45,7 @@
"private": true,
"devDependencies": {
"@abp/ng.theme.lepton-x": "~3.0.0-rc.1",
- "@abp/utils": "~8.0.0-rc.3",
+ "@abp/utils": "~8.0.0",
"@angular-devkit/build-angular": "~17.0.0",
"@angular-devkit/core": "~17.0.0",
"@angular-devkit/schematics": "~17.0.0",
diff --git a/npm/ng-packs/packages/account-core/package.json b/npm/ng-packs/packages/account-core/package.json
index dcacb3dfda..f971344fee 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"peerDependencies": {
- "@abp/ng.core": "~8.0.0-rc.3",
- "@abp/ng.theme.shared": "~8.0.0-rc.3",
+ "@abp/ng.core": "~8.0.0",
+ "@abp/ng.theme.shared": "~8.0.0",
"@angular/common": ">=12.0.0",
"@angular/core": ">=12.0.0"
},
diff --git a/npm/ng-packs/packages/account/package.json b/npm/ng-packs/packages/account/package.json
index d6d3dda753..86543885e9 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.account.core": "~8.0.0-rc.3",
- "@abp/ng.theme.shared": "~8.0.0-rc.3",
+ "@abp/ng.account.core": "~8.0.0",
+ "@abp/ng.theme.shared": "~8.0.0",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/components/package.json b/npm/ng-packs/packages/components/package.json
index b811cc2bb9..679afdf36c 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"peerDependencies": {
- "@abp/ng.core": ">=8.0.0-rc.3",
- "@abp/ng.theme.shared": ">=8.0.0-rc.3"
+ "@abp/ng.core": ">=8.0.0",
+ "@abp/ng.theme.shared": ">=8.0.0"
},
"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 aed7250481..d7c7b9bc6a 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/utils": "~8.0.0-rc.3",
+ "@abp/utils": "~8.0.0",
"angular-oauth2-oidc": "^15.0.1",
"just-clone": "^6.1.1",
"just-compare": "^2.3.0",
diff --git a/npm/ng-packs/packages/feature-management/package.json b/npm/ng-packs/packages/feature-management/package.json
index a5e47fe6b4..2c7305782f 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.theme.shared": "~8.0.0-rc.3",
+ "@abp/ng.theme.shared": "~8.0.0",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/generators/package.json b/npm/ng-packs/packages/generators/package.json
index ba6f59179a..81ed8241d1 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"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 b062a8a6df..ddbf0cc3b7 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.components": "~8.0.0-rc.3",
- "@abp/ng.permission-management": "~8.0.0-rc.3",
- "@abp/ng.theme.shared": "~8.0.0-rc.3",
+ "@abp/ng.components": "~8.0.0",
+ "@abp/ng.permission-management": "~8.0.0",
+ "@abp/ng.theme.shared": "~8.0.0",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/oauth/package.json b/npm/ng-packs/packages/oauth/package.json
index b4e693b437..77b337c645 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.core": "~8.0.0-rc.3",
- "@abp/utils": "~8.0.0-rc.3",
+ "@abp/ng.core": "~8.0.0",
+ "@abp/utils": "~8.0.0",
"angular-oauth2-oidc": "^15.0.1",
"just-clone": "^6.1.1",
"just-compare": "^2.3.0",
diff --git a/npm/ng-packs/packages/permission-management/package.json b/npm/ng-packs/packages/permission-management/package.json
index 8a063bed25..09a56acdb8 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.theme.shared": "~8.0.0-rc.3",
+ "@abp/ng.theme.shared": "~8.0.0",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/schematics/package.json b/npm/ng-packs/packages/schematics/package.json
index 79183a8c53..66928e3371 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"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 883c2cdf74..ed5126a635 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.components": "~8.0.0-rc.3",
- "@abp/ng.theme.shared": "~8.0.0-rc.3",
+ "@abp/ng.components": "~8.0.0",
+ "@abp/ng.theme.shared": "~8.0.0",
"tslib": "^2.0.0"
},
"publishConfig": {
diff --git a/npm/ng-packs/packages/tenant-management/package.json b/npm/ng-packs/packages/tenant-management/package.json
index 15f41d16d7..aba3033a15 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.feature-management": "~8.0.0-rc.3",
- "@abp/ng.theme.shared": "~8.0.0-rc.3",
+ "@abp/ng.feature-management": "~8.0.0",
+ "@abp/ng.theme.shared": "~8.0.0",
"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 d0535e2473..9bc884cb43 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.account.core": "~8.0.0-rc.3",
- "@abp/ng.theme.shared": "~8.0.0-rc.3",
+ "@abp/ng.account.core": "~8.0.0",
+ "@abp/ng.theme.shared": "~8.0.0",
"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 d53bf576b5..df585dc89a 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
- "@abp/ng.core": "~8.0.0-rc.3",
+ "@abp/ng.core": "~8.0.0",
"@fortawesome/fontawesome-free": "^5.15.4",
"@ng-bootstrap/ng-bootstrap": "~16.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 d893773b9d..8e3c6c32a2 100644
--- a/npm/packs/anchor-js/package.json
+++ b/npm/packs/anchor-js/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/anchor-js",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"anchor-js": "^4.3.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/aspnetcore.components.server.basictheme/package.json b/npm/packs/aspnetcore.components.server.basictheme/package.json
index 7a7a5e10a0..a44cccf4f9 100644
--- a/npm/packs/aspnetcore.components.server.basictheme/package.json
+++ b/npm/packs/aspnetcore.components.server.basictheme/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/aspnetcore.components.server.basictheme",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/aspnetcore.components.server.theming": "~8.0.0-rc.3"
+ "@abp/aspnetcore.components.server.theming": "~8.0.0"
},
"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 eb94b67d78..55a55594be 100644
--- a/npm/packs/aspnetcore.components.server.theming/package.json
+++ b/npm/packs/aspnetcore.components.server.theming/package.json
@@ -1,12 +1,12 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/aspnetcore.components.server.theming",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/bootstrap": "~8.0.0-rc.3",
- "@abp/font-awesome": "~8.0.0-rc.3"
+ "@abp/bootstrap": "~8.0.0",
+ "@abp/font-awesome": "~8.0.0"
},
"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 35f01b2e86..763c01750d 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/aspnetcore.mvc.ui.theme.basic",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.shared": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.shared": "~8.0.0"
},
"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 3bb7d4c290..6492de8bbc 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/aspnetcore.mvc.ui.theme.shared",
"repository": {
"type": "git",
@@ -10,22 +10,22 @@
"access": "public"
},
"dependencies": {
- "@abp/aspnetcore.mvc.ui": "~8.0.0-rc.3",
- "@abp/bootstrap": "~8.0.0-rc.3",
- "@abp/bootstrap-datepicker": "~8.0.0-rc.3",
- "@abp/bootstrap-daterangepicker": "~8.0.0-rc.3",
- "@abp/datatables.net-bs5": "~8.0.0-rc.3",
- "@abp/font-awesome": "~8.0.0-rc.3",
- "@abp/jquery-form": "~8.0.0-rc.3",
- "@abp/jquery-validation-unobtrusive": "~8.0.0-rc.3",
- "@abp/lodash": "~8.0.0-rc.3",
- "@abp/luxon": "~8.0.0-rc.3",
- "@abp/malihu-custom-scrollbar-plugin": "~8.0.0-rc.3",
- "@abp/moment": "~8.0.0-rc.3",
- "@abp/select2": "~8.0.0-rc.3",
- "@abp/sweetalert2": "~8.0.0-rc.3",
- "@abp/timeago": "~8.0.0-rc.3",
- "@abp/toastr": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui": "~8.0.0",
+ "@abp/bootstrap": "~8.0.0",
+ "@abp/bootstrap-datepicker": "~8.0.0",
+ "@abp/bootstrap-daterangepicker": "~8.0.0",
+ "@abp/datatables.net-bs5": "~8.0.0",
+ "@abp/font-awesome": "~8.0.0",
+ "@abp/jquery-form": "~8.0.0",
+ "@abp/jquery-validation-unobtrusive": "~8.0.0",
+ "@abp/lodash": "~8.0.0",
+ "@abp/luxon": "~8.0.0",
+ "@abp/malihu-custom-scrollbar-plugin": "~8.0.0",
+ "@abp/moment": "~8.0.0",
+ "@abp/select2": "~8.0.0",
+ "@abp/sweetalert2": "~8.0.0",
+ "@abp/timeago": "~8.0.0",
+ "@abp/toastr": "~8.0.0"
},
"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 ed6cd13101..3eda28ae66 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": "8.0.0-rc.3",
+ "version": "8.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/npm/packs/aspnetcore.mvc.ui/package.json b/npm/packs/aspnetcore.mvc.ui/package.json
index 8b90bd2e28..929960a684 100644
--- a/npm/packs/aspnetcore.mvc.ui/package.json
+++ b/npm/packs/aspnetcore.mvc.ui/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/aspnetcore.mvc.ui",
"repository": {
"type": "git",
diff --git a/npm/packs/blogging/package.json b/npm/packs/blogging/package.json
index 7c27b34e5b..df8048111f 100644
--- a/npm/packs/blogging/package.json
+++ b/npm/packs/blogging/package.json
@@ -1,14 +1,14 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/blogging",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/aspnetcore.mvc.ui.theme.shared": "~8.0.0-rc.3",
- "@abp/owl.carousel": "~8.0.0-rc.3",
- "@abp/prismjs": "~8.0.0-rc.3",
- "@abp/tui-editor": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.shared": "~8.0.0",
+ "@abp/owl.carousel": "~8.0.0",
+ "@abp/prismjs": "~8.0.0",
+ "@abp/tui-editor": "~8.0.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/bootstrap-datepicker/package.json b/npm/packs/bootstrap-datepicker/package.json
index d2bb9196b2..52cdef161a 100644
--- a/npm/packs/bootstrap-datepicker/package.json
+++ b/npm/packs/bootstrap-datepicker/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/bootstrap-datepicker",
"repository": {
"type": "git",
diff --git a/npm/packs/bootstrap-daterangepicker/package.json b/npm/packs/bootstrap-daterangepicker/package.json
index b98ca440c9..1d2b4e0e46 100644
--- a/npm/packs/bootstrap-daterangepicker/package.json
+++ b/npm/packs/bootstrap-daterangepicker/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/bootstrap-daterangepicker",
"repository": {
"type": "git",
diff --git a/npm/packs/bootstrap/package.json b/npm/packs/bootstrap/package.json
index 905e6502de..d7cb48c80b 100644
--- a/npm/packs/bootstrap/package.json
+++ b/npm/packs/bootstrap/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/bootstrap",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"bootstrap": "^5.1.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/chart.js/package.json b/npm/packs/chart.js/package.json
index 05bc3bde63..1b5ed535aa 100644
--- a/npm/packs/chart.js/package.json
+++ b/npm/packs/chart.js/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/chart.js",
"publishConfig": {
"access": "public"
diff --git a/npm/packs/clipboard/package.json b/npm/packs/clipboard/package.json
index 98d9fe7569..9bc955c256 100644
--- a/npm/packs/clipboard/package.json
+++ b/npm/packs/clipboard/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/clipboard",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"clipboard": "^2.0.8"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/cms-kit.admin/package.json b/npm/packs/cms-kit.admin/package.json
index 7836bb69be..2c40155633 100644
--- a/npm/packs/cms-kit.admin/package.json
+++ b/npm/packs/cms-kit.admin/package.json
@@ -1,15 +1,15 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/cms-kit.admin",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/codemirror": "~8.0.0-rc.3",
- "@abp/jstree": "~8.0.0-rc.3",
- "@abp/slugify": "~8.0.0-rc.3",
- "@abp/tui-editor": "~8.0.0-rc.3",
- "@abp/uppy": "~8.0.0-rc.3"
+ "@abp/codemirror": "~8.0.0",
+ "@abp/jstree": "~8.0.0",
+ "@abp/slugify": "~8.0.0",
+ "@abp/tui-editor": "~8.0.0",
+ "@abp/uppy": "~8.0.0"
},
"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 e5cc75230e..f4b47bdb36 100644
--- a/npm/packs/cms-kit.public/package.json
+++ b/npm/packs/cms-kit.public/package.json
@@ -1,12 +1,12 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/cms-kit.public",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/highlight.js": "~8.0.0-rc.3",
- "@abp/star-rating-svg": "~8.0.0-rc.3"
+ "@abp/highlight.js": "~8.0.0",
+ "@abp/star-rating-svg": "~8.0.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/cms-kit/package.json b/npm/packs/cms-kit/package.json
index 04b2245ad9..79acf3cbf8 100644
--- a/npm/packs/cms-kit/package.json
+++ b/npm/packs/cms-kit/package.json
@@ -1,12 +1,12 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/cms-kit",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/cms-kit.admin": "~8.0.0-rc.3",
- "@abp/cms-kit.public": "~8.0.0-rc.3"
+ "@abp/cms-kit.admin": "~8.0.0",
+ "@abp/cms-kit.public": "~8.0.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/codemirror/package.json b/npm/packs/codemirror/package.json
index 0558ed3b79..9184450e2d 100644
--- a/npm/packs/codemirror/package.json
+++ b/npm/packs/codemirror/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/codemirror",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"codemirror": "^5.65.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/core/package.json b/npm/packs/core/package.json
index bbebd1b941..d39272eca5 100644
--- a/npm/packs/core/package.json
+++ b/npm/packs/core/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/core",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/utils": "~8.0.0-rc.3"
+ "@abp/utils": "~8.0.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/cropperjs/package.json b/npm/packs/cropperjs/package.json
index 5be37481b0..3f302ec2ab 100644
--- a/npm/packs/cropperjs/package.json
+++ b/npm/packs/cropperjs/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/cropperjs",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"cropperjs": "^1.5.12"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/datatables.net-bs4/package.json b/npm/packs/datatables.net-bs4/package.json
index 26e8768af1..5b1adae492 100644
--- a/npm/packs/datatables.net-bs4/package.json
+++ b/npm/packs/datatables.net-bs4/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/datatables.net-bs4",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/datatables.net": "~8.0.0-rc.3",
+ "@abp/datatables.net": "~8.0.0",
"datatables.net-bs4": "^1.11.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/datatables.net-bs5/package.json b/npm/packs/datatables.net-bs5/package.json
index 04e4a8b628..2d0ab947d4 100644
--- a/npm/packs/datatables.net-bs5/package.json
+++ b/npm/packs/datatables.net-bs5/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/datatables.net-bs5",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/datatables.net": "~8.0.0-rc.3",
+ "@abp/datatables.net": "~8.0.0",
"datatables.net-bs5": "^1.11.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/datatables.net/package.json b/npm/packs/datatables.net/package.json
index 25208449f3..cd1165d551 100644
--- a/npm/packs/datatables.net/package.json
+++ b/npm/packs/datatables.net/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/datatables.net",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~8.0.0-rc.3",
+ "@abp/jquery": "~8.0.0",
"datatables.net": "^1.11.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/docs/package.json b/npm/packs/docs/package.json
index e1a5bda82b..1470d1a483 100644
--- a/npm/packs/docs/package.json
+++ b/npm/packs/docs/package.json
@@ -1,15 +1,15 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/docs",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/anchor-js": "~8.0.0-rc.3",
- "@abp/clipboard": "~8.0.0-rc.3",
- "@abp/malihu-custom-scrollbar-plugin": "~8.0.0-rc.3",
- "@abp/popper.js": "~8.0.0-rc.3",
- "@abp/prismjs": "~8.0.0-rc.3"
+ "@abp/anchor-js": "~8.0.0",
+ "@abp/clipboard": "~8.0.0",
+ "@abp/malihu-custom-scrollbar-plugin": "~8.0.0",
+ "@abp/popper.js": "~8.0.0",
+ "@abp/prismjs": "~8.0.0"
},
"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 739f3546fe..ab60a849f4 100644
--- a/npm/packs/flag-icon-css/package.json
+++ b/npm/packs/flag-icon-css/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"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 b28d714dbb..d576001794 100644
--- a/npm/packs/flag-icons/package.json
+++ b/npm/packs/flag-icons/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/flag-icons",
"publishConfig": {
"access": "public"
diff --git a/npm/packs/font-awesome/package.json b/npm/packs/font-awesome/package.json
index e302b65261..0e70a9b948 100644
--- a/npm/packs/font-awesome/package.json
+++ b/npm/packs/font-awesome/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/font-awesome",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"@fortawesome/fontawesome-free": "^5.15.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/highlight.js/package.json b/npm/packs/highlight.js/package.json
index 0ce2559107..42f56a38c5 100644
--- a/npm/packs/highlight.js/package.json
+++ b/npm/packs/highlight.js/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/highlight.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"@highlightjs/cdn-assets": "~11.4.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/jquery-form/package.json b/npm/packs/jquery-form/package.json
index 53583db517..e73c628e71 100644
--- a/npm/packs/jquery-form/package.json
+++ b/npm/packs/jquery-form/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/jquery-form",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~8.0.0-rc.3",
+ "@abp/jquery": "~8.0.0",
"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 83631a9717..b80c4ec98b 100644
--- a/npm/packs/jquery-validation-unobtrusive/package.json
+++ b/npm/packs/jquery-validation-unobtrusive/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/jquery-validation-unobtrusive",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery-validation": "~8.0.0-rc.3",
+ "@abp/jquery-validation": "~8.0.0",
"jquery-validation-unobtrusive": "^3.2.12"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/jquery-validation/package.json b/npm/packs/jquery-validation/package.json
index 6aa3586a05..cbd78c2d55 100644
--- a/npm/packs/jquery-validation/package.json
+++ b/npm/packs/jquery-validation/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/jquery-validation",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~8.0.0-rc.3",
+ "@abp/jquery": "~8.0.0",
"jquery-validation": "^1.19.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/jquery/package.json b/npm/packs/jquery/package.json
index a9a6125dc1..f8648d7b38 100644
--- a/npm/packs/jquery/package.json
+++ b/npm/packs/jquery/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/jquery",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"jquery": "~3.6.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/jstree/package.json b/npm/packs/jstree/package.json
index ac83a36238..4ce6194f28 100644
--- a/npm/packs/jstree/package.json
+++ b/npm/packs/jstree/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/jstree",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~8.0.0-rc.3",
+ "@abp/jquery": "~8.0.0",
"jstree": "^3.3.12"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/lodash/package.json b/npm/packs/lodash/package.json
index ac38dfa9e6..c7ce404679 100644
--- a/npm/packs/lodash/package.json
+++ b/npm/packs/lodash/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/lodash",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"lodash": "^4.17.21"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/luxon/package.json b/npm/packs/luxon/package.json
index 418ec50bec..278bced1a7 100644
--- a/npm/packs/luxon/package.json
+++ b/npm/packs/luxon/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/luxon",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"luxon": "^2.3.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/malihu-custom-scrollbar-plugin/package.json b/npm/packs/malihu-custom-scrollbar-plugin/package.json
index abd30046b7..1ab07dd380 100644
--- a/npm/packs/malihu-custom-scrollbar-plugin/package.json
+++ b/npm/packs/malihu-custom-scrollbar-plugin/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/malihu-custom-scrollbar-plugin",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"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 93112746f2..96039de852 100644
--- a/npm/packs/markdown-it/package.json
+++ b/npm/packs/markdown-it/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/markdown-it",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"markdown-it": "^12.3.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/moment/package.json b/npm/packs/moment/package.json
index f2216cd7b5..d449b888c7 100644
--- a/npm/packs/moment/package.json
+++ b/npm/packs/moment/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/moment",
"repository": {
"type": "git",
diff --git a/npm/packs/owl.carousel/package.json b/npm/packs/owl.carousel/package.json
index 3a3d34a031..28a4241375 100644
--- a/npm/packs/owl.carousel/package.json
+++ b/npm/packs/owl.carousel/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/owl.carousel",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"owl.carousel": "^2.3.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/popper.js/package.json b/npm/packs/popper.js/package.json
index 37ced4105b..8aa57bc91e 100644
--- a/npm/packs/popper.js/package.json
+++ b/npm/packs/popper.js/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/popper.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"@popperjs/core": "^2.11.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/prismjs/package.json b/npm/packs/prismjs/package.json
index dd64d0e3b0..402bfa1f87 100644
--- a/npm/packs/prismjs/package.json
+++ b/npm/packs/prismjs/package.json
@@ -1,12 +1,12 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/prismjs",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/clipboard": "~8.0.0-rc.3",
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/clipboard": "~8.0.0",
+ "@abp/core": "~8.0.0",
"prismjs": "^1.26.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/qrcode/package.json b/npm/packs/qrcode/package.json
index 744f86aa9f..5b226ead5e 100644
--- a/npm/packs/qrcode/package.json
+++ b/npm/packs/qrcode/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/qrcode",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3"
+ "@abp/core": "~8.0.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/select2/package.json b/npm/packs/select2/package.json
index 5ba519f860..c388e98df6 100644
--- a/npm/packs/select2/package.json
+++ b/npm/packs/select2/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/select2",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"select2": "^4.0.13"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/signalr/package.json b/npm/packs/signalr/package.json
index b625dd1d07..44b8dd87b8 100644
--- a/npm/packs/signalr/package.json
+++ b/npm/packs/signalr/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/signalr",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"@microsoft/signalr": "~6.0.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/slugify/package.json b/npm/packs/slugify/package.json
index cbafd6a8be..4374fea5a5 100644
--- a/npm/packs/slugify/package.json
+++ b/npm/packs/slugify/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"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 bc05c1f27f..0bb3b83df8 100644
--- a/npm/packs/star-rating-svg/package.json
+++ b/npm/packs/star-rating-svg/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/star-rating-svg",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~8.0.0-rc.3",
+ "@abp/jquery": "~8.0.0",
"star-rating-svg": "^3.5.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/sweetalert2/package.json b/npm/packs/sweetalert2/package.json
index 6698d606b2..399476a81c 100644
--- a/npm/packs/sweetalert2/package.json
+++ b/npm/packs/sweetalert2/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/sweetalert2",
"publishConfig": {
"access": "public"
@@ -10,7 +10,7 @@
"directory": "npm/packs/sweetalert2"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"sweetalert2": "^11.3.6"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/timeago/package.json b/npm/packs/timeago/package.json
index 39ed17fcbf..9c0a5938bb 100644
--- a/npm/packs/timeago/package.json
+++ b/npm/packs/timeago/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/timeago",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~8.0.0-rc.3",
+ "@abp/jquery": "~8.0.0",
"timeago": "^1.6.7"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/toastr/package.json b/npm/packs/toastr/package.json
index 3574cee15c..67ef228441 100644
--- a/npm/packs/toastr/package.json
+++ b/npm/packs/toastr/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/toastr",
"repository": {
"type": "git",
@@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~8.0.0-rc.3",
+ "@abp/jquery": "~8.0.0",
"toastr": "^2.1.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/tui-editor/package.json b/npm/packs/tui-editor/package.json
index c83b7dce2a..133b0bf0f3 100644
--- a/npm/packs/tui-editor/package.json
+++ b/npm/packs/tui-editor/package.json
@@ -1,12 +1,12 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/tui-editor",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/jquery": "~8.0.0-rc.3",
- "@abp/prismjs": "~8.0.0-rc.3"
+ "@abp/jquery": "~8.0.0",
+ "@abp/prismjs": "~8.0.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/uppy/package.json b/npm/packs/uppy/package.json
index 9e39efab87..5c47e2caf1 100644
--- a/npm/packs/uppy/package.json
+++ b/npm/packs/uppy/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/uppy",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"uppy": "^1.16.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
diff --git a/npm/packs/utils/package.json b/npm/packs/utils/package.json
index 69658e3340..8a523f9e3c 100644
--- a/npm/packs/utils/package.json
+++ b/npm/packs/utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@abp/utils",
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"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 f3f54bb485..d41be2544d 100644
--- a/npm/packs/vee-validate/package.json
+++ b/npm/packs/vee-validate/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/vee-validate",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/vue": "~8.0.0-rc.3",
+ "@abp/vue": "~8.0.0",
"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 9ed9d1d265..055a84ce2f 100644
--- a/npm/packs/virtual-file-explorer/package.json
+++ b/npm/packs/virtual-file-explorer/package.json
@@ -1,12 +1,12 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/virtual-file-explorer",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/clipboard": "~8.0.0-rc.3",
- "@abp/prismjs": "~8.0.0-rc.3"
+ "@abp/clipboard": "~8.0.0",
+ "@abp/prismjs": "~8.0.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431",
"homepage": "https://abp.io",
diff --git a/npm/packs/vue/package.json b/npm/packs/vue/package.json
index b987f78898..1b1470707f 100644
--- a/npm/packs/vue/package.json
+++ b/npm/packs/vue/package.json
@@ -1,5 +1,5 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/vue",
"publishConfig": {
"access": "public"
diff --git a/npm/packs/zxcvbn/package.json b/npm/packs/zxcvbn/package.json
index 0a1db65280..6ef1e6e53e 100644
--- a/npm/packs/zxcvbn/package.json
+++ b/npm/packs/zxcvbn/package.json
@@ -1,11 +1,11 @@
{
- "version": "8.0.0-rc.3",
+ "version": "8.0.0",
"name": "@abp/zxcvbn",
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@abp/core": "~8.0.0-rc.3",
+ "@abp/core": "~8.0.0",
"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 0bb7753343..bc4085e6f6 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 cdc73947b4..a017d2fc2f 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 adeb674373..84c8a65e18 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.BasicTheme.SourceCode/Volo.Abp.BasicTheme.SourceCode.zip b/source-code/Volo.Abp.BasicTheme.SourceCode/Volo.Abp.BasicTheme.SourceCode.zip
index e9d172467b..417cbe0653 100644
Binary files a/source-code/Volo.Abp.BasicTheme.SourceCode/Volo.Abp.BasicTheme.SourceCode.zip and b/source-code/Volo.Abp.BasicTheme.SourceCode/Volo.Abp.BasicTheme.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 07d0b6f132..5d85b2262c 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 5442e83c75..9c9dedb835 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 6ab556e660..01bf38ad6a 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 721d177add..f5fd5f1061 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 0543c4f3a0..1001dcd663 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 e87ac14749..7e32553806 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 b2f5a02029..ed38de2318 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 64be6d31c3..9b0b3edc8b 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 1e46b78f3d..7a8b31dcde 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 102d1e1290..e10c857fb1 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 74927753ca..98bf1fc655 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.ClientSimulation.SourceCode/Volo.ClientSimulation.SourceCode.zip b/source-code/Volo.ClientSimulation.SourceCode/Volo.ClientSimulation.SourceCode.zip
index 2c0e7c797c..2ab25dc27e 100644
Binary files a/source-code/Volo.ClientSimulation.SourceCode/Volo.ClientSimulation.SourceCode.zip and b/source-code/Volo.ClientSimulation.SourceCode/Volo.ClientSimulation.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 80170cbe30..13e400afa8 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 a92143c46a..76f1ea1441 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 f474655bc2..f2a0c03a3a 100644
--- a/templates/app-nolayers/angular/package.json
+++ b/templates/app-nolayers/angular/package.json
@@ -12,14 +12,14 @@
},
"private": true,
"dependencies": {
- "@abp/ng.account": "~8.0.0-rc.3",
- "@abp/ng.components": "~8.0.0-rc.3",
- "@abp/ng.core": "~8.0.0-rc.3",
- "@abp/ng.oauth": "~8.0.0-rc.3",
- "@abp/ng.identity": "~8.0.0-rc.3",
- "@abp/ng.setting-management": "~8.0.0-rc.3",
- "@abp/ng.tenant-management": "~8.0.0-rc.3",
- "@abp/ng.theme.shared": "~8.0.0-rc.3",
+ "@abp/ng.account": "~8.0.0",
+ "@abp/ng.components": "~8.0.0",
+ "@abp/ng.core": "~8.0.0",
+ "@abp/ng.oauth": "~8.0.0",
+ "@abp/ng.identity": "~8.0.0",
+ "@abp/ng.setting-management": "~8.0.0",
+ "@abp/ng.tenant-management": "~8.0.0",
+ "@abp/ng.theme.shared": "~8.0.0",
"@abp/ng.theme.lepton-x": "~3.0.0-rc.1",
"@angular/animations": "~17.0.0",
"@angular/common": "~17.0.0",
@@ -42,7 +42,7 @@
"@angular-eslint/eslint-plugin-template": "~17.0.0",
"@angular-eslint/schematics": "~17.0.0",
"@angular-eslint/template-parser": "~17.0.0",
- "@abp/ng.schematics": "~8.0.0-rc.3",
+ "@abp/ng.schematics": "~8.0.0",
"@angular/cli": "~17.0.0",
"@angular/compiler-cli": "~17.0.0",
"@angular/language-service": "~17.0.0",
diff --git a/templates/app/angular/package.json b/templates/app/angular/package.json
index dc4331e08c..ca0afa8312 100644
--- a/templates/app/angular/package.json
+++ b/templates/app/angular/package.json
@@ -12,15 +12,15 @@
},
"private": true,
"dependencies": {
- "@abp/ng.account": "~8.0.0-rc.3",
- "@abp/ng.components": "~8.0.0-rc.3",
- "@abp/ng.core": "~8.0.0-rc.3",
- "@abp/ng.identity": "~8.0.0-rc.3",
- "@abp/ng.oauth": "~8.0.0-rc.3",
- "@abp/ng.setting-management": "~8.0.0-rc.3",
- "@abp/ng.tenant-management": "~8.0.0-rc.3",
+ "@abp/ng.account": "~8.0.0",
+ "@abp/ng.components": "~8.0.0",
+ "@abp/ng.core": "~8.0.0",
+ "@abp/ng.identity": "~8.0.0",
+ "@abp/ng.oauth": "~8.0.0",
+ "@abp/ng.setting-management": "~8.0.0",
+ "@abp/ng.tenant-management": "~8.0.0",
"@abp/ng.theme.lepton-x": "~3.0.0-rc.1",
- "@abp/ng.theme.shared": "~8.0.0-rc.3",
+ "@abp/ng.theme.shared": "~8.0.0",
"@angular/animations": "~17.0.0",
"@angular/common": "~17.0.0",
"@angular/compiler": "~17.0.0",
@@ -36,7 +36,7 @@
"zone.js": "~0.14.0"
},
"devDependencies": {
- "@abp/ng.schematics": "~8.0.0-rc.3",
+ "@abp/ng.schematics": "~8.0.0",
"@angular-devkit/build-angular": "~17.0.0",
"@angular-eslint/builder": "~17.0.0",
"@angular-eslint/eslint-plugin": "~17.0.0",
diff --git a/templates/module/angular/package.json b/templates/module/angular/package.json
index 6746fd018c..d438df44be 100644
--- a/templates/module/angular/package.json
+++ b/templates/module/angular/package.json
@@ -12,15 +12,15 @@
},
"private": true,
"dependencies": {
- "@abp/ng.account": "~8.0.0-rc.3",
- "@abp/ng.components": "~8.0.0-rc.3",
- "@abp/ng.core": "~8.0.0-rc.3",
- "@abp/ng.identity": "~8.0.0-rc.3",
- "@abp/ng.oauth": "~8.0.0-rc.3",
- "@abp/ng.setting-management": "~8.0.0-rc.3",
- "@abp/ng.tenant-management": "~8.0.0-rc.3",
- "@abp/ng.theme.basic": "~8.0.0-rc.3",
- "@abp/ng.theme.shared": "~8.0.0-rc.3",
+ "@abp/ng.account": "~8.0.0",
+ "@abp/ng.components": "~8.0.0",
+ "@abp/ng.core": "~8.0.0",
+ "@abp/ng.identity": "~8.0.0",
+ "@abp/ng.oauth": "~8.0.0",
+ "@abp/ng.setting-management": "~8.0.0",
+ "@abp/ng.tenant-management": "~8.0.0",
+ "@abp/ng.theme.basic": "~8.0.0",
+ "@abp/ng.theme.shared": "~8.0.0",
"@angular/animations": "~17.0.0",
"@angular/common": "~17.0.0",
"@angular/compiler": "~17.0.0",
@@ -35,7 +35,7 @@
"zone.js": "~0.14.0"
},
"devDependencies": {
- "@abp/ng.schematics": "~8.0.0-rc.3",
+ "@abp/ng.schematics": "~8.0.0",
"@angular-devkit/build-angular": "~17.0.0",
"@angular-eslint/builder": "~17.0.0",
"@angular-eslint/eslint-plugin": "~17.0.0",
diff --git a/templates/module/angular/projects/my-project-name/package.json b/templates/module/angular/projects/my-project-name/package.json
index dff836f88e..11eb369261 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": ">=14",
"@angular/core": ">=14",
- "@abp/ng.core": ">=8.0.0-rc.3",
- "@abp/ng.theme.shared": ">=8.0.0-rc.3"
+ "@abp/ng.core": ">=8.0.0",
+ "@abp/ng.theme.shared": ">=8.0.0"
},
"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 96f0301cda..359a0e7f59 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": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0"
}
}
diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/MyProjectNameHostMenuContributor.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/MyProjectNameHostMenuContributor.cs
index 29337dc2cd..4384d2fba9 100644
--- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/MyProjectNameHostMenuContributor.cs
+++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Host/MyProjectNameHostMenuContributor.cs
@@ -35,7 +35,8 @@ public class MyProjectNameHostMenuContributor : IMenuContributor
$"{openIddictUrl.EnsureEndsWith('/')}Account/Manage?returnUrl={_configuration["App:SelfUrl"]}",
icon: "fa fa-cog",
order: 1000,
- null).RequireAuthenticated());
+ null,
+ "_blank").RequireAuthenticated());
return Task.CompletedTask;
}
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 153702a4f0..7da2113940 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": "~8.0.0-rc.3",
- "@abp/aspnetcore.components.server.basictheme": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0",
+ "@abp/aspnetcore.components.server.basictheme": "~8.0.0"
}
}
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 0d892e1bbf..389a89a36f 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": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0"
}
}
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 0d892e1bbf..389a89a36f 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": "~8.0.0-rc.3"
+ "@abp/aspnetcore.mvc.ui.theme.basic": "~8.0.0"
}
}