diff --git a/docs/en/Nightly-Builds.md b/docs/en/Nightly-Builds.md index f835dcda9e..cf44b51045 100644 --- a/docs/en/Nightly-Builds.md +++ b/docs/en/Nightly-Builds.md @@ -1,19 +1,27 @@ # Nightly Builds -All framework & module packages are deployed to MyGet every night in weekdays. So, you can use or test the latest code without waiting the next release. +All framework & module packages are deployed to MyGet every night in weekdays. So, you can install the latest dev-brach builds to try out functionality prior to release. ## Install & Uninstall Nightly Preview Packages -The latest version of nightly preview packages can be installed by the running below command in the root folder of application: +The latest version of nightly preview packages can be installed by the running below command in the root folder of the application: ```bash abp switch-to-nightly ``` +> Note that this command doesn't create a project with nightly preview packages. Instead, it switches package versions of a project with the nightly preview packages. + +After this command, a new NuGet feed will be added to the `NuGet.Config` file of your project. Then, you can get the latest code of ABP Framework without waiting for the next release. + +> You can check the [abp-nightly gallery](https://www.myget.org/gallery/abp-nightly) to see the all nightly preview packages. + If you're using the ABP Framework nightly preview packages, you can switch back to stable version using this command: ```bash abp switch-to-stable ``` +ABP nightly NuGet feed is [https://www.myget.org/F/abp-nightly/api/v3/index.json](https://www.myget.org/F/abp-nightly/api/v3/index.json). + See the [ABP CLI documentation](./CLI.md) for more information. diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/Localization/AbpLanguagesController.cs b/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/Localization/AbpLanguagesController.cs index b697d1b194..dc44f12124 100644 --- a/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/Localization/AbpLanguagesController.cs +++ b/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/Localization/AbpLanguagesController.cs @@ -25,7 +25,7 @@ public class AbpLanguagesController : AbpController { if (!CultureHelper.IsValidCultureCode(culture)) { - throw new AbpException("Unknown language: " + culture + ". It must be a valid culture!"); + throw new AbpException("The selected culture is not valid! Make sure you enter a valid culture code."); } AbpRequestCultureCookieHelper.SetCultureCookie( diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectModification/AngularPwaSupportAdder.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectModification/AngularPwaSupportAdder.cs index 891ac28ecb..86880aaacf 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectModification/AngularPwaSupportAdder.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectModification/AngularPwaSupportAdder.cs @@ -30,6 +30,6 @@ public class AngularPwaSupportAdder : ITransientDependency { var directory = Path.GetDirectoryName(filePath).EnsureEndsWith(Path.DirectorySeparatorChar); - CmdHelper.RunCmd("ng add @angular/pwa --skip-confirmation", workingDirectory: directory); + CmdHelper.RunCmd("ng add @angular/pwa@13 --skip-confirmation", workingDirectory: directory); } } 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 76201505bd..644d8b3ff1 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": "^5.3.0", + "@abp/aspnetcore.mvc.ui.theme.shared": "^5.3.1", "highlight.js": "^9.13.1" }, "devDependencies": {} diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/yarn.lock b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/yarn.lock index 47b4380f81..26ed449e8d 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/yarn.lock +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/yarn.lock @@ -2,30 +2,30 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.shared@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.0.tgz#84e94845a247815ce981cda2d195944a350530b9" - integrity sha512-RwXxlncjidvh8Hgw91Hz1f5rnfG9hlNROr5bD/kxTUB47vIh/TIBd06UYrYw2/lqFLw5d6wd8q7VLuDjGUQbpg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~5.3.0" - "@abp/bootstrap" "~5.3.0" - "@abp/bootstrap-datepicker" "~5.3.0" - "@abp/datatables.net-bs5" "~5.3.0" - "@abp/font-awesome" "~5.3.0" - "@abp/jquery-form" "~5.3.0" - "@abp/jquery-validation-unobtrusive" "~5.3.0" - "@abp/lodash" "~5.3.0" - "@abp/luxon" "~5.3.0" - "@abp/malihu-custom-scrollbar-plugin" "~5.3.0" - "@abp/select2" "~5.3.0" - "@abp/sweetalert2" "~5.3.0" - "@abp/timeago" "~5.3.0" - "@abp/toastr" "~5.3.0" - -"@abp/aspnetcore.mvc.ui@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.0.tgz#e947fd1aecbd2aabc5db4c6a64b78f2690fcf0d4" - integrity sha512-en2YDb/hRG1MKkbli1PYcoeU9OLU0YPSahkIBSfOmMLntAe8y0c2+Xe09chXP4r+GoZu0zd9FM3qqCRZojrlug== +"@abp/aspnetcore.mvc.ui.theme.shared@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.1.tgz#7fe0aba80670bf4326251138dc7e12ea5830c919" + integrity sha512-ieS54bLQr4Aa96CnFEmuxe0ndeJpJMkq5eYSWAziH4i15jm7o+K2ouIL0K606lk1Sn/UrP8Yl+DRhxr4i4P8ow== + dependencies: + "@abp/aspnetcore.mvc.ui" "~5.3.1" + "@abp/bootstrap" "~5.3.1" + "@abp/bootstrap-datepicker" "~5.3.1" + "@abp/datatables.net-bs5" "~5.3.1" + "@abp/font-awesome" "~5.3.1" + "@abp/jquery-form" "~5.3.1" + "@abp/jquery-validation-unobtrusive" "~5.3.1" + "@abp/lodash" "~5.3.1" + "@abp/luxon" "~5.3.1" + "@abp/malihu-custom-scrollbar-plugin" "~5.3.1" + "@abp/select2" "~5.3.1" + "@abp/sweetalert2" "~5.3.1" + "@abp/timeago" "~5.3.1" + "@abp/toastr" "~5.3.1" + +"@abp/aspnetcore.mvc.ui@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.1.tgz#17ccf9a2a40cbd79e670a0cb5be74ac9eb17b963" + integrity sha512-UuXH0Lz7DqiGp47BC7xllT3Imf2Nk+eccOiVRwc9PAfHKnNOOJYxvDlHS0x8CM09qxM5EVaH7tfwOLSS09HXpg== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -34,144 +34,144 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.0.tgz#09c44954774d8f52ca8ff6699ad4dbb7cc0308c2" - integrity sha512-AQ26I0jgoCioW1/4XmQIyn1c1+CLv8KTb4Vd4ZbtdYGBkkkUe+JEAWpJSeXlJRr/XrOs0BKWp/fa7Nnwx8srLg== +"@abp/bootstrap-datepicker@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.1.tgz#241aebfbae0fa451d3e719776096b14bf77c08fa" + integrity sha512-gvP7SNEnPFYuLmIBp7QobveAGv8Rm/8JTmixCChQPPP9XX3u82ilKP2cgxVXm/4/jf0Gy7Gusn7urmTbTxeGEw== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.0.tgz#42dac2d2d6374f39d068a638687039c5c74df123" - integrity sha512-rg9mLcvT4JQRc1rIAhGYK1P2eMRJ1+GArQXV5l7k3FrVU+bRLKdoE6PNpuwXHpdlom4/dOgekfuWH/SAuY5kyw== +"@abp/bootstrap@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.1.tgz#f941afe2be2deaa1962a3626593451847dee5bd6" + integrity sha512-qPGeNFEaQF57b0viA0eHKA0cZ9b0gscOqE0o4ewHxnlRoRYiY3Ob9V6x6S85n2b7H6tDZOWAePXEgkV40yK/Bg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" bootstrap "^5.1.3" -"@abp/core@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.0.tgz#032724dd0c0b850204896ce0275c7f9c8f516740" - integrity sha512-Uk9h98jiEF1dItWrvWnYB6s/UNZZapvFSyJ4+piAsZmXOSAbrObV+s19n5xfUagQQTWn4+aU5+aChEcfWpYv9A== +"@abp/core@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.1.tgz#26890ab049d43db58f3a0fba2f4c50bd2fbf7811" + integrity sha512-7PBPDYq/s0T5H0iYaeCzqWF44jbiOkFlwGnXqZeKHt2cKZaMyCStgotrpap8qoZKlxuyxudFIzJrzJIEP0AN/Q== dependencies: - "@abp/utils" "~5.3.0" + "@abp/utils" "~5.3.1" -"@abp/datatables.net-bs5@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.0.tgz#84771ce4eb7229bed347a5904c891b08e3230422" - integrity sha512-FpKrgrjaBKVgFAnbBsrvDIJJOy8gbWCEHm5Jy2vFWXmx25fITMw/2ckBDH87yrZtCNVTSUbMIdHYOIHMPfSavQ== +"@abp/datatables.net-bs5@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.1.tgz#e380cc253a837a0629baec9dabb4e8919878cc38" + integrity sha512-LpGPWLvFsLkQjo5RTgEl24LbBokgsO1gv7/pVy/1oiXXCLTuVwJ8vYYKfDNkrrSLDUOJ9cCC0YUE5SRfDUystA== dependencies: - "@abp/datatables.net" "~5.3.0" + "@abp/datatables.net" "~5.3.1" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.0.tgz#dd27ae451df9551f5b815e10c87a8a89c6a38293" - integrity sha512-d4lQ09G7HY2gEN1lRAteCZzY0Fv3gPuUM+icgWm+UkmDZV9lhvovTQ58Xkwayw8vf+NPlit1eGMMQedn6MbeAQ== +"@abp/datatables.net@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.1.tgz#8200b5a3a719f51d21670b1420e3df48af4de42e" + integrity sha512-v30gkk4dcmWz260C8BA7uaU4kqpiC1wkgMvdzjPGefzYXsMftlcoX7GUvByWwTzlJnTphGvnIVJhnhX73VVDHg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" datatables.net "^1.11.4" -"@abp/font-awesome@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.0.tgz#ce1d5bb59bd597cc9717885917d4dd2eae1f8b9c" - integrity sha512-JX62EVfZSJ7pv75Gd3ya/3c3He0hXF7KmpTizUNd/EbeHuNJoCND5wwq5OAFV9Ld3vdcGJChNTydNa5RsBzrpg== +"@abp/font-awesome@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.1.tgz#2b4654b463b7858fc237219fd852ca0f41e4e062" + integrity sha512-LFKPjQgJmQ6GNqW3geluHMgV3WbisniAaK9tl6Pv8WOvPluvZGHTK5qjcAQVwM6Bj944VYeuvLo1ZCOoC/rWLg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.0.tgz#5ae9906f0cffaf3e043681a5dd80a014b4860f6b" - integrity sha512-ZTpXCImHirJDZjfnJRtSEHLIbWMTYkqtTv7Z3GMRKnI4fllpmuco9EWLAKjAfYPyc/QpTx+MYnUg5SsXORhJyQ== +"@abp/jquery-form@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.1.tgz#e17367af8dafcfbb352775fb6ab9182d1fd9cd63" + integrity sha512-s8XItBHKJuehprFy7xePWHxt8jMvjDmkmk2nEuJXj+gcZyVEEa3hBd4ykKDXFfmNrfS8aMy+VqA+VEA24Cmpww== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.0.tgz#ccf90a7840398e69e0a91ed6c32b80fa2eb82d14" - integrity sha512-6B3ywnpvPxpnxkrcXzjTjMWgKRImbzNPOZvv5ant/kQv3zXedV1GXSIILy+imX39FuDPslOmEfx8plwrNvIteA== +"@abp/jquery-validation-unobtrusive@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.1.tgz#7c5c31df1cd021b3eed618d914926b76dc7e9e6e" + integrity sha512-B5USCmF56eWQO+R4eZtMjURtoNGUEuAuBy4ltCPtZx0s6yn94Ooq4oYKqEbfnLoSsQshajUwBtqtlC6+YA612Q== dependencies: - "@abp/jquery-validation" "~5.3.0" + "@abp/jquery-validation" "~5.3.1" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.0.tgz#a21696e7d5d54ef8bcdc0e8bd2debb1da1f7f5cc" - integrity sha512-4z2I9iORf+z5SlN9crC/Gx3X5GAOVePD+WN8SaHSYr4VWYNe8TV8LvCZPilN56sIPt3jYvy0N+bI1tAuZPu/NQ== +"@abp/jquery-validation@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.1.tgz#b34c0e29e12843de4a407bc8775a2e560e4db923" + integrity sha512-lu2e47GwWmh/ahWA5bbeR9Gqqsy4a3htTIvnwWbtu7dnHVHA6469+uCt+0f+sVthDIL+cMwoYgcygMLIUHoFxg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-validation "^1.19.3" -"@abp/jquery@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.0.tgz#0279ee501ed774a788072c2ec8b003e348fec22c" - integrity sha512-rqYbU3LpsT7XT8ygn+TFVmjev5NlgEcDhGwQ8PraY1dEjlDbteeQ50N4adS8fdRfOM1UjGL19ueN3F8E5qNUSg== +"@abp/jquery@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.1.tgz#8f6032253d4c44b135c238a4efa010bee1ec5991" + integrity sha512-ngy9Kvy6lXrQBCxWi7t8I4Wudv87C2R50O/T4CZPfM2nwYLynopa+aI9r9VLhO/wIROyXX3C8UIpeLhQzm776w== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" jquery "~3.6.0" -"@abp/lodash@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.0.tgz#45f1dba7bb65b6599b4973d7e0c617dfd2c46c49" - integrity sha512-vQVMv58QuYttWBfLjJzIsw92JunGbWYsqk6pp6/JuoBls5UJtdP1F7vM4JgQxsscGYHFRZB3F4a3h1cxZ+dblQ== +"@abp/lodash@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.1.tgz#49c0806bae0858047faed75b6e9ed6207dc4cffc" + integrity sha512-QQshVHkNlunbhcmBG5E2wdZNcHYrTsNQjJNF6IZkeFszNRHu/k0u1bhszDwjPgEzeewTqMu8n44TzkbA8yP5GA== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" lodash "^4.17.21" -"@abp/luxon@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.0.tgz#8a6277046f6e38c3affbf79c06f8ac00d1ca8098" - integrity sha512-6tETR03i1NPJuDqSQWtpkOykdq/84awifQUqRyh+b8340wV7P54NqUMDXDit9sjITFDhq99V/R+Rj3PVjvJD3A== +"@abp/luxon@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.1.tgz#8d843023b05b157ff9ab23548c8d8c4e7101ae88" + integrity sha512-Jw8p5S9qHZkUrD1fx3nvpnBqn8Zb9jDiG6xdc6tY+v1aqDDwEqPUr7TqaLnY9GnZefiM3sYVwAh42nzPOwg9aQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.0.tgz#e6e12162aa50d3c3d98629378cec2f6fd5964338" - integrity sha512-GVwgAZQurH/tr4Hgmuby2dun//v1dT+wLGV4ZvjCJzBRs4FgrB+25pj4qKm20j6/NKRKc4V5re/b1y6njCubFQ== +"@abp/malihu-custom-scrollbar-plugin@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.1.tgz#7f0e4f2df325345a8e3be67456522cb035e3e962" + integrity sha512-ll49qD7bslt7+deMAFZ0DfveH/5ZsHyL2RLDg796ARz+H7fQpEhyNFeGETGj+HSOvAl3ivux2mxNCMYbXHR4RQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/select2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.0.tgz#aae202b87dc23dfc7c8fd933413a8dbeb2f5b683" - integrity sha512-0aIxdtzgONkrYnUN5ACkIIIhsC9e61QLRq3K+/98fjf7NkHOjG3Sptr8EKu5U3IQ2hNHgqBjPGYjkztGuxZ9kw== +"@abp/select2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.1.tgz#9a49aa983d52eecbd2dc2160349d45bd46324e36" + integrity sha512-ne4LJJy9n3V8BPtyU6voX4Bo0/GUrZBnI4Mkb0wRKNt1rxj7PhPXebsYYz090QJuJh8fuF2OHteNMBA7gMryLQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" select2 "^4.0.13" -"@abp/sweetalert2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.0.tgz#67379cfa4cb8884cb66b58f4cafa79960cf8426a" - integrity sha512-EBr8J7MDsYmSvOYxTbqsSmw6c2yLokHZe8A+EW2vsY9VYFXkoOJLVpCkCK4fhvHUv8/+Y5QnHW7bs1I6SKYXOw== +"@abp/sweetalert2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.1.tgz#676a3269fe4511fc4f81c3231ed9a96fe4c8f006" + integrity sha512-UDQrJiq8OfIDy3GSq7NJ4TKKEihzp6Qc06KGRdnN74lm4JsxxGUToSaD1AbyrLt53jZlRZK2NNc8IiyqPvyfbQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" sweetalert2 "^11.3.6" -"@abp/timeago@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.0.tgz#3aaef3edca333224ba6b3e81c8ad1ebaae51a2f4" - integrity sha512-FxtoPYxyk2CHeoloC6kaeCj5YtXH0rebhOEaCjrfyg9/Ec6LEkvpfC7RWlcsHaEUAtFXZegJDfOk066EPH7RHQ== +"@abp/timeago@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.1.tgz#069a4eb2725b0a183cb7609e1f48d8d857a606ba" + integrity sha512-+QWO9MTuf6X7sUXxoUGyoQ0EhoQUlRDdCPmwwcZyBzBf8q9A3hS+Rtmex3BqwRLDxL2vL78gbDpIBgPn/kFuUA== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" timeago "^1.6.7" -"@abp/toastr@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.0.tgz#8a002c19ea25ac6b042a25c0f9d289d03c93c2fb" - integrity sha512-gjb2O/XrYkX8IeCERIqlOYPh15WlF9LxGR6t9jeVF/p6BTX/yaWabYCFfB9SkU2pQ6xrGl7WmSTAC06JOAtPTA== +"@abp/toastr@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.1.tgz#4a18b293444f7f8a523b7255ea61fed838131f1c" + integrity sha512-gz5cl6sPu6b65h8VJ6ne+dkM0oVXSYBlDoKBYbDRjhH6i7yWUpcylY/lrOvWacNQBOagBy5bep1937aec1/BXQ== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" toastr "^2.1.4" -"@abp/utils@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.0.tgz#e93739074a3cd445a5a221209506b7e663050ca0" - integrity sha512-Nm+h+3PL10+rBFSh8UUuenmGM+OBlEoNQeGzHRmhOc6hJ3oqCogPzY+zkq0e4pksrwhjxAu/cgCEGLAoEXXycw== +"@abp/utils@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.1.tgz#ff238e3b70c6fffb1600d845c202961e1179c813" + integrity sha512-XVYrygoWq1ZHz4N7BSJ4P77wmd0geRhpyR5ztzyP1WaF2LaCRS63BjZ/a7xKdtioUby9GP5jSvMjBvwqVviYIQ== dependencies: just-compare "^1.3.0" 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 8b294fd2ef..8cb5c7cd0f 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": "^5.3.0", - "@abp/prismjs": "^5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1", + "@abp/prismjs": "^5.3.1" }, "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 c9f19af8be..0b948f67cf 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,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.0.tgz#dcdd73d8582c4d14438f70d765170398d5d582fb" - integrity sha512-H6UrafHRI1DHfIoi47gZWHKSanlyAkghtGgUO6GTmPqTubBXjl7Ky3owVUAXvFd49+72gwdCLA/DB0Khjc3Ayw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.0" - -"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.0.tgz#84e94845a247815ce981cda2d195944a350530b9" - integrity sha512-RwXxlncjidvh8Hgw91Hz1f5rnfG9hlNROr5bD/kxTUB47vIh/TIBd06UYrYw2/lqFLw5d6wd8q7VLuDjGUQbpg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~5.3.0" - "@abp/bootstrap" "~5.3.0" - "@abp/bootstrap-datepicker" "~5.3.0" - "@abp/datatables.net-bs5" "~5.3.0" - "@abp/font-awesome" "~5.3.0" - "@abp/jquery-form" "~5.3.0" - "@abp/jquery-validation-unobtrusive" "~5.3.0" - "@abp/lodash" "~5.3.0" - "@abp/luxon" "~5.3.0" - "@abp/malihu-custom-scrollbar-plugin" "~5.3.0" - "@abp/select2" "~5.3.0" - "@abp/sweetalert2" "~5.3.0" - "@abp/timeago" "~5.3.0" - "@abp/toastr" "~5.3.0" - -"@abp/aspnetcore.mvc.ui@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.0.tgz#e947fd1aecbd2aabc5db4c6a64b78f2690fcf0d4" - integrity sha512-en2YDb/hRG1MKkbli1PYcoeU9OLU0YPSahkIBSfOmMLntAe8y0c2+Xe09chXP4r+GoZu0zd9FM3qqCRZojrlug== +"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.1.tgz#469befe88cd7d3362112db9a5ce7cf3eae328b3e" + integrity sha512-qvzNICtvrNVllo7c8khvKw4LQ6MxwWcJar8PyOhgS+Pgtn4lT5rQqzGvaYKMiDyj5gjWGzPOzjU/vgR1uiGYNg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.1" + +"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.1.tgz#7fe0aba80670bf4326251138dc7e12ea5830c919" + integrity sha512-ieS54bLQr4Aa96CnFEmuxe0ndeJpJMkq5eYSWAziH4i15jm7o+K2ouIL0K606lk1Sn/UrP8Yl+DRhxr4i4P8ow== + dependencies: + "@abp/aspnetcore.mvc.ui" "~5.3.1" + "@abp/bootstrap" "~5.3.1" + "@abp/bootstrap-datepicker" "~5.3.1" + "@abp/datatables.net-bs5" "~5.3.1" + "@abp/font-awesome" "~5.3.1" + "@abp/jquery-form" "~5.3.1" + "@abp/jquery-validation-unobtrusive" "~5.3.1" + "@abp/lodash" "~5.3.1" + "@abp/luxon" "~5.3.1" + "@abp/malihu-custom-scrollbar-plugin" "~5.3.1" + "@abp/select2" "~5.3.1" + "@abp/sweetalert2" "~5.3.1" + "@abp/timeago" "~5.3.1" + "@abp/toastr" "~5.3.1" + +"@abp/aspnetcore.mvc.ui@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.1.tgz#17ccf9a2a40cbd79e670a0cb5be74ac9eb17b963" + integrity sha512-UuXH0Lz7DqiGp47BC7xllT3Imf2Nk+eccOiVRwc9PAfHKnNOOJYxvDlHS0x8CM09qxM5EVaH7tfwOLSS09HXpg== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,161 +41,161 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.0.tgz#09c44954774d8f52ca8ff6699ad4dbb7cc0308c2" - integrity sha512-AQ26I0jgoCioW1/4XmQIyn1c1+CLv8KTb4Vd4ZbtdYGBkkkUe+JEAWpJSeXlJRr/XrOs0BKWp/fa7Nnwx8srLg== +"@abp/bootstrap-datepicker@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.1.tgz#241aebfbae0fa451d3e719776096b14bf77c08fa" + integrity sha512-gvP7SNEnPFYuLmIBp7QobveAGv8Rm/8JTmixCChQPPP9XX3u82ilKP2cgxVXm/4/jf0Gy7Gusn7urmTbTxeGEw== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.0.tgz#42dac2d2d6374f39d068a638687039c5c74df123" - integrity sha512-rg9mLcvT4JQRc1rIAhGYK1P2eMRJ1+GArQXV5l7k3FrVU+bRLKdoE6PNpuwXHpdlom4/dOgekfuWH/SAuY5kyw== +"@abp/bootstrap@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.1.tgz#f941afe2be2deaa1962a3626593451847dee5bd6" + integrity sha512-qPGeNFEaQF57b0viA0eHKA0cZ9b0gscOqE0o4ewHxnlRoRYiY3Ob9V6x6S85n2b7H6tDZOWAePXEgkV40yK/Bg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" bootstrap "^5.1.3" -"@abp/clipboard@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-5.3.0.tgz#579bbc786d32c4e07c969073872b936575df7a9c" - integrity sha512-J55jQnzPOOAwo70GK9hAB3JxG7rz75tex+17QSFjW7/dXVWt1bPIDRHh/a1wiLEgYc6btsSGhptLtkYAfWpq6w== +"@abp/clipboard@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-5.3.1.tgz#aede839bfba487461d31589092a3f2b0a75a2925" + integrity sha512-XKxxjjT2x7+a6vrw2x6G//ntQGmRcvBz8KcxCXuWJ8cCrHb1x7ZEzIUU4rF6ee7BlnLoEIZ/dCF+s/93yPs9ng== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" clipboard "^2.0.8" -"@abp/core@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.0.tgz#032724dd0c0b850204896ce0275c7f9c8f516740" - integrity sha512-Uk9h98jiEF1dItWrvWnYB6s/UNZZapvFSyJ4+piAsZmXOSAbrObV+s19n5xfUagQQTWn4+aU5+aChEcfWpYv9A== +"@abp/core@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.1.tgz#26890ab049d43db58f3a0fba2f4c50bd2fbf7811" + integrity sha512-7PBPDYq/s0T5H0iYaeCzqWF44jbiOkFlwGnXqZeKHt2cKZaMyCStgotrpap8qoZKlxuyxudFIzJrzJIEP0AN/Q== dependencies: - "@abp/utils" "~5.3.0" + "@abp/utils" "~5.3.1" -"@abp/datatables.net-bs5@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.0.tgz#84771ce4eb7229bed347a5904c891b08e3230422" - integrity sha512-FpKrgrjaBKVgFAnbBsrvDIJJOy8gbWCEHm5Jy2vFWXmx25fITMw/2ckBDH87yrZtCNVTSUbMIdHYOIHMPfSavQ== +"@abp/datatables.net-bs5@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.1.tgz#e380cc253a837a0629baec9dabb4e8919878cc38" + integrity sha512-LpGPWLvFsLkQjo5RTgEl24LbBokgsO1gv7/pVy/1oiXXCLTuVwJ8vYYKfDNkrrSLDUOJ9cCC0YUE5SRfDUystA== dependencies: - "@abp/datatables.net" "~5.3.0" + "@abp/datatables.net" "~5.3.1" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.0.tgz#dd27ae451df9551f5b815e10c87a8a89c6a38293" - integrity sha512-d4lQ09G7HY2gEN1lRAteCZzY0Fv3gPuUM+icgWm+UkmDZV9lhvovTQ58Xkwayw8vf+NPlit1eGMMQedn6MbeAQ== +"@abp/datatables.net@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.1.tgz#8200b5a3a719f51d21670b1420e3df48af4de42e" + integrity sha512-v30gkk4dcmWz260C8BA7uaU4kqpiC1wkgMvdzjPGefzYXsMftlcoX7GUvByWwTzlJnTphGvnIVJhnhX73VVDHg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" datatables.net "^1.11.4" -"@abp/font-awesome@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.0.tgz#ce1d5bb59bd597cc9717885917d4dd2eae1f8b9c" - integrity sha512-JX62EVfZSJ7pv75Gd3ya/3c3He0hXF7KmpTizUNd/EbeHuNJoCND5wwq5OAFV9Ld3vdcGJChNTydNa5RsBzrpg== +"@abp/font-awesome@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.1.tgz#2b4654b463b7858fc237219fd852ca0f41e4e062" + integrity sha512-LFKPjQgJmQ6GNqW3geluHMgV3WbisniAaK9tl6Pv8WOvPluvZGHTK5qjcAQVwM6Bj944VYeuvLo1ZCOoC/rWLg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.0.tgz#5ae9906f0cffaf3e043681a5dd80a014b4860f6b" - integrity sha512-ZTpXCImHirJDZjfnJRtSEHLIbWMTYkqtTv7Z3GMRKnI4fllpmuco9EWLAKjAfYPyc/QpTx+MYnUg5SsXORhJyQ== +"@abp/jquery-form@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.1.tgz#e17367af8dafcfbb352775fb6ab9182d1fd9cd63" + integrity sha512-s8XItBHKJuehprFy7xePWHxt8jMvjDmkmk2nEuJXj+gcZyVEEa3hBd4ykKDXFfmNrfS8aMy+VqA+VEA24Cmpww== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.0.tgz#ccf90a7840398e69e0a91ed6c32b80fa2eb82d14" - integrity sha512-6B3ywnpvPxpnxkrcXzjTjMWgKRImbzNPOZvv5ant/kQv3zXedV1GXSIILy+imX39FuDPslOmEfx8plwrNvIteA== +"@abp/jquery-validation-unobtrusive@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.1.tgz#7c5c31df1cd021b3eed618d914926b76dc7e9e6e" + integrity sha512-B5USCmF56eWQO+R4eZtMjURtoNGUEuAuBy4ltCPtZx0s6yn94Ooq4oYKqEbfnLoSsQshajUwBtqtlC6+YA612Q== dependencies: - "@abp/jquery-validation" "~5.3.0" + "@abp/jquery-validation" "~5.3.1" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.0.tgz#a21696e7d5d54ef8bcdc0e8bd2debb1da1f7f5cc" - integrity sha512-4z2I9iORf+z5SlN9crC/Gx3X5GAOVePD+WN8SaHSYr4VWYNe8TV8LvCZPilN56sIPt3jYvy0N+bI1tAuZPu/NQ== +"@abp/jquery-validation@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.1.tgz#b34c0e29e12843de4a407bc8775a2e560e4db923" + integrity sha512-lu2e47GwWmh/ahWA5bbeR9Gqqsy4a3htTIvnwWbtu7dnHVHA6469+uCt+0f+sVthDIL+cMwoYgcygMLIUHoFxg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-validation "^1.19.3" -"@abp/jquery@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.0.tgz#0279ee501ed774a788072c2ec8b003e348fec22c" - integrity sha512-rqYbU3LpsT7XT8ygn+TFVmjev5NlgEcDhGwQ8PraY1dEjlDbteeQ50N4adS8fdRfOM1UjGL19ueN3F8E5qNUSg== +"@abp/jquery@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.1.tgz#8f6032253d4c44b135c238a4efa010bee1ec5991" + integrity sha512-ngy9Kvy6lXrQBCxWi7t8I4Wudv87C2R50O/T4CZPfM2nwYLynopa+aI9r9VLhO/wIROyXX3C8UIpeLhQzm776w== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" jquery "~3.6.0" -"@abp/lodash@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.0.tgz#45f1dba7bb65b6599b4973d7e0c617dfd2c46c49" - integrity sha512-vQVMv58QuYttWBfLjJzIsw92JunGbWYsqk6pp6/JuoBls5UJtdP1F7vM4JgQxsscGYHFRZB3F4a3h1cxZ+dblQ== +"@abp/lodash@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.1.tgz#49c0806bae0858047faed75b6e9ed6207dc4cffc" + integrity sha512-QQshVHkNlunbhcmBG5E2wdZNcHYrTsNQjJNF6IZkeFszNRHu/k0u1bhszDwjPgEzeewTqMu8n44TzkbA8yP5GA== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" lodash "^4.17.21" -"@abp/luxon@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.0.tgz#8a6277046f6e38c3affbf79c06f8ac00d1ca8098" - integrity sha512-6tETR03i1NPJuDqSQWtpkOykdq/84awifQUqRyh+b8340wV7P54NqUMDXDit9sjITFDhq99V/R+Rj3PVjvJD3A== +"@abp/luxon@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.1.tgz#8d843023b05b157ff9ab23548c8d8c4e7101ae88" + integrity sha512-Jw8p5S9qHZkUrD1fx3nvpnBqn8Zb9jDiG6xdc6tY+v1aqDDwEqPUr7TqaLnY9GnZefiM3sYVwAh42nzPOwg9aQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.0.tgz#e6e12162aa50d3c3d98629378cec2f6fd5964338" - integrity sha512-GVwgAZQurH/tr4Hgmuby2dun//v1dT+wLGV4ZvjCJzBRs4FgrB+25pj4qKm20j6/NKRKc4V5re/b1y6njCubFQ== +"@abp/malihu-custom-scrollbar-plugin@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.1.tgz#7f0e4f2df325345a8e3be67456522cb035e3e962" + integrity sha512-ll49qD7bslt7+deMAFZ0DfveH/5ZsHyL2RLDg796ARz+H7fQpEhyNFeGETGj+HSOvAl3ivux2mxNCMYbXHR4RQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/prismjs@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-5.3.0.tgz#658a371023d9a3de9ecfff1f10bae7a83064fac7" - integrity sha512-NPsYJ9oj/57vG+eVGpDkJcdPAx4WlXTVEUZWWxmaXuM9sHY1/2av975Qk8R5HG6fC74w3DrVCP8YQvU6jlaF1w== +"@abp/prismjs@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-5.3.1.tgz#46b7a7f456b60f3f0f3b92b0a645f30495db571b" + integrity sha512-21h2L4XTIKAuWqYCGKC/MrqledtWsToGLs8Tkk4ML9eQgnpOwGvWyD/5wywlA7zfKKaeOAC9/7Ga7+qckQoQvg== dependencies: - "@abp/clipboard" "~5.3.0" - "@abp/core" "~5.3.0" + "@abp/clipboard" "~5.3.1" + "@abp/core" "~5.3.1" prismjs "^1.26.0" -"@abp/select2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.0.tgz#aae202b87dc23dfc7c8fd933413a8dbeb2f5b683" - integrity sha512-0aIxdtzgONkrYnUN5ACkIIIhsC9e61QLRq3K+/98fjf7NkHOjG3Sptr8EKu5U3IQ2hNHgqBjPGYjkztGuxZ9kw== +"@abp/select2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.1.tgz#9a49aa983d52eecbd2dc2160349d45bd46324e36" + integrity sha512-ne4LJJy9n3V8BPtyU6voX4Bo0/GUrZBnI4Mkb0wRKNt1rxj7PhPXebsYYz090QJuJh8fuF2OHteNMBA7gMryLQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" select2 "^4.0.13" -"@abp/sweetalert2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.0.tgz#67379cfa4cb8884cb66b58f4cafa79960cf8426a" - integrity sha512-EBr8J7MDsYmSvOYxTbqsSmw6c2yLokHZe8A+EW2vsY9VYFXkoOJLVpCkCK4fhvHUv8/+Y5QnHW7bs1I6SKYXOw== +"@abp/sweetalert2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.1.tgz#676a3269fe4511fc4f81c3231ed9a96fe4c8f006" + integrity sha512-UDQrJiq8OfIDy3GSq7NJ4TKKEihzp6Qc06KGRdnN74lm4JsxxGUToSaD1AbyrLt53jZlRZK2NNc8IiyqPvyfbQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" sweetalert2 "^11.3.6" -"@abp/timeago@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.0.tgz#3aaef3edca333224ba6b3e81c8ad1ebaae51a2f4" - integrity sha512-FxtoPYxyk2CHeoloC6kaeCj5YtXH0rebhOEaCjrfyg9/Ec6LEkvpfC7RWlcsHaEUAtFXZegJDfOk066EPH7RHQ== +"@abp/timeago@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.1.tgz#069a4eb2725b0a183cb7609e1f48d8d857a606ba" + integrity sha512-+QWO9MTuf6X7sUXxoUGyoQ0EhoQUlRDdCPmwwcZyBzBf8q9A3hS+Rtmex3BqwRLDxL2vL78gbDpIBgPn/kFuUA== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" timeago "^1.6.7" -"@abp/toastr@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.0.tgz#8a002c19ea25ac6b042a25c0f9d289d03c93c2fb" - integrity sha512-gjb2O/XrYkX8IeCERIqlOYPh15WlF9LxGR6t9jeVF/p6BTX/yaWabYCFfB9SkU2pQ6xrGl7WmSTAC06JOAtPTA== +"@abp/toastr@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.1.tgz#4a18b293444f7f8a523b7255ea61fed838131f1c" + integrity sha512-gz5cl6sPu6b65h8VJ6ne+dkM0oVXSYBlDoKBYbDRjhH6i7yWUpcylY/lrOvWacNQBOagBy5bep1937aec1/BXQ== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" toastr "^2.1.4" -"@abp/utils@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.0.tgz#e93739074a3cd445a5a221209506b7e663050ca0" - integrity sha512-Nm+h+3PL10+rBFSh8UUuenmGM+OBlEoNQeGzHRmhOc6hJ3oqCogPzY+zkq0e4pksrwhjxAu/cgCEGLAoEXXycw== +"@abp/utils@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.1.tgz#ff238e3b70c6fffb1600d845c202961e1179c813" + integrity sha512-XVYrygoWq1ZHz4N7BSJ4P77wmd0geRhpyR5ztzyP1WaF2LaCRS63BjZ/a7xKdtioUby9GP5jSvMjBvwqVviYIQ== dependencies: just-compare "^1.3.0" diff --git a/modules/blogging/app/Volo.BloggingTestApp/package.json b/modules/blogging/app/Volo.BloggingTestApp/package.json index 4b5eeb5694..fa85f91098 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": "^5.3.0", - "@abp/blogging": "^5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1", + "@abp/blogging": "^5.3.1" } } diff --git a/modules/blogging/app/Volo.BloggingTestApp/yarn.lock b/modules/blogging/app/Volo.BloggingTestApp/yarn.lock index 193494fc04..db24607e4a 100644 --- a/modules/blogging/app/Volo.BloggingTestApp/yarn.lock +++ b/modules/blogging/app/Volo.BloggingTestApp/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.0.tgz#dcdd73d8582c4d14438f70d765170398d5d582fb" - integrity sha512-H6UrafHRI1DHfIoi47gZWHKSanlyAkghtGgUO6GTmPqTubBXjl7Ky3owVUAXvFd49+72gwdCLA/DB0Khjc3Ayw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.0" - -"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.0.tgz#84e94845a247815ce981cda2d195944a350530b9" - integrity sha512-RwXxlncjidvh8Hgw91Hz1f5rnfG9hlNROr5bD/kxTUB47vIh/TIBd06UYrYw2/lqFLw5d6wd8q7VLuDjGUQbpg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~5.3.0" - "@abp/bootstrap" "~5.3.0" - "@abp/bootstrap-datepicker" "~5.3.0" - "@abp/datatables.net-bs5" "~5.3.0" - "@abp/font-awesome" "~5.3.0" - "@abp/jquery-form" "~5.3.0" - "@abp/jquery-validation-unobtrusive" "~5.3.0" - "@abp/lodash" "~5.3.0" - "@abp/luxon" "~5.3.0" - "@abp/malihu-custom-scrollbar-plugin" "~5.3.0" - "@abp/select2" "~5.3.0" - "@abp/sweetalert2" "~5.3.0" - "@abp/timeago" "~5.3.0" - "@abp/toastr" "~5.3.0" - -"@abp/aspnetcore.mvc.ui@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.0.tgz#e947fd1aecbd2aabc5db4c6a64b78f2690fcf0d4" - integrity sha512-en2YDb/hRG1MKkbli1PYcoeU9OLU0YPSahkIBSfOmMLntAe8y0c2+Xe09chXP4r+GoZu0zd9FM3qqCRZojrlug== +"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.1.tgz#469befe88cd7d3362112db9a5ce7cf3eae328b3e" + integrity sha512-qvzNICtvrNVllo7c8khvKw4LQ6MxwWcJar8PyOhgS+Pgtn4lT5rQqzGvaYKMiDyj5gjWGzPOzjU/vgR1uiGYNg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.1" + +"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.1.tgz#7fe0aba80670bf4326251138dc7e12ea5830c919" + integrity sha512-ieS54bLQr4Aa96CnFEmuxe0ndeJpJMkq5eYSWAziH4i15jm7o+K2ouIL0K606lk1Sn/UrP8Yl+DRhxr4i4P8ow== + dependencies: + "@abp/aspnetcore.mvc.ui" "~5.3.1" + "@abp/bootstrap" "~5.3.1" + "@abp/bootstrap-datepicker" "~5.3.1" + "@abp/datatables.net-bs5" "~5.3.1" + "@abp/font-awesome" "~5.3.1" + "@abp/jquery-form" "~5.3.1" + "@abp/jquery-validation-unobtrusive" "~5.3.1" + "@abp/lodash" "~5.3.1" + "@abp/luxon" "~5.3.1" + "@abp/malihu-custom-scrollbar-plugin" "~5.3.1" + "@abp/select2" "~5.3.1" + "@abp/sweetalert2" "~5.3.1" + "@abp/timeago" "~5.3.1" + "@abp/toastr" "~5.3.1" + +"@abp/aspnetcore.mvc.ui@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.1.tgz#17ccf9a2a40cbd79e670a0cb5be74ac9eb17b963" + integrity sha512-UuXH0Lz7DqiGp47BC7xllT3Imf2Nk+eccOiVRwc9PAfHKnNOOJYxvDlHS0x8CM09qxM5EVaH7tfwOLSS09HXpg== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,187 +41,187 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/blogging@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-5.3.0.tgz#ccc257d04e586e66e2350b3f3bdc77d55171b516" - integrity sha512-ZeMaprd1MXXebCX1ocyQO7n62tx3+ly0FFTbXRAL/aBRANWVZ+M3c6vPixwJZVyY8CfGHrN+chseD7Tnczw0zA== +"@abp/blogging@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-5.3.1.tgz#22be54c25afc809f836d6d8e250e4eed340a4ef9" + integrity sha512-0pAnCt3tunjZ7hlTp0Vi+xn8tH6s2K/lqPcEbi077OnkDxZC8qCltAREK2rje/86RHV/xPIs7rg/T5WJ18BD9w== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.0" - "@abp/owl.carousel" "~5.3.0" - "@abp/prismjs" "~5.3.0" - "@abp/tui-editor" "~5.3.0" + "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.1" + "@abp/owl.carousel" "~5.3.1" + "@abp/prismjs" "~5.3.1" + "@abp/tui-editor" "~5.3.1" -"@abp/bootstrap-datepicker@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.0.tgz#09c44954774d8f52ca8ff6699ad4dbb7cc0308c2" - integrity sha512-AQ26I0jgoCioW1/4XmQIyn1c1+CLv8KTb4Vd4ZbtdYGBkkkUe+JEAWpJSeXlJRr/XrOs0BKWp/fa7Nnwx8srLg== +"@abp/bootstrap-datepicker@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.1.tgz#241aebfbae0fa451d3e719776096b14bf77c08fa" + integrity sha512-gvP7SNEnPFYuLmIBp7QobveAGv8Rm/8JTmixCChQPPP9XX3u82ilKP2cgxVXm/4/jf0Gy7Gusn7urmTbTxeGEw== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.0.tgz#42dac2d2d6374f39d068a638687039c5c74df123" - integrity sha512-rg9mLcvT4JQRc1rIAhGYK1P2eMRJ1+GArQXV5l7k3FrVU+bRLKdoE6PNpuwXHpdlom4/dOgekfuWH/SAuY5kyw== +"@abp/bootstrap@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.1.tgz#f941afe2be2deaa1962a3626593451847dee5bd6" + integrity sha512-qPGeNFEaQF57b0viA0eHKA0cZ9b0gscOqE0o4ewHxnlRoRYiY3Ob9V6x6S85n2b7H6tDZOWAePXEgkV40yK/Bg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" bootstrap "^5.1.3" -"@abp/clipboard@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-5.3.0.tgz#579bbc786d32c4e07c969073872b936575df7a9c" - integrity sha512-J55jQnzPOOAwo70GK9hAB3JxG7rz75tex+17QSFjW7/dXVWt1bPIDRHh/a1wiLEgYc6btsSGhptLtkYAfWpq6w== +"@abp/clipboard@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-5.3.1.tgz#aede839bfba487461d31589092a3f2b0a75a2925" + integrity sha512-XKxxjjT2x7+a6vrw2x6G//ntQGmRcvBz8KcxCXuWJ8cCrHb1x7ZEzIUU4rF6ee7BlnLoEIZ/dCF+s/93yPs9ng== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" clipboard "^2.0.8" -"@abp/core@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.0.tgz#032724dd0c0b850204896ce0275c7f9c8f516740" - integrity sha512-Uk9h98jiEF1dItWrvWnYB6s/UNZZapvFSyJ4+piAsZmXOSAbrObV+s19n5xfUagQQTWn4+aU5+aChEcfWpYv9A== +"@abp/core@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.1.tgz#26890ab049d43db58f3a0fba2f4c50bd2fbf7811" + integrity sha512-7PBPDYq/s0T5H0iYaeCzqWF44jbiOkFlwGnXqZeKHt2cKZaMyCStgotrpap8qoZKlxuyxudFIzJrzJIEP0AN/Q== dependencies: - "@abp/utils" "~5.3.0" + "@abp/utils" "~5.3.1" -"@abp/datatables.net-bs5@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.0.tgz#84771ce4eb7229bed347a5904c891b08e3230422" - integrity sha512-FpKrgrjaBKVgFAnbBsrvDIJJOy8gbWCEHm5Jy2vFWXmx25fITMw/2ckBDH87yrZtCNVTSUbMIdHYOIHMPfSavQ== +"@abp/datatables.net-bs5@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.1.tgz#e380cc253a837a0629baec9dabb4e8919878cc38" + integrity sha512-LpGPWLvFsLkQjo5RTgEl24LbBokgsO1gv7/pVy/1oiXXCLTuVwJ8vYYKfDNkrrSLDUOJ9cCC0YUE5SRfDUystA== dependencies: - "@abp/datatables.net" "~5.3.0" + "@abp/datatables.net" "~5.3.1" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.0.tgz#dd27ae451df9551f5b815e10c87a8a89c6a38293" - integrity sha512-d4lQ09G7HY2gEN1lRAteCZzY0Fv3gPuUM+icgWm+UkmDZV9lhvovTQ58Xkwayw8vf+NPlit1eGMMQedn6MbeAQ== +"@abp/datatables.net@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.1.tgz#8200b5a3a719f51d21670b1420e3df48af4de42e" + integrity sha512-v30gkk4dcmWz260C8BA7uaU4kqpiC1wkgMvdzjPGefzYXsMftlcoX7GUvByWwTzlJnTphGvnIVJhnhX73VVDHg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" datatables.net "^1.11.4" -"@abp/font-awesome@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.0.tgz#ce1d5bb59bd597cc9717885917d4dd2eae1f8b9c" - integrity sha512-JX62EVfZSJ7pv75Gd3ya/3c3He0hXF7KmpTizUNd/EbeHuNJoCND5wwq5OAFV9Ld3vdcGJChNTydNa5RsBzrpg== +"@abp/font-awesome@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.1.tgz#2b4654b463b7858fc237219fd852ca0f41e4e062" + integrity sha512-LFKPjQgJmQ6GNqW3geluHMgV3WbisniAaK9tl6Pv8WOvPluvZGHTK5qjcAQVwM6Bj944VYeuvLo1ZCOoC/rWLg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.0.tgz#5ae9906f0cffaf3e043681a5dd80a014b4860f6b" - integrity sha512-ZTpXCImHirJDZjfnJRtSEHLIbWMTYkqtTv7Z3GMRKnI4fllpmuco9EWLAKjAfYPyc/QpTx+MYnUg5SsXORhJyQ== +"@abp/jquery-form@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.1.tgz#e17367af8dafcfbb352775fb6ab9182d1fd9cd63" + integrity sha512-s8XItBHKJuehprFy7xePWHxt8jMvjDmkmk2nEuJXj+gcZyVEEa3hBd4ykKDXFfmNrfS8aMy+VqA+VEA24Cmpww== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.0.tgz#ccf90a7840398e69e0a91ed6c32b80fa2eb82d14" - integrity sha512-6B3ywnpvPxpnxkrcXzjTjMWgKRImbzNPOZvv5ant/kQv3zXedV1GXSIILy+imX39FuDPslOmEfx8plwrNvIteA== +"@abp/jquery-validation-unobtrusive@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.1.tgz#7c5c31df1cd021b3eed618d914926b76dc7e9e6e" + integrity sha512-B5USCmF56eWQO+R4eZtMjURtoNGUEuAuBy4ltCPtZx0s6yn94Ooq4oYKqEbfnLoSsQshajUwBtqtlC6+YA612Q== dependencies: - "@abp/jquery-validation" "~5.3.0" + "@abp/jquery-validation" "~5.3.1" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.0.tgz#a21696e7d5d54ef8bcdc0e8bd2debb1da1f7f5cc" - integrity sha512-4z2I9iORf+z5SlN9crC/Gx3X5GAOVePD+WN8SaHSYr4VWYNe8TV8LvCZPilN56sIPt3jYvy0N+bI1tAuZPu/NQ== +"@abp/jquery-validation@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.1.tgz#b34c0e29e12843de4a407bc8775a2e560e4db923" + integrity sha512-lu2e47GwWmh/ahWA5bbeR9Gqqsy4a3htTIvnwWbtu7dnHVHA6469+uCt+0f+sVthDIL+cMwoYgcygMLIUHoFxg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-validation "^1.19.3" -"@abp/jquery@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.0.tgz#0279ee501ed774a788072c2ec8b003e348fec22c" - integrity sha512-rqYbU3LpsT7XT8ygn+TFVmjev5NlgEcDhGwQ8PraY1dEjlDbteeQ50N4adS8fdRfOM1UjGL19ueN3F8E5qNUSg== +"@abp/jquery@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.1.tgz#8f6032253d4c44b135c238a4efa010bee1ec5991" + integrity sha512-ngy9Kvy6lXrQBCxWi7t8I4Wudv87C2R50O/T4CZPfM2nwYLynopa+aI9r9VLhO/wIROyXX3C8UIpeLhQzm776w== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" jquery "~3.6.0" -"@abp/lodash@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.0.tgz#45f1dba7bb65b6599b4973d7e0c617dfd2c46c49" - integrity sha512-vQVMv58QuYttWBfLjJzIsw92JunGbWYsqk6pp6/JuoBls5UJtdP1F7vM4JgQxsscGYHFRZB3F4a3h1cxZ+dblQ== +"@abp/lodash@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.1.tgz#49c0806bae0858047faed75b6e9ed6207dc4cffc" + integrity sha512-QQshVHkNlunbhcmBG5E2wdZNcHYrTsNQjJNF6IZkeFszNRHu/k0u1bhszDwjPgEzeewTqMu8n44TzkbA8yP5GA== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" lodash "^4.17.21" -"@abp/luxon@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.0.tgz#8a6277046f6e38c3affbf79c06f8ac00d1ca8098" - integrity sha512-6tETR03i1NPJuDqSQWtpkOykdq/84awifQUqRyh+b8340wV7P54NqUMDXDit9sjITFDhq99V/R+Rj3PVjvJD3A== +"@abp/luxon@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.1.tgz#8d843023b05b157ff9ab23548c8d8c4e7101ae88" + integrity sha512-Jw8p5S9qHZkUrD1fx3nvpnBqn8Zb9jDiG6xdc6tY+v1aqDDwEqPUr7TqaLnY9GnZefiM3sYVwAh42nzPOwg9aQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.0.tgz#e6e12162aa50d3c3d98629378cec2f6fd5964338" - integrity sha512-GVwgAZQurH/tr4Hgmuby2dun//v1dT+wLGV4ZvjCJzBRs4FgrB+25pj4qKm20j6/NKRKc4V5re/b1y6njCubFQ== +"@abp/malihu-custom-scrollbar-plugin@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.1.tgz#7f0e4f2df325345a8e3be67456522cb035e3e962" + integrity sha512-ll49qD7bslt7+deMAFZ0DfveH/5ZsHyL2RLDg796ARz+H7fQpEhyNFeGETGj+HSOvAl3ivux2mxNCMYbXHR4RQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/owl.carousel@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-5.3.0.tgz#65f4459fa25f3aadf7bbd11e7202dfc4bc50c943" - integrity sha512-ku7a6Yq46lXU3RMnYDPBb5fCYr2Il1U/iGv+rFLueJ2Y06gvLBOEYF+5VAK+nv6Q6nvUdtubOC5SX9Hn2VHtjQ== +"@abp/owl.carousel@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-5.3.1.tgz#5f004062d802a1efab6117eafcb5140055ef2a1a" + integrity sha512-vRw/75WGhLFgcBhQ4GCP/wdiFPhyKa25EDWhxxFbp3hCo7JSj5xlYdyfoCupfnwJUN7zTMpyj9oiQ2r81+c4Jg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" owl.carousel "^2.3.4" -"@abp/prismjs@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-5.3.0.tgz#658a371023d9a3de9ecfff1f10bae7a83064fac7" - integrity sha512-NPsYJ9oj/57vG+eVGpDkJcdPAx4WlXTVEUZWWxmaXuM9sHY1/2av975Qk8R5HG6fC74w3DrVCP8YQvU6jlaF1w== +"@abp/prismjs@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-5.3.1.tgz#46b7a7f456b60f3f0f3b92b0a645f30495db571b" + integrity sha512-21h2L4XTIKAuWqYCGKC/MrqledtWsToGLs8Tkk4ML9eQgnpOwGvWyD/5wywlA7zfKKaeOAC9/7Ga7+qckQoQvg== dependencies: - "@abp/clipboard" "~5.3.0" - "@abp/core" "~5.3.0" + "@abp/clipboard" "~5.3.1" + "@abp/core" "~5.3.1" prismjs "^1.26.0" -"@abp/select2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.0.tgz#aae202b87dc23dfc7c8fd933413a8dbeb2f5b683" - integrity sha512-0aIxdtzgONkrYnUN5ACkIIIhsC9e61QLRq3K+/98fjf7NkHOjG3Sptr8EKu5U3IQ2hNHgqBjPGYjkztGuxZ9kw== +"@abp/select2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.1.tgz#9a49aa983d52eecbd2dc2160349d45bd46324e36" + integrity sha512-ne4LJJy9n3V8BPtyU6voX4Bo0/GUrZBnI4Mkb0wRKNt1rxj7PhPXebsYYz090QJuJh8fuF2OHteNMBA7gMryLQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" select2 "^4.0.13" -"@abp/sweetalert2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.0.tgz#67379cfa4cb8884cb66b58f4cafa79960cf8426a" - integrity sha512-EBr8J7MDsYmSvOYxTbqsSmw6c2yLokHZe8A+EW2vsY9VYFXkoOJLVpCkCK4fhvHUv8/+Y5QnHW7bs1I6SKYXOw== +"@abp/sweetalert2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.1.tgz#676a3269fe4511fc4f81c3231ed9a96fe4c8f006" + integrity sha512-UDQrJiq8OfIDy3GSq7NJ4TKKEihzp6Qc06KGRdnN74lm4JsxxGUToSaD1AbyrLt53jZlRZK2NNc8IiyqPvyfbQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" sweetalert2 "^11.3.6" -"@abp/timeago@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.0.tgz#3aaef3edca333224ba6b3e81c8ad1ebaae51a2f4" - integrity sha512-FxtoPYxyk2CHeoloC6kaeCj5YtXH0rebhOEaCjrfyg9/Ec6LEkvpfC7RWlcsHaEUAtFXZegJDfOk066EPH7RHQ== +"@abp/timeago@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.1.tgz#069a4eb2725b0a183cb7609e1f48d8d857a606ba" + integrity sha512-+QWO9MTuf6X7sUXxoUGyoQ0EhoQUlRDdCPmwwcZyBzBf8q9A3hS+Rtmex3BqwRLDxL2vL78gbDpIBgPn/kFuUA== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" timeago "^1.6.7" -"@abp/toastr@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.0.tgz#8a002c19ea25ac6b042a25c0f9d289d03c93c2fb" - integrity sha512-gjb2O/XrYkX8IeCERIqlOYPh15WlF9LxGR6t9jeVF/p6BTX/yaWabYCFfB9SkU2pQ6xrGl7WmSTAC06JOAtPTA== +"@abp/toastr@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.1.tgz#4a18b293444f7f8a523b7255ea61fed838131f1c" + integrity sha512-gz5cl6sPu6b65h8VJ6ne+dkM0oVXSYBlDoKBYbDRjhH6i7yWUpcylY/lrOvWacNQBOagBy5bep1937aec1/BXQ== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" toastr "^2.1.4" -"@abp/tui-editor@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-5.3.0.tgz#99969b636687a6ca4fc651129d12b8a19499c32c" - integrity sha512-FldoVDpVnbBd7jirGnsVDho9hV6Qg2lU4YB5iUgkuMjAEVO/QOb25FK4Fei1jwioE6fjbyF9cwG7WDnG/YEc3g== +"@abp/tui-editor@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-5.3.1.tgz#8906a1f7b307aa2d734954dce1d7c679d6fcf94d" + integrity sha512-+3XNcf2fnVw4L6R40LQ4W4UCgmoajM6SLys3O4NSbx7+JnOV6Wnz3ToiDDFcZESzFWyfejmPGY2EiC7WIN+8RQ== dependencies: - "@abp/jquery" "~5.3.0" - "@abp/prismjs" "~5.3.0" + "@abp/jquery" "~5.3.1" + "@abp/prismjs" "~5.3.1" -"@abp/utils@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.0.tgz#e93739074a3cd445a5a221209506b7e663050ca0" - integrity sha512-Nm+h+3PL10+rBFSh8UUuenmGM+OBlEoNQeGzHRmhOc6hJ3oqCogPzY+zkq0e4pksrwhjxAu/cgCEGLAoEXXycw== +"@abp/utils@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.1.tgz#ff238e3b70c6fffb1600d845c202961e1179c813" + integrity sha512-XVYrygoWq1ZHz4N7BSJ4P77wmd0geRhpyR5ztzyP1WaF2LaCRS63BjZ/a7xKdtioUby9GP5jSvMjBvwqVviYIQ== dependencies: just-compare "^1.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 fda2f11795..d3d11d5507 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": "^5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1" } } diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock index 6404fcd773..09368cc227 100644 --- a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock +++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.0.tgz#dcdd73d8582c4d14438f70d765170398d5d582fb" - integrity sha512-H6UrafHRI1DHfIoi47gZWHKSanlyAkghtGgUO6GTmPqTubBXjl7Ky3owVUAXvFd49+72gwdCLA/DB0Khjc3Ayw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.0" - -"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.0.tgz#84e94845a247815ce981cda2d195944a350530b9" - integrity sha512-RwXxlncjidvh8Hgw91Hz1f5rnfG9hlNROr5bD/kxTUB47vIh/TIBd06UYrYw2/lqFLw5d6wd8q7VLuDjGUQbpg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~5.3.0" - "@abp/bootstrap" "~5.3.0" - "@abp/bootstrap-datepicker" "~5.3.0" - "@abp/datatables.net-bs5" "~5.3.0" - "@abp/font-awesome" "~5.3.0" - "@abp/jquery-form" "~5.3.0" - "@abp/jquery-validation-unobtrusive" "~5.3.0" - "@abp/lodash" "~5.3.0" - "@abp/luxon" "~5.3.0" - "@abp/malihu-custom-scrollbar-plugin" "~5.3.0" - "@abp/select2" "~5.3.0" - "@abp/sweetalert2" "~5.3.0" - "@abp/timeago" "~5.3.0" - "@abp/toastr" "~5.3.0" - -"@abp/aspnetcore.mvc.ui@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.0.tgz#e947fd1aecbd2aabc5db4c6a64b78f2690fcf0d4" - integrity sha512-en2YDb/hRG1MKkbli1PYcoeU9OLU0YPSahkIBSfOmMLntAe8y0c2+Xe09chXP4r+GoZu0zd9FM3qqCRZojrlug== +"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.1.tgz#469befe88cd7d3362112db9a5ce7cf3eae328b3e" + integrity sha512-qvzNICtvrNVllo7c8khvKw4LQ6MxwWcJar8PyOhgS+Pgtn4lT5rQqzGvaYKMiDyj5gjWGzPOzjU/vgR1uiGYNg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.1" + +"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.1.tgz#7fe0aba80670bf4326251138dc7e12ea5830c919" + integrity sha512-ieS54bLQr4Aa96CnFEmuxe0ndeJpJMkq5eYSWAziH4i15jm7o+K2ouIL0K606lk1Sn/UrP8Yl+DRhxr4i4P8ow== + dependencies: + "@abp/aspnetcore.mvc.ui" "~5.3.1" + "@abp/bootstrap" "~5.3.1" + "@abp/bootstrap-datepicker" "~5.3.1" + "@abp/datatables.net-bs5" "~5.3.1" + "@abp/font-awesome" "~5.3.1" + "@abp/jquery-form" "~5.3.1" + "@abp/jquery-validation-unobtrusive" "~5.3.1" + "@abp/lodash" "~5.3.1" + "@abp/luxon" "~5.3.1" + "@abp/malihu-custom-scrollbar-plugin" "~5.3.1" + "@abp/select2" "~5.3.1" + "@abp/sweetalert2" "~5.3.1" + "@abp/timeago" "~5.3.1" + "@abp/toastr" "~5.3.1" + +"@abp/aspnetcore.mvc.ui@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.1.tgz#17ccf9a2a40cbd79e670a0cb5be74ac9eb17b963" + integrity sha512-UuXH0Lz7DqiGp47BC7xllT3Imf2Nk+eccOiVRwc9PAfHKnNOOJYxvDlHS0x8CM09qxM5EVaH7tfwOLSS09HXpg== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,144 +41,144 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.0.tgz#09c44954774d8f52ca8ff6699ad4dbb7cc0308c2" - integrity sha512-AQ26I0jgoCioW1/4XmQIyn1c1+CLv8KTb4Vd4ZbtdYGBkkkUe+JEAWpJSeXlJRr/XrOs0BKWp/fa7Nnwx8srLg== +"@abp/bootstrap-datepicker@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.1.tgz#241aebfbae0fa451d3e719776096b14bf77c08fa" + integrity sha512-gvP7SNEnPFYuLmIBp7QobveAGv8Rm/8JTmixCChQPPP9XX3u82ilKP2cgxVXm/4/jf0Gy7Gusn7urmTbTxeGEw== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.0.tgz#42dac2d2d6374f39d068a638687039c5c74df123" - integrity sha512-rg9mLcvT4JQRc1rIAhGYK1P2eMRJ1+GArQXV5l7k3FrVU+bRLKdoE6PNpuwXHpdlom4/dOgekfuWH/SAuY5kyw== +"@abp/bootstrap@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.1.tgz#f941afe2be2deaa1962a3626593451847dee5bd6" + integrity sha512-qPGeNFEaQF57b0viA0eHKA0cZ9b0gscOqE0o4ewHxnlRoRYiY3Ob9V6x6S85n2b7H6tDZOWAePXEgkV40yK/Bg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" bootstrap "^5.1.3" -"@abp/core@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.0.tgz#032724dd0c0b850204896ce0275c7f9c8f516740" - integrity sha512-Uk9h98jiEF1dItWrvWnYB6s/UNZZapvFSyJ4+piAsZmXOSAbrObV+s19n5xfUagQQTWn4+aU5+aChEcfWpYv9A== +"@abp/core@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.1.tgz#26890ab049d43db58f3a0fba2f4c50bd2fbf7811" + integrity sha512-7PBPDYq/s0T5H0iYaeCzqWF44jbiOkFlwGnXqZeKHt2cKZaMyCStgotrpap8qoZKlxuyxudFIzJrzJIEP0AN/Q== dependencies: - "@abp/utils" "~5.3.0" + "@abp/utils" "~5.3.1" -"@abp/datatables.net-bs5@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.0.tgz#84771ce4eb7229bed347a5904c891b08e3230422" - integrity sha512-FpKrgrjaBKVgFAnbBsrvDIJJOy8gbWCEHm5Jy2vFWXmx25fITMw/2ckBDH87yrZtCNVTSUbMIdHYOIHMPfSavQ== +"@abp/datatables.net-bs5@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.1.tgz#e380cc253a837a0629baec9dabb4e8919878cc38" + integrity sha512-LpGPWLvFsLkQjo5RTgEl24LbBokgsO1gv7/pVy/1oiXXCLTuVwJ8vYYKfDNkrrSLDUOJ9cCC0YUE5SRfDUystA== dependencies: - "@abp/datatables.net" "~5.3.0" + "@abp/datatables.net" "~5.3.1" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.0.tgz#dd27ae451df9551f5b815e10c87a8a89c6a38293" - integrity sha512-d4lQ09G7HY2gEN1lRAteCZzY0Fv3gPuUM+icgWm+UkmDZV9lhvovTQ58Xkwayw8vf+NPlit1eGMMQedn6MbeAQ== +"@abp/datatables.net@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.1.tgz#8200b5a3a719f51d21670b1420e3df48af4de42e" + integrity sha512-v30gkk4dcmWz260C8BA7uaU4kqpiC1wkgMvdzjPGefzYXsMftlcoX7GUvByWwTzlJnTphGvnIVJhnhX73VVDHg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" datatables.net "^1.11.4" -"@abp/font-awesome@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.0.tgz#ce1d5bb59bd597cc9717885917d4dd2eae1f8b9c" - integrity sha512-JX62EVfZSJ7pv75Gd3ya/3c3He0hXF7KmpTizUNd/EbeHuNJoCND5wwq5OAFV9Ld3vdcGJChNTydNa5RsBzrpg== +"@abp/font-awesome@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.1.tgz#2b4654b463b7858fc237219fd852ca0f41e4e062" + integrity sha512-LFKPjQgJmQ6GNqW3geluHMgV3WbisniAaK9tl6Pv8WOvPluvZGHTK5qjcAQVwM6Bj944VYeuvLo1ZCOoC/rWLg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.0.tgz#5ae9906f0cffaf3e043681a5dd80a014b4860f6b" - integrity sha512-ZTpXCImHirJDZjfnJRtSEHLIbWMTYkqtTv7Z3GMRKnI4fllpmuco9EWLAKjAfYPyc/QpTx+MYnUg5SsXORhJyQ== +"@abp/jquery-form@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.1.tgz#e17367af8dafcfbb352775fb6ab9182d1fd9cd63" + integrity sha512-s8XItBHKJuehprFy7xePWHxt8jMvjDmkmk2nEuJXj+gcZyVEEa3hBd4ykKDXFfmNrfS8aMy+VqA+VEA24Cmpww== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.0.tgz#ccf90a7840398e69e0a91ed6c32b80fa2eb82d14" - integrity sha512-6B3ywnpvPxpnxkrcXzjTjMWgKRImbzNPOZvv5ant/kQv3zXedV1GXSIILy+imX39FuDPslOmEfx8plwrNvIteA== +"@abp/jquery-validation-unobtrusive@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.1.tgz#7c5c31df1cd021b3eed618d914926b76dc7e9e6e" + integrity sha512-B5USCmF56eWQO+R4eZtMjURtoNGUEuAuBy4ltCPtZx0s6yn94Ooq4oYKqEbfnLoSsQshajUwBtqtlC6+YA612Q== dependencies: - "@abp/jquery-validation" "~5.3.0" + "@abp/jquery-validation" "~5.3.1" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.0.tgz#a21696e7d5d54ef8bcdc0e8bd2debb1da1f7f5cc" - integrity sha512-4z2I9iORf+z5SlN9crC/Gx3X5GAOVePD+WN8SaHSYr4VWYNe8TV8LvCZPilN56sIPt3jYvy0N+bI1tAuZPu/NQ== +"@abp/jquery-validation@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.1.tgz#b34c0e29e12843de4a407bc8775a2e560e4db923" + integrity sha512-lu2e47GwWmh/ahWA5bbeR9Gqqsy4a3htTIvnwWbtu7dnHVHA6469+uCt+0f+sVthDIL+cMwoYgcygMLIUHoFxg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-validation "^1.19.3" -"@abp/jquery@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.0.tgz#0279ee501ed774a788072c2ec8b003e348fec22c" - integrity sha512-rqYbU3LpsT7XT8ygn+TFVmjev5NlgEcDhGwQ8PraY1dEjlDbteeQ50N4adS8fdRfOM1UjGL19ueN3F8E5qNUSg== +"@abp/jquery@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.1.tgz#8f6032253d4c44b135c238a4efa010bee1ec5991" + integrity sha512-ngy9Kvy6lXrQBCxWi7t8I4Wudv87C2R50O/T4CZPfM2nwYLynopa+aI9r9VLhO/wIROyXX3C8UIpeLhQzm776w== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" jquery "~3.6.0" -"@abp/lodash@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.0.tgz#45f1dba7bb65b6599b4973d7e0c617dfd2c46c49" - integrity sha512-vQVMv58QuYttWBfLjJzIsw92JunGbWYsqk6pp6/JuoBls5UJtdP1F7vM4JgQxsscGYHFRZB3F4a3h1cxZ+dblQ== +"@abp/lodash@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.1.tgz#49c0806bae0858047faed75b6e9ed6207dc4cffc" + integrity sha512-QQshVHkNlunbhcmBG5E2wdZNcHYrTsNQjJNF6IZkeFszNRHu/k0u1bhszDwjPgEzeewTqMu8n44TzkbA8yP5GA== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" lodash "^4.17.21" -"@abp/luxon@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.0.tgz#8a6277046f6e38c3affbf79c06f8ac00d1ca8098" - integrity sha512-6tETR03i1NPJuDqSQWtpkOykdq/84awifQUqRyh+b8340wV7P54NqUMDXDit9sjITFDhq99V/R+Rj3PVjvJD3A== +"@abp/luxon@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.1.tgz#8d843023b05b157ff9ab23548c8d8c4e7101ae88" + integrity sha512-Jw8p5S9qHZkUrD1fx3nvpnBqn8Zb9jDiG6xdc6tY+v1aqDDwEqPUr7TqaLnY9GnZefiM3sYVwAh42nzPOwg9aQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.0.tgz#e6e12162aa50d3c3d98629378cec2f6fd5964338" - integrity sha512-GVwgAZQurH/tr4Hgmuby2dun//v1dT+wLGV4ZvjCJzBRs4FgrB+25pj4qKm20j6/NKRKc4V5re/b1y6njCubFQ== +"@abp/malihu-custom-scrollbar-plugin@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.1.tgz#7f0e4f2df325345a8e3be67456522cb035e3e962" + integrity sha512-ll49qD7bslt7+deMAFZ0DfveH/5ZsHyL2RLDg796ARz+H7fQpEhyNFeGETGj+HSOvAl3ivux2mxNCMYbXHR4RQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/select2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.0.tgz#aae202b87dc23dfc7c8fd933413a8dbeb2f5b683" - integrity sha512-0aIxdtzgONkrYnUN5ACkIIIhsC9e61QLRq3K+/98fjf7NkHOjG3Sptr8EKu5U3IQ2hNHgqBjPGYjkztGuxZ9kw== +"@abp/select2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.1.tgz#9a49aa983d52eecbd2dc2160349d45bd46324e36" + integrity sha512-ne4LJJy9n3V8BPtyU6voX4Bo0/GUrZBnI4Mkb0wRKNt1rxj7PhPXebsYYz090QJuJh8fuF2OHteNMBA7gMryLQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" select2 "^4.0.13" -"@abp/sweetalert2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.0.tgz#67379cfa4cb8884cb66b58f4cafa79960cf8426a" - integrity sha512-EBr8J7MDsYmSvOYxTbqsSmw6c2yLokHZe8A+EW2vsY9VYFXkoOJLVpCkCK4fhvHUv8/+Y5QnHW7bs1I6SKYXOw== +"@abp/sweetalert2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.1.tgz#676a3269fe4511fc4f81c3231ed9a96fe4c8f006" + integrity sha512-UDQrJiq8OfIDy3GSq7NJ4TKKEihzp6Qc06KGRdnN74lm4JsxxGUToSaD1AbyrLt53jZlRZK2NNc8IiyqPvyfbQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" sweetalert2 "^11.3.6" -"@abp/timeago@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.0.tgz#3aaef3edca333224ba6b3e81c8ad1ebaae51a2f4" - integrity sha512-FxtoPYxyk2CHeoloC6kaeCj5YtXH0rebhOEaCjrfyg9/Ec6LEkvpfC7RWlcsHaEUAtFXZegJDfOk066EPH7RHQ== +"@abp/timeago@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.1.tgz#069a4eb2725b0a183cb7609e1f48d8d857a606ba" + integrity sha512-+QWO9MTuf6X7sUXxoUGyoQ0EhoQUlRDdCPmwwcZyBzBf8q9A3hS+Rtmex3BqwRLDxL2vL78gbDpIBgPn/kFuUA== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" timeago "^1.6.7" -"@abp/toastr@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.0.tgz#8a002c19ea25ac6b042a25c0f9d289d03c93c2fb" - integrity sha512-gjb2O/XrYkX8IeCERIqlOYPh15WlF9LxGR6t9jeVF/p6BTX/yaWabYCFfB9SkU2pQ6xrGl7WmSTAC06JOAtPTA== +"@abp/toastr@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.1.tgz#4a18b293444f7f8a523b7255ea61fed838131f1c" + integrity sha512-gz5cl6sPu6b65h8VJ6ne+dkM0oVXSYBlDoKBYbDRjhH6i7yWUpcylY/lrOvWacNQBOagBy5bep1937aec1/BXQ== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" toastr "^2.1.4" -"@abp/utils@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.0.tgz#e93739074a3cd445a5a221209506b7e663050ca0" - integrity sha512-Nm+h+3PL10+rBFSh8UUuenmGM+OBlEoNQeGzHRmhOc6hJ3oqCogPzY+zkq0e4pksrwhjxAu/cgCEGLAoEXXycw== +"@abp/utils@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.1.tgz#ff238e3b70c6fffb1600d845c202961e1179c813" + integrity sha512-XVYrygoWq1ZHz4N7BSJ4P77wmd0geRhpyR5ztzyP1WaF2LaCRS63BjZ/a7xKdtioUby9GP5jSvMjBvwqVviYIQ== dependencies: just-compare "^1.3.0" diff --git a/modules/cms-kit/angular/package.json b/modules/cms-kit/angular/package.json index 698f72979b..0e8836e10e 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": "~5.3.0", - "@abp/ng.identity": "~5.3.0", - "@abp/ng.setting-management": "~5.3.0", - "@abp/ng.tenant-management": "~5.3.0", - "@abp/ng.theme.basic": "~5.3.0", + "@abp/ng.account": "~5.3.1", + "@abp/ng.identity": "~5.3.1", + "@abp/ng.setting-management": "~5.3.1", + "@abp/ng.tenant-management": "~5.3.1", + "@abp/ng.theme.basic": "~5.3.1", "@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 21c65e4430..1509904df4 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": ">=5.3.0", - "@abp/ng.theme.shared": ">=5.3.0" + "@abp/ng.core": ">=5.3.1", + "@abp/ng.theme.shared": ">=5.3.1" }, "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 47538f5c37..8bd0871145 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": "^5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1" } } diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock index 1106f769b6..3070b1708a 100644 --- a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock +++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.0.tgz#dcdd73d8582c4d14438f70d765170398d5d582fb" - integrity sha512-H6UrafHRI1DHfIoi47gZWHKSanlyAkghtGgUO6GTmPqTubBXjl7Ky3owVUAXvFd49+72gwdCLA/DB0Khjc3Ayw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.0" - -"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.0.tgz#84e94845a247815ce981cda2d195944a350530b9" - integrity sha512-RwXxlncjidvh8Hgw91Hz1f5rnfG9hlNROr5bD/kxTUB47vIh/TIBd06UYrYw2/lqFLw5d6wd8q7VLuDjGUQbpg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~5.3.0" - "@abp/bootstrap" "~5.3.0" - "@abp/bootstrap-datepicker" "~5.3.0" - "@abp/datatables.net-bs5" "~5.3.0" - "@abp/font-awesome" "~5.3.0" - "@abp/jquery-form" "~5.3.0" - "@abp/jquery-validation-unobtrusive" "~5.3.0" - "@abp/lodash" "~5.3.0" - "@abp/luxon" "~5.3.0" - "@abp/malihu-custom-scrollbar-plugin" "~5.3.0" - "@abp/select2" "~5.3.0" - "@abp/sweetalert2" "~5.3.0" - "@abp/timeago" "~5.3.0" - "@abp/toastr" "~5.3.0" - -"@abp/aspnetcore.mvc.ui@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.0.tgz#e947fd1aecbd2aabc5db4c6a64b78f2690fcf0d4" - integrity sha512-en2YDb/hRG1MKkbli1PYcoeU9OLU0YPSahkIBSfOmMLntAe8y0c2+Xe09chXP4r+GoZu0zd9FM3qqCRZojrlug== +"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.1.tgz#469befe88cd7d3362112db9a5ce7cf3eae328b3e" + integrity sha512-qvzNICtvrNVllo7c8khvKw4LQ6MxwWcJar8PyOhgS+Pgtn4lT5rQqzGvaYKMiDyj5gjWGzPOzjU/vgR1uiGYNg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.1" + +"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.1.tgz#7fe0aba80670bf4326251138dc7e12ea5830c919" + integrity sha512-ieS54bLQr4Aa96CnFEmuxe0ndeJpJMkq5eYSWAziH4i15jm7o+K2ouIL0K606lk1Sn/UrP8Yl+DRhxr4i4P8ow== + dependencies: + "@abp/aspnetcore.mvc.ui" "~5.3.1" + "@abp/bootstrap" "~5.3.1" + "@abp/bootstrap-datepicker" "~5.3.1" + "@abp/datatables.net-bs5" "~5.3.1" + "@abp/font-awesome" "~5.3.1" + "@abp/jquery-form" "~5.3.1" + "@abp/jquery-validation-unobtrusive" "~5.3.1" + "@abp/lodash" "~5.3.1" + "@abp/luxon" "~5.3.1" + "@abp/malihu-custom-scrollbar-plugin" "~5.3.1" + "@abp/select2" "~5.3.1" + "@abp/sweetalert2" "~5.3.1" + "@abp/timeago" "~5.3.1" + "@abp/toastr" "~5.3.1" + +"@abp/aspnetcore.mvc.ui@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.1.tgz#17ccf9a2a40cbd79e670a0cb5be74ac9eb17b963" + integrity sha512-UuXH0Lz7DqiGp47BC7xllT3Imf2Nk+eccOiVRwc9PAfHKnNOOJYxvDlHS0x8CM09qxM5EVaH7tfwOLSS09HXpg== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,144 +41,144 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.0.tgz#09c44954774d8f52ca8ff6699ad4dbb7cc0308c2" - integrity sha512-AQ26I0jgoCioW1/4XmQIyn1c1+CLv8KTb4Vd4ZbtdYGBkkkUe+JEAWpJSeXlJRr/XrOs0BKWp/fa7Nnwx8srLg== +"@abp/bootstrap-datepicker@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.1.tgz#241aebfbae0fa451d3e719776096b14bf77c08fa" + integrity sha512-gvP7SNEnPFYuLmIBp7QobveAGv8Rm/8JTmixCChQPPP9XX3u82ilKP2cgxVXm/4/jf0Gy7Gusn7urmTbTxeGEw== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.0.tgz#42dac2d2d6374f39d068a638687039c5c74df123" - integrity sha512-rg9mLcvT4JQRc1rIAhGYK1P2eMRJ1+GArQXV5l7k3FrVU+bRLKdoE6PNpuwXHpdlom4/dOgekfuWH/SAuY5kyw== +"@abp/bootstrap@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.1.tgz#f941afe2be2deaa1962a3626593451847dee5bd6" + integrity sha512-qPGeNFEaQF57b0viA0eHKA0cZ9b0gscOqE0o4ewHxnlRoRYiY3Ob9V6x6S85n2b7H6tDZOWAePXEgkV40yK/Bg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" bootstrap "^5.1.3" -"@abp/core@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.0.tgz#032724dd0c0b850204896ce0275c7f9c8f516740" - integrity sha512-Uk9h98jiEF1dItWrvWnYB6s/UNZZapvFSyJ4+piAsZmXOSAbrObV+s19n5xfUagQQTWn4+aU5+aChEcfWpYv9A== +"@abp/core@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.1.tgz#26890ab049d43db58f3a0fba2f4c50bd2fbf7811" + integrity sha512-7PBPDYq/s0T5H0iYaeCzqWF44jbiOkFlwGnXqZeKHt2cKZaMyCStgotrpap8qoZKlxuyxudFIzJrzJIEP0AN/Q== dependencies: - "@abp/utils" "~5.3.0" + "@abp/utils" "~5.3.1" -"@abp/datatables.net-bs5@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.0.tgz#84771ce4eb7229bed347a5904c891b08e3230422" - integrity sha512-FpKrgrjaBKVgFAnbBsrvDIJJOy8gbWCEHm5Jy2vFWXmx25fITMw/2ckBDH87yrZtCNVTSUbMIdHYOIHMPfSavQ== +"@abp/datatables.net-bs5@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.1.tgz#e380cc253a837a0629baec9dabb4e8919878cc38" + integrity sha512-LpGPWLvFsLkQjo5RTgEl24LbBokgsO1gv7/pVy/1oiXXCLTuVwJ8vYYKfDNkrrSLDUOJ9cCC0YUE5SRfDUystA== dependencies: - "@abp/datatables.net" "~5.3.0" + "@abp/datatables.net" "~5.3.1" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.0.tgz#dd27ae451df9551f5b815e10c87a8a89c6a38293" - integrity sha512-d4lQ09G7HY2gEN1lRAteCZzY0Fv3gPuUM+icgWm+UkmDZV9lhvovTQ58Xkwayw8vf+NPlit1eGMMQedn6MbeAQ== +"@abp/datatables.net@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.1.tgz#8200b5a3a719f51d21670b1420e3df48af4de42e" + integrity sha512-v30gkk4dcmWz260C8BA7uaU4kqpiC1wkgMvdzjPGefzYXsMftlcoX7GUvByWwTzlJnTphGvnIVJhnhX73VVDHg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" datatables.net "^1.11.4" -"@abp/font-awesome@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.0.tgz#ce1d5bb59bd597cc9717885917d4dd2eae1f8b9c" - integrity sha512-JX62EVfZSJ7pv75Gd3ya/3c3He0hXF7KmpTizUNd/EbeHuNJoCND5wwq5OAFV9Ld3vdcGJChNTydNa5RsBzrpg== +"@abp/font-awesome@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.1.tgz#2b4654b463b7858fc237219fd852ca0f41e4e062" + integrity sha512-LFKPjQgJmQ6GNqW3geluHMgV3WbisniAaK9tl6Pv8WOvPluvZGHTK5qjcAQVwM6Bj944VYeuvLo1ZCOoC/rWLg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.0.tgz#5ae9906f0cffaf3e043681a5dd80a014b4860f6b" - integrity sha512-ZTpXCImHirJDZjfnJRtSEHLIbWMTYkqtTv7Z3GMRKnI4fllpmuco9EWLAKjAfYPyc/QpTx+MYnUg5SsXORhJyQ== +"@abp/jquery-form@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.1.tgz#e17367af8dafcfbb352775fb6ab9182d1fd9cd63" + integrity sha512-s8XItBHKJuehprFy7xePWHxt8jMvjDmkmk2nEuJXj+gcZyVEEa3hBd4ykKDXFfmNrfS8aMy+VqA+VEA24Cmpww== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.0.tgz#ccf90a7840398e69e0a91ed6c32b80fa2eb82d14" - integrity sha512-6B3ywnpvPxpnxkrcXzjTjMWgKRImbzNPOZvv5ant/kQv3zXedV1GXSIILy+imX39FuDPslOmEfx8plwrNvIteA== +"@abp/jquery-validation-unobtrusive@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.1.tgz#7c5c31df1cd021b3eed618d914926b76dc7e9e6e" + integrity sha512-B5USCmF56eWQO+R4eZtMjURtoNGUEuAuBy4ltCPtZx0s6yn94Ooq4oYKqEbfnLoSsQshajUwBtqtlC6+YA612Q== dependencies: - "@abp/jquery-validation" "~5.3.0" + "@abp/jquery-validation" "~5.3.1" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.0.tgz#a21696e7d5d54ef8bcdc0e8bd2debb1da1f7f5cc" - integrity sha512-4z2I9iORf+z5SlN9crC/Gx3X5GAOVePD+WN8SaHSYr4VWYNe8TV8LvCZPilN56sIPt3jYvy0N+bI1tAuZPu/NQ== +"@abp/jquery-validation@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.1.tgz#b34c0e29e12843de4a407bc8775a2e560e4db923" + integrity sha512-lu2e47GwWmh/ahWA5bbeR9Gqqsy4a3htTIvnwWbtu7dnHVHA6469+uCt+0f+sVthDIL+cMwoYgcygMLIUHoFxg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-validation "^1.19.3" -"@abp/jquery@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.0.tgz#0279ee501ed774a788072c2ec8b003e348fec22c" - integrity sha512-rqYbU3LpsT7XT8ygn+TFVmjev5NlgEcDhGwQ8PraY1dEjlDbteeQ50N4adS8fdRfOM1UjGL19ueN3F8E5qNUSg== +"@abp/jquery@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.1.tgz#8f6032253d4c44b135c238a4efa010bee1ec5991" + integrity sha512-ngy9Kvy6lXrQBCxWi7t8I4Wudv87C2R50O/T4CZPfM2nwYLynopa+aI9r9VLhO/wIROyXX3C8UIpeLhQzm776w== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" jquery "~3.6.0" -"@abp/lodash@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.0.tgz#45f1dba7bb65b6599b4973d7e0c617dfd2c46c49" - integrity sha512-vQVMv58QuYttWBfLjJzIsw92JunGbWYsqk6pp6/JuoBls5UJtdP1F7vM4JgQxsscGYHFRZB3F4a3h1cxZ+dblQ== +"@abp/lodash@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.1.tgz#49c0806bae0858047faed75b6e9ed6207dc4cffc" + integrity sha512-QQshVHkNlunbhcmBG5E2wdZNcHYrTsNQjJNF6IZkeFszNRHu/k0u1bhszDwjPgEzeewTqMu8n44TzkbA8yP5GA== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" lodash "^4.17.21" -"@abp/luxon@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.0.tgz#8a6277046f6e38c3affbf79c06f8ac00d1ca8098" - integrity sha512-6tETR03i1NPJuDqSQWtpkOykdq/84awifQUqRyh+b8340wV7P54NqUMDXDit9sjITFDhq99V/R+Rj3PVjvJD3A== +"@abp/luxon@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.1.tgz#8d843023b05b157ff9ab23548c8d8c4e7101ae88" + integrity sha512-Jw8p5S9qHZkUrD1fx3nvpnBqn8Zb9jDiG6xdc6tY+v1aqDDwEqPUr7TqaLnY9GnZefiM3sYVwAh42nzPOwg9aQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.0.tgz#e6e12162aa50d3c3d98629378cec2f6fd5964338" - integrity sha512-GVwgAZQurH/tr4Hgmuby2dun//v1dT+wLGV4ZvjCJzBRs4FgrB+25pj4qKm20j6/NKRKc4V5re/b1y6njCubFQ== +"@abp/malihu-custom-scrollbar-plugin@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.1.tgz#7f0e4f2df325345a8e3be67456522cb035e3e962" + integrity sha512-ll49qD7bslt7+deMAFZ0DfveH/5ZsHyL2RLDg796ARz+H7fQpEhyNFeGETGj+HSOvAl3ivux2mxNCMYbXHR4RQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/select2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.0.tgz#aae202b87dc23dfc7c8fd933413a8dbeb2f5b683" - integrity sha512-0aIxdtzgONkrYnUN5ACkIIIhsC9e61QLRq3K+/98fjf7NkHOjG3Sptr8EKu5U3IQ2hNHgqBjPGYjkztGuxZ9kw== +"@abp/select2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.1.tgz#9a49aa983d52eecbd2dc2160349d45bd46324e36" + integrity sha512-ne4LJJy9n3V8BPtyU6voX4Bo0/GUrZBnI4Mkb0wRKNt1rxj7PhPXebsYYz090QJuJh8fuF2OHteNMBA7gMryLQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" select2 "^4.0.13" -"@abp/sweetalert2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.0.tgz#67379cfa4cb8884cb66b58f4cafa79960cf8426a" - integrity sha512-EBr8J7MDsYmSvOYxTbqsSmw6c2yLokHZe8A+EW2vsY9VYFXkoOJLVpCkCK4fhvHUv8/+Y5QnHW7bs1I6SKYXOw== +"@abp/sweetalert2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.1.tgz#676a3269fe4511fc4f81c3231ed9a96fe4c8f006" + integrity sha512-UDQrJiq8OfIDy3GSq7NJ4TKKEihzp6Qc06KGRdnN74lm4JsxxGUToSaD1AbyrLt53jZlRZK2NNc8IiyqPvyfbQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" sweetalert2 "^11.3.6" -"@abp/timeago@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.0.tgz#3aaef3edca333224ba6b3e81c8ad1ebaae51a2f4" - integrity sha512-FxtoPYxyk2CHeoloC6kaeCj5YtXH0rebhOEaCjrfyg9/Ec6LEkvpfC7RWlcsHaEUAtFXZegJDfOk066EPH7RHQ== +"@abp/timeago@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.1.tgz#069a4eb2725b0a183cb7609e1f48d8d857a606ba" + integrity sha512-+QWO9MTuf6X7sUXxoUGyoQ0EhoQUlRDdCPmwwcZyBzBf8q9A3hS+Rtmex3BqwRLDxL2vL78gbDpIBgPn/kFuUA== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" timeago "^1.6.7" -"@abp/toastr@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.0.tgz#8a002c19ea25ac6b042a25c0f9d289d03c93c2fb" - integrity sha512-gjb2O/XrYkX8IeCERIqlOYPh15WlF9LxGR6t9jeVF/p6BTX/yaWabYCFfB9SkU2pQ6xrGl7WmSTAC06JOAtPTA== +"@abp/toastr@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.1.tgz#4a18b293444f7f8a523b7255ea61fed838131f1c" + integrity sha512-gz5cl6sPu6b65h8VJ6ne+dkM0oVXSYBlDoKBYbDRjhH6i7yWUpcylY/lrOvWacNQBOagBy5bep1937aec1/BXQ== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" toastr "^2.1.4" -"@abp/utils@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.0.tgz#e93739074a3cd445a5a221209506b7e663050ca0" - integrity sha512-Nm+h+3PL10+rBFSh8UUuenmGM+OBlEoNQeGzHRmhOc6hJ3oqCogPzY+zkq0e4pksrwhjxAu/cgCEGLAoEXXycw== +"@abp/utils@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.1.tgz#ff238e3b70c6fffb1600d845c202961e1179c813" + integrity sha512-XVYrygoWq1ZHz4N7BSJ4P77wmd0geRhpyR5ztzyP1WaF2LaCRS63BjZ/a7xKdtioUby9GP5jSvMjBvwqVviYIQ== dependencies: just-compare "^1.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 cc93b1db85..de939989de 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": "^5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1" } } 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 7b87df9c6c..54ca3aa193 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.0.tgz#dcdd73d8582c4d14438f70d765170398d5d582fb" - integrity sha512-H6UrafHRI1DHfIoi47gZWHKSanlyAkghtGgUO6GTmPqTubBXjl7Ky3owVUAXvFd49+72gwdCLA/DB0Khjc3Ayw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.0" - -"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.0.tgz#84e94845a247815ce981cda2d195944a350530b9" - integrity sha512-RwXxlncjidvh8Hgw91Hz1f5rnfG9hlNROr5bD/kxTUB47vIh/TIBd06UYrYw2/lqFLw5d6wd8q7VLuDjGUQbpg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~5.3.0" - "@abp/bootstrap" "~5.3.0" - "@abp/bootstrap-datepicker" "~5.3.0" - "@abp/datatables.net-bs5" "~5.3.0" - "@abp/font-awesome" "~5.3.0" - "@abp/jquery-form" "~5.3.0" - "@abp/jquery-validation-unobtrusive" "~5.3.0" - "@abp/lodash" "~5.3.0" - "@abp/luxon" "~5.3.0" - "@abp/malihu-custom-scrollbar-plugin" "~5.3.0" - "@abp/select2" "~5.3.0" - "@abp/sweetalert2" "~5.3.0" - "@abp/timeago" "~5.3.0" - "@abp/toastr" "~5.3.0" - -"@abp/aspnetcore.mvc.ui@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.0.tgz#e947fd1aecbd2aabc5db4c6a64b78f2690fcf0d4" - integrity sha512-en2YDb/hRG1MKkbli1PYcoeU9OLU0YPSahkIBSfOmMLntAe8y0c2+Xe09chXP4r+GoZu0zd9FM3qqCRZojrlug== +"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.1.tgz#469befe88cd7d3362112db9a5ce7cf3eae328b3e" + integrity sha512-qvzNICtvrNVllo7c8khvKw4LQ6MxwWcJar8PyOhgS+Pgtn4lT5rQqzGvaYKMiDyj5gjWGzPOzjU/vgR1uiGYNg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.1" + +"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.1.tgz#7fe0aba80670bf4326251138dc7e12ea5830c919" + integrity sha512-ieS54bLQr4Aa96CnFEmuxe0ndeJpJMkq5eYSWAziH4i15jm7o+K2ouIL0K606lk1Sn/UrP8Yl+DRhxr4i4P8ow== + dependencies: + "@abp/aspnetcore.mvc.ui" "~5.3.1" + "@abp/bootstrap" "~5.3.1" + "@abp/bootstrap-datepicker" "~5.3.1" + "@abp/datatables.net-bs5" "~5.3.1" + "@abp/font-awesome" "~5.3.1" + "@abp/jquery-form" "~5.3.1" + "@abp/jquery-validation-unobtrusive" "~5.3.1" + "@abp/lodash" "~5.3.1" + "@abp/luxon" "~5.3.1" + "@abp/malihu-custom-scrollbar-plugin" "~5.3.1" + "@abp/select2" "~5.3.1" + "@abp/sweetalert2" "~5.3.1" + "@abp/timeago" "~5.3.1" + "@abp/toastr" "~5.3.1" + +"@abp/aspnetcore.mvc.ui@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.1.tgz#17ccf9a2a40cbd79e670a0cb5be74ac9eb17b963" + integrity sha512-UuXH0Lz7DqiGp47BC7xllT3Imf2Nk+eccOiVRwc9PAfHKnNOOJYxvDlHS0x8CM09qxM5EVaH7tfwOLSS09HXpg== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,144 +41,144 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.0.tgz#09c44954774d8f52ca8ff6699ad4dbb7cc0308c2" - integrity sha512-AQ26I0jgoCioW1/4XmQIyn1c1+CLv8KTb4Vd4ZbtdYGBkkkUe+JEAWpJSeXlJRr/XrOs0BKWp/fa7Nnwx8srLg== +"@abp/bootstrap-datepicker@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.1.tgz#241aebfbae0fa451d3e719776096b14bf77c08fa" + integrity sha512-gvP7SNEnPFYuLmIBp7QobveAGv8Rm/8JTmixCChQPPP9XX3u82ilKP2cgxVXm/4/jf0Gy7Gusn7urmTbTxeGEw== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.0.tgz#42dac2d2d6374f39d068a638687039c5c74df123" - integrity sha512-rg9mLcvT4JQRc1rIAhGYK1P2eMRJ1+GArQXV5l7k3FrVU+bRLKdoE6PNpuwXHpdlom4/dOgekfuWH/SAuY5kyw== +"@abp/bootstrap@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.1.tgz#f941afe2be2deaa1962a3626593451847dee5bd6" + integrity sha512-qPGeNFEaQF57b0viA0eHKA0cZ9b0gscOqE0o4ewHxnlRoRYiY3Ob9V6x6S85n2b7H6tDZOWAePXEgkV40yK/Bg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" bootstrap "^5.1.3" -"@abp/core@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.0.tgz#032724dd0c0b850204896ce0275c7f9c8f516740" - integrity sha512-Uk9h98jiEF1dItWrvWnYB6s/UNZZapvFSyJ4+piAsZmXOSAbrObV+s19n5xfUagQQTWn4+aU5+aChEcfWpYv9A== +"@abp/core@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.1.tgz#26890ab049d43db58f3a0fba2f4c50bd2fbf7811" + integrity sha512-7PBPDYq/s0T5H0iYaeCzqWF44jbiOkFlwGnXqZeKHt2cKZaMyCStgotrpap8qoZKlxuyxudFIzJrzJIEP0AN/Q== dependencies: - "@abp/utils" "~5.3.0" + "@abp/utils" "~5.3.1" -"@abp/datatables.net-bs5@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.0.tgz#84771ce4eb7229bed347a5904c891b08e3230422" - integrity sha512-FpKrgrjaBKVgFAnbBsrvDIJJOy8gbWCEHm5Jy2vFWXmx25fITMw/2ckBDH87yrZtCNVTSUbMIdHYOIHMPfSavQ== +"@abp/datatables.net-bs5@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.1.tgz#e380cc253a837a0629baec9dabb4e8919878cc38" + integrity sha512-LpGPWLvFsLkQjo5RTgEl24LbBokgsO1gv7/pVy/1oiXXCLTuVwJ8vYYKfDNkrrSLDUOJ9cCC0YUE5SRfDUystA== dependencies: - "@abp/datatables.net" "~5.3.0" + "@abp/datatables.net" "~5.3.1" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.0.tgz#dd27ae451df9551f5b815e10c87a8a89c6a38293" - integrity sha512-d4lQ09G7HY2gEN1lRAteCZzY0Fv3gPuUM+icgWm+UkmDZV9lhvovTQ58Xkwayw8vf+NPlit1eGMMQedn6MbeAQ== +"@abp/datatables.net@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.1.tgz#8200b5a3a719f51d21670b1420e3df48af4de42e" + integrity sha512-v30gkk4dcmWz260C8BA7uaU4kqpiC1wkgMvdzjPGefzYXsMftlcoX7GUvByWwTzlJnTphGvnIVJhnhX73VVDHg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" datatables.net "^1.11.4" -"@abp/font-awesome@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.0.tgz#ce1d5bb59bd597cc9717885917d4dd2eae1f8b9c" - integrity sha512-JX62EVfZSJ7pv75Gd3ya/3c3He0hXF7KmpTizUNd/EbeHuNJoCND5wwq5OAFV9Ld3vdcGJChNTydNa5RsBzrpg== +"@abp/font-awesome@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.1.tgz#2b4654b463b7858fc237219fd852ca0f41e4e062" + integrity sha512-LFKPjQgJmQ6GNqW3geluHMgV3WbisniAaK9tl6Pv8WOvPluvZGHTK5qjcAQVwM6Bj944VYeuvLo1ZCOoC/rWLg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.0.tgz#5ae9906f0cffaf3e043681a5dd80a014b4860f6b" - integrity sha512-ZTpXCImHirJDZjfnJRtSEHLIbWMTYkqtTv7Z3GMRKnI4fllpmuco9EWLAKjAfYPyc/QpTx+MYnUg5SsXORhJyQ== +"@abp/jquery-form@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.1.tgz#e17367af8dafcfbb352775fb6ab9182d1fd9cd63" + integrity sha512-s8XItBHKJuehprFy7xePWHxt8jMvjDmkmk2nEuJXj+gcZyVEEa3hBd4ykKDXFfmNrfS8aMy+VqA+VEA24Cmpww== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.0.tgz#ccf90a7840398e69e0a91ed6c32b80fa2eb82d14" - integrity sha512-6B3ywnpvPxpnxkrcXzjTjMWgKRImbzNPOZvv5ant/kQv3zXedV1GXSIILy+imX39FuDPslOmEfx8plwrNvIteA== +"@abp/jquery-validation-unobtrusive@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.1.tgz#7c5c31df1cd021b3eed618d914926b76dc7e9e6e" + integrity sha512-B5USCmF56eWQO+R4eZtMjURtoNGUEuAuBy4ltCPtZx0s6yn94Ooq4oYKqEbfnLoSsQshajUwBtqtlC6+YA612Q== dependencies: - "@abp/jquery-validation" "~5.3.0" + "@abp/jquery-validation" "~5.3.1" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.0.tgz#a21696e7d5d54ef8bcdc0e8bd2debb1da1f7f5cc" - integrity sha512-4z2I9iORf+z5SlN9crC/Gx3X5GAOVePD+WN8SaHSYr4VWYNe8TV8LvCZPilN56sIPt3jYvy0N+bI1tAuZPu/NQ== +"@abp/jquery-validation@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.1.tgz#b34c0e29e12843de4a407bc8775a2e560e4db923" + integrity sha512-lu2e47GwWmh/ahWA5bbeR9Gqqsy4a3htTIvnwWbtu7dnHVHA6469+uCt+0f+sVthDIL+cMwoYgcygMLIUHoFxg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-validation "^1.19.3" -"@abp/jquery@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.0.tgz#0279ee501ed774a788072c2ec8b003e348fec22c" - integrity sha512-rqYbU3LpsT7XT8ygn+TFVmjev5NlgEcDhGwQ8PraY1dEjlDbteeQ50N4adS8fdRfOM1UjGL19ueN3F8E5qNUSg== +"@abp/jquery@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.1.tgz#8f6032253d4c44b135c238a4efa010bee1ec5991" + integrity sha512-ngy9Kvy6lXrQBCxWi7t8I4Wudv87C2R50O/T4CZPfM2nwYLynopa+aI9r9VLhO/wIROyXX3C8UIpeLhQzm776w== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" jquery "~3.6.0" -"@abp/lodash@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.0.tgz#45f1dba7bb65b6599b4973d7e0c617dfd2c46c49" - integrity sha512-vQVMv58QuYttWBfLjJzIsw92JunGbWYsqk6pp6/JuoBls5UJtdP1F7vM4JgQxsscGYHFRZB3F4a3h1cxZ+dblQ== +"@abp/lodash@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.1.tgz#49c0806bae0858047faed75b6e9ed6207dc4cffc" + integrity sha512-QQshVHkNlunbhcmBG5E2wdZNcHYrTsNQjJNF6IZkeFszNRHu/k0u1bhszDwjPgEzeewTqMu8n44TzkbA8yP5GA== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" lodash "^4.17.21" -"@abp/luxon@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.0.tgz#8a6277046f6e38c3affbf79c06f8ac00d1ca8098" - integrity sha512-6tETR03i1NPJuDqSQWtpkOykdq/84awifQUqRyh+b8340wV7P54NqUMDXDit9sjITFDhq99V/R+Rj3PVjvJD3A== +"@abp/luxon@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.1.tgz#8d843023b05b157ff9ab23548c8d8c4e7101ae88" + integrity sha512-Jw8p5S9qHZkUrD1fx3nvpnBqn8Zb9jDiG6xdc6tY+v1aqDDwEqPUr7TqaLnY9GnZefiM3sYVwAh42nzPOwg9aQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.0.tgz#e6e12162aa50d3c3d98629378cec2f6fd5964338" - integrity sha512-GVwgAZQurH/tr4Hgmuby2dun//v1dT+wLGV4ZvjCJzBRs4FgrB+25pj4qKm20j6/NKRKc4V5re/b1y6njCubFQ== +"@abp/malihu-custom-scrollbar-plugin@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.1.tgz#7f0e4f2df325345a8e3be67456522cb035e3e962" + integrity sha512-ll49qD7bslt7+deMAFZ0DfveH/5ZsHyL2RLDg796ARz+H7fQpEhyNFeGETGj+HSOvAl3ivux2mxNCMYbXHR4RQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/select2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.0.tgz#aae202b87dc23dfc7c8fd933413a8dbeb2f5b683" - integrity sha512-0aIxdtzgONkrYnUN5ACkIIIhsC9e61QLRq3K+/98fjf7NkHOjG3Sptr8EKu5U3IQ2hNHgqBjPGYjkztGuxZ9kw== +"@abp/select2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.1.tgz#9a49aa983d52eecbd2dc2160349d45bd46324e36" + integrity sha512-ne4LJJy9n3V8BPtyU6voX4Bo0/GUrZBnI4Mkb0wRKNt1rxj7PhPXebsYYz090QJuJh8fuF2OHteNMBA7gMryLQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" select2 "^4.0.13" -"@abp/sweetalert2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.0.tgz#67379cfa4cb8884cb66b58f4cafa79960cf8426a" - integrity sha512-EBr8J7MDsYmSvOYxTbqsSmw6c2yLokHZe8A+EW2vsY9VYFXkoOJLVpCkCK4fhvHUv8/+Y5QnHW7bs1I6SKYXOw== +"@abp/sweetalert2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.1.tgz#676a3269fe4511fc4f81c3231ed9a96fe4c8f006" + integrity sha512-UDQrJiq8OfIDy3GSq7NJ4TKKEihzp6Qc06KGRdnN74lm4JsxxGUToSaD1AbyrLt53jZlRZK2NNc8IiyqPvyfbQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" sweetalert2 "^11.3.6" -"@abp/timeago@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.0.tgz#3aaef3edca333224ba6b3e81c8ad1ebaae51a2f4" - integrity sha512-FxtoPYxyk2CHeoloC6kaeCj5YtXH0rebhOEaCjrfyg9/Ec6LEkvpfC7RWlcsHaEUAtFXZegJDfOk066EPH7RHQ== +"@abp/timeago@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.1.tgz#069a4eb2725b0a183cb7609e1f48d8d857a606ba" + integrity sha512-+QWO9MTuf6X7sUXxoUGyoQ0EhoQUlRDdCPmwwcZyBzBf8q9A3hS+Rtmex3BqwRLDxL2vL78gbDpIBgPn/kFuUA== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" timeago "^1.6.7" -"@abp/toastr@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.0.tgz#8a002c19ea25ac6b042a25c0f9d289d03c93c2fb" - integrity sha512-gjb2O/XrYkX8IeCERIqlOYPh15WlF9LxGR6t9jeVF/p6BTX/yaWabYCFfB9SkU2pQ6xrGl7WmSTAC06JOAtPTA== +"@abp/toastr@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.1.tgz#4a18b293444f7f8a523b7255ea61fed838131f1c" + integrity sha512-gz5cl6sPu6b65h8VJ6ne+dkM0oVXSYBlDoKBYbDRjhH6i7yWUpcylY/lrOvWacNQBOagBy5bep1937aec1/BXQ== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" toastr "^2.1.4" -"@abp/utils@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.0.tgz#e93739074a3cd445a5a221209506b7e663050ca0" - integrity sha512-Nm+h+3PL10+rBFSh8UUuenmGM+OBlEoNQeGzHRmhOc6hJ3oqCogPzY+zkq0e4pksrwhjxAu/cgCEGLAoEXXycw== +"@abp/utils@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.1.tgz#ff238e3b70c6fffb1600d845c202961e1179c813" + integrity sha512-XVYrygoWq1ZHz4N7BSJ4P77wmd0geRhpyR5ztzyP1WaF2LaCRS63BjZ/a7xKdtioUby9GP5jSvMjBvwqVviYIQ== dependencies: just-compare "^1.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 933390e8f8..5342df3536 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": "^5.3.0", - "@abp/cms-kit": "5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1", + "@abp/cms-kit": "5.3.1" } } 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 6b13c7cede..e00c1a0aa3 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.0.tgz#dcdd73d8582c4d14438f70d765170398d5d582fb" - integrity sha512-H6UrafHRI1DHfIoi47gZWHKSanlyAkghtGgUO6GTmPqTubBXjl7Ky3owVUAXvFd49+72gwdCLA/DB0Khjc3Ayw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.0" - -"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.0.tgz#84e94845a247815ce981cda2d195944a350530b9" - integrity sha512-RwXxlncjidvh8Hgw91Hz1f5rnfG9hlNROr5bD/kxTUB47vIh/TIBd06UYrYw2/lqFLw5d6wd8q7VLuDjGUQbpg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~5.3.0" - "@abp/bootstrap" "~5.3.0" - "@abp/bootstrap-datepicker" "~5.3.0" - "@abp/datatables.net-bs5" "~5.3.0" - "@abp/font-awesome" "~5.3.0" - "@abp/jquery-form" "~5.3.0" - "@abp/jquery-validation-unobtrusive" "~5.3.0" - "@abp/lodash" "~5.3.0" - "@abp/luxon" "~5.3.0" - "@abp/malihu-custom-scrollbar-plugin" "~5.3.0" - "@abp/select2" "~5.3.0" - "@abp/sweetalert2" "~5.3.0" - "@abp/timeago" "~5.3.0" - "@abp/toastr" "~5.3.0" - -"@abp/aspnetcore.mvc.ui@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.0.tgz#e947fd1aecbd2aabc5db4c6a64b78f2690fcf0d4" - integrity sha512-en2YDb/hRG1MKkbli1PYcoeU9OLU0YPSahkIBSfOmMLntAe8y0c2+Xe09chXP4r+GoZu0zd9FM3qqCRZojrlug== +"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.1.tgz#469befe88cd7d3362112db9a5ce7cf3eae328b3e" + integrity sha512-qvzNICtvrNVllo7c8khvKw4LQ6MxwWcJar8PyOhgS+Pgtn4lT5rQqzGvaYKMiDyj5gjWGzPOzjU/vgR1uiGYNg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.1" + +"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.1.tgz#7fe0aba80670bf4326251138dc7e12ea5830c919" + integrity sha512-ieS54bLQr4Aa96CnFEmuxe0ndeJpJMkq5eYSWAziH4i15jm7o+K2ouIL0K606lk1Sn/UrP8Yl+DRhxr4i4P8ow== + dependencies: + "@abp/aspnetcore.mvc.ui" "~5.3.1" + "@abp/bootstrap" "~5.3.1" + "@abp/bootstrap-datepicker" "~5.3.1" + "@abp/datatables.net-bs5" "~5.3.1" + "@abp/font-awesome" "~5.3.1" + "@abp/jquery-form" "~5.3.1" + "@abp/jquery-validation-unobtrusive" "~5.3.1" + "@abp/lodash" "~5.3.1" + "@abp/luxon" "~5.3.1" + "@abp/malihu-custom-scrollbar-plugin" "~5.3.1" + "@abp/select2" "~5.3.1" + "@abp/sweetalert2" "~5.3.1" + "@abp/timeago" "~5.3.1" + "@abp/toastr" "~5.3.1" + +"@abp/aspnetcore.mvc.ui@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.1.tgz#17ccf9a2a40cbd79e670a0cb5be74ac9eb17b963" + integrity sha512-UuXH0Lz7DqiGp47BC7xllT3Imf2Nk+eccOiVRwc9PAfHKnNOOJYxvDlHS0x8CM09qxM5EVaH7tfwOLSS09HXpg== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,243 +41,243 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.0.tgz#09c44954774d8f52ca8ff6699ad4dbb7cc0308c2" - integrity sha512-AQ26I0jgoCioW1/4XmQIyn1c1+CLv8KTb4Vd4ZbtdYGBkkkUe+JEAWpJSeXlJRr/XrOs0BKWp/fa7Nnwx8srLg== +"@abp/bootstrap-datepicker@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.1.tgz#241aebfbae0fa451d3e719776096b14bf77c08fa" + integrity sha512-gvP7SNEnPFYuLmIBp7QobveAGv8Rm/8JTmixCChQPPP9XX3u82ilKP2cgxVXm/4/jf0Gy7Gusn7urmTbTxeGEw== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.0.tgz#42dac2d2d6374f39d068a638687039c5c74df123" - integrity sha512-rg9mLcvT4JQRc1rIAhGYK1P2eMRJ1+GArQXV5l7k3FrVU+bRLKdoE6PNpuwXHpdlom4/dOgekfuWH/SAuY5kyw== +"@abp/bootstrap@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.1.tgz#f941afe2be2deaa1962a3626593451847dee5bd6" + integrity sha512-qPGeNFEaQF57b0viA0eHKA0cZ9b0gscOqE0o4ewHxnlRoRYiY3Ob9V6x6S85n2b7H6tDZOWAePXEgkV40yK/Bg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" bootstrap "^5.1.3" -"@abp/clipboard@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-5.3.0.tgz#579bbc786d32c4e07c969073872b936575df7a9c" - integrity sha512-J55jQnzPOOAwo70GK9hAB3JxG7rz75tex+17QSFjW7/dXVWt1bPIDRHh/a1wiLEgYc6btsSGhptLtkYAfWpq6w== +"@abp/clipboard@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-5.3.1.tgz#aede839bfba487461d31589092a3f2b0a75a2925" + integrity sha512-XKxxjjT2x7+a6vrw2x6G//ntQGmRcvBz8KcxCXuWJ8cCrHb1x7ZEzIUU4rF6ee7BlnLoEIZ/dCF+s/93yPs9ng== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" clipboard "^2.0.8" -"@abp/cms-kit.admin@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-5.3.0.tgz#5cdb2df086887009a6cf96743586df513a1741ce" - integrity sha512-dO68zu1q5iE8xVY5YUFyl8OLeHcqIRc8/JmGDalhPF+714aQEWEB1OtLBPjyadLzaYZkoIbppePW1E0zGtwtog== +"@abp/cms-kit.admin@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-5.3.1.tgz#0c7517fa022f4885d66f582a2081a76ec7def76b" + integrity sha512-5sgCDlj/QFESxKbjSZjfQx6VyGJfdo2e5ehSBDvrabewP2YUTk8CcKyewCsPTdTb2LFuCawg6ZEJOhev+5eVUw== dependencies: - "@abp/codemirror" "~5.3.0" - "@abp/jstree" "~5.3.0" - "@abp/slugify" "~5.3.0" - "@abp/tui-editor" "~5.3.0" - "@abp/uppy" "~5.3.0" + "@abp/codemirror" "~5.3.1" + "@abp/jstree" "~5.3.1" + "@abp/slugify" "~5.3.1" + "@abp/tui-editor" "~5.3.1" + "@abp/uppy" "~5.3.1" -"@abp/cms-kit.public@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-5.3.0.tgz#c545edbb4d2ee0c4d4d99cb597353635a336f607" - integrity sha512-hY+1j3ZqgU2D86/677yGEbbbMntqEy+drbqcj/DkG+YT/pXndJG3XwKZQ/fMpyD4+f9uvTnM1SBdQzvyFSRtMw== +"@abp/cms-kit.public@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-5.3.1.tgz#f455d98846121e92b78ae82134e949b57450be85" + integrity sha512-N0BoSqh3HcKxyX29fMClwsYwALJFXFT8TcRwvJj+3jPkIqqWJ9nR9JefZVJ54l8FzkxBiYFJ33FLFI0tSDB8Qw== dependencies: - "@abp/highlight.js" "~5.3.0" - "@abp/star-rating-svg" "~5.3.0" + "@abp/highlight.js" "~5.3.1" + "@abp/star-rating-svg" "~5.3.1" -"@abp/cms-kit@5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-5.3.0.tgz#5bc0635bcb79615578bf7c86f2b3ee1113e6d5c5" - integrity sha512-1LMeGa/dCaVmrMBdFsYV7DwlAtK4wktrb6SAHYTVDEdbvR306hjvYZBa99w20oXNlmvWDTs/EW5ZPbSyjF+ILw== +"@abp/cms-kit@5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-5.3.1.tgz#db1a900d27a706d2dceb3e0958d5a5600663f1a8" + integrity sha512-qswqY9smSgZ60gSIPMzByLDXxUIuNIE3YeK9xRnOXAs/S7SMp228Q9zPX0hUM07mA+k9Xll7KgnedS5trthHKQ== dependencies: - "@abp/cms-kit.admin" "~5.3.0" - "@abp/cms-kit.public" "~5.3.0" + "@abp/cms-kit.admin" "~5.3.1" + "@abp/cms-kit.public" "~5.3.1" -"@abp/codemirror@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-5.3.0.tgz#16fc4b0158b32d1505d3c3c5adaa4eddbc9f225c" - integrity sha512-xw802zydI4OHk9P2rI4vKgT8wKDAK/JQlEEPIZvPFXNvmfIkV2CDJr0AZkrhYw0AB07EzAQkndPFia8TyW82Pw== +"@abp/codemirror@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-5.3.1.tgz#d476e285f3c1f7c8680dd0595d6ce011aec0bdc9" + integrity sha512-G5COI/GzE+wYpgkPmdph+PRf9Dg7CF4iEcKHusk7FunOikUOU2RX/PG2Yx20JWkvsVdEIcFWG4y9oPEk2ziUhQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" codemirror "^5.65.1" -"@abp/core@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.0.tgz#032724dd0c0b850204896ce0275c7f9c8f516740" - integrity sha512-Uk9h98jiEF1dItWrvWnYB6s/UNZZapvFSyJ4+piAsZmXOSAbrObV+s19n5xfUagQQTWn4+aU5+aChEcfWpYv9A== +"@abp/core@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.1.tgz#26890ab049d43db58f3a0fba2f4c50bd2fbf7811" + integrity sha512-7PBPDYq/s0T5H0iYaeCzqWF44jbiOkFlwGnXqZeKHt2cKZaMyCStgotrpap8qoZKlxuyxudFIzJrzJIEP0AN/Q== dependencies: - "@abp/utils" "~5.3.0" + "@abp/utils" "~5.3.1" -"@abp/datatables.net-bs5@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.0.tgz#84771ce4eb7229bed347a5904c891b08e3230422" - integrity sha512-FpKrgrjaBKVgFAnbBsrvDIJJOy8gbWCEHm5Jy2vFWXmx25fITMw/2ckBDH87yrZtCNVTSUbMIdHYOIHMPfSavQ== +"@abp/datatables.net-bs5@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.1.tgz#e380cc253a837a0629baec9dabb4e8919878cc38" + integrity sha512-LpGPWLvFsLkQjo5RTgEl24LbBokgsO1gv7/pVy/1oiXXCLTuVwJ8vYYKfDNkrrSLDUOJ9cCC0YUE5SRfDUystA== dependencies: - "@abp/datatables.net" "~5.3.0" + "@abp/datatables.net" "~5.3.1" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.0.tgz#dd27ae451df9551f5b815e10c87a8a89c6a38293" - integrity sha512-d4lQ09G7HY2gEN1lRAteCZzY0Fv3gPuUM+icgWm+UkmDZV9lhvovTQ58Xkwayw8vf+NPlit1eGMMQedn6MbeAQ== +"@abp/datatables.net@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.1.tgz#8200b5a3a719f51d21670b1420e3df48af4de42e" + integrity sha512-v30gkk4dcmWz260C8BA7uaU4kqpiC1wkgMvdzjPGefzYXsMftlcoX7GUvByWwTzlJnTphGvnIVJhnhX73VVDHg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" datatables.net "^1.11.4" -"@abp/font-awesome@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.0.tgz#ce1d5bb59bd597cc9717885917d4dd2eae1f8b9c" - integrity sha512-JX62EVfZSJ7pv75Gd3ya/3c3He0hXF7KmpTizUNd/EbeHuNJoCND5wwq5OAFV9Ld3vdcGJChNTydNa5RsBzrpg== +"@abp/font-awesome@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.1.tgz#2b4654b463b7858fc237219fd852ca0f41e4e062" + integrity sha512-LFKPjQgJmQ6GNqW3geluHMgV3WbisniAaK9tl6Pv8WOvPluvZGHTK5qjcAQVwM6Bj944VYeuvLo1ZCOoC/rWLg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/highlight.js@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-5.3.0.tgz#651817b146b9305ea07938ecceef160ff83413bd" - integrity sha512-bcbz67DzyE5pN+/FsyKEX860j7KUDwL3qot1IH995bGT538Fso6xwwA5r4TpR/A/nEx2frmgljU0erX/9MgKew== +"@abp/highlight.js@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-5.3.1.tgz#13a1b4fa61cdec947a548080e853c984b51394b9" + integrity sha512-/yIIOJaxwCoVJF6e1pJfP9/dSx9dWYXAE0C8WxSa2bi+3CnaNPCZ6joJtbFbtOBxs3ctY/qS7NVULeKaiUw+vg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" "@highlightjs/cdn-assets" "~11.4.0" -"@abp/jquery-form@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.0.tgz#5ae9906f0cffaf3e043681a5dd80a014b4860f6b" - integrity sha512-ZTpXCImHirJDZjfnJRtSEHLIbWMTYkqtTv7Z3GMRKnI4fllpmuco9EWLAKjAfYPyc/QpTx+MYnUg5SsXORhJyQ== +"@abp/jquery-form@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.1.tgz#e17367af8dafcfbb352775fb6ab9182d1fd9cd63" + integrity sha512-s8XItBHKJuehprFy7xePWHxt8jMvjDmkmk2nEuJXj+gcZyVEEa3hBd4ykKDXFfmNrfS8aMy+VqA+VEA24Cmpww== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.0.tgz#ccf90a7840398e69e0a91ed6c32b80fa2eb82d14" - integrity sha512-6B3ywnpvPxpnxkrcXzjTjMWgKRImbzNPOZvv5ant/kQv3zXedV1GXSIILy+imX39FuDPslOmEfx8plwrNvIteA== +"@abp/jquery-validation-unobtrusive@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.1.tgz#7c5c31df1cd021b3eed618d914926b76dc7e9e6e" + integrity sha512-B5USCmF56eWQO+R4eZtMjURtoNGUEuAuBy4ltCPtZx0s6yn94Ooq4oYKqEbfnLoSsQshajUwBtqtlC6+YA612Q== dependencies: - "@abp/jquery-validation" "~5.3.0" + "@abp/jquery-validation" "~5.3.1" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.0.tgz#a21696e7d5d54ef8bcdc0e8bd2debb1da1f7f5cc" - integrity sha512-4z2I9iORf+z5SlN9crC/Gx3X5GAOVePD+WN8SaHSYr4VWYNe8TV8LvCZPilN56sIPt3jYvy0N+bI1tAuZPu/NQ== +"@abp/jquery-validation@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.1.tgz#b34c0e29e12843de4a407bc8775a2e560e4db923" + integrity sha512-lu2e47GwWmh/ahWA5bbeR9Gqqsy4a3htTIvnwWbtu7dnHVHA6469+uCt+0f+sVthDIL+cMwoYgcygMLIUHoFxg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-validation "^1.19.3" -"@abp/jquery@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.0.tgz#0279ee501ed774a788072c2ec8b003e348fec22c" - integrity sha512-rqYbU3LpsT7XT8ygn+TFVmjev5NlgEcDhGwQ8PraY1dEjlDbteeQ50N4adS8fdRfOM1UjGL19ueN3F8E5qNUSg== +"@abp/jquery@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.1.tgz#8f6032253d4c44b135c238a4efa010bee1ec5991" + integrity sha512-ngy9Kvy6lXrQBCxWi7t8I4Wudv87C2R50O/T4CZPfM2nwYLynopa+aI9r9VLhO/wIROyXX3C8UIpeLhQzm776w== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" jquery "~3.6.0" -"@abp/jstree@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-5.3.0.tgz#20127f006dec2589c76deaf39227af95253952c6" - integrity sha512-ipiXKUAJjqiph4V7qtSfDr9/nU0UViu+zG+GeKdqxgVxFKR92hsisDOKrPJF+XmprLu7o9T7bxsFgS/B6ko4Og== +"@abp/jstree@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-5.3.1.tgz#0c6d8ee49204951a26daf617d816469b8be2e7ac" + integrity sha512-WOubLE7meyOm/ftX5D5HBCOtzLhgB6XfFV6ZJgQyO/FeZlKP4GVj+u4imXKD4bl43zGD8SLmjL6Xn3c1V+fMSA== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jstree "^3.3.12" -"@abp/lodash@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.0.tgz#45f1dba7bb65b6599b4973d7e0c617dfd2c46c49" - integrity sha512-vQVMv58QuYttWBfLjJzIsw92JunGbWYsqk6pp6/JuoBls5UJtdP1F7vM4JgQxsscGYHFRZB3F4a3h1cxZ+dblQ== +"@abp/lodash@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.1.tgz#49c0806bae0858047faed75b6e9ed6207dc4cffc" + integrity sha512-QQshVHkNlunbhcmBG5E2wdZNcHYrTsNQjJNF6IZkeFszNRHu/k0u1bhszDwjPgEzeewTqMu8n44TzkbA8yP5GA== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" lodash "^4.17.21" -"@abp/luxon@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.0.tgz#8a6277046f6e38c3affbf79c06f8ac00d1ca8098" - integrity sha512-6tETR03i1NPJuDqSQWtpkOykdq/84awifQUqRyh+b8340wV7P54NqUMDXDit9sjITFDhq99V/R+Rj3PVjvJD3A== +"@abp/luxon@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.1.tgz#8d843023b05b157ff9ab23548c8d8c4e7101ae88" + integrity sha512-Jw8p5S9qHZkUrD1fx3nvpnBqn8Zb9jDiG6xdc6tY+v1aqDDwEqPUr7TqaLnY9GnZefiM3sYVwAh42nzPOwg9aQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.0.tgz#e6e12162aa50d3c3d98629378cec2f6fd5964338" - integrity sha512-GVwgAZQurH/tr4Hgmuby2dun//v1dT+wLGV4ZvjCJzBRs4FgrB+25pj4qKm20j6/NKRKc4V5re/b1y6njCubFQ== +"@abp/malihu-custom-scrollbar-plugin@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.1.tgz#7f0e4f2df325345a8e3be67456522cb035e3e962" + integrity sha512-ll49qD7bslt7+deMAFZ0DfveH/5ZsHyL2RLDg796ARz+H7fQpEhyNFeGETGj+HSOvAl3ivux2mxNCMYbXHR4RQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/prismjs@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-5.3.0.tgz#658a371023d9a3de9ecfff1f10bae7a83064fac7" - integrity sha512-NPsYJ9oj/57vG+eVGpDkJcdPAx4WlXTVEUZWWxmaXuM9sHY1/2av975Qk8R5HG6fC74w3DrVCP8YQvU6jlaF1w== +"@abp/prismjs@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-5.3.1.tgz#46b7a7f456b60f3f0f3b92b0a645f30495db571b" + integrity sha512-21h2L4XTIKAuWqYCGKC/MrqledtWsToGLs8Tkk4ML9eQgnpOwGvWyD/5wywlA7zfKKaeOAC9/7Ga7+qckQoQvg== dependencies: - "@abp/clipboard" "~5.3.0" - "@abp/core" "~5.3.0" + "@abp/clipboard" "~5.3.1" + "@abp/core" "~5.3.1" prismjs "^1.26.0" -"@abp/select2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.0.tgz#aae202b87dc23dfc7c8fd933413a8dbeb2f5b683" - integrity sha512-0aIxdtzgONkrYnUN5ACkIIIhsC9e61QLRq3K+/98fjf7NkHOjG3Sptr8EKu5U3IQ2hNHgqBjPGYjkztGuxZ9kw== +"@abp/select2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.1.tgz#9a49aa983d52eecbd2dc2160349d45bd46324e36" + integrity sha512-ne4LJJy9n3V8BPtyU6voX4Bo0/GUrZBnI4Mkb0wRKNt1rxj7PhPXebsYYz090QJuJh8fuF2OHteNMBA7gMryLQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" select2 "^4.0.13" -"@abp/slugify@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-5.3.0.tgz#b805f0c2965382607ce031b949b01ac82dfaa68c" - integrity sha512-N2SUiYDMAyDrs+a35yTsSknFfGDmWtq1IUcOnb6D0WdGyhOTdeBzn5zAQPXYBH6buAjsQQT5mR1tWS0phICVdg== +"@abp/slugify@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-5.3.1.tgz#f08b62550d9c7b24d3caeff98570debcfb795d32" + integrity sha512-GFOqhxUgXfG4WOegZCJI3l1Dx2V06Bz7AW8hfyIHzpHGW5MilHecHWyqkYTU2QbdVukhADSM0eVd1JiJ4n1FnQ== dependencies: slugify "^1.6.5" -"@abp/star-rating-svg@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-5.3.0.tgz#9a5544b3a62df467d04f8c5b73fb6f056cafc8ad" - integrity sha512-DbzCtZE41ELMf22XOXAHbe8zzRuA/BW6s4PxDgk8JEJHAx/BaPOHxauEkd3dpmxBSZGUVaX3RedofnJgIBREEg== +"@abp/star-rating-svg@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-5.3.1.tgz#c87bebfdfbbe3db4132fe2f658fe5702dc83bcb6" + integrity sha512-jxx8dUUpwSUPSvMCJ5yHs0FLglCCtFWUBIW6q/41wi8f6erEVCTm7ClmyVTnVjdn8Nugwu3uxnGVipcEqe9ZAg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" star-rating-svg "^3.5.0" -"@abp/sweetalert2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.0.tgz#67379cfa4cb8884cb66b58f4cafa79960cf8426a" - integrity sha512-EBr8J7MDsYmSvOYxTbqsSmw6c2yLokHZe8A+EW2vsY9VYFXkoOJLVpCkCK4fhvHUv8/+Y5QnHW7bs1I6SKYXOw== +"@abp/sweetalert2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.1.tgz#676a3269fe4511fc4f81c3231ed9a96fe4c8f006" + integrity sha512-UDQrJiq8OfIDy3GSq7NJ4TKKEihzp6Qc06KGRdnN74lm4JsxxGUToSaD1AbyrLt53jZlRZK2NNc8IiyqPvyfbQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" sweetalert2 "^11.3.6" -"@abp/timeago@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.0.tgz#3aaef3edca333224ba6b3e81c8ad1ebaae51a2f4" - integrity sha512-FxtoPYxyk2CHeoloC6kaeCj5YtXH0rebhOEaCjrfyg9/Ec6LEkvpfC7RWlcsHaEUAtFXZegJDfOk066EPH7RHQ== +"@abp/timeago@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.1.tgz#069a4eb2725b0a183cb7609e1f48d8d857a606ba" + integrity sha512-+QWO9MTuf6X7sUXxoUGyoQ0EhoQUlRDdCPmwwcZyBzBf8q9A3hS+Rtmex3BqwRLDxL2vL78gbDpIBgPn/kFuUA== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" timeago "^1.6.7" -"@abp/toastr@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.0.tgz#8a002c19ea25ac6b042a25c0f9d289d03c93c2fb" - integrity sha512-gjb2O/XrYkX8IeCERIqlOYPh15WlF9LxGR6t9jeVF/p6BTX/yaWabYCFfB9SkU2pQ6xrGl7WmSTAC06JOAtPTA== +"@abp/toastr@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.1.tgz#4a18b293444f7f8a523b7255ea61fed838131f1c" + integrity sha512-gz5cl6sPu6b65h8VJ6ne+dkM0oVXSYBlDoKBYbDRjhH6i7yWUpcylY/lrOvWacNQBOagBy5bep1937aec1/BXQ== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" toastr "^2.1.4" -"@abp/tui-editor@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-5.3.0.tgz#99969b636687a6ca4fc651129d12b8a19499c32c" - integrity sha512-FldoVDpVnbBd7jirGnsVDho9hV6Qg2lU4YB5iUgkuMjAEVO/QOb25FK4Fei1jwioE6fjbyF9cwG7WDnG/YEc3g== +"@abp/tui-editor@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-5.3.1.tgz#8906a1f7b307aa2d734954dce1d7c679d6fcf94d" + integrity sha512-+3XNcf2fnVw4L6R40LQ4W4UCgmoajM6SLys3O4NSbx7+JnOV6Wnz3ToiDDFcZESzFWyfejmPGY2EiC7WIN+8RQ== dependencies: - "@abp/jquery" "~5.3.0" - "@abp/prismjs" "~5.3.0" + "@abp/jquery" "~5.3.1" + "@abp/prismjs" "~5.3.1" -"@abp/uppy@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-5.3.0.tgz#af4174021849538fe54a46be9325bb6419618ac8" - integrity sha512-5fP/Warb1SWk+ChkMOLa400uv6S5UTC0ujvDUtkPmR6Q7TY4gtg8Eg9VNQJMLBtcC9t3431OjOfP6J+MdUt8CQ== +"@abp/uppy@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-5.3.1.tgz#5ab60946781e2a615139ecd77dd058324d77f37d" + integrity sha512-fUbfmy88tsPyYy0qAvPG9d3T3BNBNWbI56lAzsyyXkLVZ1lG+7YaV+Yvh0W4W8DqX23f3lLakksszBuSAQMwHg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" uppy "^1.16.1" -"@abp/utils@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.0.tgz#e93739074a3cd445a5a221209506b7e663050ca0" - integrity sha512-Nm+h+3PL10+rBFSh8UUuenmGM+OBlEoNQeGzHRmhOc6hJ3oqCogPzY+zkq0e4pksrwhjxAu/cgCEGLAoEXXycw== +"@abp/utils@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.1.tgz#ff238e3b70c6fffb1600d845c202961e1179c813" + integrity sha512-XVYrygoWq1ZHz4N7BSJ4P77wmd0geRhpyR5ztzyP1WaF2LaCRS63BjZ/a7xKdtioUby9GP5jSvMjBvwqVviYIQ== dependencies: just-compare "^1.3.0" diff --git a/modules/docs/app/VoloDocs.Web/package.json b/modules/docs/app/VoloDocs.Web/package.json index ea4be778d9..b180689a91 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": "^5.3.0", - "@abp/docs": "^5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1", + "@abp/docs": "^5.3.1" } } diff --git a/modules/docs/app/VoloDocs.Web/yarn.lock b/modules/docs/app/VoloDocs.Web/yarn.lock index dc26bd6af4..19fc6428ef 100644 --- a/modules/docs/app/VoloDocs.Web/yarn.lock +++ b/modules/docs/app/VoloDocs.Web/yarn.lock @@ -2,45 +2,45 @@ # yarn lockfile v1 -"@abp/anchor-js@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-5.3.0.tgz#a6786ffc7c646179cdabd6ad05e8801ab9520d1c" - integrity sha512-4mBV86YzkhHbSyMSUGQLmZ2TYGzTQJjO+2TI86BGTwcrEyuuLo0Hbdi6bvSpdctQeQnuQaIREE0nEpPPMwjsDQ== +"@abp/anchor-js@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-5.3.1.tgz#6a3a6b499c4eb728dbb7f07f4fc083e6ba1ef093" + integrity sha512-+eTWfaYsJeYnpcvibcUcRmnPjXEtnaPnGF4AfZL4+RhKtMFSEu+GXu8ANN5crEa+ZvXhN7l9xarvopQA4cJsjQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" anchor-js "^4.3.1" -"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.0.tgz#dcdd73d8582c4d14438f70d765170398d5d582fb" - integrity sha512-H6UrafHRI1DHfIoi47gZWHKSanlyAkghtGgUO6GTmPqTubBXjl7Ky3owVUAXvFd49+72gwdCLA/DB0Khjc3Ayw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.0" - -"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.0.tgz#84e94845a247815ce981cda2d195944a350530b9" - integrity sha512-RwXxlncjidvh8Hgw91Hz1f5rnfG9hlNROr5bD/kxTUB47vIh/TIBd06UYrYw2/lqFLw5d6wd8q7VLuDjGUQbpg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~5.3.0" - "@abp/bootstrap" "~5.3.0" - "@abp/bootstrap-datepicker" "~5.3.0" - "@abp/datatables.net-bs5" "~5.3.0" - "@abp/font-awesome" "~5.3.0" - "@abp/jquery-form" "~5.3.0" - "@abp/jquery-validation-unobtrusive" "~5.3.0" - "@abp/lodash" "~5.3.0" - "@abp/luxon" "~5.3.0" - "@abp/malihu-custom-scrollbar-plugin" "~5.3.0" - "@abp/select2" "~5.3.0" - "@abp/sweetalert2" "~5.3.0" - "@abp/timeago" "~5.3.0" - "@abp/toastr" "~5.3.0" - -"@abp/aspnetcore.mvc.ui@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.0.tgz#e947fd1aecbd2aabc5db4c6a64b78f2690fcf0d4" - integrity sha512-en2YDb/hRG1MKkbli1PYcoeU9OLU0YPSahkIBSfOmMLntAe8y0c2+Xe09chXP4r+GoZu0zd9FM3qqCRZojrlug== +"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.1.tgz#469befe88cd7d3362112db9a5ce7cf3eae328b3e" + integrity sha512-qvzNICtvrNVllo7c8khvKw4LQ6MxwWcJar8PyOhgS+Pgtn4lT5rQqzGvaYKMiDyj5gjWGzPOzjU/vgR1uiGYNg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.1" + +"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.1.tgz#7fe0aba80670bf4326251138dc7e12ea5830c919" + integrity sha512-ieS54bLQr4Aa96CnFEmuxe0ndeJpJMkq5eYSWAziH4i15jm7o+K2ouIL0K606lk1Sn/UrP8Yl+DRhxr4i4P8ow== + dependencies: + "@abp/aspnetcore.mvc.ui" "~5.3.1" + "@abp/bootstrap" "~5.3.1" + "@abp/bootstrap-datepicker" "~5.3.1" + "@abp/datatables.net-bs5" "~5.3.1" + "@abp/font-awesome" "~5.3.1" + "@abp/jquery-form" "~5.3.1" + "@abp/jquery-validation-unobtrusive" "~5.3.1" + "@abp/lodash" "~5.3.1" + "@abp/luxon" "~5.3.1" + "@abp/malihu-custom-scrollbar-plugin" "~5.3.1" + "@abp/select2" "~5.3.1" + "@abp/sweetalert2" "~5.3.1" + "@abp/timeago" "~5.3.1" + "@abp/toastr" "~5.3.1" + +"@abp/aspnetcore.mvc.ui@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.1.tgz#17ccf9a2a40cbd79e670a0cb5be74ac9eb17b963" + integrity sha512-UuXH0Lz7DqiGp47BC7xllT3Imf2Nk+eccOiVRwc9PAfHKnNOOJYxvDlHS0x8CM09qxM5EVaH7tfwOLSS09HXpg== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -49,180 +49,180 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.0.tgz#09c44954774d8f52ca8ff6699ad4dbb7cc0308c2" - integrity sha512-AQ26I0jgoCioW1/4XmQIyn1c1+CLv8KTb4Vd4ZbtdYGBkkkUe+JEAWpJSeXlJRr/XrOs0BKWp/fa7Nnwx8srLg== +"@abp/bootstrap-datepicker@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.1.tgz#241aebfbae0fa451d3e719776096b14bf77c08fa" + integrity sha512-gvP7SNEnPFYuLmIBp7QobveAGv8Rm/8JTmixCChQPPP9XX3u82ilKP2cgxVXm/4/jf0Gy7Gusn7urmTbTxeGEw== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.0.tgz#42dac2d2d6374f39d068a638687039c5c74df123" - integrity sha512-rg9mLcvT4JQRc1rIAhGYK1P2eMRJ1+GArQXV5l7k3FrVU+bRLKdoE6PNpuwXHpdlom4/dOgekfuWH/SAuY5kyw== +"@abp/bootstrap@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.1.tgz#f941afe2be2deaa1962a3626593451847dee5bd6" + integrity sha512-qPGeNFEaQF57b0viA0eHKA0cZ9b0gscOqE0o4ewHxnlRoRYiY3Ob9V6x6S85n2b7H6tDZOWAePXEgkV40yK/Bg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" bootstrap "^5.1.3" -"@abp/clipboard@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-5.3.0.tgz#579bbc786d32c4e07c969073872b936575df7a9c" - integrity sha512-J55jQnzPOOAwo70GK9hAB3JxG7rz75tex+17QSFjW7/dXVWt1bPIDRHh/a1wiLEgYc6btsSGhptLtkYAfWpq6w== +"@abp/clipboard@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-5.3.1.tgz#aede839bfba487461d31589092a3f2b0a75a2925" + integrity sha512-XKxxjjT2x7+a6vrw2x6G//ntQGmRcvBz8KcxCXuWJ8cCrHb1x7ZEzIUU4rF6ee7BlnLoEIZ/dCF+s/93yPs9ng== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" clipboard "^2.0.8" -"@abp/core@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.0.tgz#032724dd0c0b850204896ce0275c7f9c8f516740" - integrity sha512-Uk9h98jiEF1dItWrvWnYB6s/UNZZapvFSyJ4+piAsZmXOSAbrObV+s19n5xfUagQQTWn4+aU5+aChEcfWpYv9A== +"@abp/core@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.1.tgz#26890ab049d43db58f3a0fba2f4c50bd2fbf7811" + integrity sha512-7PBPDYq/s0T5H0iYaeCzqWF44jbiOkFlwGnXqZeKHt2cKZaMyCStgotrpap8qoZKlxuyxudFIzJrzJIEP0AN/Q== dependencies: - "@abp/utils" "~5.3.0" + "@abp/utils" "~5.3.1" -"@abp/datatables.net-bs5@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.0.tgz#84771ce4eb7229bed347a5904c891b08e3230422" - integrity sha512-FpKrgrjaBKVgFAnbBsrvDIJJOy8gbWCEHm5Jy2vFWXmx25fITMw/2ckBDH87yrZtCNVTSUbMIdHYOIHMPfSavQ== +"@abp/datatables.net-bs5@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.1.tgz#e380cc253a837a0629baec9dabb4e8919878cc38" + integrity sha512-LpGPWLvFsLkQjo5RTgEl24LbBokgsO1gv7/pVy/1oiXXCLTuVwJ8vYYKfDNkrrSLDUOJ9cCC0YUE5SRfDUystA== dependencies: - "@abp/datatables.net" "~5.3.0" + "@abp/datatables.net" "~5.3.1" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.0.tgz#dd27ae451df9551f5b815e10c87a8a89c6a38293" - integrity sha512-d4lQ09G7HY2gEN1lRAteCZzY0Fv3gPuUM+icgWm+UkmDZV9lhvovTQ58Xkwayw8vf+NPlit1eGMMQedn6MbeAQ== +"@abp/datatables.net@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.1.tgz#8200b5a3a719f51d21670b1420e3df48af4de42e" + integrity sha512-v30gkk4dcmWz260C8BA7uaU4kqpiC1wkgMvdzjPGefzYXsMftlcoX7GUvByWwTzlJnTphGvnIVJhnhX73VVDHg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" datatables.net "^1.11.4" -"@abp/docs@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-5.3.0.tgz#6d579324861e19fe04026557b078924482832cd3" - integrity sha512-MJNFP6qRdIoZHiBmydniHb8fXVdn1TwCvHL3nTH8efOeRXfj985LXLDwIhem3sOUdJ/bnpRDS8camObScdYWRQ== +"@abp/docs@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-5.3.1.tgz#399fc35f8c58161a476b705c1f09242feebf9afa" + integrity sha512-lBmgv23tMXtfO6HxfANMZ4WxahghGYGBMqkfbvmN1wyrxvR4Yf4As3oA1cJcK1flWEMY5ZPV/TamDPBdvc74Jg== dependencies: - "@abp/anchor-js" "~5.3.0" - "@abp/clipboard" "~5.3.0" - "@abp/malihu-custom-scrollbar-plugin" "~5.3.0" - "@abp/popper.js" "~5.3.0" - "@abp/prismjs" "~5.3.0" + "@abp/anchor-js" "~5.3.1" + "@abp/clipboard" "~5.3.1" + "@abp/malihu-custom-scrollbar-plugin" "~5.3.1" + "@abp/popper.js" "~5.3.1" + "@abp/prismjs" "~5.3.1" -"@abp/font-awesome@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.0.tgz#ce1d5bb59bd597cc9717885917d4dd2eae1f8b9c" - integrity sha512-JX62EVfZSJ7pv75Gd3ya/3c3He0hXF7KmpTizUNd/EbeHuNJoCND5wwq5OAFV9Ld3vdcGJChNTydNa5RsBzrpg== +"@abp/font-awesome@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.1.tgz#2b4654b463b7858fc237219fd852ca0f41e4e062" + integrity sha512-LFKPjQgJmQ6GNqW3geluHMgV3WbisniAaK9tl6Pv8WOvPluvZGHTK5qjcAQVwM6Bj944VYeuvLo1ZCOoC/rWLg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.0.tgz#5ae9906f0cffaf3e043681a5dd80a014b4860f6b" - integrity sha512-ZTpXCImHirJDZjfnJRtSEHLIbWMTYkqtTv7Z3GMRKnI4fllpmuco9EWLAKjAfYPyc/QpTx+MYnUg5SsXORhJyQ== +"@abp/jquery-form@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.1.tgz#e17367af8dafcfbb352775fb6ab9182d1fd9cd63" + integrity sha512-s8XItBHKJuehprFy7xePWHxt8jMvjDmkmk2nEuJXj+gcZyVEEa3hBd4ykKDXFfmNrfS8aMy+VqA+VEA24Cmpww== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.0.tgz#ccf90a7840398e69e0a91ed6c32b80fa2eb82d14" - integrity sha512-6B3ywnpvPxpnxkrcXzjTjMWgKRImbzNPOZvv5ant/kQv3zXedV1GXSIILy+imX39FuDPslOmEfx8plwrNvIteA== +"@abp/jquery-validation-unobtrusive@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.1.tgz#7c5c31df1cd021b3eed618d914926b76dc7e9e6e" + integrity sha512-B5USCmF56eWQO+R4eZtMjURtoNGUEuAuBy4ltCPtZx0s6yn94Ooq4oYKqEbfnLoSsQshajUwBtqtlC6+YA612Q== dependencies: - "@abp/jquery-validation" "~5.3.0" + "@abp/jquery-validation" "~5.3.1" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.0.tgz#a21696e7d5d54ef8bcdc0e8bd2debb1da1f7f5cc" - integrity sha512-4z2I9iORf+z5SlN9crC/Gx3X5GAOVePD+WN8SaHSYr4VWYNe8TV8LvCZPilN56sIPt3jYvy0N+bI1tAuZPu/NQ== +"@abp/jquery-validation@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.1.tgz#b34c0e29e12843de4a407bc8775a2e560e4db923" + integrity sha512-lu2e47GwWmh/ahWA5bbeR9Gqqsy4a3htTIvnwWbtu7dnHVHA6469+uCt+0f+sVthDIL+cMwoYgcygMLIUHoFxg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-validation "^1.19.3" -"@abp/jquery@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.0.tgz#0279ee501ed774a788072c2ec8b003e348fec22c" - integrity sha512-rqYbU3LpsT7XT8ygn+TFVmjev5NlgEcDhGwQ8PraY1dEjlDbteeQ50N4adS8fdRfOM1UjGL19ueN3F8E5qNUSg== +"@abp/jquery@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.1.tgz#8f6032253d4c44b135c238a4efa010bee1ec5991" + integrity sha512-ngy9Kvy6lXrQBCxWi7t8I4Wudv87C2R50O/T4CZPfM2nwYLynopa+aI9r9VLhO/wIROyXX3C8UIpeLhQzm776w== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" jquery "~3.6.0" -"@abp/lodash@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.0.tgz#45f1dba7bb65b6599b4973d7e0c617dfd2c46c49" - integrity sha512-vQVMv58QuYttWBfLjJzIsw92JunGbWYsqk6pp6/JuoBls5UJtdP1F7vM4JgQxsscGYHFRZB3F4a3h1cxZ+dblQ== +"@abp/lodash@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.1.tgz#49c0806bae0858047faed75b6e9ed6207dc4cffc" + integrity sha512-QQshVHkNlunbhcmBG5E2wdZNcHYrTsNQjJNF6IZkeFszNRHu/k0u1bhszDwjPgEzeewTqMu8n44TzkbA8yP5GA== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" lodash "^4.17.21" -"@abp/luxon@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.0.tgz#8a6277046f6e38c3affbf79c06f8ac00d1ca8098" - integrity sha512-6tETR03i1NPJuDqSQWtpkOykdq/84awifQUqRyh+b8340wV7P54NqUMDXDit9sjITFDhq99V/R+Rj3PVjvJD3A== +"@abp/luxon@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.1.tgz#8d843023b05b157ff9ab23548c8d8c4e7101ae88" + integrity sha512-Jw8p5S9qHZkUrD1fx3nvpnBqn8Zb9jDiG6xdc6tY+v1aqDDwEqPUr7TqaLnY9GnZefiM3sYVwAh42nzPOwg9aQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.0.tgz#e6e12162aa50d3c3d98629378cec2f6fd5964338" - integrity sha512-GVwgAZQurH/tr4Hgmuby2dun//v1dT+wLGV4ZvjCJzBRs4FgrB+25pj4qKm20j6/NKRKc4V5re/b1y6njCubFQ== +"@abp/malihu-custom-scrollbar-plugin@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.1.tgz#7f0e4f2df325345a8e3be67456522cb035e3e962" + integrity sha512-ll49qD7bslt7+deMAFZ0DfveH/5ZsHyL2RLDg796ARz+H7fQpEhyNFeGETGj+HSOvAl3ivux2mxNCMYbXHR4RQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/popper.js@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-5.3.0.tgz#7042fc857ccc7a43f5c4d4411910e9e1b2e57384" - integrity sha512-+LQWbZGNCfxOGWHnP40R0SpG4O4ft0JPla9JCaKw0rFPyel0ih3M2gpUlKO1a6fKApDxTFQIvJYYRD1tLkMkvw== +"@abp/popper.js@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-5.3.1.tgz#f793f9bc3c0c046e397c868364462352bc9cf5bd" + integrity sha512-JPSaEJJB4S3VXYh5MKrMrtq4S1x0ltoenwQ8cZdXNHa0nBWvadjtnepSdpgoYQx2x0YxpQ3v7syqG/0nLGSv7g== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" "@popperjs/core" "^2.11.2" -"@abp/prismjs@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-5.3.0.tgz#658a371023d9a3de9ecfff1f10bae7a83064fac7" - integrity sha512-NPsYJ9oj/57vG+eVGpDkJcdPAx4WlXTVEUZWWxmaXuM9sHY1/2av975Qk8R5HG6fC74w3DrVCP8YQvU6jlaF1w== +"@abp/prismjs@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-5.3.1.tgz#46b7a7f456b60f3f0f3b92b0a645f30495db571b" + integrity sha512-21h2L4XTIKAuWqYCGKC/MrqledtWsToGLs8Tkk4ML9eQgnpOwGvWyD/5wywlA7zfKKaeOAC9/7Ga7+qckQoQvg== dependencies: - "@abp/clipboard" "~5.3.0" - "@abp/core" "~5.3.0" + "@abp/clipboard" "~5.3.1" + "@abp/core" "~5.3.1" prismjs "^1.26.0" -"@abp/select2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.0.tgz#aae202b87dc23dfc7c8fd933413a8dbeb2f5b683" - integrity sha512-0aIxdtzgONkrYnUN5ACkIIIhsC9e61QLRq3K+/98fjf7NkHOjG3Sptr8EKu5U3IQ2hNHgqBjPGYjkztGuxZ9kw== +"@abp/select2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.1.tgz#9a49aa983d52eecbd2dc2160349d45bd46324e36" + integrity sha512-ne4LJJy9n3V8BPtyU6voX4Bo0/GUrZBnI4Mkb0wRKNt1rxj7PhPXebsYYz090QJuJh8fuF2OHteNMBA7gMryLQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" select2 "^4.0.13" -"@abp/sweetalert2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.0.tgz#67379cfa4cb8884cb66b58f4cafa79960cf8426a" - integrity sha512-EBr8J7MDsYmSvOYxTbqsSmw6c2yLokHZe8A+EW2vsY9VYFXkoOJLVpCkCK4fhvHUv8/+Y5QnHW7bs1I6SKYXOw== +"@abp/sweetalert2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.1.tgz#676a3269fe4511fc4f81c3231ed9a96fe4c8f006" + integrity sha512-UDQrJiq8OfIDy3GSq7NJ4TKKEihzp6Qc06KGRdnN74lm4JsxxGUToSaD1AbyrLt53jZlRZK2NNc8IiyqPvyfbQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" sweetalert2 "^11.3.6" -"@abp/timeago@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.0.tgz#3aaef3edca333224ba6b3e81c8ad1ebaae51a2f4" - integrity sha512-FxtoPYxyk2CHeoloC6kaeCj5YtXH0rebhOEaCjrfyg9/Ec6LEkvpfC7RWlcsHaEUAtFXZegJDfOk066EPH7RHQ== +"@abp/timeago@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.1.tgz#069a4eb2725b0a183cb7609e1f48d8d857a606ba" + integrity sha512-+QWO9MTuf6X7sUXxoUGyoQ0EhoQUlRDdCPmwwcZyBzBf8q9A3hS+Rtmex3BqwRLDxL2vL78gbDpIBgPn/kFuUA== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" timeago "^1.6.7" -"@abp/toastr@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.0.tgz#8a002c19ea25ac6b042a25c0f9d289d03c93c2fb" - integrity sha512-gjb2O/XrYkX8IeCERIqlOYPh15WlF9LxGR6t9jeVF/p6BTX/yaWabYCFfB9SkU2pQ6xrGl7WmSTAC06JOAtPTA== +"@abp/toastr@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.1.tgz#4a18b293444f7f8a523b7255ea61fed838131f1c" + integrity sha512-gz5cl6sPu6b65h8VJ6ne+dkM0oVXSYBlDoKBYbDRjhH6i7yWUpcylY/lrOvWacNQBOagBy5bep1937aec1/BXQ== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" toastr "^2.1.4" -"@abp/utils@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.0.tgz#e93739074a3cd445a5a221209506b7e663050ca0" - integrity sha512-Nm+h+3PL10+rBFSh8UUuenmGM+OBlEoNQeGzHRmhOc6hJ3oqCogPzY+zkq0e4pksrwhjxAu/cgCEGLAoEXXycw== +"@abp/utils@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.1.tgz#ff238e3b70c6fffb1600d845c202961e1179c813" + integrity sha512-XVYrygoWq1ZHz4N7BSJ4P77wmd0geRhpyR5ztzyP1WaF2LaCRS63BjZ/a7xKdtioUby9GP5jSvMjBvwqVviYIQ== dependencies: just-compare "^1.3.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 39cd70cc25..4914c21812 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": "^5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1" } } 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 3fd190f37e..4e5e2e6995 100644 --- a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock +++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.0.tgz#dcdd73d8582c4d14438f70d765170398d5d582fb" - integrity sha512-H6UrafHRI1DHfIoi47gZWHKSanlyAkghtGgUO6GTmPqTubBXjl7Ky3owVUAXvFd49+72gwdCLA/DB0Khjc3Ayw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.0" - -"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.0.tgz#84e94845a247815ce981cda2d195944a350530b9" - integrity sha512-RwXxlncjidvh8Hgw91Hz1f5rnfG9hlNROr5bD/kxTUB47vIh/TIBd06UYrYw2/lqFLw5d6wd8q7VLuDjGUQbpg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~5.3.0" - "@abp/bootstrap" "~5.3.0" - "@abp/bootstrap-datepicker" "~5.3.0" - "@abp/datatables.net-bs5" "~5.3.0" - "@abp/font-awesome" "~5.3.0" - "@abp/jquery-form" "~5.3.0" - "@abp/jquery-validation-unobtrusive" "~5.3.0" - "@abp/lodash" "~5.3.0" - "@abp/luxon" "~5.3.0" - "@abp/malihu-custom-scrollbar-plugin" "~5.3.0" - "@abp/select2" "~5.3.0" - "@abp/sweetalert2" "~5.3.0" - "@abp/timeago" "~5.3.0" - "@abp/toastr" "~5.3.0" - -"@abp/aspnetcore.mvc.ui@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.0.tgz#e947fd1aecbd2aabc5db4c6a64b78f2690fcf0d4" - integrity sha512-en2YDb/hRG1MKkbli1PYcoeU9OLU0YPSahkIBSfOmMLntAe8y0c2+Xe09chXP4r+GoZu0zd9FM3qqCRZojrlug== +"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.1.tgz#469befe88cd7d3362112db9a5ce7cf3eae328b3e" + integrity sha512-qvzNICtvrNVllo7c8khvKw4LQ6MxwWcJar8PyOhgS+Pgtn4lT5rQqzGvaYKMiDyj5gjWGzPOzjU/vgR1uiGYNg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.1" + +"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.1.tgz#7fe0aba80670bf4326251138dc7e12ea5830c919" + integrity sha512-ieS54bLQr4Aa96CnFEmuxe0ndeJpJMkq5eYSWAziH4i15jm7o+K2ouIL0K606lk1Sn/UrP8Yl+DRhxr4i4P8ow== + dependencies: + "@abp/aspnetcore.mvc.ui" "~5.3.1" + "@abp/bootstrap" "~5.3.1" + "@abp/bootstrap-datepicker" "~5.3.1" + "@abp/datatables.net-bs5" "~5.3.1" + "@abp/font-awesome" "~5.3.1" + "@abp/jquery-form" "~5.3.1" + "@abp/jquery-validation-unobtrusive" "~5.3.1" + "@abp/lodash" "~5.3.1" + "@abp/luxon" "~5.3.1" + "@abp/malihu-custom-scrollbar-plugin" "~5.3.1" + "@abp/select2" "~5.3.1" + "@abp/sweetalert2" "~5.3.1" + "@abp/timeago" "~5.3.1" + "@abp/toastr" "~5.3.1" + +"@abp/aspnetcore.mvc.ui@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.1.tgz#17ccf9a2a40cbd79e670a0cb5be74ac9eb17b963" + integrity sha512-UuXH0Lz7DqiGp47BC7xllT3Imf2Nk+eccOiVRwc9PAfHKnNOOJYxvDlHS0x8CM09qxM5EVaH7tfwOLSS09HXpg== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,144 +41,144 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.0.tgz#09c44954774d8f52ca8ff6699ad4dbb7cc0308c2" - integrity sha512-AQ26I0jgoCioW1/4XmQIyn1c1+CLv8KTb4Vd4ZbtdYGBkkkUe+JEAWpJSeXlJRr/XrOs0BKWp/fa7Nnwx8srLg== +"@abp/bootstrap-datepicker@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.1.tgz#241aebfbae0fa451d3e719776096b14bf77c08fa" + integrity sha512-gvP7SNEnPFYuLmIBp7QobveAGv8Rm/8JTmixCChQPPP9XX3u82ilKP2cgxVXm/4/jf0Gy7Gusn7urmTbTxeGEw== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.0.tgz#42dac2d2d6374f39d068a638687039c5c74df123" - integrity sha512-rg9mLcvT4JQRc1rIAhGYK1P2eMRJ1+GArQXV5l7k3FrVU+bRLKdoE6PNpuwXHpdlom4/dOgekfuWH/SAuY5kyw== +"@abp/bootstrap@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.1.tgz#f941afe2be2deaa1962a3626593451847dee5bd6" + integrity sha512-qPGeNFEaQF57b0viA0eHKA0cZ9b0gscOqE0o4ewHxnlRoRYiY3Ob9V6x6S85n2b7H6tDZOWAePXEgkV40yK/Bg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" bootstrap "^5.1.3" -"@abp/core@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.0.tgz#032724dd0c0b850204896ce0275c7f9c8f516740" - integrity sha512-Uk9h98jiEF1dItWrvWnYB6s/UNZZapvFSyJ4+piAsZmXOSAbrObV+s19n5xfUagQQTWn4+aU5+aChEcfWpYv9A== +"@abp/core@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.1.tgz#26890ab049d43db58f3a0fba2f4c50bd2fbf7811" + integrity sha512-7PBPDYq/s0T5H0iYaeCzqWF44jbiOkFlwGnXqZeKHt2cKZaMyCStgotrpap8qoZKlxuyxudFIzJrzJIEP0AN/Q== dependencies: - "@abp/utils" "~5.3.0" + "@abp/utils" "~5.3.1" -"@abp/datatables.net-bs5@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.0.tgz#84771ce4eb7229bed347a5904c891b08e3230422" - integrity sha512-FpKrgrjaBKVgFAnbBsrvDIJJOy8gbWCEHm5Jy2vFWXmx25fITMw/2ckBDH87yrZtCNVTSUbMIdHYOIHMPfSavQ== +"@abp/datatables.net-bs5@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.1.tgz#e380cc253a837a0629baec9dabb4e8919878cc38" + integrity sha512-LpGPWLvFsLkQjo5RTgEl24LbBokgsO1gv7/pVy/1oiXXCLTuVwJ8vYYKfDNkrrSLDUOJ9cCC0YUE5SRfDUystA== dependencies: - "@abp/datatables.net" "~5.3.0" + "@abp/datatables.net" "~5.3.1" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.0.tgz#dd27ae451df9551f5b815e10c87a8a89c6a38293" - integrity sha512-d4lQ09G7HY2gEN1lRAteCZzY0Fv3gPuUM+icgWm+UkmDZV9lhvovTQ58Xkwayw8vf+NPlit1eGMMQedn6MbeAQ== +"@abp/datatables.net@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.1.tgz#8200b5a3a719f51d21670b1420e3df48af4de42e" + integrity sha512-v30gkk4dcmWz260C8BA7uaU4kqpiC1wkgMvdzjPGefzYXsMftlcoX7GUvByWwTzlJnTphGvnIVJhnhX73VVDHg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" datatables.net "^1.11.4" -"@abp/font-awesome@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.0.tgz#ce1d5bb59bd597cc9717885917d4dd2eae1f8b9c" - integrity sha512-JX62EVfZSJ7pv75Gd3ya/3c3He0hXF7KmpTizUNd/EbeHuNJoCND5wwq5OAFV9Ld3vdcGJChNTydNa5RsBzrpg== +"@abp/font-awesome@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.1.tgz#2b4654b463b7858fc237219fd852ca0f41e4e062" + integrity sha512-LFKPjQgJmQ6GNqW3geluHMgV3WbisniAaK9tl6Pv8WOvPluvZGHTK5qjcAQVwM6Bj944VYeuvLo1ZCOoC/rWLg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.0.tgz#5ae9906f0cffaf3e043681a5dd80a014b4860f6b" - integrity sha512-ZTpXCImHirJDZjfnJRtSEHLIbWMTYkqtTv7Z3GMRKnI4fllpmuco9EWLAKjAfYPyc/QpTx+MYnUg5SsXORhJyQ== +"@abp/jquery-form@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.1.tgz#e17367af8dafcfbb352775fb6ab9182d1fd9cd63" + integrity sha512-s8XItBHKJuehprFy7xePWHxt8jMvjDmkmk2nEuJXj+gcZyVEEa3hBd4ykKDXFfmNrfS8aMy+VqA+VEA24Cmpww== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.0.tgz#ccf90a7840398e69e0a91ed6c32b80fa2eb82d14" - integrity sha512-6B3ywnpvPxpnxkrcXzjTjMWgKRImbzNPOZvv5ant/kQv3zXedV1GXSIILy+imX39FuDPslOmEfx8plwrNvIteA== +"@abp/jquery-validation-unobtrusive@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.1.tgz#7c5c31df1cd021b3eed618d914926b76dc7e9e6e" + integrity sha512-B5USCmF56eWQO+R4eZtMjURtoNGUEuAuBy4ltCPtZx0s6yn94Ooq4oYKqEbfnLoSsQshajUwBtqtlC6+YA612Q== dependencies: - "@abp/jquery-validation" "~5.3.0" + "@abp/jquery-validation" "~5.3.1" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.0.tgz#a21696e7d5d54ef8bcdc0e8bd2debb1da1f7f5cc" - integrity sha512-4z2I9iORf+z5SlN9crC/Gx3X5GAOVePD+WN8SaHSYr4VWYNe8TV8LvCZPilN56sIPt3jYvy0N+bI1tAuZPu/NQ== +"@abp/jquery-validation@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.1.tgz#b34c0e29e12843de4a407bc8775a2e560e4db923" + integrity sha512-lu2e47GwWmh/ahWA5bbeR9Gqqsy4a3htTIvnwWbtu7dnHVHA6469+uCt+0f+sVthDIL+cMwoYgcygMLIUHoFxg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-validation "^1.19.3" -"@abp/jquery@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.0.tgz#0279ee501ed774a788072c2ec8b003e348fec22c" - integrity sha512-rqYbU3LpsT7XT8ygn+TFVmjev5NlgEcDhGwQ8PraY1dEjlDbteeQ50N4adS8fdRfOM1UjGL19ueN3F8E5qNUSg== +"@abp/jquery@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.1.tgz#8f6032253d4c44b135c238a4efa010bee1ec5991" + integrity sha512-ngy9Kvy6lXrQBCxWi7t8I4Wudv87C2R50O/T4CZPfM2nwYLynopa+aI9r9VLhO/wIROyXX3C8UIpeLhQzm776w== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" jquery "~3.6.0" -"@abp/lodash@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.0.tgz#45f1dba7bb65b6599b4973d7e0c617dfd2c46c49" - integrity sha512-vQVMv58QuYttWBfLjJzIsw92JunGbWYsqk6pp6/JuoBls5UJtdP1F7vM4JgQxsscGYHFRZB3F4a3h1cxZ+dblQ== +"@abp/lodash@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.1.tgz#49c0806bae0858047faed75b6e9ed6207dc4cffc" + integrity sha512-QQshVHkNlunbhcmBG5E2wdZNcHYrTsNQjJNF6IZkeFszNRHu/k0u1bhszDwjPgEzeewTqMu8n44TzkbA8yP5GA== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" lodash "^4.17.21" -"@abp/luxon@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.0.tgz#8a6277046f6e38c3affbf79c06f8ac00d1ca8098" - integrity sha512-6tETR03i1NPJuDqSQWtpkOykdq/84awifQUqRyh+b8340wV7P54NqUMDXDit9sjITFDhq99V/R+Rj3PVjvJD3A== +"@abp/luxon@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.1.tgz#8d843023b05b157ff9ab23548c8d8c4e7101ae88" + integrity sha512-Jw8p5S9qHZkUrD1fx3nvpnBqn8Zb9jDiG6xdc6tY+v1aqDDwEqPUr7TqaLnY9GnZefiM3sYVwAh42nzPOwg9aQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.0.tgz#e6e12162aa50d3c3d98629378cec2f6fd5964338" - integrity sha512-GVwgAZQurH/tr4Hgmuby2dun//v1dT+wLGV4ZvjCJzBRs4FgrB+25pj4qKm20j6/NKRKc4V5re/b1y6njCubFQ== +"@abp/malihu-custom-scrollbar-plugin@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.1.tgz#7f0e4f2df325345a8e3be67456522cb035e3e962" + integrity sha512-ll49qD7bslt7+deMAFZ0DfveH/5ZsHyL2RLDg796ARz+H7fQpEhyNFeGETGj+HSOvAl3ivux2mxNCMYbXHR4RQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/select2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.0.tgz#aae202b87dc23dfc7c8fd933413a8dbeb2f5b683" - integrity sha512-0aIxdtzgONkrYnUN5ACkIIIhsC9e61QLRq3K+/98fjf7NkHOjG3Sptr8EKu5U3IQ2hNHgqBjPGYjkztGuxZ9kw== +"@abp/select2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.1.tgz#9a49aa983d52eecbd2dc2160349d45bd46324e36" + integrity sha512-ne4LJJy9n3V8BPtyU6voX4Bo0/GUrZBnI4Mkb0wRKNt1rxj7PhPXebsYYz090QJuJh8fuF2OHteNMBA7gMryLQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" select2 "^4.0.13" -"@abp/sweetalert2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.0.tgz#67379cfa4cb8884cb66b58f4cafa79960cf8426a" - integrity sha512-EBr8J7MDsYmSvOYxTbqsSmw6c2yLokHZe8A+EW2vsY9VYFXkoOJLVpCkCK4fhvHUv8/+Y5QnHW7bs1I6SKYXOw== +"@abp/sweetalert2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.1.tgz#676a3269fe4511fc4f81c3231ed9a96fe4c8f006" + integrity sha512-UDQrJiq8OfIDy3GSq7NJ4TKKEihzp6Qc06KGRdnN74lm4JsxxGUToSaD1AbyrLt53jZlRZK2NNc8IiyqPvyfbQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" sweetalert2 "^11.3.6" -"@abp/timeago@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.0.tgz#3aaef3edca333224ba6b3e81c8ad1ebaae51a2f4" - integrity sha512-FxtoPYxyk2CHeoloC6kaeCj5YtXH0rebhOEaCjrfyg9/Ec6LEkvpfC7RWlcsHaEUAtFXZegJDfOk066EPH7RHQ== +"@abp/timeago@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.1.tgz#069a4eb2725b0a183cb7609e1f48d8d857a606ba" + integrity sha512-+QWO9MTuf6X7sUXxoUGyoQ0EhoQUlRDdCPmwwcZyBzBf8q9A3hS+Rtmex3BqwRLDxL2vL78gbDpIBgPn/kFuUA== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" timeago "^1.6.7" -"@abp/toastr@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.0.tgz#8a002c19ea25ac6b042a25c0f9d289d03c93c2fb" - integrity sha512-gjb2O/XrYkX8IeCERIqlOYPh15WlF9LxGR6t9jeVF/p6BTX/yaWabYCFfB9SkU2pQ6xrGl7WmSTAC06JOAtPTA== +"@abp/toastr@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.1.tgz#4a18b293444f7f8a523b7255ea61fed838131f1c" + integrity sha512-gz5cl6sPu6b65h8VJ6ne+dkM0oVXSYBlDoKBYbDRjhH6i7yWUpcylY/lrOvWacNQBOagBy5bep1937aec1/BXQ== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" toastr "^2.1.4" -"@abp/utils@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.0.tgz#e93739074a3cd445a5a221209506b7e663050ca0" - integrity sha512-Nm+h+3PL10+rBFSh8UUuenmGM+OBlEoNQeGzHRmhOc6hJ3oqCogPzY+zkq0e4pksrwhjxAu/cgCEGLAoEXXycw== +"@abp/utils@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.1.tgz#ff238e3b70c6fffb1600d845c202961e1179c813" + integrity sha512-XVYrygoWq1ZHz4N7BSJ4P77wmd0geRhpyR5ztzyP1WaF2LaCRS63BjZ/a7xKdtioUby9GP5jSvMjBvwqVviYIQ== dependencies: just-compare "^1.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 63b2dfd644..5f846222c6 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": "^5.3.0", - "@abp/virtual-file-explorer": "^5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1", + "@abp/virtual-file-explorer": "^5.3.1" } } 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 5fb94c335b..fadeda9b76 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,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.0.tgz#dcdd73d8582c4d14438f70d765170398d5d582fb" - integrity sha512-H6UrafHRI1DHfIoi47gZWHKSanlyAkghtGgUO6GTmPqTubBXjl7Ky3owVUAXvFd49+72gwdCLA/DB0Khjc3Ayw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.0" - -"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.0.tgz#84e94845a247815ce981cda2d195944a350530b9" - integrity sha512-RwXxlncjidvh8Hgw91Hz1f5rnfG9hlNROr5bD/kxTUB47vIh/TIBd06UYrYw2/lqFLw5d6wd8q7VLuDjGUQbpg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~5.3.0" - "@abp/bootstrap" "~5.3.0" - "@abp/bootstrap-datepicker" "~5.3.0" - "@abp/datatables.net-bs5" "~5.3.0" - "@abp/font-awesome" "~5.3.0" - "@abp/jquery-form" "~5.3.0" - "@abp/jquery-validation-unobtrusive" "~5.3.0" - "@abp/lodash" "~5.3.0" - "@abp/luxon" "~5.3.0" - "@abp/malihu-custom-scrollbar-plugin" "~5.3.0" - "@abp/select2" "~5.3.0" - "@abp/sweetalert2" "~5.3.0" - "@abp/timeago" "~5.3.0" - "@abp/toastr" "~5.3.0" - -"@abp/aspnetcore.mvc.ui@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.0.tgz#e947fd1aecbd2aabc5db4c6a64b78f2690fcf0d4" - integrity sha512-en2YDb/hRG1MKkbli1PYcoeU9OLU0YPSahkIBSfOmMLntAe8y0c2+Xe09chXP4r+GoZu0zd9FM3qqCRZojrlug== +"@abp/aspnetcore.mvc.ui.theme.basic@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-5.3.1.tgz#469befe88cd7d3362112db9a5ce7cf3eae328b3e" + integrity sha512-qvzNICtvrNVllo7c8khvKw4LQ6MxwWcJar8PyOhgS+Pgtn4lT5rQqzGvaYKMiDyj5gjWGzPOzjU/vgR1uiGYNg== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~5.3.1" + +"@abp/aspnetcore.mvc.ui.theme.shared@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-5.3.1.tgz#7fe0aba80670bf4326251138dc7e12ea5830c919" + integrity sha512-ieS54bLQr4Aa96CnFEmuxe0ndeJpJMkq5eYSWAziH4i15jm7o+K2ouIL0K606lk1Sn/UrP8Yl+DRhxr4i4P8ow== + dependencies: + "@abp/aspnetcore.mvc.ui" "~5.3.1" + "@abp/bootstrap" "~5.3.1" + "@abp/bootstrap-datepicker" "~5.3.1" + "@abp/datatables.net-bs5" "~5.3.1" + "@abp/font-awesome" "~5.3.1" + "@abp/jquery-form" "~5.3.1" + "@abp/jquery-validation-unobtrusive" "~5.3.1" + "@abp/lodash" "~5.3.1" + "@abp/luxon" "~5.3.1" + "@abp/malihu-custom-scrollbar-plugin" "~5.3.1" + "@abp/select2" "~5.3.1" + "@abp/sweetalert2" "~5.3.1" + "@abp/timeago" "~5.3.1" + "@abp/toastr" "~5.3.1" + +"@abp/aspnetcore.mvc.ui@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-5.3.1.tgz#17ccf9a2a40cbd79e670a0cb5be74ac9eb17b963" + integrity sha512-UuXH0Lz7DqiGp47BC7xllT3Imf2Nk+eccOiVRwc9PAfHKnNOOJYxvDlHS0x8CM09qxM5EVaH7tfwOLSS09HXpg== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,171 +41,171 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.0.tgz#09c44954774d8f52ca8ff6699ad4dbb7cc0308c2" - integrity sha512-AQ26I0jgoCioW1/4XmQIyn1c1+CLv8KTb4Vd4ZbtdYGBkkkUe+JEAWpJSeXlJRr/XrOs0BKWp/fa7Nnwx8srLg== +"@abp/bootstrap-datepicker@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-5.3.1.tgz#241aebfbae0fa451d3e719776096b14bf77c08fa" + integrity sha512-gvP7SNEnPFYuLmIBp7QobveAGv8Rm/8JTmixCChQPPP9XX3u82ilKP2cgxVXm/4/jf0Gy7Gusn7urmTbTxeGEw== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.0.tgz#42dac2d2d6374f39d068a638687039c5c74df123" - integrity sha512-rg9mLcvT4JQRc1rIAhGYK1P2eMRJ1+GArQXV5l7k3FrVU+bRLKdoE6PNpuwXHpdlom4/dOgekfuWH/SAuY5kyw== +"@abp/bootstrap@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-5.3.1.tgz#f941afe2be2deaa1962a3626593451847dee5bd6" + integrity sha512-qPGeNFEaQF57b0viA0eHKA0cZ9b0gscOqE0o4ewHxnlRoRYiY3Ob9V6x6S85n2b7H6tDZOWAePXEgkV40yK/Bg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" bootstrap "^5.1.3" -"@abp/clipboard@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-5.3.0.tgz#579bbc786d32c4e07c969073872b936575df7a9c" - integrity sha512-J55jQnzPOOAwo70GK9hAB3JxG7rz75tex+17QSFjW7/dXVWt1bPIDRHh/a1wiLEgYc6btsSGhptLtkYAfWpq6w== +"@abp/clipboard@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-5.3.1.tgz#aede839bfba487461d31589092a3f2b0a75a2925" + integrity sha512-XKxxjjT2x7+a6vrw2x6G//ntQGmRcvBz8KcxCXuWJ8cCrHb1x7ZEzIUU4rF6ee7BlnLoEIZ/dCF+s/93yPs9ng== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" clipboard "^2.0.8" -"@abp/core@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.0.tgz#032724dd0c0b850204896ce0275c7f9c8f516740" - integrity sha512-Uk9h98jiEF1dItWrvWnYB6s/UNZZapvFSyJ4+piAsZmXOSAbrObV+s19n5xfUagQQTWn4+aU5+aChEcfWpYv9A== +"@abp/core@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-5.3.1.tgz#26890ab049d43db58f3a0fba2f4c50bd2fbf7811" + integrity sha512-7PBPDYq/s0T5H0iYaeCzqWF44jbiOkFlwGnXqZeKHt2cKZaMyCStgotrpap8qoZKlxuyxudFIzJrzJIEP0AN/Q== dependencies: - "@abp/utils" "~5.3.0" + "@abp/utils" "~5.3.1" -"@abp/datatables.net-bs5@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.0.tgz#84771ce4eb7229bed347a5904c891b08e3230422" - integrity sha512-FpKrgrjaBKVgFAnbBsrvDIJJOy8gbWCEHm5Jy2vFWXmx25fITMw/2ckBDH87yrZtCNVTSUbMIdHYOIHMPfSavQ== +"@abp/datatables.net-bs5@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-5.3.1.tgz#e380cc253a837a0629baec9dabb4e8919878cc38" + integrity sha512-LpGPWLvFsLkQjo5RTgEl24LbBokgsO1gv7/pVy/1oiXXCLTuVwJ8vYYKfDNkrrSLDUOJ9cCC0YUE5SRfDUystA== dependencies: - "@abp/datatables.net" "~5.3.0" + "@abp/datatables.net" "~5.3.1" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.0.tgz#dd27ae451df9551f5b815e10c87a8a89c6a38293" - integrity sha512-d4lQ09G7HY2gEN1lRAteCZzY0Fv3gPuUM+icgWm+UkmDZV9lhvovTQ58Xkwayw8vf+NPlit1eGMMQedn6MbeAQ== +"@abp/datatables.net@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-5.3.1.tgz#8200b5a3a719f51d21670b1420e3df48af4de42e" + integrity sha512-v30gkk4dcmWz260C8BA7uaU4kqpiC1wkgMvdzjPGefzYXsMftlcoX7GUvByWwTzlJnTphGvnIVJhnhX73VVDHg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" datatables.net "^1.11.4" -"@abp/font-awesome@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.0.tgz#ce1d5bb59bd597cc9717885917d4dd2eae1f8b9c" - integrity sha512-JX62EVfZSJ7pv75Gd3ya/3c3He0hXF7KmpTizUNd/EbeHuNJoCND5wwq5OAFV9Ld3vdcGJChNTydNa5RsBzrpg== +"@abp/font-awesome@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-5.3.1.tgz#2b4654b463b7858fc237219fd852ca0f41e4e062" + integrity sha512-LFKPjQgJmQ6GNqW3geluHMgV3WbisniAaK9tl6Pv8WOvPluvZGHTK5qjcAQVwM6Bj944VYeuvLo1ZCOoC/rWLg== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.0.tgz#5ae9906f0cffaf3e043681a5dd80a014b4860f6b" - integrity sha512-ZTpXCImHirJDZjfnJRtSEHLIbWMTYkqtTv7Z3GMRKnI4fllpmuco9EWLAKjAfYPyc/QpTx+MYnUg5SsXORhJyQ== +"@abp/jquery-form@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-5.3.1.tgz#e17367af8dafcfbb352775fb6ab9182d1fd9cd63" + integrity sha512-s8XItBHKJuehprFy7xePWHxt8jMvjDmkmk2nEuJXj+gcZyVEEa3hBd4ykKDXFfmNrfS8aMy+VqA+VEA24Cmpww== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.0.tgz#ccf90a7840398e69e0a91ed6c32b80fa2eb82d14" - integrity sha512-6B3ywnpvPxpnxkrcXzjTjMWgKRImbzNPOZvv5ant/kQv3zXedV1GXSIILy+imX39FuDPslOmEfx8plwrNvIteA== +"@abp/jquery-validation-unobtrusive@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-5.3.1.tgz#7c5c31df1cd021b3eed618d914926b76dc7e9e6e" + integrity sha512-B5USCmF56eWQO+R4eZtMjURtoNGUEuAuBy4ltCPtZx0s6yn94Ooq4oYKqEbfnLoSsQshajUwBtqtlC6+YA612Q== dependencies: - "@abp/jquery-validation" "~5.3.0" + "@abp/jquery-validation" "~5.3.1" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.0.tgz#a21696e7d5d54ef8bcdc0e8bd2debb1da1f7f5cc" - integrity sha512-4z2I9iORf+z5SlN9crC/Gx3X5GAOVePD+WN8SaHSYr4VWYNe8TV8LvCZPilN56sIPt3jYvy0N+bI1tAuZPu/NQ== +"@abp/jquery-validation@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-5.3.1.tgz#b34c0e29e12843de4a407bc8775a2e560e4db923" + integrity sha512-lu2e47GwWmh/ahWA5bbeR9Gqqsy4a3htTIvnwWbtu7dnHVHA6469+uCt+0f+sVthDIL+cMwoYgcygMLIUHoFxg== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" jquery-validation "^1.19.3" -"@abp/jquery@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.0.tgz#0279ee501ed774a788072c2ec8b003e348fec22c" - integrity sha512-rqYbU3LpsT7XT8ygn+TFVmjev5NlgEcDhGwQ8PraY1dEjlDbteeQ50N4adS8fdRfOM1UjGL19ueN3F8E5qNUSg== +"@abp/jquery@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-5.3.1.tgz#8f6032253d4c44b135c238a4efa010bee1ec5991" + integrity sha512-ngy9Kvy6lXrQBCxWi7t8I4Wudv87C2R50O/T4CZPfM2nwYLynopa+aI9r9VLhO/wIROyXX3C8UIpeLhQzm776w== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" jquery "~3.6.0" -"@abp/lodash@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.0.tgz#45f1dba7bb65b6599b4973d7e0c617dfd2c46c49" - integrity sha512-vQVMv58QuYttWBfLjJzIsw92JunGbWYsqk6pp6/JuoBls5UJtdP1F7vM4JgQxsscGYHFRZB3F4a3h1cxZ+dblQ== +"@abp/lodash@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-5.3.1.tgz#49c0806bae0858047faed75b6e9ed6207dc4cffc" + integrity sha512-QQshVHkNlunbhcmBG5E2wdZNcHYrTsNQjJNF6IZkeFszNRHu/k0u1bhszDwjPgEzeewTqMu8n44TzkbA8yP5GA== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" lodash "^4.17.21" -"@abp/luxon@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.0.tgz#8a6277046f6e38c3affbf79c06f8ac00d1ca8098" - integrity sha512-6tETR03i1NPJuDqSQWtpkOykdq/84awifQUqRyh+b8340wV7P54NqUMDXDit9sjITFDhq99V/R+Rj3PVjvJD3A== +"@abp/luxon@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-5.3.1.tgz#8d843023b05b157ff9ab23548c8d8c4e7101ae88" + integrity sha512-Jw8p5S9qHZkUrD1fx3nvpnBqn8Zb9jDiG6xdc6tY+v1aqDDwEqPUr7TqaLnY9GnZefiM3sYVwAh42nzPOwg9aQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.0.tgz#e6e12162aa50d3c3d98629378cec2f6fd5964338" - integrity sha512-GVwgAZQurH/tr4Hgmuby2dun//v1dT+wLGV4ZvjCJzBRs4FgrB+25pj4qKm20j6/NKRKc4V5re/b1y6njCubFQ== +"@abp/malihu-custom-scrollbar-plugin@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-5.3.1.tgz#7f0e4f2df325345a8e3be67456522cb035e3e962" + integrity sha512-ll49qD7bslt7+deMAFZ0DfveH/5ZsHyL2RLDg796ARz+H7fQpEhyNFeGETGj+HSOvAl3ivux2mxNCMYbXHR4RQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/prismjs@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-5.3.0.tgz#658a371023d9a3de9ecfff1f10bae7a83064fac7" - integrity sha512-NPsYJ9oj/57vG+eVGpDkJcdPAx4WlXTVEUZWWxmaXuM9sHY1/2av975Qk8R5HG6fC74w3DrVCP8YQvU6jlaF1w== +"@abp/prismjs@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-5.3.1.tgz#46b7a7f456b60f3f0f3b92b0a645f30495db571b" + integrity sha512-21h2L4XTIKAuWqYCGKC/MrqledtWsToGLs8Tkk4ML9eQgnpOwGvWyD/5wywlA7zfKKaeOAC9/7Ga7+qckQoQvg== dependencies: - "@abp/clipboard" "~5.3.0" - "@abp/core" "~5.3.0" + "@abp/clipboard" "~5.3.1" + "@abp/core" "~5.3.1" prismjs "^1.26.0" -"@abp/select2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.0.tgz#aae202b87dc23dfc7c8fd933413a8dbeb2f5b683" - integrity sha512-0aIxdtzgONkrYnUN5ACkIIIhsC9e61QLRq3K+/98fjf7NkHOjG3Sptr8EKu5U3IQ2hNHgqBjPGYjkztGuxZ9kw== +"@abp/select2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-5.3.1.tgz#9a49aa983d52eecbd2dc2160349d45bd46324e36" + integrity sha512-ne4LJJy9n3V8BPtyU6voX4Bo0/GUrZBnI4Mkb0wRKNt1rxj7PhPXebsYYz090QJuJh8fuF2OHteNMBA7gMryLQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" select2 "^4.0.13" -"@abp/sweetalert2@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.0.tgz#67379cfa4cb8884cb66b58f4cafa79960cf8426a" - integrity sha512-EBr8J7MDsYmSvOYxTbqsSmw6c2yLokHZe8A+EW2vsY9VYFXkoOJLVpCkCK4fhvHUv8/+Y5QnHW7bs1I6SKYXOw== +"@abp/sweetalert2@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-5.3.1.tgz#676a3269fe4511fc4f81c3231ed9a96fe4c8f006" + integrity sha512-UDQrJiq8OfIDy3GSq7NJ4TKKEihzp6Qc06KGRdnN74lm4JsxxGUToSaD1AbyrLt53jZlRZK2NNc8IiyqPvyfbQ== dependencies: - "@abp/core" "~5.3.0" + "@abp/core" "~5.3.1" sweetalert2 "^11.3.6" -"@abp/timeago@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.0.tgz#3aaef3edca333224ba6b3e81c8ad1ebaae51a2f4" - integrity sha512-FxtoPYxyk2CHeoloC6kaeCj5YtXH0rebhOEaCjrfyg9/Ec6LEkvpfC7RWlcsHaEUAtFXZegJDfOk066EPH7RHQ== +"@abp/timeago@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-5.3.1.tgz#069a4eb2725b0a183cb7609e1f48d8d857a606ba" + integrity sha512-+QWO9MTuf6X7sUXxoUGyoQ0EhoQUlRDdCPmwwcZyBzBf8q9A3hS+Rtmex3BqwRLDxL2vL78gbDpIBgPn/kFuUA== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" timeago "^1.6.7" -"@abp/toastr@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.0.tgz#8a002c19ea25ac6b042a25c0f9d289d03c93c2fb" - integrity sha512-gjb2O/XrYkX8IeCERIqlOYPh15WlF9LxGR6t9jeVF/p6BTX/yaWabYCFfB9SkU2pQ6xrGl7WmSTAC06JOAtPTA== +"@abp/toastr@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-5.3.1.tgz#4a18b293444f7f8a523b7255ea61fed838131f1c" + integrity sha512-gz5cl6sPu6b65h8VJ6ne+dkM0oVXSYBlDoKBYbDRjhH6i7yWUpcylY/lrOvWacNQBOagBy5bep1937aec1/BXQ== dependencies: - "@abp/jquery" "~5.3.0" + "@abp/jquery" "~5.3.1" toastr "^2.1.4" -"@abp/utils@~5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.0.tgz#e93739074a3cd445a5a221209506b7e663050ca0" - integrity sha512-Nm+h+3PL10+rBFSh8UUuenmGM+OBlEoNQeGzHRmhOc6hJ3oqCogPzY+zkq0e4pksrwhjxAu/cgCEGLAoEXXycw== +"@abp/utils@~5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-5.3.1.tgz#ff238e3b70c6fffb1600d845c202961e1179c813" + integrity sha512-XVYrygoWq1ZHz4N7BSJ4P77wmd0geRhpyR5ztzyP1WaF2LaCRS63BjZ/a7xKdtioUby9GP5jSvMjBvwqVviYIQ== dependencies: just-compare "^1.3.0" -"@abp/virtual-file-explorer@^5.3.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@abp/virtual-file-explorer/-/virtual-file-explorer-5.3.0.tgz#ae7b39a9c0f43a56072cbad01765636c30f626f4" - integrity sha512-jfzQTS8uHAwmC2jKZHvk1CnTV4eiCRt847LDSmzGAcnxg5vho8/6HzkdcZgCOHDVjxwoEjzKgfjJMLRa2kjjcA== +"@abp/virtual-file-explorer@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@abp/virtual-file-explorer/-/virtual-file-explorer-5.3.1.tgz#13c8e7f40120b4372f2e23c4c0bc318ceb3c8559" + integrity sha512-bvBlJjycRVnRx9T3DzpP/vIJy1XAu8BDz5IebJZw4wyyR98pNtRr26E/2svuXVL9ot2gsdCNNs1WusiCwyPvyQ== dependencies: - "@abp/clipboard" "~5.3.0" - "@abp/prismjs" "~5.3.0" + "@abp/clipboard" "~5.3.1" + "@abp/prismjs" "~5.3.1" "@fortawesome/fontawesome-free@^5.15.4": version "5.15.4" diff --git a/npm/lerna.json b/npm/lerna.json index dfe3d14a47..72df32bfb7 100644 --- a/npm/lerna.json +++ b/npm/lerna.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "packages": [ "packs/*" ], diff --git a/npm/ng-packs/lerna.version.json b/npm/ng-packs/lerna.version.json index ab9656b953..05d6729efc 100644 --- a/npm/ng-packs/lerna.version.json +++ b/npm/ng-packs/lerna.version.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "packages": [ "packages/*" ], diff --git a/npm/ng-packs/package.json b/npm/ng-packs/package.json index 4b54af0085..9e55c586ea 100644 --- a/npm/ng-packs/package.json +++ b/npm/ng-packs/package.json @@ -38,7 +38,7 @@ }, "private": true, "devDependencies": { - "@abp/utils": "~5.3.0", + "@abp/utils": "~5.3.1", "@angular-devkit/build-angular": "13.3.5", "@angular-devkit/build-ng-packagr": "^0.1002.0", "@angular-devkit/schematics-cli": "~12.2.0", @@ -57,17 +57,17 @@ "@angular/platform-browser": "13.3.6", "@angular/platform-browser-dynamic": "13.3.6", "@angular/router": "13.3.6", - "@abp/ng.account": "~5.3.0", - "@abp/ng.account.core": "~5.3.0", - "@abp/ng.core": "~5.3.0", - "@abp/ng.feature-management": "~5.3.0", - "@abp/ng.identity": "~5.3.0", - "@abp/ng.permission-management": "~5.3.0", - "@abp/ng.schematics": "~5.3.0", - "@abp/ng.setting-management": "~5.3.0", - "@abp/ng.tenant-management": "~5.3.0", - "@abp/ng.theme.basic": "~5.3.0", - "@abp/ng.theme.shared": "~5.3.0", + "@abp/ng.account": "~5.3.1", + "@abp/ng.account.core": "~5.3.1", + "@abp/ng.core": "~5.3.1", + "@abp/ng.feature-management": "~5.3.1", + "@abp/ng.identity": "~5.3.1", + "@abp/ng.permission-management": "~5.3.1", + "@abp/ng.schematics": "~5.3.1", + "@abp/ng.setting-management": "~5.3.1", + "@abp/ng.tenant-management": "~5.3.1", + "@abp/ng.theme.basic": "~5.3.1", + "@abp/ng.theme.shared": "~5.3.1", "@fortawesome/fontawesome-free": "^5.15.4", "@ng-bootstrap/ng-bootstrap": "~12.0.0-beta.4", "@ngneat/spectator": "^10.0.0", diff --git a/npm/ng-packs/packages/account-core/package.json b/npm/ng-packs/packages/account-core/package.json index 09e56e7fc3..0148bcdef2 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": "5.3.0", + "version": "5.3.1", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "peerDependencies": { - "@abp/ng.core": "~5.3.0", - "@abp/ng.theme.shared": "~5.3.0", + "@abp/ng.core": "~5.3.1", + "@abp/ng.theme.shared": "~5.3.1", "@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 41ba99dc88..b26b8eb100 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": "5.3.0", + "version": "5.3.1", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.account.core": "~5.3.0", - "@abp/ng.theme.shared": "~5.3.0", + "@abp/ng.account.core": "~5.3.1", + "@abp/ng.theme.shared": "~5.3.1", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/components/package.json b/npm/ng-packs/packages/components/package.json index f436d4f2e2..5ab44664f1 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": "5.3.0", + "version": "5.3.1", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "peerDependencies": { - "@abp/ng.core": ">=5.3.0", - "@abp/ng.theme.shared": ">=5.3.0", + "@abp/ng.core": ">=5.3.1", + "@abp/ng.theme.shared": ">=5.3.1", "@ng-bootstrap/ng-bootstrap": ">=10.0.0" }, "dependencies": { diff --git a/npm/ng-packs/packages/core/package.json b/npm/ng-packs/packages/core/package.json index 6b3f1b2555..d4279bd318 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": "5.3.0", + "version": "5.3.1", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/utils": "~5.3.0", + "@abp/utils": "~5.3.1", "angular-oauth2-oidc": "^13.0.1", "just-clone": "^3.2.1", "just-compare": "^1.4.0", diff --git a/npm/ng-packs/packages/feature-management/package.json b/npm/ng-packs/packages/feature-management/package.json index 6378d4975f..e99cbe27b3 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": "5.3.0", + "version": "5.3.1", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.theme.shared": "~5.3.0", + "@abp/ng.theme.shared": "~5.3.1", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/identity/package.json b/npm/ng-packs/packages/identity/package.json index fe59ac25ef..6ee9fb27d3 100644 --- a/npm/ng-packs/packages/identity/package.json +++ b/npm/ng-packs/packages/identity/package.json @@ -1,14 +1,14 @@ { "name": "@abp/ng.identity", - "version": "5.3.0", + "version": "5.3.1", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.permission-management": "~5.3.0", - "@abp/ng.theme.shared": "~5.3.0", + "@abp/ng.permission-management": "~5.3.1", + "@abp/ng.theme.shared": "~5.3.1", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/permission-management/package.json b/npm/ng-packs/packages/permission-management/package.json index 901170d545..48ed8e7b79 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": "5.3.0", + "version": "5.3.1", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.theme.shared": "~5.3.0", + "@abp/ng.theme.shared": "~5.3.1", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/schematics/package.json b/npm/ng-packs/packages/schematics/package.json index 31ec87551d..a4bf27bbc8 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": "5.3.0", + "version": "5.3.1", "description": "Schematics that works with ABP Backend", "keywords": [ "schematics" diff --git a/npm/ng-packs/packages/setting-management/package.json b/npm/ng-packs/packages/setting-management/package.json index 488c355b2f..e4bab64bd4 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": "5.3.0", + "version": "5.3.1", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.components": "~5.3.0", - "@abp/ng.theme.shared": "~5.3.0", + "@abp/ng.components": "~5.3.1", + "@abp/ng.theme.shared": "~5.3.1", "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 5cd7770df6..5d475ba9ad 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": "5.3.0", + "version": "5.3.1", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.feature-management": "~5.3.0", - "@abp/ng.theme.shared": "~5.3.0", + "@abp/ng.feature-management": "~5.3.1", + "@abp/ng.theme.shared": "~5.3.1", "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 29baf31d16..4f576fad72 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": "5.3.0", + "version": "5.3.1", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.account.core": "~5.3.0", - "@abp/ng.theme.shared": "~5.3.0", + "@abp/ng.account.core": "~5.3.1", + "@abp/ng.theme.shared": "~5.3.1", "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 05fd52a9d3..dbca9eb2ab 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": "5.3.0", + "version": "5.3.1", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.core": "~5.3.0", + "@abp/ng.core": "~5.3.1", "@fortawesome/fontawesome-free": "^5.15.4", "@ng-bootstrap/ng-bootstrap": "~12.0.0-beta.4", "@ngx-validate/core": "^0.1.2", diff --git a/npm/packs/anchor-js/package.json b/npm/packs/anchor-js/package.json index 0ad689a590..80130d7800 100644 --- a/npm/packs/anchor-js/package.json +++ b/npm/packs/anchor-js/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/anchor-js", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "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 8bd48c5e79..0fdf8ca0c5 100644 --- a/npm/packs/aspnetcore.components.server.basictheme/package.json +++ b/npm/packs/aspnetcore.components.server.basictheme/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/aspnetcore.components.server.basictheme", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/aspnetcore.components.server.theming": "~5.3.0" + "@abp/aspnetcore.components.server.theming": "~5.3.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/aspnetcore.components.server.theming/package.json b/npm/packs/aspnetcore.components.server.theming/package.json index d2780c6a3e..4c592bcc4d 100644 --- a/npm/packs/aspnetcore.components.server.theming/package.json +++ b/npm/packs/aspnetcore.components.server.theming/package.json @@ -1,12 +1,12 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/aspnetcore.components.server.theming", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/bootstrap": "~5.3.0", - "@abp/font-awesome": "~5.3.0" + "@abp/bootstrap": "~5.3.1", + "@abp/font-awesome": "~5.3.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json b/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json index cebc908052..055c05e2b0 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": "5.3.0", + "version": "5.3.1", "name": "@abp/aspnetcore.mvc.ui.theme.basic", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.shared": "~5.3.0" + "@abp/aspnetcore.mvc.ui.theme.shared": "~5.3.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json b/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json index 1f6ff1df6b..7dbd1e0fce 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": "5.3.0", + "version": "5.3.1", "name": "@abp/aspnetcore.mvc.ui.theme.shared", "repository": { "type": "git", @@ -10,20 +10,20 @@ "access": "public" }, "dependencies": { - "@abp/aspnetcore.mvc.ui": "~5.3.0", - "@abp/bootstrap": "~5.3.0", - "@abp/bootstrap-datepicker": "~5.3.0", - "@abp/datatables.net-bs5": "~5.3.0", - "@abp/font-awesome": "~5.3.0", - "@abp/jquery-form": "~5.3.0", - "@abp/jquery-validation-unobtrusive": "~5.3.0", - "@abp/lodash": "~5.3.0", - "@abp/luxon": "~5.3.0", - "@abp/malihu-custom-scrollbar-plugin": "~5.3.0", - "@abp/select2": "~5.3.0", - "@abp/sweetalert2": "~5.3.0", - "@abp/timeago": "~5.3.0", - "@abp/toastr": "~5.3.0" + "@abp/aspnetcore.mvc.ui": "~5.3.1", + "@abp/bootstrap": "~5.3.1", + "@abp/bootstrap-datepicker": "~5.3.1", + "@abp/datatables.net-bs5": "~5.3.1", + "@abp/font-awesome": "~5.3.1", + "@abp/jquery-form": "~5.3.1", + "@abp/jquery-validation-unobtrusive": "~5.3.1", + "@abp/lodash": "~5.3.1", + "@abp/luxon": "~5.3.1", + "@abp/malihu-custom-scrollbar-plugin": "~5.3.1", + "@abp/select2": "~5.3.1", + "@abp/sweetalert2": "~5.3.1", + "@abp/timeago": "~5.3.1", + "@abp/toastr": "~5.3.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/aspnetcore.mvc.ui/package-lock.json b/npm/packs/aspnetcore.mvc.ui/package-lock.json index ca2dc16c3a..f64285f8de 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": "5.3.0", + "version": "5.3.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/npm/packs/aspnetcore.mvc.ui/package.json b/npm/packs/aspnetcore.mvc.ui/package.json index 6b9a58957d..3b8e3936de 100644 --- a/npm/packs/aspnetcore.mvc.ui/package.json +++ b/npm/packs/aspnetcore.mvc.ui/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/aspnetcore.mvc.ui", "repository": { "type": "git", diff --git a/npm/packs/blogging/package.json b/npm/packs/blogging/package.json index fba8d57049..b6bbb933b0 100644 --- a/npm/packs/blogging/package.json +++ b/npm/packs/blogging/package.json @@ -1,14 +1,14 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/blogging", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.shared": "~5.3.0", - "@abp/owl.carousel": "~5.3.0", - "@abp/prismjs": "~5.3.0", - "@abp/tui-editor": "~5.3.0" + "@abp/aspnetcore.mvc.ui.theme.shared": "~5.3.1", + "@abp/owl.carousel": "~5.3.1", + "@abp/prismjs": "~5.3.1", + "@abp/tui-editor": "~5.3.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/bootstrap-datepicker/package.json b/npm/packs/bootstrap-datepicker/package.json index 3b7b5f6f8c..6999f8eba9 100644 --- a/npm/packs/bootstrap-datepicker/package.json +++ b/npm/packs/bootstrap-datepicker/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/bootstrap-datepicker", "repository": { "type": "git", diff --git a/npm/packs/bootstrap/package.json b/npm/packs/bootstrap/package.json index bc0efafa12..e2ea3d850f 100644 --- a/npm/packs/bootstrap/package.json +++ b/npm/packs/bootstrap/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/bootstrap", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "bootstrap": "^5.1.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/chart.js/package.json b/npm/packs/chart.js/package.json index 7a7b44325c..e005d9077e 100644 --- a/npm/packs/chart.js/package.json +++ b/npm/packs/chart.js/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/chart.js", "publishConfig": { "access": "public" diff --git a/npm/packs/clipboard/package.json b/npm/packs/clipboard/package.json index 9e8757e702..23f1abc0dc 100644 --- a/npm/packs/clipboard/package.json +++ b/npm/packs/clipboard/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/clipboard", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "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 00734ad9fd..8543f7a91d 100644 --- a/npm/packs/cms-kit.admin/package.json +++ b/npm/packs/cms-kit.admin/package.json @@ -1,15 +1,15 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/cms-kit.admin", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/codemirror": "~5.3.0", - "@abp/jstree": "~5.3.0", - "@abp/slugify": "~5.3.0", - "@abp/tui-editor": "~5.3.0", - "@abp/uppy": "~5.3.0" + "@abp/codemirror": "~5.3.1", + "@abp/jstree": "~5.3.1", + "@abp/slugify": "~5.3.1", + "@abp/tui-editor": "~5.3.1", + "@abp/uppy": "~5.3.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/cms-kit.public/package.json b/npm/packs/cms-kit.public/package.json index 69b733d615..200b97c27b 100644 --- a/npm/packs/cms-kit.public/package.json +++ b/npm/packs/cms-kit.public/package.json @@ -1,12 +1,12 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/cms-kit.public", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/highlight.js": "~5.3.0", - "@abp/star-rating-svg": "~5.3.0" + "@abp/highlight.js": "~5.3.1", + "@abp/star-rating-svg": "~5.3.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/cms-kit/package.json b/npm/packs/cms-kit/package.json index e20485355e..b79de8540d 100644 --- a/npm/packs/cms-kit/package.json +++ b/npm/packs/cms-kit/package.json @@ -1,12 +1,12 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/cms-kit", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/cms-kit.admin": "~5.3.0", - "@abp/cms-kit.public": "~5.3.0" + "@abp/cms-kit.admin": "~5.3.1", + "@abp/cms-kit.public": "~5.3.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/codemirror/package.json b/npm/packs/codemirror/package.json index 11bcd5c0fe..dbeca7425f 100644 --- a/npm/packs/codemirror/package.json +++ b/npm/packs/codemirror/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/codemirror", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "codemirror": "^5.65.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/core/package.json b/npm/packs/core/package.json index 0c2787afef..ff63de5fbf 100644 --- a/npm/packs/core/package.json +++ b/npm/packs/core/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/core", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/utils": "~5.3.0" + "@abp/utils": "~5.3.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/cropperjs/package.json b/npm/packs/cropperjs/package.json index d4eb26e508..2618dd42eb 100644 --- a/npm/packs/cropperjs/package.json +++ b/npm/packs/cropperjs/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/cropperjs", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "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 93a9405147..8e207d6e54 100644 --- a/npm/packs/datatables.net-bs4/package.json +++ b/npm/packs/datatables.net-bs4/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/datatables.net-bs4", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/datatables.net": "~5.3.0", + "@abp/datatables.net": "~5.3.1", "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 5b1b8c2231..35204a4f0d 100644 --- a/npm/packs/datatables.net-bs5/package.json +++ b/npm/packs/datatables.net-bs5/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/datatables.net-bs5", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/datatables.net": "~5.3.0", + "@abp/datatables.net": "~5.3.1", "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 988c161aad..ba75c25df3 100644 --- a/npm/packs/datatables.net/package.json +++ b/npm/packs/datatables.net/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/datatables.net", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~5.3.0", + "@abp/jquery": "~5.3.1", "datatables.net": "^1.11.4" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/docs/package.json b/npm/packs/docs/package.json index 45f9d003df..acfde3b3a6 100644 --- a/npm/packs/docs/package.json +++ b/npm/packs/docs/package.json @@ -1,15 +1,15 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/docs", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/anchor-js": "~5.3.0", - "@abp/clipboard": "~5.3.0", - "@abp/malihu-custom-scrollbar-plugin": "~5.3.0", - "@abp/popper.js": "~5.3.0", - "@abp/prismjs": "~5.3.0" + "@abp/anchor-js": "~5.3.1", + "@abp/clipboard": "~5.3.1", + "@abp/malihu-custom-scrollbar-plugin": "~5.3.1", + "@abp/popper.js": "~5.3.1", + "@abp/prismjs": "~5.3.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/flag-icon-css/package.json b/npm/packs/flag-icon-css/package.json index 6192a23df9..d4846993ad 100644 --- a/npm/packs/flag-icon-css/package.json +++ b/npm/packs/flag-icon-css/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/flag-icon-css", "publishConfig": { "access": "public" diff --git a/npm/packs/font-awesome/package.json b/npm/packs/font-awesome/package.json index ea1a9d8f64..044fa789c3 100644 --- a/npm/packs/font-awesome/package.json +++ b/npm/packs/font-awesome/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/font-awesome", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "@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 e50445e5c0..fa040605eb 100644 --- a/npm/packs/highlight.js/package.json +++ b/npm/packs/highlight.js/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/highlight.js", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "@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 9d74b86f95..7016e0cce6 100644 --- a/npm/packs/jquery-form/package.json +++ b/npm/packs/jquery-form/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/jquery-form", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~5.3.0", + "@abp/jquery": "~5.3.1", "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 7420e004d9..48072b2de3 100644 --- a/npm/packs/jquery-validation-unobtrusive/package.json +++ b/npm/packs/jquery-validation-unobtrusive/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/jquery-validation-unobtrusive", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery-validation": "~5.3.0", + "@abp/jquery-validation": "~5.3.1", "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 7209aa37b7..bd52068ca6 100644 --- a/npm/packs/jquery-validation/package.json +++ b/npm/packs/jquery-validation/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/jquery-validation", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~5.3.0", + "@abp/jquery": "~5.3.1", "jquery-validation": "^1.19.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/jquery/package.json b/npm/packs/jquery/package.json index 1ccfbe4be4..dcd865ee34 100644 --- a/npm/packs/jquery/package.json +++ b/npm/packs/jquery/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/jquery", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "jquery": "~3.6.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/jstree/package.json b/npm/packs/jstree/package.json index 710a02a5b3..6794d39683 100644 --- a/npm/packs/jstree/package.json +++ b/npm/packs/jstree/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/jstree", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~5.3.0", + "@abp/jquery": "~5.3.1", "jstree": "^3.3.12" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/lodash/package.json b/npm/packs/lodash/package.json index f25726b966..92927597f4 100644 --- a/npm/packs/lodash/package.json +++ b/npm/packs/lodash/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/lodash", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "lodash": "^4.17.21" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/luxon/package.json b/npm/packs/luxon/package.json index 708b429dd3..43da28dfdc 100644 --- a/npm/packs/luxon/package.json +++ b/npm/packs/luxon/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/luxon", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "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 d053291381..bb092d210b 100644 --- a/npm/packs/malihu-custom-scrollbar-plugin/package.json +++ b/npm/packs/malihu-custom-scrollbar-plugin/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/malihu-custom-scrollbar-plugin", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "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 472d897107..496f4580d6 100644 --- a/npm/packs/markdown-it/package.json +++ b/npm/packs/markdown-it/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/markdown-it", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "markdown-it": "^12.3.2" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/owl.carousel/package.json b/npm/packs/owl.carousel/package.json index 358ccf8a52..9e1eb89652 100644 --- a/npm/packs/owl.carousel/package.json +++ b/npm/packs/owl.carousel/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/owl.carousel", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "owl.carousel": "^2.3.4" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/popper.js/package.json b/npm/packs/popper.js/package.json index ca9e46e8d0..290c1f75fb 100644 --- a/npm/packs/popper.js/package.json +++ b/npm/packs/popper.js/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/popper.js", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "@popperjs/core": "^2.11.2" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/prismjs/package.json b/npm/packs/prismjs/package.json index e1b71b09b5..85099dbc14 100644 --- a/npm/packs/prismjs/package.json +++ b/npm/packs/prismjs/package.json @@ -1,12 +1,12 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/prismjs", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/clipboard": "~5.3.0", - "@abp/core": "~5.3.0", + "@abp/clipboard": "~5.3.1", + "@abp/core": "~5.3.1", "prismjs": "^1.26.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/select2/package.json b/npm/packs/select2/package.json index 9e5954fb6a..c70061f44c 100644 --- a/npm/packs/select2/package.json +++ b/npm/packs/select2/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/select2", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "select2": "^4.0.13" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/signalr/package.json b/npm/packs/signalr/package.json index 33c0fcb4be..917ae913f9 100644 --- a/npm/packs/signalr/package.json +++ b/npm/packs/signalr/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/signalr", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "@microsoft/signalr": "~6.0.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/slugify/package.json b/npm/packs/slugify/package.json index 65fca8e7a1..44afc4591d 100644 --- a/npm/packs/slugify/package.json +++ b/npm/packs/slugify/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "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 3250cd0539..0bf3649e7a 100644 --- a/npm/packs/star-rating-svg/package.json +++ b/npm/packs/star-rating-svg/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/star-rating-svg", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~5.3.0", + "@abp/jquery": "~5.3.1", "star-rating-svg": "^3.5.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/sweetalert2/package.json b/npm/packs/sweetalert2/package.json index 6d946a53b8..20d0c42269 100644 --- a/npm/packs/sweetalert2/package.json +++ b/npm/packs/sweetalert2/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/sweetalert2", "publishConfig": { "access": "public" @@ -10,7 +10,7 @@ "directory": "npm/packs/sweetalert2" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "sweetalert2": "^11.3.6" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/timeago/package.json b/npm/packs/timeago/package.json index 6d8f19f982..edc55e433e 100644 --- a/npm/packs/timeago/package.json +++ b/npm/packs/timeago/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/timeago", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~5.3.0", + "@abp/jquery": "~5.3.1", "timeago": "^1.6.7" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/toastr/package.json b/npm/packs/toastr/package.json index bf9a07c0ca..e8084ad7bf 100644 --- a/npm/packs/toastr/package.json +++ b/npm/packs/toastr/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/toastr", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~5.3.0", + "@abp/jquery": "~5.3.1", "toastr": "^2.1.4" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/tui-editor/package.json b/npm/packs/tui-editor/package.json index 4c9cfeb833..611c6a9d9a 100644 --- a/npm/packs/tui-editor/package.json +++ b/npm/packs/tui-editor/package.json @@ -1,12 +1,12 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/tui-editor", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~5.3.0", - "@abp/prismjs": "~5.3.0" + "@abp/jquery": "~5.3.1", + "@abp/prismjs": "~5.3.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/uppy/package.json b/npm/packs/uppy/package.json index cba488d4bb..d032e1b580 100644 --- a/npm/packs/uppy/package.json +++ b/npm/packs/uppy/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/uppy", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~5.3.0", + "@abp/core": "~5.3.1", "uppy": "^1.16.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/utils/package.json b/npm/packs/utils/package.json index 1252b15308..d2fc2e44ef 100644 --- a/npm/packs/utils/package.json +++ b/npm/packs/utils/package.json @@ -1,6 +1,6 @@ { "name": "@abp/utils", - "version": "5.3.0", + "version": "5.3.1", "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 e545dc9b81..d356344ecf 100644 --- a/npm/packs/vee-validate/package.json +++ b/npm/packs/vee-validate/package.json @@ -1,11 +1,11 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/vee-validate", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/vue": "~5.3.0", + "@abp/vue": "~5.3.1", "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 4c6c3c8ad2..7bd5ff7e30 100644 --- a/npm/packs/virtual-file-explorer/package.json +++ b/npm/packs/virtual-file-explorer/package.json @@ -1,12 +1,12 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/virtual-file-explorer", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/clipboard": "~5.3.0", - "@abp/prismjs": "~5.3.0" + "@abp/clipboard": "~5.3.1", + "@abp/prismjs": "~5.3.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/vue/package.json b/npm/packs/vue/package.json index 6443b61942..5bde7df3eb 100644 --- a/npm/packs/vue/package.json +++ b/npm/packs/vue/package.json @@ -1,5 +1,5 @@ { - "version": "5.3.0", + "version": "5.3.1", "name": "@abp/vue", "publishConfig": { "access": "public" diff --git a/templates/app-nolayers/angular/package.json b/templates/app-nolayers/angular/package.json index 13ac33a2c7..1a760e201a 100644 --- a/templates/app-nolayers/angular/package.json +++ b/templates/app-nolayers/angular/package.json @@ -12,13 +12,13 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~5.3.0", - "@abp/ng.components": "~5.3.0", - "@abp/ng.core": "~5.3.0", - "@abp/ng.identity": "~5.3.0", - "@abp/ng.setting-management": "~5.3.0", - "@abp/ng.tenant-management": "~5.3.0", - "@abp/ng.theme.shared": "~5.3.0", + "@abp/ng.account": "~5.3.1", + "@abp/ng.components": "~5.3.1", + "@abp/ng.core": "~5.3.1", + "@abp/ng.identity": "~5.3.1", + "@abp/ng.setting-management": "~5.3.1", + "@abp/ng.tenant-management": "~5.3.1", + "@abp/ng.theme.shared": "~5.3.1", "@abp/ng.theme.lepton-x": "~1.0.0-beta.3", "@angular/animations": "~13.1.1", "@angular/common": "~13.1.1", @@ -35,7 +35,7 @@ "zone.js": "~0.11.4" }, "devDependencies": { - "@abp/ng.schematics": "~5.3.0", + "@abp/ng.schematics": "~5.3.1", "@angular-devkit/build-angular": "~13.1.2", "@angular-eslint/builder": "~13.0.1", "@angular-eslint/eslint-plugin": "~13.0.1", diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json index 44170e65a7..5de6054976 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json @@ -3,7 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "^1.0.0-beta.3", "@abp/aspnetcore.components.server.leptonxlitetheme": "^1.0.0-beta.3" } } diff --git a/templates/app/angular/package.json b/templates/app/angular/package.json index 1616cbc92d..85559b3e53 100644 --- a/templates/app/angular/package.json +++ b/templates/app/angular/package.json @@ -12,13 +12,13 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~5.3.0", - "@abp/ng.components": "~5.3.0", - "@abp/ng.core": "~5.3.0", - "@abp/ng.identity": "~5.3.0", - "@abp/ng.setting-management": "~5.3.0", - "@abp/ng.tenant-management": "~5.3.0", - "@abp/ng.theme.shared": "~5.3.0", + "@abp/ng.account": "~5.3.1", + "@abp/ng.components": "~5.3.1", + "@abp/ng.core": "~5.3.1", + "@abp/ng.identity": "~5.3.1", + "@abp/ng.setting-management": "~5.3.1", + "@abp/ng.tenant-management": "~5.3.1", + "@abp/ng.theme.shared": "~5.3.1", "@abp/ng.theme.lepton-x": "~1.0.0-beta.3", "@angular/animations": "~13.3.3", "@angular/common": "~13.3.3", @@ -35,7 +35,7 @@ "zone.js": "~0.11.4" }, "devDependencies": { - "@abp/ng.schematics": "~5.3.0", + "@abp/ng.schematics": "~5.3.1", "@angular-devkit/build-angular": "~13.3.3", "@angular-eslint/builder": "~13.2.1", "@angular-eslint/eslint-plugin": "~13.2.1", diff --git a/templates/module/angular/package.json b/templates/module/angular/package.json index 93698ccb95..39503a27a1 100644 --- a/templates/module/angular/package.json +++ b/templates/module/angular/package.json @@ -15,14 +15,14 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~5.3.0", - "@abp/ng.components": "~5.3.0", - "@abp/ng.core": "~5.3.0", - "@abp/ng.identity": "~5.3.0", - "@abp/ng.setting-management": "~5.3.0", - "@abp/ng.tenant-management": "~5.3.0", - "@abp/ng.theme.basic": "~5.3.0", - "@abp/ng.theme.shared": "~5.3.0", + "@abp/ng.account": "~5.3.1", + "@abp/ng.components": "~5.3.1", + "@abp/ng.core": "~5.3.1", + "@abp/ng.identity": "~5.3.1", + "@abp/ng.setting-management": "~5.3.1", + "@abp/ng.tenant-management": "~5.3.1", + "@abp/ng.theme.basic": "~5.3.1", + "@abp/ng.theme.shared": "~5.3.1", "@angular/animations": "~13.3.3", "@angular/common": "~13.3.3", "@angular/compiler": "~13.3.3", @@ -37,7 +37,7 @@ "zone.js": "~0.11.4" }, "devDependencies": { - "@abp/ng.schematics": "~5.3.0", + "@abp/ng.schematics": "~5.3.1", "@angular-devkit/build-angular": "~13.3.3", "@angular-eslint/builder": "~13.2.1", "@angular-eslint/eslint-plugin": "~13.2.1", diff --git a/templates/module/angular/projects/my-project-name/package.json b/templates/module/angular/projects/my-project-name/package.json index 57f8f84e4f..2fb3b9d3df 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": ">=9", "@angular/core": ">=9", - "@abp/ng.core": ">=5.3.0", - "@abp/ng.theme.shared": ">=5.3.0" + "@abp/ng.core": ">=5.3.1", + "@abp/ng.theme.shared": ">=5.3.1" }, "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 fc02cc69e3..dc5adc62fe 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": "^5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1" } } 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 647a34ed6d..e40b8e406e 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": "^5.3.0", - "@abp/aspnetcore.components.server.basictheme": "^5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1", + "@abp/aspnetcore.components.server.basictheme": "^5.3.1" } } 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 cc93b1db85..de939989de 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": "^5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1" } } 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 cc93b1db85..de939989de 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": "^5.3.0" + "@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.1" } }