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 68379055d8..bb7260b280 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": "~7.2.3", + "@abp/aspnetcore.mvc.ui.theme.shared": "~7.3.0-rc.3", "highlight.js": "^9.13.1" }, "devDependencies": {} diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/wwwroot/libs/abp/jquery/abp.jquery.js b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/wwwroot/libs/abp/jquery/abp.jquery.js index 76dfd3897f..7dc3439da2 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/wwwroot/libs/abp/jquery/abp.jquery.js +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/wwwroot/libs/abp/jquery/abp.jquery.js @@ -371,13 +371,18 @@ var abp = abp || {}; }; var _loadScript = function (url, loadCallback, failCallback) { + var nonce = document.body.nonce || document.body.getAttribute('nonce'); _loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { $.get({ url: url, dataType: 'text' }) .done(function (script) { - $.globalEval(script); + if(nonce){ + $.globalEval(script, { nonce: nonce}); + }else{ + $.globalEval(script); + } urlInfo.succeed(); }) .fail(function () { diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js new file mode 100644 index 0000000000..a02a2a7a5e --- /dev/null +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { + return new bootstrap.Popover(popoverTriggerEl) + }) +})(); diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js new file mode 100644 index 0000000000..5a2b42a1d1 --- /dev/null +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { + return new bootstrap.Tooltip(tooltipTriggerEl) + }); +})(); 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 b1fcabbb07..70c0190bcd 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,32 +2,32 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.shared@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.2.3.tgz#189dde88792497d29f76a6079dc6db34973ee98d" - integrity sha512-+G2mM/BJWqgGqZFg6GP28PaCtq+YlRmRfg7r0JQ1wkAN9pc11yKm0LRQjFnkcVBzg0A+N2hZqnFbW7wQhwXOHg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~7.2.3" - "@abp/bootstrap" "~7.2.3" - "@abp/bootstrap-datepicker" "~7.2.3" - "@abp/bootstrap-daterangepicker" "~7.2.3" - "@abp/datatables.net-bs5" "~7.2.3" - "@abp/font-awesome" "~7.2.3" - "@abp/jquery-form" "~7.2.3" - "@abp/jquery-validation-unobtrusive" "~7.2.3" - "@abp/lodash" "~7.2.3" - "@abp/luxon" "~7.2.3" - "@abp/malihu-custom-scrollbar-plugin" "~7.2.3" - "@abp/moment" "~7.2.3" - "@abp/select2" "~7.2.3" - "@abp/sweetalert2" "~7.2.3" - "@abp/timeago" "~7.2.3" - "@abp/toastr" "~7.2.3" - -"@abp/aspnetcore.mvc.ui@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.2.3.tgz#d828561e678f6ea779a67c908705ba553ae82edc" - integrity sha512-KJCw6OxjQBgNw4QoSoDQOe32bFF9NvHdD09zMVsoCB/GgN66dcbZnk+ldidHcwjLFDPXOuHJMx+TKmno3VgUaQ== +"@abp/aspnetcore.mvc.ui.theme.shared@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.3.0-rc.3.tgz#23f4e32b7922afe5364675f5e9065e4785727e31" + integrity sha512-i3YdQ0Trqzij8kkKCmOolPT3p++rBUi0cwjQ8wsxJb6nlAyJp4FcDBS/QAdNIqqxg1DZlxqf+u705EHTqQFZPA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~7.3.0-rc.3" + "@abp/bootstrap" "~7.3.0-rc.3" + "@abp/bootstrap-datepicker" "~7.3.0-rc.3" + "@abp/bootstrap-daterangepicker" "~7.3.0-rc.3" + "@abp/datatables.net-bs5" "~7.3.0-rc.3" + "@abp/font-awesome" "~7.3.0-rc.3" + "@abp/jquery-form" "~7.3.0-rc.3" + "@abp/jquery-validation-unobtrusive" "~7.3.0-rc.3" + "@abp/lodash" "~7.3.0-rc.3" + "@abp/luxon" "~7.3.0-rc.3" + "@abp/malihu-custom-scrollbar-plugin" "~7.3.0-rc.3" + "@abp/moment" "~7.3.0-rc.3" + "@abp/select2" "~7.3.0-rc.3" + "@abp/sweetalert2" "~7.3.0-rc.3" + "@abp/timeago" "~7.3.0-rc.3" + "@abp/toastr" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.3.0-rc.3.tgz#5acd05d14a8dc6b96387a0e30c2d1577d2dac884" + integrity sha512-cNG1Soct0p3qLp5OOrt/P4MaCBk3SbgV9RXBvKY7qp6TatfbIPG7Ggwmue1wj4kQpJxO3JIXfqpaGtg44phsmw== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -36,160 +36,160 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.2.3.tgz#7610ff44a6c1ea73f0c9b4c79a31cbb9e505d66f" - integrity sha512-wiKVXftVrXcjwz0FpshD6P4WW3CNk/4cLH15aaqRjM+J0BigDeH9CczlpVc7jXdn+c8plHIRz0t5tqlUud7dIQ== +"@abp/bootstrap-datepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.3.0-rc.3.tgz#bb1b34cfea9c0211f8e1d9cbffc7f1538c4fdb66" + integrity sha512-VsGYcKO56kMJbEFL7CnvqRWrn03lTM6+NJuVCs0K64YarhU06OI9KPd7PpWSZTP0D7Mz7z02pGYcWV034FXopA== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap-daterangepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.2.3.tgz#3946fb853dae52ef092db4bb23b94389577c17d3" - integrity sha512-ChdnXMzHvg+HwrUtw2z6KuqRTqHVOq8qEBai+IPW6PykJSML+tZKzer3jzDIzyHq68OIqom3n3xL0XpcniKMew== +"@abp/bootstrap-daterangepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.3.0-rc.3.tgz#b883c5a130133af6fc947b83dec179a716c60fe5" + integrity sha512-zV+DuBa0hgDx225kF/6VsotHzBbbHmeJ0iJflnLs+veDwYSBlT5uXgrxBHy4R41LnzDWyZqhwwq9SmHoGXShEQ== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.2.3.tgz#43ecd5912ac65bbc142f198ec112b0b2a15e4864" - integrity sha512-Z00q1sAwo9PvFSpfFlbbUHPMyghLOzuEuAzz/8nA6tK7WR0KQBS/0zGC0nK9hNwbyZ4FqKwPSznRVwuwrnqyhQ== +"@abp/bootstrap@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.3.0-rc.3.tgz#e4f35c0cfd1ecbcc892083f0b1022d9545e2fe89" + integrity sha512-yWd3tC1M2fbJmOfMiw2eqaxYQ5ZfkSIxAfVLZ39269ha+KSRhkZGPdjdRS7gGxB8LgAcG+I+pS9DAa7xv/FO/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" bootstrap "^5.1.3" -"@abp/core@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.2.3.tgz#a669073989a30f600355b368c01c654714456f17" - integrity sha512-UyKBWwXbKCzKZwV2YJPgP3v2naDFsfJzV+KEHpdgLdPZyrpBhp+bQ80VNVe2HHrD/bLfhM4fu9pCXw6RYZKnvA== +"@abp/core@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.3.0-rc.3.tgz#309a66b2c5feb05630acaebff8912f0639e3fc02" + integrity sha512-baD6VaLTj1sWU9lcoLnRtGCISCvrWylXaoqZ0vIuVy3QqskzHe3M3AVlHHn0HDwTNUA4zVBFOe6Of2DwHsYVwg== dependencies: - "@abp/utils" "~7.2.3" + "@abp/utils" "~7.3.0-rc.3" -"@abp/datatables.net-bs5@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.2.3.tgz#362f3b8ff2f3612989787e2b6ef19bad181b4206" - integrity sha512-TmXTkIX+Vb1O/fER5JeRlWIOZLoSXG4QD3F0ZbebrjgS9k7oSu9igR/VhXBs1m1lvOqcNKv7Y4LTNRAMw+Mi0A== +"@abp/datatables.net-bs5@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.3.0-rc.3.tgz#bad0344241f1ae83f4828d6d4a8de737bcaac0bb" + integrity sha512-YSNY1TwAkwr7DBEt66Rjg2Y/cic/0AzBBliqTbZsYtFEYh7rsychp9qmVofhYITXAnUlhsqPXMJ8VPmvWqvAbg== dependencies: - "@abp/datatables.net" "~7.2.3" + "@abp/datatables.net" "~7.3.0-rc.3" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.2.3.tgz#36661e223d15a0f75caad607094007d974ba678b" - integrity sha512-g+LmRMg4Sk34iU/MN4RpgC/yd8NVEjhVWg/kT+nuWunsnwLHkcfK59KPGXn9ZLktL4VqQYj2WeXbDv8TEbOObg== +"@abp/datatables.net@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.3.0-rc.3.tgz#43eb32cb0eb6f9023bfe2ec9801f2758e93aa445" + integrity sha512-rMi3oxfuDL71CYd/e7G3PgL0F/GqIGvpBHi0XunOMXFn+G5pJuZFv+ZnpzHgI3vmwj5BpSMzGJh8TRlosQB/fQ== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" datatables.net "^1.11.4" -"@abp/font-awesome@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.2.3.tgz#09b7c02b16ff99c9b5b62c1eefad9b1fc2879bcd" - integrity sha512-+4QRhfU08t1MYkmzTPX0B+p+SZQtOqtlDafzeDm5X6fbOlxV1hi97eRWtLtLgLjodjJWztpECWcsTUTgDhExwQ== +"@abp/font-awesome@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.3.0-rc.3.tgz#511419611d3debd4d808f24f7f40b1c2f4505a46" + integrity sha512-w0TAFFuEu74x6BTK1jHJF9rkxDhcqcu/ZeQTneXQOLzJYZFUWRoCCXxXvk376ZOvnOKuD2YBju0yhpJ9cR1s/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.2.3.tgz#b0b295b22ae2ba292100e64d0bb97b3e1e295307" - integrity sha512-ucdGIZ0sxefakGRei9BJvDuoN16fKsYfpOT70/udw3k7uC3gFJD0AvAlEOEZPsFZhpNoqUKexNMym4lZovqBkg== +"@abp/jquery-form@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.3.0-rc.3.tgz#4af1c9a743e4301fe9b8d983463c15d150046200" + integrity sha512-u//A4wrZisskjRvUvkGqPDpm2J5gEsS2DO9ADkvJOFxa30+fyabq4UW66a0gKX4dtHMzBuxxK8duJX+8lz4C2Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.2.3.tgz#1df04e286baa521c216cb949468199e6cacc34e3" - integrity sha512-Hcf1sqAFRIAYKqvN1pZGed+lazzY1nztvcmQlOOgUquiXRS3QjI3dIvxWw5nekJwUPqMpSfuC1GErQo0KpE1fw== +"@abp/jquery-validation-unobtrusive@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.3.0-rc.3.tgz#80623db86e8d60fda6b8167dc4c17c208e1d9533" + integrity sha512-haoov/Zy1nk6r3tnMaKl4YY67+dO9M1hjxF4txZPHGY2064jRT+QtGotimbINoVISDC2hcmQCbHCPkoyXrydSw== dependencies: - "@abp/jquery-validation" "~7.2.3" + "@abp/jquery-validation" "~7.3.0-rc.3" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.2.3.tgz#438ac052e5d71dab50cf5da8be60ea68a460a725" - integrity sha512-drpE5mXErHQPk/4KChsj3zwNCA4GqNlYquTtHNv9/t5S/NuGqFAkchPV6mRYaiQypcxCndZQNSUEqnWxbuMY0g== +"@abp/jquery-validation@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.3.0-rc.3.tgz#7c738da1b071c0de373bebeccbca59e22a3f469f" + integrity sha512-oXbl+JrhjaZGePL/39fcowJGGL9Kp/DPkan+Ji/gdsFTFxxw7xrdtXZ73TpW4hKSEzDiRwnuBstD4WxdiA5tqA== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-validation "^1.19.3" -"@abp/jquery@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.2.3.tgz#555192ff0bcde89bbabee0f734ff74bf77cce1b5" - integrity sha512-r/p3D2QlV57YvrGJsLfTuIJGwLSSi5AVFtkmgKyfpyXYOCNb+TVF9sEZOZnoZebX6cT0JRvtUfZ0dk6ZBebAzg== +"@abp/jquery@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.3.0-rc.3.tgz#37d1313723ee27a9b8845975cb9b38b61253719a" + integrity sha512-cNp/8Pj8ODhtgYKXFwJId+eENbhr0bPcxSvgUX0b6HoRP3AsYSv7lJK3snku/mneidMzeSI9l1yloR8DEA4wIQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" jquery "~3.6.0" -"@abp/lodash@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.2.3.tgz#99c1667f1499a7f318902e96ff81b4184b0dce86" - integrity sha512-5KuXPPpa2mkTlUYPR83bUTJUSSGoq9/kFSf9fYC0Wk2mFFeG4mRK6mXwcyHTfYshQe2qxuncxZsJ+4j5uQN9PA== +"@abp/lodash@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.3.0-rc.3.tgz#adc5712c820c5608ef5a2f1d4905617aed08626a" + integrity sha512-Y08+IMwQKLEBWIgZgHpRmBiXAfzcMDRUPY7jyciWmUZ5hgPQJHJSR6OkXk/o5AXnHTfTbZ0tWXgjUz7kxnF5bg== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" lodash "^4.17.21" -"@abp/luxon@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.2.3.tgz#f643ed28b2d1743edd41edfec98d0e70b2f1f008" - integrity sha512-Y3IT1GbyuNSAzfpGnc5uzjz3Z/nDRUpYiZhoX0XeoQlJ+GyVT/+dytsZbuQBLgEWmQJhk9zxdcITXFT5vrWDcw== +"@abp/luxon@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.3.0-rc.3.tgz#ba2976091ecdb765bd18b608bf60f36d29a7d6a8" + integrity sha512-22VPZlyEZQSOA430/sU9pQ/rZb5yrDaRidUhTltr/tdlQhexD8+uBT8+v/ue+f84/RjH8x2hOppbIR1oLVkXBQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.2.3.tgz#a29f25921b07683b02e2f5c82a3da827e3e7d552" - integrity sha512-wq9eBrw/bY3wb50v5zuL0qOcVLOT86XN2ZJQj69O/bi2+0WNdLRCqMHhY0kaafb7UIBAlKChKA/xeICwCZxn+w== +"@abp/malihu-custom-scrollbar-plugin@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.3.0-rc.3.tgz#54acc797bdf04c535530389e08155f6f18bfd9ce" + integrity sha512-20oE5c8AO8rCk1olKQYc9KE3gN62wALBqTypbusTXEfIgA/uERgm4EtlVhGb8H6FmGCljwO9Fj+ttnIx9QXoJw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.2.3.tgz#f6d2ba7b030b81239853490bdcc9e3c2bd4a39b1" - integrity sha512-pXsOzSom9RZHRGWuVaLIVzSkPayIcWMMmgSyo8T3gtZzZG/QJbpBWT+pug0X8pmV8So4d9E0LjacmODBKLM30A== +"@abp/moment@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.3.0-rc.3.tgz#e5b0885a55b09c306014d813d118eec3e5eb6e01" + integrity sha512-j+RMRNI8qf3Rr/oUOtneBLtUphDaUhLpLCkuj4RSlNgAijCDZg4w5F3VDVBKTsoQX4ZSnN39YpbtN/vb/3jNyA== dependencies: moment "^2.9.0" -"@abp/select2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.2.3.tgz#4cecd1cd843807583fce09ef632f472f3f7da70b" - integrity sha512-Cdzl467UftB421W+l8uikGr2NlOsHwxKDxt5yPrF03LEec1MBys5y7UPUV1TEO6l0xwAVi4mW8dXaawyIOSjUA== +"@abp/select2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.3.0-rc.3.tgz#b1261d10d3c4a870af07aa159a2921e5e78a6225" + integrity sha512-NUvYfxZYBXvB4j2oYwR6ec05quCylAHqe4C/CeH7Qo+cJcPduPRMJ9N5ZUQq1c4uZyOAbu7Tuuo+XTQvu1ZTRA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" select2 "^4.0.13" -"@abp/sweetalert2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.2.3.tgz#9e9c503bdb4d47d2b67b0d8193d82145884c90f3" - integrity sha512-KHZD1YRMN6Z4JxPfXuEwocubooux8nKq6sPNG6RKg+rWpp23Fp8nX/ZngJNywVXSRqzrdEvUAM+92JG7zMwKXw== +"@abp/sweetalert2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.3.0-rc.3.tgz#fa554fb304f7093f0a08fb683cb35c81af3c2ce7" + integrity sha512-iKg4TJex+aQna8n5hk7rPIbwY2ZQaVVP571vPdmFML85hUYQM289CI++ZDF0l2a5p22fDKBFRL99RZzceiGOSw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" sweetalert2 "^11.3.6" -"@abp/timeago@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.2.3.tgz#2ced6fa607a0471bf3385fbf5d9b1f2d902e824a" - integrity sha512-7eiibNXJWBGpQnitd/i8aWUNHOkcsuq8fAwBLJWvG8Whhh1nmBEjng0pGhheMqo0xoydefWi1K2uZDg99tKPeQ== +"@abp/timeago@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.3.0-rc.3.tgz#029839955cb53195259d82a3e0c534d817d3862a" + integrity sha512-JuadVXb/Garz7L0aj1h+Ffg4Ut5eLSf6Ipz5mFM2Q1mzXNhA8crwQCtf+NLZdcNohJ7gbxDWyEQ2jgbYr4ryRw== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" timeago "^1.6.7" -"@abp/toastr@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.2.3.tgz#0ef7c24b232ca3d01d4ac5a7dff57800b0ebdcbf" - integrity sha512-2zNMQE6ArRULP6xl+M66/EY83ZrXfNY+sNHUkmZH4uqfGhqR/ijKIQm1quxCLDmUcAjRr1kzu8BCc98pc9tfFw== +"@abp/toastr@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.3.0-rc.3.tgz#537afff62261482bbb21b50a9d503579fd71936d" + integrity sha512-dsVS9F2iQRDn0RtzbLT1b3nH4JKDj8pHCWdxDR3nT/JHpJuAFEZPAqT1/VrNmZxSoo4jdeHn8/pkQtE4RDhv+Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" toastr "^2.1.4" -"@abp/utils@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.2.3.tgz#f384ba76b2948dbc8c49a453a343facda0825e2c" - integrity sha512-hejxDJhSI9Kor4mS9c/JHHQrW/wLXC/XMOJMUcBVkX/5IQd9GU9EW63oalNQyVA3gz3h5obnb0Qcfdv65wc5Pg== +"@abp/utils@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.3.0-rc.3.tgz#4d4e50dac717cae3e368bfe4fd3ce11f6df0e732" + integrity sha512-sMF2QGhRgbJW8PJtpVBrkiPAgofyfflUGmxNVbbx/HSOR3duFW0TNoXpTvxdP2v9k/SYe4i5XtLmv+mKPyttCw== dependencies: - just-compare "^1.3.0" + just-compare "^2.3.0" "@fortawesome/fontawesome-free@^5.15.4": version "5.15.4" @@ -1438,10 +1438,10 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -just-compare@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-1.5.1.tgz#aed7e93e6bae9c3b69d79aea7805684132a0c0c5" - integrity sha512-xDEEFHNIyJNmN4uo/2RVeUcay9THtN/5ka/iw98Y/gsa8w9KXZQuyaf5eFUY6VlntA2+G+bdPmdhqqTs7T+BRw== +just-compare@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7" + integrity sha512-6shoR7HDT+fzfL3gBahx1jZG3hWLrhPAf+l7nCwahDdT9XDtosB9kIF0ZrzUp5QY8dJWfQVr5rnsPqsbvflDzg== just-debounce@^1.0.0: version "1.1.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 1553f24233..2395c3c565 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": "~7.2.3", - "@abp/prismjs": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3", + "@abp/prismjs": "~7.3.0-rc.3" }, "devDependencies": {} } diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/wwwroot/libs/abp/jquery/abp.jquery.js b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/wwwroot/libs/abp/jquery/abp.jquery.js index 76dfd3897f..7dc3439da2 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/wwwroot/libs/abp/jquery/abp.jquery.js +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/wwwroot/libs/abp/jquery/abp.jquery.js @@ -371,13 +371,18 @@ var abp = abp || {}; }; var _loadScript = function (url, loadCallback, failCallback) { + var nonce = document.body.nonce || document.body.getAttribute('nonce'); _loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { $.get({ url: url, dataType: 'text' }) .done(function (script) { - $.globalEval(script); + if(nonce){ + $.globalEval(script, { nonce: nonce}); + }else{ + $.globalEval(script); + } urlInfo.succeed(); }) .fail(function () { diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js new file mode 100644 index 0000000000..a02a2a7a5e --- /dev/null +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { + return new bootstrap.Popover(popoverTriggerEl) + }) +})(); diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js new file mode 100644 index 0000000000..5a2b42a1d1 --- /dev/null +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { + return new bootstrap.Tooltip(tooltipTriggerEl) + }); +})(); 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 99aa4c3110..8c4e66c76a 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/yarn.lock +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/yarn.lock @@ -2,39 +2,39 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.2.3.tgz#31f2dda74b2bf8f520caf97690e509fd1c1088c4" - integrity sha512-7DIwWrkLJSc2kXYcIcZH+EivpwOXzkO4j2yrUilK0OijoOM9Pa/iGStdNTPlYioOKUNti3/1zah+v5SELNdqIw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~7.2.3" - -"@abp/aspnetcore.mvc.ui.theme.shared@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.2.3.tgz#189dde88792497d29f76a6079dc6db34973ee98d" - integrity sha512-+G2mM/BJWqgGqZFg6GP28PaCtq+YlRmRfg7r0JQ1wkAN9pc11yKm0LRQjFnkcVBzg0A+N2hZqnFbW7wQhwXOHg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~7.2.3" - "@abp/bootstrap" "~7.2.3" - "@abp/bootstrap-datepicker" "~7.2.3" - "@abp/bootstrap-daterangepicker" "~7.2.3" - "@abp/datatables.net-bs5" "~7.2.3" - "@abp/font-awesome" "~7.2.3" - "@abp/jquery-form" "~7.2.3" - "@abp/jquery-validation-unobtrusive" "~7.2.3" - "@abp/lodash" "~7.2.3" - "@abp/luxon" "~7.2.3" - "@abp/malihu-custom-scrollbar-plugin" "~7.2.3" - "@abp/moment" "~7.2.3" - "@abp/select2" "~7.2.3" - "@abp/sweetalert2" "~7.2.3" - "@abp/timeago" "~7.2.3" - "@abp/toastr" "~7.2.3" - -"@abp/aspnetcore.mvc.ui@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.2.3.tgz#d828561e678f6ea779a67c908705ba553ae82edc" - integrity sha512-KJCw6OxjQBgNw4QoSoDQOe32bFF9NvHdD09zMVsoCB/GgN66dcbZnk+ldidHcwjLFDPXOuHJMx+TKmno3VgUaQ== +"@abp/aspnetcore.mvc.ui.theme.basic@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.3.0-rc.3.tgz#8c8cfe4f7fe7ec68b4a91402fa2665ae4b62c7b1" + integrity sha512-oDgPUXmjAXbceUkhM3LjLWBTGPaBfAeqrl4CCA0EGnlZPzdS+KaD9gbP2Fs9OWyT5yBzbn5R+1cdUrRqI4qv3w== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui.theme.shared@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.3.0-rc.3.tgz#23f4e32b7922afe5364675f5e9065e4785727e31" + integrity sha512-i3YdQ0Trqzij8kkKCmOolPT3p++rBUi0cwjQ8wsxJb6nlAyJp4FcDBS/QAdNIqqxg1DZlxqf+u705EHTqQFZPA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~7.3.0-rc.3" + "@abp/bootstrap" "~7.3.0-rc.3" + "@abp/bootstrap-datepicker" "~7.3.0-rc.3" + "@abp/bootstrap-daterangepicker" "~7.3.0-rc.3" + "@abp/datatables.net-bs5" "~7.3.0-rc.3" + "@abp/font-awesome" "~7.3.0-rc.3" + "@abp/jquery-form" "~7.3.0-rc.3" + "@abp/jquery-validation-unobtrusive" "~7.3.0-rc.3" + "@abp/lodash" "~7.3.0-rc.3" + "@abp/luxon" "~7.3.0-rc.3" + "@abp/malihu-custom-scrollbar-plugin" "~7.3.0-rc.3" + "@abp/moment" "~7.3.0-rc.3" + "@abp/select2" "~7.3.0-rc.3" + "@abp/sweetalert2" "~7.3.0-rc.3" + "@abp/timeago" "~7.3.0-rc.3" + "@abp/toastr" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.3.0-rc.3.tgz#5acd05d14a8dc6b96387a0e30c2d1577d2dac884" + integrity sha512-cNG1Soct0p3qLp5OOrt/P4MaCBk3SbgV9RXBvKY7qp6TatfbIPG7Ggwmue1wj4kQpJxO3JIXfqpaGtg44phsmw== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -43,177 +43,177 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.2.3.tgz#7610ff44a6c1ea73f0c9b4c79a31cbb9e505d66f" - integrity sha512-wiKVXftVrXcjwz0FpshD6P4WW3CNk/4cLH15aaqRjM+J0BigDeH9CczlpVc7jXdn+c8plHIRz0t5tqlUud7dIQ== +"@abp/bootstrap-datepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.3.0-rc.3.tgz#bb1b34cfea9c0211f8e1d9cbffc7f1538c4fdb66" + integrity sha512-VsGYcKO56kMJbEFL7CnvqRWrn03lTM6+NJuVCs0K64YarhU06OI9KPd7PpWSZTP0D7Mz7z02pGYcWV034FXopA== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap-daterangepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.2.3.tgz#3946fb853dae52ef092db4bb23b94389577c17d3" - integrity sha512-ChdnXMzHvg+HwrUtw2z6KuqRTqHVOq8qEBai+IPW6PykJSML+tZKzer3jzDIzyHq68OIqom3n3xL0XpcniKMew== +"@abp/bootstrap-daterangepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.3.0-rc.3.tgz#b883c5a130133af6fc947b83dec179a716c60fe5" + integrity sha512-zV+DuBa0hgDx225kF/6VsotHzBbbHmeJ0iJflnLs+veDwYSBlT5uXgrxBHy4R41LnzDWyZqhwwq9SmHoGXShEQ== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.2.3.tgz#43ecd5912ac65bbc142f198ec112b0b2a15e4864" - integrity sha512-Z00q1sAwo9PvFSpfFlbbUHPMyghLOzuEuAzz/8nA6tK7WR0KQBS/0zGC0nK9hNwbyZ4FqKwPSznRVwuwrnqyhQ== +"@abp/bootstrap@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.3.0-rc.3.tgz#e4f35c0cfd1ecbcc892083f0b1022d9545e2fe89" + integrity sha512-yWd3tC1M2fbJmOfMiw2eqaxYQ5ZfkSIxAfVLZ39269ha+KSRhkZGPdjdRS7gGxB8LgAcG+I+pS9DAa7xv/FO/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" bootstrap "^5.1.3" -"@abp/clipboard@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-7.2.3.tgz#dcd8ffc229bd0419be6cd49679fe65dfea90163e" - integrity sha512-Eu7GIMqXpGqU1UK3gm0QfI4DQLaWcFLeO/hL/RefqU79kpWwN+PKg4bYAH8uuYovQUR8i0DRwk8rqOlayjjWRA== +"@abp/clipboard@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-7.3.0-rc.3.tgz#989141ed79834f80c3a8e351fbadfa5d19357c60" + integrity sha512-rk8ZE+yQE+H8dOcilji8EoyHN3cGtV5jzcM2xcMI+oRDbwRJkv3vI4rqox3cflr+QDZFlHyINlILkz8UrJgIew== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" clipboard "^2.0.8" -"@abp/core@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.2.3.tgz#a669073989a30f600355b368c01c654714456f17" - integrity sha512-UyKBWwXbKCzKZwV2YJPgP3v2naDFsfJzV+KEHpdgLdPZyrpBhp+bQ80VNVe2HHrD/bLfhM4fu9pCXw6RYZKnvA== +"@abp/core@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.3.0-rc.3.tgz#309a66b2c5feb05630acaebff8912f0639e3fc02" + integrity sha512-baD6VaLTj1sWU9lcoLnRtGCISCvrWylXaoqZ0vIuVy3QqskzHe3M3AVlHHn0HDwTNUA4zVBFOe6Of2DwHsYVwg== dependencies: - "@abp/utils" "~7.2.3" + "@abp/utils" "~7.3.0-rc.3" -"@abp/datatables.net-bs5@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.2.3.tgz#362f3b8ff2f3612989787e2b6ef19bad181b4206" - integrity sha512-TmXTkIX+Vb1O/fER5JeRlWIOZLoSXG4QD3F0ZbebrjgS9k7oSu9igR/VhXBs1m1lvOqcNKv7Y4LTNRAMw+Mi0A== +"@abp/datatables.net-bs5@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.3.0-rc.3.tgz#bad0344241f1ae83f4828d6d4a8de737bcaac0bb" + integrity sha512-YSNY1TwAkwr7DBEt66Rjg2Y/cic/0AzBBliqTbZsYtFEYh7rsychp9qmVofhYITXAnUlhsqPXMJ8VPmvWqvAbg== dependencies: - "@abp/datatables.net" "~7.2.3" + "@abp/datatables.net" "~7.3.0-rc.3" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.2.3.tgz#36661e223d15a0f75caad607094007d974ba678b" - integrity sha512-g+LmRMg4Sk34iU/MN4RpgC/yd8NVEjhVWg/kT+nuWunsnwLHkcfK59KPGXn9ZLktL4VqQYj2WeXbDv8TEbOObg== +"@abp/datatables.net@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.3.0-rc.3.tgz#43eb32cb0eb6f9023bfe2ec9801f2758e93aa445" + integrity sha512-rMi3oxfuDL71CYd/e7G3PgL0F/GqIGvpBHi0XunOMXFn+G5pJuZFv+ZnpzHgI3vmwj5BpSMzGJh8TRlosQB/fQ== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" datatables.net "^1.11.4" -"@abp/font-awesome@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.2.3.tgz#09b7c02b16ff99c9b5b62c1eefad9b1fc2879bcd" - integrity sha512-+4QRhfU08t1MYkmzTPX0B+p+SZQtOqtlDafzeDm5X6fbOlxV1hi97eRWtLtLgLjodjJWztpECWcsTUTgDhExwQ== +"@abp/font-awesome@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.3.0-rc.3.tgz#511419611d3debd4d808f24f7f40b1c2f4505a46" + integrity sha512-w0TAFFuEu74x6BTK1jHJF9rkxDhcqcu/ZeQTneXQOLzJYZFUWRoCCXxXvk376ZOvnOKuD2YBju0yhpJ9cR1s/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.2.3.tgz#b0b295b22ae2ba292100e64d0bb97b3e1e295307" - integrity sha512-ucdGIZ0sxefakGRei9BJvDuoN16fKsYfpOT70/udw3k7uC3gFJD0AvAlEOEZPsFZhpNoqUKexNMym4lZovqBkg== +"@abp/jquery-form@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.3.0-rc.3.tgz#4af1c9a743e4301fe9b8d983463c15d150046200" + integrity sha512-u//A4wrZisskjRvUvkGqPDpm2J5gEsS2DO9ADkvJOFxa30+fyabq4UW66a0gKX4dtHMzBuxxK8duJX+8lz4C2Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.2.3.tgz#1df04e286baa521c216cb949468199e6cacc34e3" - integrity sha512-Hcf1sqAFRIAYKqvN1pZGed+lazzY1nztvcmQlOOgUquiXRS3QjI3dIvxWw5nekJwUPqMpSfuC1GErQo0KpE1fw== +"@abp/jquery-validation-unobtrusive@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.3.0-rc.3.tgz#80623db86e8d60fda6b8167dc4c17c208e1d9533" + integrity sha512-haoov/Zy1nk6r3tnMaKl4YY67+dO9M1hjxF4txZPHGY2064jRT+QtGotimbINoVISDC2hcmQCbHCPkoyXrydSw== dependencies: - "@abp/jquery-validation" "~7.2.3" + "@abp/jquery-validation" "~7.3.0-rc.3" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.2.3.tgz#438ac052e5d71dab50cf5da8be60ea68a460a725" - integrity sha512-drpE5mXErHQPk/4KChsj3zwNCA4GqNlYquTtHNv9/t5S/NuGqFAkchPV6mRYaiQypcxCndZQNSUEqnWxbuMY0g== +"@abp/jquery-validation@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.3.0-rc.3.tgz#7c738da1b071c0de373bebeccbca59e22a3f469f" + integrity sha512-oXbl+JrhjaZGePL/39fcowJGGL9Kp/DPkan+Ji/gdsFTFxxw7xrdtXZ73TpW4hKSEzDiRwnuBstD4WxdiA5tqA== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-validation "^1.19.3" -"@abp/jquery@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.2.3.tgz#555192ff0bcde89bbabee0f734ff74bf77cce1b5" - integrity sha512-r/p3D2QlV57YvrGJsLfTuIJGwLSSi5AVFtkmgKyfpyXYOCNb+TVF9sEZOZnoZebX6cT0JRvtUfZ0dk6ZBebAzg== +"@abp/jquery@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.3.0-rc.3.tgz#37d1313723ee27a9b8845975cb9b38b61253719a" + integrity sha512-cNp/8Pj8ODhtgYKXFwJId+eENbhr0bPcxSvgUX0b6HoRP3AsYSv7lJK3snku/mneidMzeSI9l1yloR8DEA4wIQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" jquery "~3.6.0" -"@abp/lodash@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.2.3.tgz#99c1667f1499a7f318902e96ff81b4184b0dce86" - integrity sha512-5KuXPPpa2mkTlUYPR83bUTJUSSGoq9/kFSf9fYC0Wk2mFFeG4mRK6mXwcyHTfYshQe2qxuncxZsJ+4j5uQN9PA== +"@abp/lodash@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.3.0-rc.3.tgz#adc5712c820c5608ef5a2f1d4905617aed08626a" + integrity sha512-Y08+IMwQKLEBWIgZgHpRmBiXAfzcMDRUPY7jyciWmUZ5hgPQJHJSR6OkXk/o5AXnHTfTbZ0tWXgjUz7kxnF5bg== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" lodash "^4.17.21" -"@abp/luxon@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.2.3.tgz#f643ed28b2d1743edd41edfec98d0e70b2f1f008" - integrity sha512-Y3IT1GbyuNSAzfpGnc5uzjz3Z/nDRUpYiZhoX0XeoQlJ+GyVT/+dytsZbuQBLgEWmQJhk9zxdcITXFT5vrWDcw== +"@abp/luxon@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.3.0-rc.3.tgz#ba2976091ecdb765bd18b608bf60f36d29a7d6a8" + integrity sha512-22VPZlyEZQSOA430/sU9pQ/rZb5yrDaRidUhTltr/tdlQhexD8+uBT8+v/ue+f84/RjH8x2hOppbIR1oLVkXBQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.2.3.tgz#a29f25921b07683b02e2f5c82a3da827e3e7d552" - integrity sha512-wq9eBrw/bY3wb50v5zuL0qOcVLOT86XN2ZJQj69O/bi2+0WNdLRCqMHhY0kaafb7UIBAlKChKA/xeICwCZxn+w== +"@abp/malihu-custom-scrollbar-plugin@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.3.0-rc.3.tgz#54acc797bdf04c535530389e08155f6f18bfd9ce" + integrity sha512-20oE5c8AO8rCk1olKQYc9KE3gN62wALBqTypbusTXEfIgA/uERgm4EtlVhGb8H6FmGCljwO9Fj+ttnIx9QXoJw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.2.3.tgz#f6d2ba7b030b81239853490bdcc9e3c2bd4a39b1" - integrity sha512-pXsOzSom9RZHRGWuVaLIVzSkPayIcWMMmgSyo8T3gtZzZG/QJbpBWT+pug0X8pmV8So4d9E0LjacmODBKLM30A== +"@abp/moment@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.3.0-rc.3.tgz#e5b0885a55b09c306014d813d118eec3e5eb6e01" + integrity sha512-j+RMRNI8qf3Rr/oUOtneBLtUphDaUhLpLCkuj4RSlNgAijCDZg4w5F3VDVBKTsoQX4ZSnN39YpbtN/vb/3jNyA== dependencies: moment "^2.9.0" -"@abp/prismjs@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-7.2.3.tgz#3ecef3120373eea8a5d01a7b12aa7669aff45307" - integrity sha512-yR/UPqpQ9MTHqBo5bK5izaVemdyqcncxWNIb1NETU4FwZ8ucLRnCbxX427gQUSWlqo6qc+Q9vdS4hOWjLTuroA== +"@abp/prismjs@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-7.3.0-rc.3.tgz#714873077258fda5b2ab3a2dd1877083b474bbeb" + integrity sha512-30I7KgNzhxQrpx4UNvVQKQDi4tjUl4DmiagiLE+SqxA7uwQ8NF1g6pKfnuyri+XkNcB3BFMhjDD8bbQxxrXpgg== dependencies: - "@abp/clipboard" "~7.2.3" - "@abp/core" "~7.2.3" + "@abp/clipboard" "~7.3.0-rc.3" + "@abp/core" "~7.3.0-rc.3" prismjs "^1.26.0" -"@abp/select2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.2.3.tgz#4cecd1cd843807583fce09ef632f472f3f7da70b" - integrity sha512-Cdzl467UftB421W+l8uikGr2NlOsHwxKDxt5yPrF03LEec1MBys5y7UPUV1TEO6l0xwAVi4mW8dXaawyIOSjUA== +"@abp/select2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.3.0-rc.3.tgz#b1261d10d3c4a870af07aa159a2921e5e78a6225" + integrity sha512-NUvYfxZYBXvB4j2oYwR6ec05quCylAHqe4C/CeH7Qo+cJcPduPRMJ9N5ZUQq1c4uZyOAbu7Tuuo+XTQvu1ZTRA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" select2 "^4.0.13" -"@abp/sweetalert2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.2.3.tgz#9e9c503bdb4d47d2b67b0d8193d82145884c90f3" - integrity sha512-KHZD1YRMN6Z4JxPfXuEwocubooux8nKq6sPNG6RKg+rWpp23Fp8nX/ZngJNywVXSRqzrdEvUAM+92JG7zMwKXw== +"@abp/sweetalert2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.3.0-rc.3.tgz#fa554fb304f7093f0a08fb683cb35c81af3c2ce7" + integrity sha512-iKg4TJex+aQna8n5hk7rPIbwY2ZQaVVP571vPdmFML85hUYQM289CI++ZDF0l2a5p22fDKBFRL99RZzceiGOSw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" sweetalert2 "^11.3.6" -"@abp/timeago@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.2.3.tgz#2ced6fa607a0471bf3385fbf5d9b1f2d902e824a" - integrity sha512-7eiibNXJWBGpQnitd/i8aWUNHOkcsuq8fAwBLJWvG8Whhh1nmBEjng0pGhheMqo0xoydefWi1K2uZDg99tKPeQ== +"@abp/timeago@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.3.0-rc.3.tgz#029839955cb53195259d82a3e0c534d817d3862a" + integrity sha512-JuadVXb/Garz7L0aj1h+Ffg4Ut5eLSf6Ipz5mFM2Q1mzXNhA8crwQCtf+NLZdcNohJ7gbxDWyEQ2jgbYr4ryRw== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" timeago "^1.6.7" -"@abp/toastr@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.2.3.tgz#0ef7c24b232ca3d01d4ac5a7dff57800b0ebdcbf" - integrity sha512-2zNMQE6ArRULP6xl+M66/EY83ZrXfNY+sNHUkmZH4uqfGhqR/ijKIQm1quxCLDmUcAjRr1kzu8BCc98pc9tfFw== +"@abp/toastr@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.3.0-rc.3.tgz#537afff62261482bbb21b50a9d503579fd71936d" + integrity sha512-dsVS9F2iQRDn0RtzbLT1b3nH4JKDj8pHCWdxDR3nT/JHpJuAFEZPAqT1/VrNmZxSoo4jdeHn8/pkQtE4RDhv+Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" toastr "^2.1.4" -"@abp/utils@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.2.3.tgz#f384ba76b2948dbc8c49a453a343facda0825e2c" - integrity sha512-hejxDJhSI9Kor4mS9c/JHHQrW/wLXC/XMOJMUcBVkX/5IQd9GU9EW63oalNQyVA3gz3h5obnb0Qcfdv65wc5Pg== +"@abp/utils@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.3.0-rc.3.tgz#4d4e50dac717cae3e368bfe4fd3ce11f6df0e732" + integrity sha512-sMF2QGhRgbJW8PJtpVBrkiPAgofyfflUGmxNVbbx/HSOR3duFW0TNoXpTvxdP2v9k/SYe4i5XtLmv+mKPyttCw== dependencies: - just-compare "^1.3.0" + just-compare "^2.3.0" "@fortawesome/fontawesome-free@^5.15.4": version "5.15.4" @@ -1478,10 +1478,10 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -just-compare@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-1.5.1.tgz#aed7e93e6bae9c3b69d79aea7805684132a0c0c5" - integrity sha512-xDEEFHNIyJNmN4uo/2RVeUcay9THtN/5ka/iw98Y/gsa8w9KXZQuyaf5eFUY6VlntA2+G+bdPmdhqqTs7T+BRw== +just-compare@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7" + integrity sha512-6shoR7HDT+fzfL3gBahx1jZG3hWLrhPAf+l7nCwahDdT9XDtosB9kIF0ZrzUp5QY8dJWfQVr5rnsPqsbvflDzg== just-debounce@^1.0.0: version "1.1.0" diff --git a/modules/blogging/app/Volo.BloggingTestApp/package.json b/modules/blogging/app/Volo.BloggingTestApp/package.json index 298b0e1dae..a7034dc7dd 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": "~7.2.3", - "@abp/blogging": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3", + "@abp/blogging": "~7.3.0-rc.3" } } diff --git a/modules/blogging/app/Volo.BloggingTestApp/wwwroot/libs/abp/jquery/abp.jquery.js b/modules/blogging/app/Volo.BloggingTestApp/wwwroot/libs/abp/jquery/abp.jquery.js index 76dfd3897f..7dc3439da2 100644 --- a/modules/blogging/app/Volo.BloggingTestApp/wwwroot/libs/abp/jquery/abp.jquery.js +++ b/modules/blogging/app/Volo.BloggingTestApp/wwwroot/libs/abp/jquery/abp.jquery.js @@ -371,13 +371,18 @@ var abp = abp || {}; }; var _loadScript = function (url, loadCallback, failCallback) { + var nonce = document.body.nonce || document.body.getAttribute('nonce'); _loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { $.get({ url: url, dataType: 'text' }) .done(function (script) { - $.globalEval(script); + if(nonce){ + $.globalEval(script, { nonce: nonce}); + }else{ + $.globalEval(script); + } urlInfo.succeed(); }) .fail(function () { diff --git a/modules/blogging/app/Volo.BloggingTestApp/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js b/modules/blogging/app/Volo.BloggingTestApp/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js new file mode 100644 index 0000000000..a02a2a7a5e --- /dev/null +++ b/modules/blogging/app/Volo.BloggingTestApp/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { + return new bootstrap.Popover(popoverTriggerEl) + }) +})(); diff --git a/modules/blogging/app/Volo.BloggingTestApp/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js b/modules/blogging/app/Volo.BloggingTestApp/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js new file mode 100644 index 0000000000..5a2b42a1d1 --- /dev/null +++ b/modules/blogging/app/Volo.BloggingTestApp/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { + return new bootstrap.Tooltip(tooltipTriggerEl) + }); +})(); diff --git a/modules/blogging/app/Volo.BloggingTestApp/yarn.lock b/modules/blogging/app/Volo.BloggingTestApp/yarn.lock index e1edf87de6..447720c3f6 100644 --- a/modules/blogging/app/Volo.BloggingTestApp/yarn.lock +++ b/modules/blogging/app/Volo.BloggingTestApp/yarn.lock @@ -2,39 +2,39 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.2.3.tgz#31f2dda74b2bf8f520caf97690e509fd1c1088c4" - integrity sha512-7DIwWrkLJSc2kXYcIcZH+EivpwOXzkO4j2yrUilK0OijoOM9Pa/iGStdNTPlYioOKUNti3/1zah+v5SELNdqIw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~7.2.3" - -"@abp/aspnetcore.mvc.ui.theme.shared@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.2.3.tgz#189dde88792497d29f76a6079dc6db34973ee98d" - integrity sha512-+G2mM/BJWqgGqZFg6GP28PaCtq+YlRmRfg7r0JQ1wkAN9pc11yKm0LRQjFnkcVBzg0A+N2hZqnFbW7wQhwXOHg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~7.2.3" - "@abp/bootstrap" "~7.2.3" - "@abp/bootstrap-datepicker" "~7.2.3" - "@abp/bootstrap-daterangepicker" "~7.2.3" - "@abp/datatables.net-bs5" "~7.2.3" - "@abp/font-awesome" "~7.2.3" - "@abp/jquery-form" "~7.2.3" - "@abp/jquery-validation-unobtrusive" "~7.2.3" - "@abp/lodash" "~7.2.3" - "@abp/luxon" "~7.2.3" - "@abp/malihu-custom-scrollbar-plugin" "~7.2.3" - "@abp/moment" "~7.2.3" - "@abp/select2" "~7.2.3" - "@abp/sweetalert2" "~7.2.3" - "@abp/timeago" "~7.2.3" - "@abp/toastr" "~7.2.3" - -"@abp/aspnetcore.mvc.ui@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.2.3.tgz#d828561e678f6ea779a67c908705ba553ae82edc" - integrity sha512-KJCw6OxjQBgNw4QoSoDQOe32bFF9NvHdD09zMVsoCB/GgN66dcbZnk+ldidHcwjLFDPXOuHJMx+TKmno3VgUaQ== +"@abp/aspnetcore.mvc.ui.theme.basic@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.3.0-rc.3.tgz#8c8cfe4f7fe7ec68b4a91402fa2665ae4b62c7b1" + integrity sha512-oDgPUXmjAXbceUkhM3LjLWBTGPaBfAeqrl4CCA0EGnlZPzdS+KaD9gbP2Fs9OWyT5yBzbn5R+1cdUrRqI4qv3w== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui.theme.shared@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.3.0-rc.3.tgz#23f4e32b7922afe5364675f5e9065e4785727e31" + integrity sha512-i3YdQ0Trqzij8kkKCmOolPT3p++rBUi0cwjQ8wsxJb6nlAyJp4FcDBS/QAdNIqqxg1DZlxqf+u705EHTqQFZPA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~7.3.0-rc.3" + "@abp/bootstrap" "~7.3.0-rc.3" + "@abp/bootstrap-datepicker" "~7.3.0-rc.3" + "@abp/bootstrap-daterangepicker" "~7.3.0-rc.3" + "@abp/datatables.net-bs5" "~7.3.0-rc.3" + "@abp/font-awesome" "~7.3.0-rc.3" + "@abp/jquery-form" "~7.3.0-rc.3" + "@abp/jquery-validation-unobtrusive" "~7.3.0-rc.3" + "@abp/lodash" "~7.3.0-rc.3" + "@abp/luxon" "~7.3.0-rc.3" + "@abp/malihu-custom-scrollbar-plugin" "~7.3.0-rc.3" + "@abp/moment" "~7.3.0-rc.3" + "@abp/select2" "~7.3.0-rc.3" + "@abp/sweetalert2" "~7.3.0-rc.3" + "@abp/timeago" "~7.3.0-rc.3" + "@abp/toastr" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.3.0-rc.3.tgz#5acd05d14a8dc6b96387a0e30c2d1577d2dac884" + integrity sha512-cNG1Soct0p3qLp5OOrt/P4MaCBk3SbgV9RXBvKY7qp6TatfbIPG7Ggwmue1wj4kQpJxO3JIXfqpaGtg44phsmw== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -43,203 +43,203 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/blogging@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-7.2.3.tgz#ec058af87c72e3528cd9dcca4b3523c85e043e05" - integrity sha512-l0beNX9Fas9+wBzfFrE2zyQVPxvEowBGNta6d6XNQJN3kAPMQuaEhib9J/srY+0XRBlxsfpdpEsQsK8AWreRaA== +"@abp/blogging@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-7.3.0-rc.3.tgz#eacf54fa366669e7222fdfec70a34eb4d06a42e5" + integrity sha512-mcP7T+28tJWm2b3TzeAJP5qvzUmOONz6KpuoaDhzn9+a5vCvngO3DwjkV74pEhTq4B1JBKS5GwgCtf2r8hTSsw== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~7.2.3" - "@abp/owl.carousel" "~7.2.3" - "@abp/prismjs" "~7.2.3" - "@abp/tui-editor" "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.shared" "~7.3.0-rc.3" + "@abp/owl.carousel" "~7.3.0-rc.3" + "@abp/prismjs" "~7.3.0-rc.3" + "@abp/tui-editor" "~7.3.0-rc.3" -"@abp/bootstrap-datepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.2.3.tgz#7610ff44a6c1ea73f0c9b4c79a31cbb9e505d66f" - integrity sha512-wiKVXftVrXcjwz0FpshD6P4WW3CNk/4cLH15aaqRjM+J0BigDeH9CczlpVc7jXdn+c8plHIRz0t5tqlUud7dIQ== +"@abp/bootstrap-datepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.3.0-rc.3.tgz#bb1b34cfea9c0211f8e1d9cbffc7f1538c4fdb66" + integrity sha512-VsGYcKO56kMJbEFL7CnvqRWrn03lTM6+NJuVCs0K64YarhU06OI9KPd7PpWSZTP0D7Mz7z02pGYcWV034FXopA== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap-daterangepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.2.3.tgz#3946fb853dae52ef092db4bb23b94389577c17d3" - integrity sha512-ChdnXMzHvg+HwrUtw2z6KuqRTqHVOq8qEBai+IPW6PykJSML+tZKzer3jzDIzyHq68OIqom3n3xL0XpcniKMew== +"@abp/bootstrap-daterangepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.3.0-rc.3.tgz#b883c5a130133af6fc947b83dec179a716c60fe5" + integrity sha512-zV+DuBa0hgDx225kF/6VsotHzBbbHmeJ0iJflnLs+veDwYSBlT5uXgrxBHy4R41LnzDWyZqhwwq9SmHoGXShEQ== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.2.3.tgz#43ecd5912ac65bbc142f198ec112b0b2a15e4864" - integrity sha512-Z00q1sAwo9PvFSpfFlbbUHPMyghLOzuEuAzz/8nA6tK7WR0KQBS/0zGC0nK9hNwbyZ4FqKwPSznRVwuwrnqyhQ== +"@abp/bootstrap@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.3.0-rc.3.tgz#e4f35c0cfd1ecbcc892083f0b1022d9545e2fe89" + integrity sha512-yWd3tC1M2fbJmOfMiw2eqaxYQ5ZfkSIxAfVLZ39269ha+KSRhkZGPdjdRS7gGxB8LgAcG+I+pS9DAa7xv/FO/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" bootstrap "^5.1.3" -"@abp/clipboard@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-7.2.3.tgz#dcd8ffc229bd0419be6cd49679fe65dfea90163e" - integrity sha512-Eu7GIMqXpGqU1UK3gm0QfI4DQLaWcFLeO/hL/RefqU79kpWwN+PKg4bYAH8uuYovQUR8i0DRwk8rqOlayjjWRA== +"@abp/clipboard@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-7.3.0-rc.3.tgz#989141ed79834f80c3a8e351fbadfa5d19357c60" + integrity sha512-rk8ZE+yQE+H8dOcilji8EoyHN3cGtV5jzcM2xcMI+oRDbwRJkv3vI4rqox3cflr+QDZFlHyINlILkz8UrJgIew== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" clipboard "^2.0.8" -"@abp/core@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.2.3.tgz#a669073989a30f600355b368c01c654714456f17" - integrity sha512-UyKBWwXbKCzKZwV2YJPgP3v2naDFsfJzV+KEHpdgLdPZyrpBhp+bQ80VNVe2HHrD/bLfhM4fu9pCXw6RYZKnvA== +"@abp/core@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.3.0-rc.3.tgz#309a66b2c5feb05630acaebff8912f0639e3fc02" + integrity sha512-baD6VaLTj1sWU9lcoLnRtGCISCvrWylXaoqZ0vIuVy3QqskzHe3M3AVlHHn0HDwTNUA4zVBFOe6Of2DwHsYVwg== dependencies: - "@abp/utils" "~7.2.3" + "@abp/utils" "~7.3.0-rc.3" -"@abp/datatables.net-bs5@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.2.3.tgz#362f3b8ff2f3612989787e2b6ef19bad181b4206" - integrity sha512-TmXTkIX+Vb1O/fER5JeRlWIOZLoSXG4QD3F0ZbebrjgS9k7oSu9igR/VhXBs1m1lvOqcNKv7Y4LTNRAMw+Mi0A== +"@abp/datatables.net-bs5@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.3.0-rc.3.tgz#bad0344241f1ae83f4828d6d4a8de737bcaac0bb" + integrity sha512-YSNY1TwAkwr7DBEt66Rjg2Y/cic/0AzBBliqTbZsYtFEYh7rsychp9qmVofhYITXAnUlhsqPXMJ8VPmvWqvAbg== dependencies: - "@abp/datatables.net" "~7.2.3" + "@abp/datatables.net" "~7.3.0-rc.3" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.2.3.tgz#36661e223d15a0f75caad607094007d974ba678b" - integrity sha512-g+LmRMg4Sk34iU/MN4RpgC/yd8NVEjhVWg/kT+nuWunsnwLHkcfK59KPGXn9ZLktL4VqQYj2WeXbDv8TEbOObg== +"@abp/datatables.net@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.3.0-rc.3.tgz#43eb32cb0eb6f9023bfe2ec9801f2758e93aa445" + integrity sha512-rMi3oxfuDL71CYd/e7G3PgL0F/GqIGvpBHi0XunOMXFn+G5pJuZFv+ZnpzHgI3vmwj5BpSMzGJh8TRlosQB/fQ== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" datatables.net "^1.11.4" -"@abp/font-awesome@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.2.3.tgz#09b7c02b16ff99c9b5b62c1eefad9b1fc2879bcd" - integrity sha512-+4QRhfU08t1MYkmzTPX0B+p+SZQtOqtlDafzeDm5X6fbOlxV1hi97eRWtLtLgLjodjJWztpECWcsTUTgDhExwQ== +"@abp/font-awesome@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.3.0-rc.3.tgz#511419611d3debd4d808f24f7f40b1c2f4505a46" + integrity sha512-w0TAFFuEu74x6BTK1jHJF9rkxDhcqcu/ZeQTneXQOLzJYZFUWRoCCXxXvk376ZOvnOKuD2YBju0yhpJ9cR1s/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.2.3.tgz#b0b295b22ae2ba292100e64d0bb97b3e1e295307" - integrity sha512-ucdGIZ0sxefakGRei9BJvDuoN16fKsYfpOT70/udw3k7uC3gFJD0AvAlEOEZPsFZhpNoqUKexNMym4lZovqBkg== +"@abp/jquery-form@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.3.0-rc.3.tgz#4af1c9a743e4301fe9b8d983463c15d150046200" + integrity sha512-u//A4wrZisskjRvUvkGqPDpm2J5gEsS2DO9ADkvJOFxa30+fyabq4UW66a0gKX4dtHMzBuxxK8duJX+8lz4C2Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.2.3.tgz#1df04e286baa521c216cb949468199e6cacc34e3" - integrity sha512-Hcf1sqAFRIAYKqvN1pZGed+lazzY1nztvcmQlOOgUquiXRS3QjI3dIvxWw5nekJwUPqMpSfuC1GErQo0KpE1fw== +"@abp/jquery-validation-unobtrusive@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.3.0-rc.3.tgz#80623db86e8d60fda6b8167dc4c17c208e1d9533" + integrity sha512-haoov/Zy1nk6r3tnMaKl4YY67+dO9M1hjxF4txZPHGY2064jRT+QtGotimbINoVISDC2hcmQCbHCPkoyXrydSw== dependencies: - "@abp/jquery-validation" "~7.2.3" + "@abp/jquery-validation" "~7.3.0-rc.3" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.2.3.tgz#438ac052e5d71dab50cf5da8be60ea68a460a725" - integrity sha512-drpE5mXErHQPk/4KChsj3zwNCA4GqNlYquTtHNv9/t5S/NuGqFAkchPV6mRYaiQypcxCndZQNSUEqnWxbuMY0g== +"@abp/jquery-validation@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.3.0-rc.3.tgz#7c738da1b071c0de373bebeccbca59e22a3f469f" + integrity sha512-oXbl+JrhjaZGePL/39fcowJGGL9Kp/DPkan+Ji/gdsFTFxxw7xrdtXZ73TpW4hKSEzDiRwnuBstD4WxdiA5tqA== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-validation "^1.19.3" -"@abp/jquery@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.2.3.tgz#555192ff0bcde89bbabee0f734ff74bf77cce1b5" - integrity sha512-r/p3D2QlV57YvrGJsLfTuIJGwLSSi5AVFtkmgKyfpyXYOCNb+TVF9sEZOZnoZebX6cT0JRvtUfZ0dk6ZBebAzg== +"@abp/jquery@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.3.0-rc.3.tgz#37d1313723ee27a9b8845975cb9b38b61253719a" + integrity sha512-cNp/8Pj8ODhtgYKXFwJId+eENbhr0bPcxSvgUX0b6HoRP3AsYSv7lJK3snku/mneidMzeSI9l1yloR8DEA4wIQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" jquery "~3.6.0" -"@abp/lodash@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.2.3.tgz#99c1667f1499a7f318902e96ff81b4184b0dce86" - integrity sha512-5KuXPPpa2mkTlUYPR83bUTJUSSGoq9/kFSf9fYC0Wk2mFFeG4mRK6mXwcyHTfYshQe2qxuncxZsJ+4j5uQN9PA== +"@abp/lodash@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.3.0-rc.3.tgz#adc5712c820c5608ef5a2f1d4905617aed08626a" + integrity sha512-Y08+IMwQKLEBWIgZgHpRmBiXAfzcMDRUPY7jyciWmUZ5hgPQJHJSR6OkXk/o5AXnHTfTbZ0tWXgjUz7kxnF5bg== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" lodash "^4.17.21" -"@abp/luxon@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.2.3.tgz#f643ed28b2d1743edd41edfec98d0e70b2f1f008" - integrity sha512-Y3IT1GbyuNSAzfpGnc5uzjz3Z/nDRUpYiZhoX0XeoQlJ+GyVT/+dytsZbuQBLgEWmQJhk9zxdcITXFT5vrWDcw== +"@abp/luxon@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.3.0-rc.3.tgz#ba2976091ecdb765bd18b608bf60f36d29a7d6a8" + integrity sha512-22VPZlyEZQSOA430/sU9pQ/rZb5yrDaRidUhTltr/tdlQhexD8+uBT8+v/ue+f84/RjH8x2hOppbIR1oLVkXBQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.2.3.tgz#a29f25921b07683b02e2f5c82a3da827e3e7d552" - integrity sha512-wq9eBrw/bY3wb50v5zuL0qOcVLOT86XN2ZJQj69O/bi2+0WNdLRCqMHhY0kaafb7UIBAlKChKA/xeICwCZxn+w== +"@abp/malihu-custom-scrollbar-plugin@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.3.0-rc.3.tgz#54acc797bdf04c535530389e08155f6f18bfd9ce" + integrity sha512-20oE5c8AO8rCk1olKQYc9KE3gN62wALBqTypbusTXEfIgA/uERgm4EtlVhGb8H6FmGCljwO9Fj+ttnIx9QXoJw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.2.3.tgz#f6d2ba7b030b81239853490bdcc9e3c2bd4a39b1" - integrity sha512-pXsOzSom9RZHRGWuVaLIVzSkPayIcWMMmgSyo8T3gtZzZG/QJbpBWT+pug0X8pmV8So4d9E0LjacmODBKLM30A== +"@abp/moment@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.3.0-rc.3.tgz#e5b0885a55b09c306014d813d118eec3e5eb6e01" + integrity sha512-j+RMRNI8qf3Rr/oUOtneBLtUphDaUhLpLCkuj4RSlNgAijCDZg4w5F3VDVBKTsoQX4ZSnN39YpbtN/vb/3jNyA== dependencies: moment "^2.9.0" -"@abp/owl.carousel@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-7.2.3.tgz#d745ab06c5666c34977827d78b38493b18251972" - integrity sha512-SAEv9GEIWX9CWQXJCrCro3vJSAakkh9WzWmhfLG8kI/Duj/LyH5BlMLIArL3L4qcmG0NPgJA6IiXhkFe+WNDKg== +"@abp/owl.carousel@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-7.3.0-rc.3.tgz#905297eb82afbd232d3f35725060a4d9e4ab51c8" + integrity sha512-JyrTTLWKD70ce+rskw38s5bnetMFx3tcrM7K/OonSeR3ZHXMeOEe5HwY1HhtySHCyjRpys1hv8L6p2Mxrw8YUA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" owl.carousel "^2.3.4" -"@abp/prismjs@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-7.2.3.tgz#3ecef3120373eea8a5d01a7b12aa7669aff45307" - integrity sha512-yR/UPqpQ9MTHqBo5bK5izaVemdyqcncxWNIb1NETU4FwZ8ucLRnCbxX427gQUSWlqo6qc+Q9vdS4hOWjLTuroA== +"@abp/prismjs@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-7.3.0-rc.3.tgz#714873077258fda5b2ab3a2dd1877083b474bbeb" + integrity sha512-30I7KgNzhxQrpx4UNvVQKQDi4tjUl4DmiagiLE+SqxA7uwQ8NF1g6pKfnuyri+XkNcB3BFMhjDD8bbQxxrXpgg== dependencies: - "@abp/clipboard" "~7.2.3" - "@abp/core" "~7.2.3" + "@abp/clipboard" "~7.3.0-rc.3" + "@abp/core" "~7.3.0-rc.3" prismjs "^1.26.0" -"@abp/select2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.2.3.tgz#4cecd1cd843807583fce09ef632f472f3f7da70b" - integrity sha512-Cdzl467UftB421W+l8uikGr2NlOsHwxKDxt5yPrF03LEec1MBys5y7UPUV1TEO6l0xwAVi4mW8dXaawyIOSjUA== +"@abp/select2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.3.0-rc.3.tgz#b1261d10d3c4a870af07aa159a2921e5e78a6225" + integrity sha512-NUvYfxZYBXvB4j2oYwR6ec05quCylAHqe4C/CeH7Qo+cJcPduPRMJ9N5ZUQq1c4uZyOAbu7Tuuo+XTQvu1ZTRA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" select2 "^4.0.13" -"@abp/sweetalert2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.2.3.tgz#9e9c503bdb4d47d2b67b0d8193d82145884c90f3" - integrity sha512-KHZD1YRMN6Z4JxPfXuEwocubooux8nKq6sPNG6RKg+rWpp23Fp8nX/ZngJNywVXSRqzrdEvUAM+92JG7zMwKXw== +"@abp/sweetalert2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.3.0-rc.3.tgz#fa554fb304f7093f0a08fb683cb35c81af3c2ce7" + integrity sha512-iKg4TJex+aQna8n5hk7rPIbwY2ZQaVVP571vPdmFML85hUYQM289CI++ZDF0l2a5p22fDKBFRL99RZzceiGOSw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" sweetalert2 "^11.3.6" -"@abp/timeago@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.2.3.tgz#2ced6fa607a0471bf3385fbf5d9b1f2d902e824a" - integrity sha512-7eiibNXJWBGpQnitd/i8aWUNHOkcsuq8fAwBLJWvG8Whhh1nmBEjng0pGhheMqo0xoydefWi1K2uZDg99tKPeQ== +"@abp/timeago@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.3.0-rc.3.tgz#029839955cb53195259d82a3e0c534d817d3862a" + integrity sha512-JuadVXb/Garz7L0aj1h+Ffg4Ut5eLSf6Ipz5mFM2Q1mzXNhA8crwQCtf+NLZdcNohJ7gbxDWyEQ2jgbYr4ryRw== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" timeago "^1.6.7" -"@abp/toastr@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.2.3.tgz#0ef7c24b232ca3d01d4ac5a7dff57800b0ebdcbf" - integrity sha512-2zNMQE6ArRULP6xl+M66/EY83ZrXfNY+sNHUkmZH4uqfGhqR/ijKIQm1quxCLDmUcAjRr1kzu8BCc98pc9tfFw== +"@abp/toastr@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.3.0-rc.3.tgz#537afff62261482bbb21b50a9d503579fd71936d" + integrity sha512-dsVS9F2iQRDn0RtzbLT1b3nH4JKDj8pHCWdxDR3nT/JHpJuAFEZPAqT1/VrNmZxSoo4jdeHn8/pkQtE4RDhv+Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" toastr "^2.1.4" -"@abp/tui-editor@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-7.2.3.tgz#1e5d747e949e8fda3ad81a016bb51ff838b6ef7c" - integrity sha512-yXYXkjSIEO49AzijqOg+aboOBbhp/rGjWn5qJbIivVc6NgODrxmB8gHeC1HhmdlWWLJUt1R/jP1+y2imDWbjgw== +"@abp/tui-editor@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-7.3.0-rc.3.tgz#44ed5f38cd694bb86901ad9c3cbabfa05494ffed" + integrity sha512-bOikm9rZH0yO3kIZLoA0/iRNVejWMSOc9UEwQymrqWV+4we8LGXSOu1mX4bTOSrl3591BvoI2pGmAE5jNFf4Nw== dependencies: - "@abp/jquery" "~7.2.3" - "@abp/prismjs" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" + "@abp/prismjs" "~7.3.0-rc.3" -"@abp/utils@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.2.3.tgz#f384ba76b2948dbc8c49a453a343facda0825e2c" - integrity sha512-hejxDJhSI9Kor4mS9c/JHHQrW/wLXC/XMOJMUcBVkX/5IQd9GU9EW63oalNQyVA3gz3h5obnb0Qcfdv65wc5Pg== +"@abp/utils@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.3.0-rc.3.tgz#4d4e50dac717cae3e368bfe4fd3ce11f6df0e732" + integrity sha512-sMF2QGhRgbJW8PJtpVBrkiPAgofyfflUGmxNVbbx/HSOR3duFW0TNoXpTvxdP2v9k/SYe4i5XtLmv+mKPyttCw== dependencies: - just-compare "^1.3.0" + just-compare "^2.3.0" "@fortawesome/fontawesome-free@^5.15.4": version "5.15.4" @@ -1504,10 +1504,10 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -just-compare@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-1.5.1.tgz#aed7e93e6bae9c3b69d79aea7805684132a0c0c5" - integrity sha512-xDEEFHNIyJNmN4uo/2RVeUcay9THtN/5ka/iw98Y/gsa8w9KXZQuyaf5eFUY6VlntA2+G+bdPmdhqqTs7T+BRw== +just-compare@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7" + integrity sha512-6shoR7HDT+fzfL3gBahx1jZG3hWLrhPAf+l7nCwahDdT9XDtosB9kIF0ZrzUp5QY8dJWfQVr5rnsPqsbvflDzg== just-debounce@^1.0.0: version "1.1.0" diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/package.json b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/package.json index a0652123ca..3b53720d6d 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": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3" } } diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/wwwroot/libs/abp/jquery/abp.jquery.js b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/wwwroot/libs/abp/jquery/abp.jquery.js index 76dfd3897f..7dc3439da2 100644 --- a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/wwwroot/libs/abp/jquery/abp.jquery.js +++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/wwwroot/libs/abp/jquery/abp.jquery.js @@ -371,13 +371,18 @@ var abp = abp || {}; }; var _loadScript = function (url, loadCallback, failCallback) { + var nonce = document.body.nonce || document.body.getAttribute('nonce'); _loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { $.get({ url: url, dataType: 'text' }) .done(function (script) { - $.globalEval(script); + if(nonce){ + $.globalEval(script, { nonce: nonce}); + }else{ + $.globalEval(script); + } urlInfo.succeed(); }) .fail(function () { diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js new file mode 100644 index 0000000000..a02a2a7a5e --- /dev/null +++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { + return new bootstrap.Popover(popoverTriggerEl) + }) +})(); diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js new file mode 100644 index 0000000000..5a2b42a1d1 --- /dev/null +++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { + return new bootstrap.Tooltip(tooltipTriggerEl) + }); +})(); diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock index 7e5e33b3ea..30a7dae9d4 100644 --- a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock +++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/yarn.lock @@ -2,39 +2,39 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.2.3.tgz#31f2dda74b2bf8f520caf97690e509fd1c1088c4" - integrity sha512-7DIwWrkLJSc2kXYcIcZH+EivpwOXzkO4j2yrUilK0OijoOM9Pa/iGStdNTPlYioOKUNti3/1zah+v5SELNdqIw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~7.2.3" - -"@abp/aspnetcore.mvc.ui.theme.shared@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.2.3.tgz#189dde88792497d29f76a6079dc6db34973ee98d" - integrity sha512-+G2mM/BJWqgGqZFg6GP28PaCtq+YlRmRfg7r0JQ1wkAN9pc11yKm0LRQjFnkcVBzg0A+N2hZqnFbW7wQhwXOHg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~7.2.3" - "@abp/bootstrap" "~7.2.3" - "@abp/bootstrap-datepicker" "~7.2.3" - "@abp/bootstrap-daterangepicker" "~7.2.3" - "@abp/datatables.net-bs5" "~7.2.3" - "@abp/font-awesome" "~7.2.3" - "@abp/jquery-form" "~7.2.3" - "@abp/jquery-validation-unobtrusive" "~7.2.3" - "@abp/lodash" "~7.2.3" - "@abp/luxon" "~7.2.3" - "@abp/malihu-custom-scrollbar-plugin" "~7.2.3" - "@abp/moment" "~7.2.3" - "@abp/select2" "~7.2.3" - "@abp/sweetalert2" "~7.2.3" - "@abp/timeago" "~7.2.3" - "@abp/toastr" "~7.2.3" - -"@abp/aspnetcore.mvc.ui@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.2.3.tgz#d828561e678f6ea779a67c908705ba553ae82edc" - integrity sha512-KJCw6OxjQBgNw4QoSoDQOe32bFF9NvHdD09zMVsoCB/GgN66dcbZnk+ldidHcwjLFDPXOuHJMx+TKmno3VgUaQ== +"@abp/aspnetcore.mvc.ui.theme.basic@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.3.0-rc.3.tgz#8c8cfe4f7fe7ec68b4a91402fa2665ae4b62c7b1" + integrity sha512-oDgPUXmjAXbceUkhM3LjLWBTGPaBfAeqrl4CCA0EGnlZPzdS+KaD9gbP2Fs9OWyT5yBzbn5R+1cdUrRqI4qv3w== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui.theme.shared@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.3.0-rc.3.tgz#23f4e32b7922afe5364675f5e9065e4785727e31" + integrity sha512-i3YdQ0Trqzij8kkKCmOolPT3p++rBUi0cwjQ8wsxJb6nlAyJp4FcDBS/QAdNIqqxg1DZlxqf+u705EHTqQFZPA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~7.3.0-rc.3" + "@abp/bootstrap" "~7.3.0-rc.3" + "@abp/bootstrap-datepicker" "~7.3.0-rc.3" + "@abp/bootstrap-daterangepicker" "~7.3.0-rc.3" + "@abp/datatables.net-bs5" "~7.3.0-rc.3" + "@abp/font-awesome" "~7.3.0-rc.3" + "@abp/jquery-form" "~7.3.0-rc.3" + "@abp/jquery-validation-unobtrusive" "~7.3.0-rc.3" + "@abp/lodash" "~7.3.0-rc.3" + "@abp/luxon" "~7.3.0-rc.3" + "@abp/malihu-custom-scrollbar-plugin" "~7.3.0-rc.3" + "@abp/moment" "~7.3.0-rc.3" + "@abp/select2" "~7.3.0-rc.3" + "@abp/sweetalert2" "~7.3.0-rc.3" + "@abp/timeago" "~7.3.0-rc.3" + "@abp/toastr" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.3.0-rc.3.tgz#5acd05d14a8dc6b96387a0e30c2d1577d2dac884" + integrity sha512-cNG1Soct0p3qLp5OOrt/P4MaCBk3SbgV9RXBvKY7qp6TatfbIPG7Ggwmue1wj4kQpJxO3JIXfqpaGtg44phsmw== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -43,160 +43,160 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.2.3.tgz#7610ff44a6c1ea73f0c9b4c79a31cbb9e505d66f" - integrity sha512-wiKVXftVrXcjwz0FpshD6P4WW3CNk/4cLH15aaqRjM+J0BigDeH9CczlpVc7jXdn+c8plHIRz0t5tqlUud7dIQ== +"@abp/bootstrap-datepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.3.0-rc.3.tgz#bb1b34cfea9c0211f8e1d9cbffc7f1538c4fdb66" + integrity sha512-VsGYcKO56kMJbEFL7CnvqRWrn03lTM6+NJuVCs0K64YarhU06OI9KPd7PpWSZTP0D7Mz7z02pGYcWV034FXopA== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap-daterangepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.2.3.tgz#3946fb853dae52ef092db4bb23b94389577c17d3" - integrity sha512-ChdnXMzHvg+HwrUtw2z6KuqRTqHVOq8qEBai+IPW6PykJSML+tZKzer3jzDIzyHq68OIqom3n3xL0XpcniKMew== +"@abp/bootstrap-daterangepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.3.0-rc.3.tgz#b883c5a130133af6fc947b83dec179a716c60fe5" + integrity sha512-zV+DuBa0hgDx225kF/6VsotHzBbbHmeJ0iJflnLs+veDwYSBlT5uXgrxBHy4R41LnzDWyZqhwwq9SmHoGXShEQ== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.2.3.tgz#43ecd5912ac65bbc142f198ec112b0b2a15e4864" - integrity sha512-Z00q1sAwo9PvFSpfFlbbUHPMyghLOzuEuAzz/8nA6tK7WR0KQBS/0zGC0nK9hNwbyZ4FqKwPSznRVwuwrnqyhQ== +"@abp/bootstrap@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.3.0-rc.3.tgz#e4f35c0cfd1ecbcc892083f0b1022d9545e2fe89" + integrity sha512-yWd3tC1M2fbJmOfMiw2eqaxYQ5ZfkSIxAfVLZ39269ha+KSRhkZGPdjdRS7gGxB8LgAcG+I+pS9DAa7xv/FO/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" bootstrap "^5.1.3" -"@abp/core@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.2.3.tgz#a669073989a30f600355b368c01c654714456f17" - integrity sha512-UyKBWwXbKCzKZwV2YJPgP3v2naDFsfJzV+KEHpdgLdPZyrpBhp+bQ80VNVe2HHrD/bLfhM4fu9pCXw6RYZKnvA== +"@abp/core@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.3.0-rc.3.tgz#309a66b2c5feb05630acaebff8912f0639e3fc02" + integrity sha512-baD6VaLTj1sWU9lcoLnRtGCISCvrWylXaoqZ0vIuVy3QqskzHe3M3AVlHHn0HDwTNUA4zVBFOe6Of2DwHsYVwg== dependencies: - "@abp/utils" "~7.2.3" + "@abp/utils" "~7.3.0-rc.3" -"@abp/datatables.net-bs5@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.2.3.tgz#362f3b8ff2f3612989787e2b6ef19bad181b4206" - integrity sha512-TmXTkIX+Vb1O/fER5JeRlWIOZLoSXG4QD3F0ZbebrjgS9k7oSu9igR/VhXBs1m1lvOqcNKv7Y4LTNRAMw+Mi0A== +"@abp/datatables.net-bs5@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.3.0-rc.3.tgz#bad0344241f1ae83f4828d6d4a8de737bcaac0bb" + integrity sha512-YSNY1TwAkwr7DBEt66Rjg2Y/cic/0AzBBliqTbZsYtFEYh7rsychp9qmVofhYITXAnUlhsqPXMJ8VPmvWqvAbg== dependencies: - "@abp/datatables.net" "~7.2.3" + "@abp/datatables.net" "~7.3.0-rc.3" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.2.3.tgz#36661e223d15a0f75caad607094007d974ba678b" - integrity sha512-g+LmRMg4Sk34iU/MN4RpgC/yd8NVEjhVWg/kT+nuWunsnwLHkcfK59KPGXn9ZLktL4VqQYj2WeXbDv8TEbOObg== +"@abp/datatables.net@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.3.0-rc.3.tgz#43eb32cb0eb6f9023bfe2ec9801f2758e93aa445" + integrity sha512-rMi3oxfuDL71CYd/e7G3PgL0F/GqIGvpBHi0XunOMXFn+G5pJuZFv+ZnpzHgI3vmwj5BpSMzGJh8TRlosQB/fQ== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" datatables.net "^1.11.4" -"@abp/font-awesome@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.2.3.tgz#09b7c02b16ff99c9b5b62c1eefad9b1fc2879bcd" - integrity sha512-+4QRhfU08t1MYkmzTPX0B+p+SZQtOqtlDafzeDm5X6fbOlxV1hi97eRWtLtLgLjodjJWztpECWcsTUTgDhExwQ== +"@abp/font-awesome@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.3.0-rc.3.tgz#511419611d3debd4d808f24f7f40b1c2f4505a46" + integrity sha512-w0TAFFuEu74x6BTK1jHJF9rkxDhcqcu/ZeQTneXQOLzJYZFUWRoCCXxXvk376ZOvnOKuD2YBju0yhpJ9cR1s/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.2.3.tgz#b0b295b22ae2ba292100e64d0bb97b3e1e295307" - integrity sha512-ucdGIZ0sxefakGRei9BJvDuoN16fKsYfpOT70/udw3k7uC3gFJD0AvAlEOEZPsFZhpNoqUKexNMym4lZovqBkg== +"@abp/jquery-form@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.3.0-rc.3.tgz#4af1c9a743e4301fe9b8d983463c15d150046200" + integrity sha512-u//A4wrZisskjRvUvkGqPDpm2J5gEsS2DO9ADkvJOFxa30+fyabq4UW66a0gKX4dtHMzBuxxK8duJX+8lz4C2Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.2.3.tgz#1df04e286baa521c216cb949468199e6cacc34e3" - integrity sha512-Hcf1sqAFRIAYKqvN1pZGed+lazzY1nztvcmQlOOgUquiXRS3QjI3dIvxWw5nekJwUPqMpSfuC1GErQo0KpE1fw== +"@abp/jquery-validation-unobtrusive@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.3.0-rc.3.tgz#80623db86e8d60fda6b8167dc4c17c208e1d9533" + integrity sha512-haoov/Zy1nk6r3tnMaKl4YY67+dO9M1hjxF4txZPHGY2064jRT+QtGotimbINoVISDC2hcmQCbHCPkoyXrydSw== dependencies: - "@abp/jquery-validation" "~7.2.3" + "@abp/jquery-validation" "~7.3.0-rc.3" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.2.3.tgz#438ac052e5d71dab50cf5da8be60ea68a460a725" - integrity sha512-drpE5mXErHQPk/4KChsj3zwNCA4GqNlYquTtHNv9/t5S/NuGqFAkchPV6mRYaiQypcxCndZQNSUEqnWxbuMY0g== +"@abp/jquery-validation@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.3.0-rc.3.tgz#7c738da1b071c0de373bebeccbca59e22a3f469f" + integrity sha512-oXbl+JrhjaZGePL/39fcowJGGL9Kp/DPkan+Ji/gdsFTFxxw7xrdtXZ73TpW4hKSEzDiRwnuBstD4WxdiA5tqA== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-validation "^1.19.3" -"@abp/jquery@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.2.3.tgz#555192ff0bcde89bbabee0f734ff74bf77cce1b5" - integrity sha512-r/p3D2QlV57YvrGJsLfTuIJGwLSSi5AVFtkmgKyfpyXYOCNb+TVF9sEZOZnoZebX6cT0JRvtUfZ0dk6ZBebAzg== +"@abp/jquery@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.3.0-rc.3.tgz#37d1313723ee27a9b8845975cb9b38b61253719a" + integrity sha512-cNp/8Pj8ODhtgYKXFwJId+eENbhr0bPcxSvgUX0b6HoRP3AsYSv7lJK3snku/mneidMzeSI9l1yloR8DEA4wIQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" jquery "~3.6.0" -"@abp/lodash@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.2.3.tgz#99c1667f1499a7f318902e96ff81b4184b0dce86" - integrity sha512-5KuXPPpa2mkTlUYPR83bUTJUSSGoq9/kFSf9fYC0Wk2mFFeG4mRK6mXwcyHTfYshQe2qxuncxZsJ+4j5uQN9PA== +"@abp/lodash@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.3.0-rc.3.tgz#adc5712c820c5608ef5a2f1d4905617aed08626a" + integrity sha512-Y08+IMwQKLEBWIgZgHpRmBiXAfzcMDRUPY7jyciWmUZ5hgPQJHJSR6OkXk/o5AXnHTfTbZ0tWXgjUz7kxnF5bg== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" lodash "^4.17.21" -"@abp/luxon@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.2.3.tgz#f643ed28b2d1743edd41edfec98d0e70b2f1f008" - integrity sha512-Y3IT1GbyuNSAzfpGnc5uzjz3Z/nDRUpYiZhoX0XeoQlJ+GyVT/+dytsZbuQBLgEWmQJhk9zxdcITXFT5vrWDcw== +"@abp/luxon@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.3.0-rc.3.tgz#ba2976091ecdb765bd18b608bf60f36d29a7d6a8" + integrity sha512-22VPZlyEZQSOA430/sU9pQ/rZb5yrDaRidUhTltr/tdlQhexD8+uBT8+v/ue+f84/RjH8x2hOppbIR1oLVkXBQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.2.3.tgz#a29f25921b07683b02e2f5c82a3da827e3e7d552" - integrity sha512-wq9eBrw/bY3wb50v5zuL0qOcVLOT86XN2ZJQj69O/bi2+0WNdLRCqMHhY0kaafb7UIBAlKChKA/xeICwCZxn+w== +"@abp/malihu-custom-scrollbar-plugin@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.3.0-rc.3.tgz#54acc797bdf04c535530389e08155f6f18bfd9ce" + integrity sha512-20oE5c8AO8rCk1olKQYc9KE3gN62wALBqTypbusTXEfIgA/uERgm4EtlVhGb8H6FmGCljwO9Fj+ttnIx9QXoJw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.2.3.tgz#f6d2ba7b030b81239853490bdcc9e3c2bd4a39b1" - integrity sha512-pXsOzSom9RZHRGWuVaLIVzSkPayIcWMMmgSyo8T3gtZzZG/QJbpBWT+pug0X8pmV8So4d9E0LjacmODBKLM30A== +"@abp/moment@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.3.0-rc.3.tgz#e5b0885a55b09c306014d813d118eec3e5eb6e01" + integrity sha512-j+RMRNI8qf3Rr/oUOtneBLtUphDaUhLpLCkuj4RSlNgAijCDZg4w5F3VDVBKTsoQX4ZSnN39YpbtN/vb/3jNyA== dependencies: moment "^2.9.0" -"@abp/select2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.2.3.tgz#4cecd1cd843807583fce09ef632f472f3f7da70b" - integrity sha512-Cdzl467UftB421W+l8uikGr2NlOsHwxKDxt5yPrF03LEec1MBys5y7UPUV1TEO6l0xwAVi4mW8dXaawyIOSjUA== +"@abp/select2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.3.0-rc.3.tgz#b1261d10d3c4a870af07aa159a2921e5e78a6225" + integrity sha512-NUvYfxZYBXvB4j2oYwR6ec05quCylAHqe4C/CeH7Qo+cJcPduPRMJ9N5ZUQq1c4uZyOAbu7Tuuo+XTQvu1ZTRA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" select2 "^4.0.13" -"@abp/sweetalert2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.2.3.tgz#9e9c503bdb4d47d2b67b0d8193d82145884c90f3" - integrity sha512-KHZD1YRMN6Z4JxPfXuEwocubooux8nKq6sPNG6RKg+rWpp23Fp8nX/ZngJNywVXSRqzrdEvUAM+92JG7zMwKXw== +"@abp/sweetalert2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.3.0-rc.3.tgz#fa554fb304f7093f0a08fb683cb35c81af3c2ce7" + integrity sha512-iKg4TJex+aQna8n5hk7rPIbwY2ZQaVVP571vPdmFML85hUYQM289CI++ZDF0l2a5p22fDKBFRL99RZzceiGOSw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" sweetalert2 "^11.3.6" -"@abp/timeago@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.2.3.tgz#2ced6fa607a0471bf3385fbf5d9b1f2d902e824a" - integrity sha512-7eiibNXJWBGpQnitd/i8aWUNHOkcsuq8fAwBLJWvG8Whhh1nmBEjng0pGhheMqo0xoydefWi1K2uZDg99tKPeQ== +"@abp/timeago@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.3.0-rc.3.tgz#029839955cb53195259d82a3e0c534d817d3862a" + integrity sha512-JuadVXb/Garz7L0aj1h+Ffg4Ut5eLSf6Ipz5mFM2Q1mzXNhA8crwQCtf+NLZdcNohJ7gbxDWyEQ2jgbYr4ryRw== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" timeago "^1.6.7" -"@abp/toastr@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.2.3.tgz#0ef7c24b232ca3d01d4ac5a7dff57800b0ebdcbf" - integrity sha512-2zNMQE6ArRULP6xl+M66/EY83ZrXfNY+sNHUkmZH4uqfGhqR/ijKIQm1quxCLDmUcAjRr1kzu8BCc98pc9tfFw== +"@abp/toastr@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.3.0-rc.3.tgz#537afff62261482bbb21b50a9d503579fd71936d" + integrity sha512-dsVS9F2iQRDn0RtzbLT1b3nH4JKDj8pHCWdxDR3nT/JHpJuAFEZPAqT1/VrNmZxSoo4jdeHn8/pkQtE4RDhv+Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" toastr "^2.1.4" -"@abp/utils@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.2.3.tgz#f384ba76b2948dbc8c49a453a343facda0825e2c" - integrity sha512-hejxDJhSI9Kor4mS9c/JHHQrW/wLXC/XMOJMUcBVkX/5IQd9GU9EW63oalNQyVA3gz3h5obnb0Qcfdv65wc5Pg== +"@abp/utils@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.3.0-rc.3.tgz#4d4e50dac717cae3e368bfe4fd3ce11f6df0e732" + integrity sha512-sMF2QGhRgbJW8PJtpVBrkiPAgofyfflUGmxNVbbx/HSOR3duFW0TNoXpTvxdP2v9k/SYe4i5XtLmv+mKPyttCw== dependencies: - just-compare "^1.3.0" + just-compare "^2.3.0" "@fortawesome/fontawesome-free@^5.15.4": version "5.15.4" @@ -1440,10 +1440,10 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -just-compare@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-1.5.1.tgz#aed7e93e6bae9c3b69d79aea7805684132a0c0c5" - integrity sha512-xDEEFHNIyJNmN4uo/2RVeUcay9THtN/5ka/iw98Y/gsa8w9KXZQuyaf5eFUY6VlntA2+G+bdPmdhqqTs7T+BRw== +just-compare@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7" + integrity sha512-6shoR7HDT+fzfL3gBahx1jZG3hWLrhPAf+l7nCwahDdT9XDtosB9kIF0ZrzUp5QY8dJWfQVr5rnsPqsbvflDzg== just-debounce@^1.0.0: version "1.1.0" diff --git a/modules/cms-kit/angular/package.json b/modules/cms-kit/angular/package.json index 58c85266c4..2347cf3c9a 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": "~7.2.3", - "@abp/ng.identity": "~7.2.3", - "@abp/ng.setting-management": "~7.2.3", - "@abp/ng.tenant-management": "~7.2.3", - "@abp/ng.theme.basic": "~7.2.3", + "@abp/ng.account": "~7.3.0-rc.3", + "@abp/ng.identity": "~7.3.0-rc.3", + "@abp/ng.setting-management": "~7.3.0-rc.3", + "@abp/ng.tenant-management": "~7.3.0-rc.3", + "@abp/ng.theme.basic": "~7.3.0-rc.3", "@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 bd50b151e1..fbaaf69a10 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": ">=7.2.3", - "@abp/ng.theme.shared": ">=7.2.3" + "@abp/ng.core": ">=7.3.0-rc.3", + "@abp/ng.theme.shared": ">=7.3.0-rc.3" }, "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 e7cce48297..1ba7d55907 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": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3" } } diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/wwwroot/libs/abp/jquery/abp.jquery.js b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/wwwroot/libs/abp/jquery/abp.jquery.js index 76dfd3897f..7dc3439da2 100644 --- a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/wwwroot/libs/abp/jquery/abp.jquery.js +++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/wwwroot/libs/abp/jquery/abp.jquery.js @@ -371,13 +371,18 @@ var abp = abp || {}; }; var _loadScript = function (url, loadCallback, failCallback) { + var nonce = document.body.nonce || document.body.getAttribute('nonce'); _loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { $.get({ url: url, dataType: 'text' }) .done(function (script) { - $.globalEval(script); + if(nonce){ + $.globalEval(script, { nonce: nonce}); + }else{ + $.globalEval(script); + } urlInfo.succeed(); }) .fail(function () { diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js new file mode 100644 index 0000000000..a02a2a7a5e --- /dev/null +++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { + return new bootstrap.Popover(popoverTriggerEl) + }) +})(); diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js new file mode 100644 index 0000000000..5a2b42a1d1 --- /dev/null +++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { + return new bootstrap.Tooltip(tooltipTriggerEl) + }); +})(); diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock index 7e5e33b3ea..30a7dae9d4 100644 --- a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock +++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/yarn.lock @@ -2,39 +2,39 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.2.3.tgz#31f2dda74b2bf8f520caf97690e509fd1c1088c4" - integrity sha512-7DIwWrkLJSc2kXYcIcZH+EivpwOXzkO4j2yrUilK0OijoOM9Pa/iGStdNTPlYioOKUNti3/1zah+v5SELNdqIw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~7.2.3" - -"@abp/aspnetcore.mvc.ui.theme.shared@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.2.3.tgz#189dde88792497d29f76a6079dc6db34973ee98d" - integrity sha512-+G2mM/BJWqgGqZFg6GP28PaCtq+YlRmRfg7r0JQ1wkAN9pc11yKm0LRQjFnkcVBzg0A+N2hZqnFbW7wQhwXOHg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~7.2.3" - "@abp/bootstrap" "~7.2.3" - "@abp/bootstrap-datepicker" "~7.2.3" - "@abp/bootstrap-daterangepicker" "~7.2.3" - "@abp/datatables.net-bs5" "~7.2.3" - "@abp/font-awesome" "~7.2.3" - "@abp/jquery-form" "~7.2.3" - "@abp/jquery-validation-unobtrusive" "~7.2.3" - "@abp/lodash" "~7.2.3" - "@abp/luxon" "~7.2.3" - "@abp/malihu-custom-scrollbar-plugin" "~7.2.3" - "@abp/moment" "~7.2.3" - "@abp/select2" "~7.2.3" - "@abp/sweetalert2" "~7.2.3" - "@abp/timeago" "~7.2.3" - "@abp/toastr" "~7.2.3" - -"@abp/aspnetcore.mvc.ui@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.2.3.tgz#d828561e678f6ea779a67c908705ba553ae82edc" - integrity sha512-KJCw6OxjQBgNw4QoSoDQOe32bFF9NvHdD09zMVsoCB/GgN66dcbZnk+ldidHcwjLFDPXOuHJMx+TKmno3VgUaQ== +"@abp/aspnetcore.mvc.ui.theme.basic@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.3.0-rc.3.tgz#8c8cfe4f7fe7ec68b4a91402fa2665ae4b62c7b1" + integrity sha512-oDgPUXmjAXbceUkhM3LjLWBTGPaBfAeqrl4CCA0EGnlZPzdS+KaD9gbP2Fs9OWyT5yBzbn5R+1cdUrRqI4qv3w== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui.theme.shared@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.3.0-rc.3.tgz#23f4e32b7922afe5364675f5e9065e4785727e31" + integrity sha512-i3YdQ0Trqzij8kkKCmOolPT3p++rBUi0cwjQ8wsxJb6nlAyJp4FcDBS/QAdNIqqxg1DZlxqf+u705EHTqQFZPA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~7.3.0-rc.3" + "@abp/bootstrap" "~7.3.0-rc.3" + "@abp/bootstrap-datepicker" "~7.3.0-rc.3" + "@abp/bootstrap-daterangepicker" "~7.3.0-rc.3" + "@abp/datatables.net-bs5" "~7.3.0-rc.3" + "@abp/font-awesome" "~7.3.0-rc.3" + "@abp/jquery-form" "~7.3.0-rc.3" + "@abp/jquery-validation-unobtrusive" "~7.3.0-rc.3" + "@abp/lodash" "~7.3.0-rc.3" + "@abp/luxon" "~7.3.0-rc.3" + "@abp/malihu-custom-scrollbar-plugin" "~7.3.0-rc.3" + "@abp/moment" "~7.3.0-rc.3" + "@abp/select2" "~7.3.0-rc.3" + "@abp/sweetalert2" "~7.3.0-rc.3" + "@abp/timeago" "~7.3.0-rc.3" + "@abp/toastr" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.3.0-rc.3.tgz#5acd05d14a8dc6b96387a0e30c2d1577d2dac884" + integrity sha512-cNG1Soct0p3qLp5OOrt/P4MaCBk3SbgV9RXBvKY7qp6TatfbIPG7Ggwmue1wj4kQpJxO3JIXfqpaGtg44phsmw== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -43,160 +43,160 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.2.3.tgz#7610ff44a6c1ea73f0c9b4c79a31cbb9e505d66f" - integrity sha512-wiKVXftVrXcjwz0FpshD6P4WW3CNk/4cLH15aaqRjM+J0BigDeH9CczlpVc7jXdn+c8plHIRz0t5tqlUud7dIQ== +"@abp/bootstrap-datepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.3.0-rc.3.tgz#bb1b34cfea9c0211f8e1d9cbffc7f1538c4fdb66" + integrity sha512-VsGYcKO56kMJbEFL7CnvqRWrn03lTM6+NJuVCs0K64YarhU06OI9KPd7PpWSZTP0D7Mz7z02pGYcWV034FXopA== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap-daterangepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.2.3.tgz#3946fb853dae52ef092db4bb23b94389577c17d3" - integrity sha512-ChdnXMzHvg+HwrUtw2z6KuqRTqHVOq8qEBai+IPW6PykJSML+tZKzer3jzDIzyHq68OIqom3n3xL0XpcniKMew== +"@abp/bootstrap-daterangepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.3.0-rc.3.tgz#b883c5a130133af6fc947b83dec179a716c60fe5" + integrity sha512-zV+DuBa0hgDx225kF/6VsotHzBbbHmeJ0iJflnLs+veDwYSBlT5uXgrxBHy4R41LnzDWyZqhwwq9SmHoGXShEQ== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.2.3.tgz#43ecd5912ac65bbc142f198ec112b0b2a15e4864" - integrity sha512-Z00q1sAwo9PvFSpfFlbbUHPMyghLOzuEuAzz/8nA6tK7WR0KQBS/0zGC0nK9hNwbyZ4FqKwPSznRVwuwrnqyhQ== +"@abp/bootstrap@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.3.0-rc.3.tgz#e4f35c0cfd1ecbcc892083f0b1022d9545e2fe89" + integrity sha512-yWd3tC1M2fbJmOfMiw2eqaxYQ5ZfkSIxAfVLZ39269ha+KSRhkZGPdjdRS7gGxB8LgAcG+I+pS9DAa7xv/FO/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" bootstrap "^5.1.3" -"@abp/core@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.2.3.tgz#a669073989a30f600355b368c01c654714456f17" - integrity sha512-UyKBWwXbKCzKZwV2YJPgP3v2naDFsfJzV+KEHpdgLdPZyrpBhp+bQ80VNVe2HHrD/bLfhM4fu9pCXw6RYZKnvA== +"@abp/core@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.3.0-rc.3.tgz#309a66b2c5feb05630acaebff8912f0639e3fc02" + integrity sha512-baD6VaLTj1sWU9lcoLnRtGCISCvrWylXaoqZ0vIuVy3QqskzHe3M3AVlHHn0HDwTNUA4zVBFOe6Of2DwHsYVwg== dependencies: - "@abp/utils" "~7.2.3" + "@abp/utils" "~7.3.0-rc.3" -"@abp/datatables.net-bs5@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.2.3.tgz#362f3b8ff2f3612989787e2b6ef19bad181b4206" - integrity sha512-TmXTkIX+Vb1O/fER5JeRlWIOZLoSXG4QD3F0ZbebrjgS9k7oSu9igR/VhXBs1m1lvOqcNKv7Y4LTNRAMw+Mi0A== +"@abp/datatables.net-bs5@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.3.0-rc.3.tgz#bad0344241f1ae83f4828d6d4a8de737bcaac0bb" + integrity sha512-YSNY1TwAkwr7DBEt66Rjg2Y/cic/0AzBBliqTbZsYtFEYh7rsychp9qmVofhYITXAnUlhsqPXMJ8VPmvWqvAbg== dependencies: - "@abp/datatables.net" "~7.2.3" + "@abp/datatables.net" "~7.3.0-rc.3" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.2.3.tgz#36661e223d15a0f75caad607094007d974ba678b" - integrity sha512-g+LmRMg4Sk34iU/MN4RpgC/yd8NVEjhVWg/kT+nuWunsnwLHkcfK59KPGXn9ZLktL4VqQYj2WeXbDv8TEbOObg== +"@abp/datatables.net@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.3.0-rc.3.tgz#43eb32cb0eb6f9023bfe2ec9801f2758e93aa445" + integrity sha512-rMi3oxfuDL71CYd/e7G3PgL0F/GqIGvpBHi0XunOMXFn+G5pJuZFv+ZnpzHgI3vmwj5BpSMzGJh8TRlosQB/fQ== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" datatables.net "^1.11.4" -"@abp/font-awesome@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.2.3.tgz#09b7c02b16ff99c9b5b62c1eefad9b1fc2879bcd" - integrity sha512-+4QRhfU08t1MYkmzTPX0B+p+SZQtOqtlDafzeDm5X6fbOlxV1hi97eRWtLtLgLjodjJWztpECWcsTUTgDhExwQ== +"@abp/font-awesome@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.3.0-rc.3.tgz#511419611d3debd4d808f24f7f40b1c2f4505a46" + integrity sha512-w0TAFFuEu74x6BTK1jHJF9rkxDhcqcu/ZeQTneXQOLzJYZFUWRoCCXxXvk376ZOvnOKuD2YBju0yhpJ9cR1s/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.2.3.tgz#b0b295b22ae2ba292100e64d0bb97b3e1e295307" - integrity sha512-ucdGIZ0sxefakGRei9BJvDuoN16fKsYfpOT70/udw3k7uC3gFJD0AvAlEOEZPsFZhpNoqUKexNMym4lZovqBkg== +"@abp/jquery-form@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.3.0-rc.3.tgz#4af1c9a743e4301fe9b8d983463c15d150046200" + integrity sha512-u//A4wrZisskjRvUvkGqPDpm2J5gEsS2DO9ADkvJOFxa30+fyabq4UW66a0gKX4dtHMzBuxxK8duJX+8lz4C2Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.2.3.tgz#1df04e286baa521c216cb949468199e6cacc34e3" - integrity sha512-Hcf1sqAFRIAYKqvN1pZGed+lazzY1nztvcmQlOOgUquiXRS3QjI3dIvxWw5nekJwUPqMpSfuC1GErQo0KpE1fw== +"@abp/jquery-validation-unobtrusive@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.3.0-rc.3.tgz#80623db86e8d60fda6b8167dc4c17c208e1d9533" + integrity sha512-haoov/Zy1nk6r3tnMaKl4YY67+dO9M1hjxF4txZPHGY2064jRT+QtGotimbINoVISDC2hcmQCbHCPkoyXrydSw== dependencies: - "@abp/jquery-validation" "~7.2.3" + "@abp/jquery-validation" "~7.3.0-rc.3" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.2.3.tgz#438ac052e5d71dab50cf5da8be60ea68a460a725" - integrity sha512-drpE5mXErHQPk/4KChsj3zwNCA4GqNlYquTtHNv9/t5S/NuGqFAkchPV6mRYaiQypcxCndZQNSUEqnWxbuMY0g== +"@abp/jquery-validation@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.3.0-rc.3.tgz#7c738da1b071c0de373bebeccbca59e22a3f469f" + integrity sha512-oXbl+JrhjaZGePL/39fcowJGGL9Kp/DPkan+Ji/gdsFTFxxw7xrdtXZ73TpW4hKSEzDiRwnuBstD4WxdiA5tqA== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-validation "^1.19.3" -"@abp/jquery@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.2.3.tgz#555192ff0bcde89bbabee0f734ff74bf77cce1b5" - integrity sha512-r/p3D2QlV57YvrGJsLfTuIJGwLSSi5AVFtkmgKyfpyXYOCNb+TVF9sEZOZnoZebX6cT0JRvtUfZ0dk6ZBebAzg== +"@abp/jquery@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.3.0-rc.3.tgz#37d1313723ee27a9b8845975cb9b38b61253719a" + integrity sha512-cNp/8Pj8ODhtgYKXFwJId+eENbhr0bPcxSvgUX0b6HoRP3AsYSv7lJK3snku/mneidMzeSI9l1yloR8DEA4wIQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" jquery "~3.6.0" -"@abp/lodash@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.2.3.tgz#99c1667f1499a7f318902e96ff81b4184b0dce86" - integrity sha512-5KuXPPpa2mkTlUYPR83bUTJUSSGoq9/kFSf9fYC0Wk2mFFeG4mRK6mXwcyHTfYshQe2qxuncxZsJ+4j5uQN9PA== +"@abp/lodash@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.3.0-rc.3.tgz#adc5712c820c5608ef5a2f1d4905617aed08626a" + integrity sha512-Y08+IMwQKLEBWIgZgHpRmBiXAfzcMDRUPY7jyciWmUZ5hgPQJHJSR6OkXk/o5AXnHTfTbZ0tWXgjUz7kxnF5bg== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" lodash "^4.17.21" -"@abp/luxon@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.2.3.tgz#f643ed28b2d1743edd41edfec98d0e70b2f1f008" - integrity sha512-Y3IT1GbyuNSAzfpGnc5uzjz3Z/nDRUpYiZhoX0XeoQlJ+GyVT/+dytsZbuQBLgEWmQJhk9zxdcITXFT5vrWDcw== +"@abp/luxon@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.3.0-rc.3.tgz#ba2976091ecdb765bd18b608bf60f36d29a7d6a8" + integrity sha512-22VPZlyEZQSOA430/sU9pQ/rZb5yrDaRidUhTltr/tdlQhexD8+uBT8+v/ue+f84/RjH8x2hOppbIR1oLVkXBQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.2.3.tgz#a29f25921b07683b02e2f5c82a3da827e3e7d552" - integrity sha512-wq9eBrw/bY3wb50v5zuL0qOcVLOT86XN2ZJQj69O/bi2+0WNdLRCqMHhY0kaafb7UIBAlKChKA/xeICwCZxn+w== +"@abp/malihu-custom-scrollbar-plugin@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.3.0-rc.3.tgz#54acc797bdf04c535530389e08155f6f18bfd9ce" + integrity sha512-20oE5c8AO8rCk1olKQYc9KE3gN62wALBqTypbusTXEfIgA/uERgm4EtlVhGb8H6FmGCljwO9Fj+ttnIx9QXoJw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.2.3.tgz#f6d2ba7b030b81239853490bdcc9e3c2bd4a39b1" - integrity sha512-pXsOzSom9RZHRGWuVaLIVzSkPayIcWMMmgSyo8T3gtZzZG/QJbpBWT+pug0X8pmV8So4d9E0LjacmODBKLM30A== +"@abp/moment@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.3.0-rc.3.tgz#e5b0885a55b09c306014d813d118eec3e5eb6e01" + integrity sha512-j+RMRNI8qf3Rr/oUOtneBLtUphDaUhLpLCkuj4RSlNgAijCDZg4w5F3VDVBKTsoQX4ZSnN39YpbtN/vb/3jNyA== dependencies: moment "^2.9.0" -"@abp/select2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.2.3.tgz#4cecd1cd843807583fce09ef632f472f3f7da70b" - integrity sha512-Cdzl467UftB421W+l8uikGr2NlOsHwxKDxt5yPrF03LEec1MBys5y7UPUV1TEO6l0xwAVi4mW8dXaawyIOSjUA== +"@abp/select2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.3.0-rc.3.tgz#b1261d10d3c4a870af07aa159a2921e5e78a6225" + integrity sha512-NUvYfxZYBXvB4j2oYwR6ec05quCylAHqe4C/CeH7Qo+cJcPduPRMJ9N5ZUQq1c4uZyOAbu7Tuuo+XTQvu1ZTRA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" select2 "^4.0.13" -"@abp/sweetalert2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.2.3.tgz#9e9c503bdb4d47d2b67b0d8193d82145884c90f3" - integrity sha512-KHZD1YRMN6Z4JxPfXuEwocubooux8nKq6sPNG6RKg+rWpp23Fp8nX/ZngJNywVXSRqzrdEvUAM+92JG7zMwKXw== +"@abp/sweetalert2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.3.0-rc.3.tgz#fa554fb304f7093f0a08fb683cb35c81af3c2ce7" + integrity sha512-iKg4TJex+aQna8n5hk7rPIbwY2ZQaVVP571vPdmFML85hUYQM289CI++ZDF0l2a5p22fDKBFRL99RZzceiGOSw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" sweetalert2 "^11.3.6" -"@abp/timeago@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.2.3.tgz#2ced6fa607a0471bf3385fbf5d9b1f2d902e824a" - integrity sha512-7eiibNXJWBGpQnitd/i8aWUNHOkcsuq8fAwBLJWvG8Whhh1nmBEjng0pGhheMqo0xoydefWi1K2uZDg99tKPeQ== +"@abp/timeago@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.3.0-rc.3.tgz#029839955cb53195259d82a3e0c534d817d3862a" + integrity sha512-JuadVXb/Garz7L0aj1h+Ffg4Ut5eLSf6Ipz5mFM2Q1mzXNhA8crwQCtf+NLZdcNohJ7gbxDWyEQ2jgbYr4ryRw== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" timeago "^1.6.7" -"@abp/toastr@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.2.3.tgz#0ef7c24b232ca3d01d4ac5a7dff57800b0ebdcbf" - integrity sha512-2zNMQE6ArRULP6xl+M66/EY83ZrXfNY+sNHUkmZH4uqfGhqR/ijKIQm1quxCLDmUcAjRr1kzu8BCc98pc9tfFw== +"@abp/toastr@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.3.0-rc.3.tgz#537afff62261482bbb21b50a9d503579fd71936d" + integrity sha512-dsVS9F2iQRDn0RtzbLT1b3nH4JKDj8pHCWdxDR3nT/JHpJuAFEZPAqT1/VrNmZxSoo4jdeHn8/pkQtE4RDhv+Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" toastr "^2.1.4" -"@abp/utils@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.2.3.tgz#f384ba76b2948dbc8c49a453a343facda0825e2c" - integrity sha512-hejxDJhSI9Kor4mS9c/JHHQrW/wLXC/XMOJMUcBVkX/5IQd9GU9EW63oalNQyVA3gz3h5obnb0Qcfdv65wc5Pg== +"@abp/utils@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.3.0-rc.3.tgz#4d4e50dac717cae3e368bfe4fd3ce11f6df0e732" + integrity sha512-sMF2QGhRgbJW8PJtpVBrkiPAgofyfflUGmxNVbbx/HSOR3duFW0TNoXpTvxdP2v9k/SYe4i5XtLmv+mKPyttCw== dependencies: - just-compare "^1.3.0" + just-compare "^2.3.0" "@fortawesome/fontawesome-free@^5.15.4": version "5.15.4" @@ -1440,10 +1440,10 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -just-compare@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-1.5.1.tgz#aed7e93e6bae9c3b69d79aea7805684132a0c0c5" - integrity sha512-xDEEFHNIyJNmN4uo/2RVeUcay9THtN/5ka/iw98Y/gsa8w9KXZQuyaf5eFUY6VlntA2+G+bdPmdhqqTs7T+BRw== +just-compare@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7" + integrity sha512-6shoR7HDT+fzfL3gBahx1jZG3hWLrhPAf+l7nCwahDdT9XDtosB9kIF0ZrzUp5QY8dJWfQVr5rnsPqsbvflDzg== just-debounce@^1.0.0: version "1.1.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 dc291e5514..70ce47f8dd 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": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3" } } diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Host/wwwroot/libs/abp/jquery/abp.jquery.js b/modules/cms-kit/host/Volo.CmsKit.Web.Host/wwwroot/libs/abp/jquery/abp.jquery.js index 76dfd3897f..7dc3439da2 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Host/wwwroot/libs/abp/jquery/abp.jquery.js +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/wwwroot/libs/abp/jquery/abp.jquery.js @@ -371,13 +371,18 @@ var abp = abp || {}; }; var _loadScript = function (url, loadCallback, failCallback) { + var nonce = document.body.nonce || document.body.getAttribute('nonce'); _loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { $.get({ url: url, dataType: 'text' }) .done(function (script) { - $.globalEval(script); + if(nonce){ + $.globalEval(script, { nonce: nonce}); + }else{ + $.globalEval(script); + } urlInfo.succeed(); }) .fail(function () { diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js b/modules/cms-kit/host/Volo.CmsKit.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js new file mode 100644 index 0000000000..a02a2a7a5e --- /dev/null +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { + return new bootstrap.Popover(popoverTriggerEl) + }) +})(); diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js b/modules/cms-kit/host/Volo.CmsKit.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js new file mode 100644 index 0000000000..5a2b42a1d1 --- /dev/null +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { + return new bootstrap.Tooltip(tooltipTriggerEl) + }); +})(); 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 7e5e33b3ea..30a7dae9d4 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/yarn.lock @@ -2,39 +2,39 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.2.3.tgz#31f2dda74b2bf8f520caf97690e509fd1c1088c4" - integrity sha512-7DIwWrkLJSc2kXYcIcZH+EivpwOXzkO4j2yrUilK0OijoOM9Pa/iGStdNTPlYioOKUNti3/1zah+v5SELNdqIw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~7.2.3" - -"@abp/aspnetcore.mvc.ui.theme.shared@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.2.3.tgz#189dde88792497d29f76a6079dc6db34973ee98d" - integrity sha512-+G2mM/BJWqgGqZFg6GP28PaCtq+YlRmRfg7r0JQ1wkAN9pc11yKm0LRQjFnkcVBzg0A+N2hZqnFbW7wQhwXOHg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~7.2.3" - "@abp/bootstrap" "~7.2.3" - "@abp/bootstrap-datepicker" "~7.2.3" - "@abp/bootstrap-daterangepicker" "~7.2.3" - "@abp/datatables.net-bs5" "~7.2.3" - "@abp/font-awesome" "~7.2.3" - "@abp/jquery-form" "~7.2.3" - "@abp/jquery-validation-unobtrusive" "~7.2.3" - "@abp/lodash" "~7.2.3" - "@abp/luxon" "~7.2.3" - "@abp/malihu-custom-scrollbar-plugin" "~7.2.3" - "@abp/moment" "~7.2.3" - "@abp/select2" "~7.2.3" - "@abp/sweetalert2" "~7.2.3" - "@abp/timeago" "~7.2.3" - "@abp/toastr" "~7.2.3" - -"@abp/aspnetcore.mvc.ui@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.2.3.tgz#d828561e678f6ea779a67c908705ba553ae82edc" - integrity sha512-KJCw6OxjQBgNw4QoSoDQOe32bFF9NvHdD09zMVsoCB/GgN66dcbZnk+ldidHcwjLFDPXOuHJMx+TKmno3VgUaQ== +"@abp/aspnetcore.mvc.ui.theme.basic@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.3.0-rc.3.tgz#8c8cfe4f7fe7ec68b4a91402fa2665ae4b62c7b1" + integrity sha512-oDgPUXmjAXbceUkhM3LjLWBTGPaBfAeqrl4CCA0EGnlZPzdS+KaD9gbP2Fs9OWyT5yBzbn5R+1cdUrRqI4qv3w== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui.theme.shared@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.3.0-rc.3.tgz#23f4e32b7922afe5364675f5e9065e4785727e31" + integrity sha512-i3YdQ0Trqzij8kkKCmOolPT3p++rBUi0cwjQ8wsxJb6nlAyJp4FcDBS/QAdNIqqxg1DZlxqf+u705EHTqQFZPA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~7.3.0-rc.3" + "@abp/bootstrap" "~7.3.0-rc.3" + "@abp/bootstrap-datepicker" "~7.3.0-rc.3" + "@abp/bootstrap-daterangepicker" "~7.3.0-rc.3" + "@abp/datatables.net-bs5" "~7.3.0-rc.3" + "@abp/font-awesome" "~7.3.0-rc.3" + "@abp/jquery-form" "~7.3.0-rc.3" + "@abp/jquery-validation-unobtrusive" "~7.3.0-rc.3" + "@abp/lodash" "~7.3.0-rc.3" + "@abp/luxon" "~7.3.0-rc.3" + "@abp/malihu-custom-scrollbar-plugin" "~7.3.0-rc.3" + "@abp/moment" "~7.3.0-rc.3" + "@abp/select2" "~7.3.0-rc.3" + "@abp/sweetalert2" "~7.3.0-rc.3" + "@abp/timeago" "~7.3.0-rc.3" + "@abp/toastr" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.3.0-rc.3.tgz#5acd05d14a8dc6b96387a0e30c2d1577d2dac884" + integrity sha512-cNG1Soct0p3qLp5OOrt/P4MaCBk3SbgV9RXBvKY7qp6TatfbIPG7Ggwmue1wj4kQpJxO3JIXfqpaGtg44phsmw== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -43,160 +43,160 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.2.3.tgz#7610ff44a6c1ea73f0c9b4c79a31cbb9e505d66f" - integrity sha512-wiKVXftVrXcjwz0FpshD6P4WW3CNk/4cLH15aaqRjM+J0BigDeH9CczlpVc7jXdn+c8plHIRz0t5tqlUud7dIQ== +"@abp/bootstrap-datepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.3.0-rc.3.tgz#bb1b34cfea9c0211f8e1d9cbffc7f1538c4fdb66" + integrity sha512-VsGYcKO56kMJbEFL7CnvqRWrn03lTM6+NJuVCs0K64YarhU06OI9KPd7PpWSZTP0D7Mz7z02pGYcWV034FXopA== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap-daterangepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.2.3.tgz#3946fb853dae52ef092db4bb23b94389577c17d3" - integrity sha512-ChdnXMzHvg+HwrUtw2z6KuqRTqHVOq8qEBai+IPW6PykJSML+tZKzer3jzDIzyHq68OIqom3n3xL0XpcniKMew== +"@abp/bootstrap-daterangepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.3.0-rc.3.tgz#b883c5a130133af6fc947b83dec179a716c60fe5" + integrity sha512-zV+DuBa0hgDx225kF/6VsotHzBbbHmeJ0iJflnLs+veDwYSBlT5uXgrxBHy4R41LnzDWyZqhwwq9SmHoGXShEQ== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.2.3.tgz#43ecd5912ac65bbc142f198ec112b0b2a15e4864" - integrity sha512-Z00q1sAwo9PvFSpfFlbbUHPMyghLOzuEuAzz/8nA6tK7WR0KQBS/0zGC0nK9hNwbyZ4FqKwPSznRVwuwrnqyhQ== +"@abp/bootstrap@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.3.0-rc.3.tgz#e4f35c0cfd1ecbcc892083f0b1022d9545e2fe89" + integrity sha512-yWd3tC1M2fbJmOfMiw2eqaxYQ5ZfkSIxAfVLZ39269ha+KSRhkZGPdjdRS7gGxB8LgAcG+I+pS9DAa7xv/FO/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" bootstrap "^5.1.3" -"@abp/core@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.2.3.tgz#a669073989a30f600355b368c01c654714456f17" - integrity sha512-UyKBWwXbKCzKZwV2YJPgP3v2naDFsfJzV+KEHpdgLdPZyrpBhp+bQ80VNVe2HHrD/bLfhM4fu9pCXw6RYZKnvA== +"@abp/core@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.3.0-rc.3.tgz#309a66b2c5feb05630acaebff8912f0639e3fc02" + integrity sha512-baD6VaLTj1sWU9lcoLnRtGCISCvrWylXaoqZ0vIuVy3QqskzHe3M3AVlHHn0HDwTNUA4zVBFOe6Of2DwHsYVwg== dependencies: - "@abp/utils" "~7.2.3" + "@abp/utils" "~7.3.0-rc.3" -"@abp/datatables.net-bs5@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.2.3.tgz#362f3b8ff2f3612989787e2b6ef19bad181b4206" - integrity sha512-TmXTkIX+Vb1O/fER5JeRlWIOZLoSXG4QD3F0ZbebrjgS9k7oSu9igR/VhXBs1m1lvOqcNKv7Y4LTNRAMw+Mi0A== +"@abp/datatables.net-bs5@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.3.0-rc.3.tgz#bad0344241f1ae83f4828d6d4a8de737bcaac0bb" + integrity sha512-YSNY1TwAkwr7DBEt66Rjg2Y/cic/0AzBBliqTbZsYtFEYh7rsychp9qmVofhYITXAnUlhsqPXMJ8VPmvWqvAbg== dependencies: - "@abp/datatables.net" "~7.2.3" + "@abp/datatables.net" "~7.3.0-rc.3" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.2.3.tgz#36661e223d15a0f75caad607094007d974ba678b" - integrity sha512-g+LmRMg4Sk34iU/MN4RpgC/yd8NVEjhVWg/kT+nuWunsnwLHkcfK59KPGXn9ZLktL4VqQYj2WeXbDv8TEbOObg== +"@abp/datatables.net@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.3.0-rc.3.tgz#43eb32cb0eb6f9023bfe2ec9801f2758e93aa445" + integrity sha512-rMi3oxfuDL71CYd/e7G3PgL0F/GqIGvpBHi0XunOMXFn+G5pJuZFv+ZnpzHgI3vmwj5BpSMzGJh8TRlosQB/fQ== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" datatables.net "^1.11.4" -"@abp/font-awesome@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.2.3.tgz#09b7c02b16ff99c9b5b62c1eefad9b1fc2879bcd" - integrity sha512-+4QRhfU08t1MYkmzTPX0B+p+SZQtOqtlDafzeDm5X6fbOlxV1hi97eRWtLtLgLjodjJWztpECWcsTUTgDhExwQ== +"@abp/font-awesome@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.3.0-rc.3.tgz#511419611d3debd4d808f24f7f40b1c2f4505a46" + integrity sha512-w0TAFFuEu74x6BTK1jHJF9rkxDhcqcu/ZeQTneXQOLzJYZFUWRoCCXxXvk376ZOvnOKuD2YBju0yhpJ9cR1s/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.2.3.tgz#b0b295b22ae2ba292100e64d0bb97b3e1e295307" - integrity sha512-ucdGIZ0sxefakGRei9BJvDuoN16fKsYfpOT70/udw3k7uC3gFJD0AvAlEOEZPsFZhpNoqUKexNMym4lZovqBkg== +"@abp/jquery-form@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.3.0-rc.3.tgz#4af1c9a743e4301fe9b8d983463c15d150046200" + integrity sha512-u//A4wrZisskjRvUvkGqPDpm2J5gEsS2DO9ADkvJOFxa30+fyabq4UW66a0gKX4dtHMzBuxxK8duJX+8lz4C2Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.2.3.tgz#1df04e286baa521c216cb949468199e6cacc34e3" - integrity sha512-Hcf1sqAFRIAYKqvN1pZGed+lazzY1nztvcmQlOOgUquiXRS3QjI3dIvxWw5nekJwUPqMpSfuC1GErQo0KpE1fw== +"@abp/jquery-validation-unobtrusive@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.3.0-rc.3.tgz#80623db86e8d60fda6b8167dc4c17c208e1d9533" + integrity sha512-haoov/Zy1nk6r3tnMaKl4YY67+dO9M1hjxF4txZPHGY2064jRT+QtGotimbINoVISDC2hcmQCbHCPkoyXrydSw== dependencies: - "@abp/jquery-validation" "~7.2.3" + "@abp/jquery-validation" "~7.3.0-rc.3" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.2.3.tgz#438ac052e5d71dab50cf5da8be60ea68a460a725" - integrity sha512-drpE5mXErHQPk/4KChsj3zwNCA4GqNlYquTtHNv9/t5S/NuGqFAkchPV6mRYaiQypcxCndZQNSUEqnWxbuMY0g== +"@abp/jquery-validation@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.3.0-rc.3.tgz#7c738da1b071c0de373bebeccbca59e22a3f469f" + integrity sha512-oXbl+JrhjaZGePL/39fcowJGGL9Kp/DPkan+Ji/gdsFTFxxw7xrdtXZ73TpW4hKSEzDiRwnuBstD4WxdiA5tqA== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-validation "^1.19.3" -"@abp/jquery@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.2.3.tgz#555192ff0bcde89bbabee0f734ff74bf77cce1b5" - integrity sha512-r/p3D2QlV57YvrGJsLfTuIJGwLSSi5AVFtkmgKyfpyXYOCNb+TVF9sEZOZnoZebX6cT0JRvtUfZ0dk6ZBebAzg== +"@abp/jquery@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.3.0-rc.3.tgz#37d1313723ee27a9b8845975cb9b38b61253719a" + integrity sha512-cNp/8Pj8ODhtgYKXFwJId+eENbhr0bPcxSvgUX0b6HoRP3AsYSv7lJK3snku/mneidMzeSI9l1yloR8DEA4wIQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" jquery "~3.6.0" -"@abp/lodash@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.2.3.tgz#99c1667f1499a7f318902e96ff81b4184b0dce86" - integrity sha512-5KuXPPpa2mkTlUYPR83bUTJUSSGoq9/kFSf9fYC0Wk2mFFeG4mRK6mXwcyHTfYshQe2qxuncxZsJ+4j5uQN9PA== +"@abp/lodash@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.3.0-rc.3.tgz#adc5712c820c5608ef5a2f1d4905617aed08626a" + integrity sha512-Y08+IMwQKLEBWIgZgHpRmBiXAfzcMDRUPY7jyciWmUZ5hgPQJHJSR6OkXk/o5AXnHTfTbZ0tWXgjUz7kxnF5bg== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" lodash "^4.17.21" -"@abp/luxon@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.2.3.tgz#f643ed28b2d1743edd41edfec98d0e70b2f1f008" - integrity sha512-Y3IT1GbyuNSAzfpGnc5uzjz3Z/nDRUpYiZhoX0XeoQlJ+GyVT/+dytsZbuQBLgEWmQJhk9zxdcITXFT5vrWDcw== +"@abp/luxon@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.3.0-rc.3.tgz#ba2976091ecdb765bd18b608bf60f36d29a7d6a8" + integrity sha512-22VPZlyEZQSOA430/sU9pQ/rZb5yrDaRidUhTltr/tdlQhexD8+uBT8+v/ue+f84/RjH8x2hOppbIR1oLVkXBQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.2.3.tgz#a29f25921b07683b02e2f5c82a3da827e3e7d552" - integrity sha512-wq9eBrw/bY3wb50v5zuL0qOcVLOT86XN2ZJQj69O/bi2+0WNdLRCqMHhY0kaafb7UIBAlKChKA/xeICwCZxn+w== +"@abp/malihu-custom-scrollbar-plugin@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.3.0-rc.3.tgz#54acc797bdf04c535530389e08155f6f18bfd9ce" + integrity sha512-20oE5c8AO8rCk1olKQYc9KE3gN62wALBqTypbusTXEfIgA/uERgm4EtlVhGb8H6FmGCljwO9Fj+ttnIx9QXoJw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.2.3.tgz#f6d2ba7b030b81239853490bdcc9e3c2bd4a39b1" - integrity sha512-pXsOzSom9RZHRGWuVaLIVzSkPayIcWMMmgSyo8T3gtZzZG/QJbpBWT+pug0X8pmV8So4d9E0LjacmODBKLM30A== +"@abp/moment@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.3.0-rc.3.tgz#e5b0885a55b09c306014d813d118eec3e5eb6e01" + integrity sha512-j+RMRNI8qf3Rr/oUOtneBLtUphDaUhLpLCkuj4RSlNgAijCDZg4w5F3VDVBKTsoQX4ZSnN39YpbtN/vb/3jNyA== dependencies: moment "^2.9.0" -"@abp/select2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.2.3.tgz#4cecd1cd843807583fce09ef632f472f3f7da70b" - integrity sha512-Cdzl467UftB421W+l8uikGr2NlOsHwxKDxt5yPrF03LEec1MBys5y7UPUV1TEO6l0xwAVi4mW8dXaawyIOSjUA== +"@abp/select2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.3.0-rc.3.tgz#b1261d10d3c4a870af07aa159a2921e5e78a6225" + integrity sha512-NUvYfxZYBXvB4j2oYwR6ec05quCylAHqe4C/CeH7Qo+cJcPduPRMJ9N5ZUQq1c4uZyOAbu7Tuuo+XTQvu1ZTRA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" select2 "^4.0.13" -"@abp/sweetalert2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.2.3.tgz#9e9c503bdb4d47d2b67b0d8193d82145884c90f3" - integrity sha512-KHZD1YRMN6Z4JxPfXuEwocubooux8nKq6sPNG6RKg+rWpp23Fp8nX/ZngJNywVXSRqzrdEvUAM+92JG7zMwKXw== +"@abp/sweetalert2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.3.0-rc.3.tgz#fa554fb304f7093f0a08fb683cb35c81af3c2ce7" + integrity sha512-iKg4TJex+aQna8n5hk7rPIbwY2ZQaVVP571vPdmFML85hUYQM289CI++ZDF0l2a5p22fDKBFRL99RZzceiGOSw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" sweetalert2 "^11.3.6" -"@abp/timeago@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.2.3.tgz#2ced6fa607a0471bf3385fbf5d9b1f2d902e824a" - integrity sha512-7eiibNXJWBGpQnitd/i8aWUNHOkcsuq8fAwBLJWvG8Whhh1nmBEjng0pGhheMqo0xoydefWi1K2uZDg99tKPeQ== +"@abp/timeago@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.3.0-rc.3.tgz#029839955cb53195259d82a3e0c534d817d3862a" + integrity sha512-JuadVXb/Garz7L0aj1h+Ffg4Ut5eLSf6Ipz5mFM2Q1mzXNhA8crwQCtf+NLZdcNohJ7gbxDWyEQ2jgbYr4ryRw== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" timeago "^1.6.7" -"@abp/toastr@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.2.3.tgz#0ef7c24b232ca3d01d4ac5a7dff57800b0ebdcbf" - integrity sha512-2zNMQE6ArRULP6xl+M66/EY83ZrXfNY+sNHUkmZH4uqfGhqR/ijKIQm1quxCLDmUcAjRr1kzu8BCc98pc9tfFw== +"@abp/toastr@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.3.0-rc.3.tgz#537afff62261482bbb21b50a9d503579fd71936d" + integrity sha512-dsVS9F2iQRDn0RtzbLT1b3nH4JKDj8pHCWdxDR3nT/JHpJuAFEZPAqT1/VrNmZxSoo4jdeHn8/pkQtE4RDhv+Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" toastr "^2.1.4" -"@abp/utils@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.2.3.tgz#f384ba76b2948dbc8c49a453a343facda0825e2c" - integrity sha512-hejxDJhSI9Kor4mS9c/JHHQrW/wLXC/XMOJMUcBVkX/5IQd9GU9EW63oalNQyVA3gz3h5obnb0Qcfdv65wc5Pg== +"@abp/utils@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.3.0-rc.3.tgz#4d4e50dac717cae3e368bfe4fd3ce11f6df0e732" + integrity sha512-sMF2QGhRgbJW8PJtpVBrkiPAgofyfflUGmxNVbbx/HSOR3duFW0TNoXpTvxdP2v9k/SYe4i5XtLmv+mKPyttCw== dependencies: - just-compare "^1.3.0" + just-compare "^2.3.0" "@fortawesome/fontawesome-free@^5.15.4": version "5.15.4" @@ -1440,10 +1440,10 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -just-compare@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-1.5.1.tgz#aed7e93e6bae9c3b69d79aea7805684132a0c0c5" - integrity sha512-xDEEFHNIyJNmN4uo/2RVeUcay9THtN/5ka/iw98Y/gsa8w9KXZQuyaf5eFUY6VlntA2+G+bdPmdhqqTs7T+BRw== +just-compare@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7" + integrity sha512-6shoR7HDT+fzfL3gBahx1jZG3hWLrhPAf+l7nCwahDdT9XDtosB9kIF0ZrzUp5QY8dJWfQVr5rnsPqsbvflDzg== just-debounce@^1.0.0: version "1.1.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 45fb731be3..873e036e67 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": "~7.2.3", - "@abp/cms-kit": "7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3", + "@abp/cms-kit": "7.3.0-rc.3" } } diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/abp/jquery/abp.jquery.js b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/abp/jquery/abp.jquery.js index 76dfd3897f..7dc3439da2 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/abp/jquery/abp.jquery.js +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/abp/jquery/abp.jquery.js @@ -371,13 +371,18 @@ var abp = abp || {}; }; var _loadScript = function (url, loadCallback, failCallback) { + var nonce = document.body.nonce || document.body.getAttribute('nonce'); _loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { $.get({ url: url, dataType: 'text' }) .done(function (script) { - $.globalEval(script); + if(nonce){ + $.globalEval(script, { nonce: nonce}); + }else{ + $.globalEval(script); + } urlInfo.succeed(); }) .fail(function () { diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js new file mode 100644 index 0000000000..a02a2a7a5e --- /dev/null +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { + return new bootstrap.Popover(popoverTriggerEl) + }) +})(); diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js new file mode 100644 index 0000000000..5a2b42a1d1 --- /dev/null +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { + return new bootstrap.Tooltip(tooltipTriggerEl) + }); +})(); 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 e4fe34523f..99b7bb8db5 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock @@ -2,39 +2,39 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.2.3.tgz#31f2dda74b2bf8f520caf97690e509fd1c1088c4" - integrity sha512-7DIwWrkLJSc2kXYcIcZH+EivpwOXzkO4j2yrUilK0OijoOM9Pa/iGStdNTPlYioOKUNti3/1zah+v5SELNdqIw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~7.2.3" - -"@abp/aspnetcore.mvc.ui.theme.shared@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.2.3.tgz#189dde88792497d29f76a6079dc6db34973ee98d" - integrity sha512-+G2mM/BJWqgGqZFg6GP28PaCtq+YlRmRfg7r0JQ1wkAN9pc11yKm0LRQjFnkcVBzg0A+N2hZqnFbW7wQhwXOHg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~7.2.3" - "@abp/bootstrap" "~7.2.3" - "@abp/bootstrap-datepicker" "~7.2.3" - "@abp/bootstrap-daterangepicker" "~7.2.3" - "@abp/datatables.net-bs5" "~7.2.3" - "@abp/font-awesome" "~7.2.3" - "@abp/jquery-form" "~7.2.3" - "@abp/jquery-validation-unobtrusive" "~7.2.3" - "@abp/lodash" "~7.2.3" - "@abp/luxon" "~7.2.3" - "@abp/malihu-custom-scrollbar-plugin" "~7.2.3" - "@abp/moment" "~7.2.3" - "@abp/select2" "~7.2.3" - "@abp/sweetalert2" "~7.2.3" - "@abp/timeago" "~7.2.3" - "@abp/toastr" "~7.2.3" - -"@abp/aspnetcore.mvc.ui@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.2.3.tgz#d828561e678f6ea779a67c908705ba553ae82edc" - integrity sha512-KJCw6OxjQBgNw4QoSoDQOe32bFF9NvHdD09zMVsoCB/GgN66dcbZnk+ldidHcwjLFDPXOuHJMx+TKmno3VgUaQ== +"@abp/aspnetcore.mvc.ui.theme.basic@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.3.0-rc.3.tgz#8c8cfe4f7fe7ec68b4a91402fa2665ae4b62c7b1" + integrity sha512-oDgPUXmjAXbceUkhM3LjLWBTGPaBfAeqrl4CCA0EGnlZPzdS+KaD9gbP2Fs9OWyT5yBzbn5R+1cdUrRqI4qv3w== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui.theme.shared@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.3.0-rc.3.tgz#23f4e32b7922afe5364675f5e9065e4785727e31" + integrity sha512-i3YdQ0Trqzij8kkKCmOolPT3p++rBUi0cwjQ8wsxJb6nlAyJp4FcDBS/QAdNIqqxg1DZlxqf+u705EHTqQFZPA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~7.3.0-rc.3" + "@abp/bootstrap" "~7.3.0-rc.3" + "@abp/bootstrap-datepicker" "~7.3.0-rc.3" + "@abp/bootstrap-daterangepicker" "~7.3.0-rc.3" + "@abp/datatables.net-bs5" "~7.3.0-rc.3" + "@abp/font-awesome" "~7.3.0-rc.3" + "@abp/jquery-form" "~7.3.0-rc.3" + "@abp/jquery-validation-unobtrusive" "~7.3.0-rc.3" + "@abp/lodash" "~7.3.0-rc.3" + "@abp/luxon" "~7.3.0-rc.3" + "@abp/malihu-custom-scrollbar-plugin" "~7.3.0-rc.3" + "@abp/moment" "~7.3.0-rc.3" + "@abp/select2" "~7.3.0-rc.3" + "@abp/sweetalert2" "~7.3.0-rc.3" + "@abp/timeago" "~7.3.0-rc.3" + "@abp/toastr" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.3.0-rc.3.tgz#5acd05d14a8dc6b96387a0e30c2d1577d2dac884" + integrity sha512-cNG1Soct0p3qLp5OOrt/P4MaCBk3SbgV9RXBvKY7qp6TatfbIPG7Ggwmue1wj4kQpJxO3JIXfqpaGtg44phsmw== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -43,259 +43,259 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.2.3.tgz#7610ff44a6c1ea73f0c9b4c79a31cbb9e505d66f" - integrity sha512-wiKVXftVrXcjwz0FpshD6P4WW3CNk/4cLH15aaqRjM+J0BigDeH9CczlpVc7jXdn+c8plHIRz0t5tqlUud7dIQ== +"@abp/bootstrap-datepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.3.0-rc.3.tgz#bb1b34cfea9c0211f8e1d9cbffc7f1538c4fdb66" + integrity sha512-VsGYcKO56kMJbEFL7CnvqRWrn03lTM6+NJuVCs0K64YarhU06OI9KPd7PpWSZTP0D7Mz7z02pGYcWV034FXopA== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap-daterangepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.2.3.tgz#3946fb853dae52ef092db4bb23b94389577c17d3" - integrity sha512-ChdnXMzHvg+HwrUtw2z6KuqRTqHVOq8qEBai+IPW6PykJSML+tZKzer3jzDIzyHq68OIqom3n3xL0XpcniKMew== +"@abp/bootstrap-daterangepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.3.0-rc.3.tgz#b883c5a130133af6fc947b83dec179a716c60fe5" + integrity sha512-zV+DuBa0hgDx225kF/6VsotHzBbbHmeJ0iJflnLs+veDwYSBlT5uXgrxBHy4R41LnzDWyZqhwwq9SmHoGXShEQ== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.2.3.tgz#43ecd5912ac65bbc142f198ec112b0b2a15e4864" - integrity sha512-Z00q1sAwo9PvFSpfFlbbUHPMyghLOzuEuAzz/8nA6tK7WR0KQBS/0zGC0nK9hNwbyZ4FqKwPSznRVwuwrnqyhQ== +"@abp/bootstrap@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.3.0-rc.3.tgz#e4f35c0cfd1ecbcc892083f0b1022d9545e2fe89" + integrity sha512-yWd3tC1M2fbJmOfMiw2eqaxYQ5ZfkSIxAfVLZ39269ha+KSRhkZGPdjdRS7gGxB8LgAcG+I+pS9DAa7xv/FO/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" bootstrap "^5.1.3" -"@abp/clipboard@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-7.2.3.tgz#dcd8ffc229bd0419be6cd49679fe65dfea90163e" - integrity sha512-Eu7GIMqXpGqU1UK3gm0QfI4DQLaWcFLeO/hL/RefqU79kpWwN+PKg4bYAH8uuYovQUR8i0DRwk8rqOlayjjWRA== +"@abp/clipboard@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-7.3.0-rc.3.tgz#989141ed79834f80c3a8e351fbadfa5d19357c60" + integrity sha512-rk8ZE+yQE+H8dOcilji8EoyHN3cGtV5jzcM2xcMI+oRDbwRJkv3vI4rqox3cflr+QDZFlHyINlILkz8UrJgIew== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" clipboard "^2.0.8" -"@abp/cms-kit.admin@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-7.2.3.tgz#ab25a054a5edb474abb7891ad2685a14a73d8197" - integrity sha512-dNDavBdjaMiWNcN8rMKAa24fRNCnDkn/fgCVHPplwwXl5cU8d2H58cZQ30DIKZmar5qlFJA9up38cg9m/Kp2kg== +"@abp/cms-kit.admin@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-7.3.0-rc.3.tgz#007bd8ec288fb447ade56d9845a0e998b6ba8f9f" + integrity sha512-5iHsCGUcpI/81OYBPMClmz67B9/QOUc5BWKNXvF26SLQELOTzLwPCHlqhZiBhesofdFSPs+D+b29iiiFQrHE3w== dependencies: - "@abp/codemirror" "~7.2.3" - "@abp/jstree" "~7.2.3" - "@abp/slugify" "~7.2.3" - "@abp/tui-editor" "~7.2.3" - "@abp/uppy" "~7.2.3" + "@abp/codemirror" "~7.3.0-rc.3" + "@abp/jstree" "~7.3.0-rc.3" + "@abp/slugify" "~7.3.0-rc.3" + "@abp/tui-editor" "~7.3.0-rc.3" + "@abp/uppy" "~7.3.0-rc.3" -"@abp/cms-kit.public@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-7.2.3.tgz#9223bdc1440c0386282a8d29077ee30c4568d5d7" - integrity sha512-qj0HH5d6kyuZtUDrfgvWy5r8ZU9vPmeiTcIrI8FjmYHtrk3ZM2hlp6W1jBxPJ/rhYouKVfRA/N79Uz78bLAtFg== +"@abp/cms-kit.public@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-7.3.0-rc.3.tgz#e298ed165834f194fe4de52ad72702224f31612d" + integrity sha512-GlGGhVKBWd971NNAdGpbjybcl6jDA1+vQ0cP1MUwmlUCVRwMmN9gRt7ECswsUHLB0mGUXEELkYMUlmlKnHujeQ== dependencies: - "@abp/highlight.js" "~7.2.3" - "@abp/star-rating-svg" "~7.2.3" + "@abp/highlight.js" "~7.3.0-rc.3" + "@abp/star-rating-svg" "~7.3.0-rc.3" -"@abp/cms-kit@7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-7.2.3.tgz#7a9725abb7e3255e10d6568e9949d56e17f5d528" - integrity sha512-65hmy6Rfe2BTD11lcEAxVV57Wq2vY0eB2X62BpH72rtFPfBEBXUPXIOpRu782OwzA5NKgDilWrK1M17JxLGRFg== +"@abp/cms-kit@7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-7.3.0-rc.3.tgz#076508dc4737f3f3931faee0ea05da204eb045d7" + integrity sha512-iNicPk32y4xmMqH5Trz6UWWTdzk2f12bt1ALoY67jt3MxL5ICQyWuGAK41sPVEJo2DpXohRnPovGmYwigD/8Eg== dependencies: - "@abp/cms-kit.admin" "~7.2.3" - "@abp/cms-kit.public" "~7.2.3" + "@abp/cms-kit.admin" "~7.3.0-rc.3" + "@abp/cms-kit.public" "~7.3.0-rc.3" -"@abp/codemirror@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-7.2.3.tgz#c42d551b9b3b75a9f6e00cafa4c8fb8ca4607e03" - integrity sha512-YD/Xd5zFpXT8/iczAGQMI183Izbx1N/m7im4mhb1RYyLWbfkLrtKk9VNDne5+Njw+7zSKoMOu0phWA6iRysgvw== +"@abp/codemirror@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-7.3.0-rc.3.tgz#bb6bf46d1b18624c0bbad20fd6514d8665ef794a" + integrity sha512-41eGNoXN23YgPvgS8LNYApgG06cNzWVVtbGolwbIl6hhn43gG+fBoTxn76UEn0Ros4+t5/UFE5c86I/Woqt1QA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" codemirror "^5.65.1" -"@abp/core@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.2.3.tgz#a669073989a30f600355b368c01c654714456f17" - integrity sha512-UyKBWwXbKCzKZwV2YJPgP3v2naDFsfJzV+KEHpdgLdPZyrpBhp+bQ80VNVe2HHrD/bLfhM4fu9pCXw6RYZKnvA== +"@abp/core@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.3.0-rc.3.tgz#309a66b2c5feb05630acaebff8912f0639e3fc02" + integrity sha512-baD6VaLTj1sWU9lcoLnRtGCISCvrWylXaoqZ0vIuVy3QqskzHe3M3AVlHHn0HDwTNUA4zVBFOe6Of2DwHsYVwg== dependencies: - "@abp/utils" "~7.2.3" + "@abp/utils" "~7.3.0-rc.3" -"@abp/datatables.net-bs5@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.2.3.tgz#362f3b8ff2f3612989787e2b6ef19bad181b4206" - integrity sha512-TmXTkIX+Vb1O/fER5JeRlWIOZLoSXG4QD3F0ZbebrjgS9k7oSu9igR/VhXBs1m1lvOqcNKv7Y4LTNRAMw+Mi0A== +"@abp/datatables.net-bs5@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.3.0-rc.3.tgz#bad0344241f1ae83f4828d6d4a8de737bcaac0bb" + integrity sha512-YSNY1TwAkwr7DBEt66Rjg2Y/cic/0AzBBliqTbZsYtFEYh7rsychp9qmVofhYITXAnUlhsqPXMJ8VPmvWqvAbg== dependencies: - "@abp/datatables.net" "~7.2.3" + "@abp/datatables.net" "~7.3.0-rc.3" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.2.3.tgz#36661e223d15a0f75caad607094007d974ba678b" - integrity sha512-g+LmRMg4Sk34iU/MN4RpgC/yd8NVEjhVWg/kT+nuWunsnwLHkcfK59KPGXn9ZLktL4VqQYj2WeXbDv8TEbOObg== +"@abp/datatables.net@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.3.0-rc.3.tgz#43eb32cb0eb6f9023bfe2ec9801f2758e93aa445" + integrity sha512-rMi3oxfuDL71CYd/e7G3PgL0F/GqIGvpBHi0XunOMXFn+G5pJuZFv+ZnpzHgI3vmwj5BpSMzGJh8TRlosQB/fQ== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" datatables.net "^1.11.4" -"@abp/font-awesome@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.2.3.tgz#09b7c02b16ff99c9b5b62c1eefad9b1fc2879bcd" - integrity sha512-+4QRhfU08t1MYkmzTPX0B+p+SZQtOqtlDafzeDm5X6fbOlxV1hi97eRWtLtLgLjodjJWztpECWcsTUTgDhExwQ== +"@abp/font-awesome@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.3.0-rc.3.tgz#511419611d3debd4d808f24f7f40b1c2f4505a46" + integrity sha512-w0TAFFuEu74x6BTK1jHJF9rkxDhcqcu/ZeQTneXQOLzJYZFUWRoCCXxXvk376ZOvnOKuD2YBju0yhpJ9cR1s/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/highlight.js@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-7.2.3.tgz#ed8508f47589af7c23c7e401f90797e13969f80b" - integrity sha512-j2oXA17GJ8zVLL11N7zJCEzmabl3/XtHgpsPe0KiO2YZnkhLWv8nuCPpZYOrTtqp1I0JmQn3lDy3u/WSBUX5jA== +"@abp/highlight.js@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-7.3.0-rc.3.tgz#40556e9de7aa201e4155ab58bb86db90acb77ed0" + integrity sha512-3PGPWtRX/uyrmml1lWT9FxLv2hcPsJWwERA2/6JUxo4cm2EykMvK4Kdl0i1T2Nzo66CdPQaKs3sY9LJ8l/uRag== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" "@highlightjs/cdn-assets" "~11.4.0" -"@abp/jquery-form@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.2.3.tgz#b0b295b22ae2ba292100e64d0bb97b3e1e295307" - integrity sha512-ucdGIZ0sxefakGRei9BJvDuoN16fKsYfpOT70/udw3k7uC3gFJD0AvAlEOEZPsFZhpNoqUKexNMym4lZovqBkg== +"@abp/jquery-form@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.3.0-rc.3.tgz#4af1c9a743e4301fe9b8d983463c15d150046200" + integrity sha512-u//A4wrZisskjRvUvkGqPDpm2J5gEsS2DO9ADkvJOFxa30+fyabq4UW66a0gKX4dtHMzBuxxK8duJX+8lz4C2Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.2.3.tgz#1df04e286baa521c216cb949468199e6cacc34e3" - integrity sha512-Hcf1sqAFRIAYKqvN1pZGed+lazzY1nztvcmQlOOgUquiXRS3QjI3dIvxWw5nekJwUPqMpSfuC1GErQo0KpE1fw== +"@abp/jquery-validation-unobtrusive@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.3.0-rc.3.tgz#80623db86e8d60fda6b8167dc4c17c208e1d9533" + integrity sha512-haoov/Zy1nk6r3tnMaKl4YY67+dO9M1hjxF4txZPHGY2064jRT+QtGotimbINoVISDC2hcmQCbHCPkoyXrydSw== dependencies: - "@abp/jquery-validation" "~7.2.3" + "@abp/jquery-validation" "~7.3.0-rc.3" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.2.3.tgz#438ac052e5d71dab50cf5da8be60ea68a460a725" - integrity sha512-drpE5mXErHQPk/4KChsj3zwNCA4GqNlYquTtHNv9/t5S/NuGqFAkchPV6mRYaiQypcxCndZQNSUEqnWxbuMY0g== +"@abp/jquery-validation@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.3.0-rc.3.tgz#7c738da1b071c0de373bebeccbca59e22a3f469f" + integrity sha512-oXbl+JrhjaZGePL/39fcowJGGL9Kp/DPkan+Ji/gdsFTFxxw7xrdtXZ73TpW4hKSEzDiRwnuBstD4WxdiA5tqA== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-validation "^1.19.3" -"@abp/jquery@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.2.3.tgz#555192ff0bcde89bbabee0f734ff74bf77cce1b5" - integrity sha512-r/p3D2QlV57YvrGJsLfTuIJGwLSSi5AVFtkmgKyfpyXYOCNb+TVF9sEZOZnoZebX6cT0JRvtUfZ0dk6ZBebAzg== +"@abp/jquery@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.3.0-rc.3.tgz#37d1313723ee27a9b8845975cb9b38b61253719a" + integrity sha512-cNp/8Pj8ODhtgYKXFwJId+eENbhr0bPcxSvgUX0b6HoRP3AsYSv7lJK3snku/mneidMzeSI9l1yloR8DEA4wIQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" jquery "~3.6.0" -"@abp/jstree@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-7.2.3.tgz#4e444c1ed8420a0234f2e31986613dbf7af8c1b8" - integrity sha512-8ju9dAIkBp8Z2GoFn+QjMsyjjSDz6MSxVzrxyJEAKppoIEN21SC3vBibFyv7jHvjNctJ1vCJt3yUM/3GitPpaw== +"@abp/jstree@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-7.3.0-rc.3.tgz#a88f8974f5d56fdd81c244d44cc56fe62eff7ac4" + integrity sha512-u1k0WysEswslzJhGEvo5qIk8VubiON1QYXehw+kVDW2yqibDZjBgiMXnrBTVMRG4WlxxqjQ/94wD9D9/XrJXnA== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jstree "^3.3.12" -"@abp/lodash@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.2.3.tgz#99c1667f1499a7f318902e96ff81b4184b0dce86" - integrity sha512-5KuXPPpa2mkTlUYPR83bUTJUSSGoq9/kFSf9fYC0Wk2mFFeG4mRK6mXwcyHTfYshQe2qxuncxZsJ+4j5uQN9PA== +"@abp/lodash@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.3.0-rc.3.tgz#adc5712c820c5608ef5a2f1d4905617aed08626a" + integrity sha512-Y08+IMwQKLEBWIgZgHpRmBiXAfzcMDRUPY7jyciWmUZ5hgPQJHJSR6OkXk/o5AXnHTfTbZ0tWXgjUz7kxnF5bg== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" lodash "^4.17.21" -"@abp/luxon@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.2.3.tgz#f643ed28b2d1743edd41edfec98d0e70b2f1f008" - integrity sha512-Y3IT1GbyuNSAzfpGnc5uzjz3Z/nDRUpYiZhoX0XeoQlJ+GyVT/+dytsZbuQBLgEWmQJhk9zxdcITXFT5vrWDcw== +"@abp/luxon@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.3.0-rc.3.tgz#ba2976091ecdb765bd18b608bf60f36d29a7d6a8" + integrity sha512-22VPZlyEZQSOA430/sU9pQ/rZb5yrDaRidUhTltr/tdlQhexD8+uBT8+v/ue+f84/RjH8x2hOppbIR1oLVkXBQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.2.3.tgz#a29f25921b07683b02e2f5c82a3da827e3e7d552" - integrity sha512-wq9eBrw/bY3wb50v5zuL0qOcVLOT86XN2ZJQj69O/bi2+0WNdLRCqMHhY0kaafb7UIBAlKChKA/xeICwCZxn+w== +"@abp/malihu-custom-scrollbar-plugin@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.3.0-rc.3.tgz#54acc797bdf04c535530389e08155f6f18bfd9ce" + integrity sha512-20oE5c8AO8rCk1olKQYc9KE3gN62wALBqTypbusTXEfIgA/uERgm4EtlVhGb8H6FmGCljwO9Fj+ttnIx9QXoJw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.2.3.tgz#f6d2ba7b030b81239853490bdcc9e3c2bd4a39b1" - integrity sha512-pXsOzSom9RZHRGWuVaLIVzSkPayIcWMMmgSyo8T3gtZzZG/QJbpBWT+pug0X8pmV8So4d9E0LjacmODBKLM30A== +"@abp/moment@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.3.0-rc.3.tgz#e5b0885a55b09c306014d813d118eec3e5eb6e01" + integrity sha512-j+RMRNI8qf3Rr/oUOtneBLtUphDaUhLpLCkuj4RSlNgAijCDZg4w5F3VDVBKTsoQX4ZSnN39YpbtN/vb/3jNyA== dependencies: moment "^2.9.0" -"@abp/prismjs@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-7.2.3.tgz#3ecef3120373eea8a5d01a7b12aa7669aff45307" - integrity sha512-yR/UPqpQ9MTHqBo5bK5izaVemdyqcncxWNIb1NETU4FwZ8ucLRnCbxX427gQUSWlqo6qc+Q9vdS4hOWjLTuroA== +"@abp/prismjs@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-7.3.0-rc.3.tgz#714873077258fda5b2ab3a2dd1877083b474bbeb" + integrity sha512-30I7KgNzhxQrpx4UNvVQKQDi4tjUl4DmiagiLE+SqxA7uwQ8NF1g6pKfnuyri+XkNcB3BFMhjDD8bbQxxrXpgg== dependencies: - "@abp/clipboard" "~7.2.3" - "@abp/core" "~7.2.3" + "@abp/clipboard" "~7.3.0-rc.3" + "@abp/core" "~7.3.0-rc.3" prismjs "^1.26.0" -"@abp/select2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.2.3.tgz#4cecd1cd843807583fce09ef632f472f3f7da70b" - integrity sha512-Cdzl467UftB421W+l8uikGr2NlOsHwxKDxt5yPrF03LEec1MBys5y7UPUV1TEO6l0xwAVi4mW8dXaawyIOSjUA== +"@abp/select2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.3.0-rc.3.tgz#b1261d10d3c4a870af07aa159a2921e5e78a6225" + integrity sha512-NUvYfxZYBXvB4j2oYwR6ec05quCylAHqe4C/CeH7Qo+cJcPduPRMJ9N5ZUQq1c4uZyOAbu7Tuuo+XTQvu1ZTRA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" select2 "^4.0.13" -"@abp/slugify@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-7.2.3.tgz#7ad9bada15a50c070332e4ce694f63d81977b1ca" - integrity sha512-wSTZsGZQoWvCtLSRj7l60jcOGb9Brc33rqU2DI2KjyjpFk69NJYng6pvDxnz7c5ysPb+MbOElJJ5gbGZCxn6uw== +"@abp/slugify@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-7.3.0-rc.3.tgz#f811b47e03d9dc7efcf15f165143796addc00625" + integrity sha512-FdHfjIOi0pR1rb2/8xK4W0wWCxGunrjrXSAwtIb/iRl0/mA9jFM8djwqeXqFhrPbSIdfFDDP05YaYl2tibhInQ== dependencies: slugify "^1.6.5" -"@abp/star-rating-svg@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-7.2.3.tgz#c1f3980945a33828b103d04ca6b9b5b67fd3d42d" - integrity sha512-j/1lq3jsAqBhAesDLZLNG1Uo9OuJU3J7ZULoTf1iq5hala5q2JSvqC3fr7pOrpmDGcs6YXt3YFHy6x4pTw8RFg== +"@abp/star-rating-svg@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-7.3.0-rc.3.tgz#55a64af6530ad8d2884c2b8700738d037a6b02e9" + integrity sha512-oixGLlIhteJmC+L0eyAy2zeJ3rFseDOTuc8Bnx9vGqktIZyJJNuyGSNsALw8KmZCwIURAzzc3PO61kiu0+8FOA== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" star-rating-svg "^3.5.0" -"@abp/sweetalert2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.2.3.tgz#9e9c503bdb4d47d2b67b0d8193d82145884c90f3" - integrity sha512-KHZD1YRMN6Z4JxPfXuEwocubooux8nKq6sPNG6RKg+rWpp23Fp8nX/ZngJNywVXSRqzrdEvUAM+92JG7zMwKXw== +"@abp/sweetalert2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.3.0-rc.3.tgz#fa554fb304f7093f0a08fb683cb35c81af3c2ce7" + integrity sha512-iKg4TJex+aQna8n5hk7rPIbwY2ZQaVVP571vPdmFML85hUYQM289CI++ZDF0l2a5p22fDKBFRL99RZzceiGOSw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" sweetalert2 "^11.3.6" -"@abp/timeago@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.2.3.tgz#2ced6fa607a0471bf3385fbf5d9b1f2d902e824a" - integrity sha512-7eiibNXJWBGpQnitd/i8aWUNHOkcsuq8fAwBLJWvG8Whhh1nmBEjng0pGhheMqo0xoydefWi1K2uZDg99tKPeQ== +"@abp/timeago@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.3.0-rc.3.tgz#029839955cb53195259d82a3e0c534d817d3862a" + integrity sha512-JuadVXb/Garz7L0aj1h+Ffg4Ut5eLSf6Ipz5mFM2Q1mzXNhA8crwQCtf+NLZdcNohJ7gbxDWyEQ2jgbYr4ryRw== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" timeago "^1.6.7" -"@abp/toastr@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.2.3.tgz#0ef7c24b232ca3d01d4ac5a7dff57800b0ebdcbf" - integrity sha512-2zNMQE6ArRULP6xl+M66/EY83ZrXfNY+sNHUkmZH4uqfGhqR/ijKIQm1quxCLDmUcAjRr1kzu8BCc98pc9tfFw== +"@abp/toastr@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.3.0-rc.3.tgz#537afff62261482bbb21b50a9d503579fd71936d" + integrity sha512-dsVS9F2iQRDn0RtzbLT1b3nH4JKDj8pHCWdxDR3nT/JHpJuAFEZPAqT1/VrNmZxSoo4jdeHn8/pkQtE4RDhv+Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" toastr "^2.1.4" -"@abp/tui-editor@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-7.2.3.tgz#1e5d747e949e8fda3ad81a016bb51ff838b6ef7c" - integrity sha512-yXYXkjSIEO49AzijqOg+aboOBbhp/rGjWn5qJbIivVc6NgODrxmB8gHeC1HhmdlWWLJUt1R/jP1+y2imDWbjgw== +"@abp/tui-editor@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-7.3.0-rc.3.tgz#44ed5f38cd694bb86901ad9c3cbabfa05494ffed" + integrity sha512-bOikm9rZH0yO3kIZLoA0/iRNVejWMSOc9UEwQymrqWV+4we8LGXSOu1mX4bTOSrl3591BvoI2pGmAE5jNFf4Nw== dependencies: - "@abp/jquery" "~7.2.3" - "@abp/prismjs" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" + "@abp/prismjs" "~7.3.0-rc.3" -"@abp/uppy@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-7.2.3.tgz#67be5102f92eb16e743809e5b9d1e87d16ef030c" - integrity sha512-eL5tV9l7VwD9ly+JRf0N3/wuahkIW0CrN+w9obawWPl3rygvvbD5UfcTQrM7KBruUs4FV59jbnjdfME+TO3JYQ== +"@abp/uppy@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-7.3.0-rc.3.tgz#159f3cca764a59a24eaaf9c6f4a0ae7a87b2c6d4" + integrity sha512-A1OMROtYhOrC0M0dBeUDAraBnw2WNVQz27OmNCOXYSc/eYxGmkUXRToCio7U5gk67vdj8WQ3rp5d48tJeXH5lg== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" uppy "^1.16.1" -"@abp/utils@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.2.3.tgz#f384ba76b2948dbc8c49a453a343facda0825e2c" - integrity sha512-hejxDJhSI9Kor4mS9c/JHHQrW/wLXC/XMOJMUcBVkX/5IQd9GU9EW63oalNQyVA3gz3h5obnb0Qcfdv65wc5Pg== +"@abp/utils@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.3.0-rc.3.tgz#4d4e50dac717cae3e368bfe4fd3ce11f6df0e732" + integrity sha512-sMF2QGhRgbJW8PJtpVBrkiPAgofyfflUGmxNVbbx/HSOR3duFW0TNoXpTvxdP2v9k/SYe4i5XtLmv+mKPyttCw== dependencies: - just-compare "^1.3.0" + just-compare "^2.3.0" "@fortawesome/fontawesome-free@^5.15.4": version "5.15.4" @@ -2063,10 +2063,10 @@ jstree@^3.3.12: dependencies: jquery "^3.5.0" -just-compare@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-1.5.1.tgz#aed7e93e6bae9c3b69d79aea7805684132a0c0c5" - integrity sha512-xDEEFHNIyJNmN4uo/2RVeUcay9THtN/5ka/iw98Y/gsa8w9KXZQuyaf5eFUY6VlntA2+G+bdPmdhqqTs7T+BRw== +just-compare@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7" + integrity sha512-6shoR7HDT+fzfL3gBahx1jZG3hWLrhPAf+l7nCwahDdT9XDtosB9kIF0ZrzUp5QY8dJWfQVr5rnsPqsbvflDzg== just-debounce@^1.0.0: version "1.1.0" diff --git a/modules/docs/app/VoloDocs.Web/package.json b/modules/docs/app/VoloDocs.Web/package.json index 64b456bf68..cce1d8fdd8 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": "~7.2.3", - "@abp/docs": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3", + "@abp/docs": "~7.3.0-rc.3" } } diff --git a/modules/docs/app/VoloDocs.Web/wwwroot/libs/abp/jquery/abp.jquery.js b/modules/docs/app/VoloDocs.Web/wwwroot/libs/abp/jquery/abp.jquery.js index 76dfd3897f..7dc3439da2 100644 --- a/modules/docs/app/VoloDocs.Web/wwwroot/libs/abp/jquery/abp.jquery.js +++ b/modules/docs/app/VoloDocs.Web/wwwroot/libs/abp/jquery/abp.jquery.js @@ -371,13 +371,18 @@ var abp = abp || {}; }; var _loadScript = function (url, loadCallback, failCallback) { + var nonce = document.body.nonce || document.body.getAttribute('nonce'); _loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { $.get({ url: url, dataType: 'text' }) .done(function (script) { - $.globalEval(script); + if(nonce){ + $.globalEval(script, { nonce: nonce}); + }else{ + $.globalEval(script); + } urlInfo.succeed(); }) .fail(function () { diff --git a/modules/docs/app/VoloDocs.Web/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js b/modules/docs/app/VoloDocs.Web/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js new file mode 100644 index 0000000000..a02a2a7a5e --- /dev/null +++ b/modules/docs/app/VoloDocs.Web/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { + return new bootstrap.Popover(popoverTriggerEl) + }) +})(); diff --git a/modules/docs/app/VoloDocs.Web/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js b/modules/docs/app/VoloDocs.Web/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js new file mode 100644 index 0000000000..5a2b42a1d1 --- /dev/null +++ b/modules/docs/app/VoloDocs.Web/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { + return new bootstrap.Tooltip(tooltipTriggerEl) + }); +})(); diff --git a/modules/docs/app/VoloDocs.Web/yarn.lock b/modules/docs/app/VoloDocs.Web/yarn.lock index 12bdd6262a..9cf96bf350 100644 --- a/modules/docs/app/VoloDocs.Web/yarn.lock +++ b/modules/docs/app/VoloDocs.Web/yarn.lock @@ -2,47 +2,47 @@ # yarn lockfile v1 -"@abp/anchor-js@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-7.2.3.tgz#68aaa6c632d6d6481ee7d60347b20b4de083c184" - integrity sha512-a8lJpoN8mdwJuqcj8jX8l5qcqo8ZKwpMGtxC7nPjTCmmSkKqAFgyHPZrU64Z8scCaqJ44bDmR/TlF17SXMd6xw== +"@abp/anchor-js@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-7.3.0-rc.3.tgz#e11dc10ab2374d2f0f974cef50ce15b67a1ab18f" + integrity sha512-nuSLxFi6DmnrZYs1jtXp+jDF09ShlHVkM/aOo4GMNejjxqAyzlZOV1Pegh/lAgYOd89pydX9S9yzEzLkIlbGBA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" anchor-js "^4.3.1" -"@abp/aspnetcore.mvc.ui.theme.basic@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.2.3.tgz#31f2dda74b2bf8f520caf97690e509fd1c1088c4" - integrity sha512-7DIwWrkLJSc2kXYcIcZH+EivpwOXzkO4j2yrUilK0OijoOM9Pa/iGStdNTPlYioOKUNti3/1zah+v5SELNdqIw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~7.2.3" - -"@abp/aspnetcore.mvc.ui.theme.shared@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.2.3.tgz#189dde88792497d29f76a6079dc6db34973ee98d" - integrity sha512-+G2mM/BJWqgGqZFg6GP28PaCtq+YlRmRfg7r0JQ1wkAN9pc11yKm0LRQjFnkcVBzg0A+N2hZqnFbW7wQhwXOHg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~7.2.3" - "@abp/bootstrap" "~7.2.3" - "@abp/bootstrap-datepicker" "~7.2.3" - "@abp/bootstrap-daterangepicker" "~7.2.3" - "@abp/datatables.net-bs5" "~7.2.3" - "@abp/font-awesome" "~7.2.3" - "@abp/jquery-form" "~7.2.3" - "@abp/jquery-validation-unobtrusive" "~7.2.3" - "@abp/lodash" "~7.2.3" - "@abp/luxon" "~7.2.3" - "@abp/malihu-custom-scrollbar-plugin" "~7.2.3" - "@abp/moment" "~7.2.3" - "@abp/select2" "~7.2.3" - "@abp/sweetalert2" "~7.2.3" - "@abp/timeago" "~7.2.3" - "@abp/toastr" "~7.2.3" - -"@abp/aspnetcore.mvc.ui@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.2.3.tgz#d828561e678f6ea779a67c908705ba553ae82edc" - integrity sha512-KJCw6OxjQBgNw4QoSoDQOe32bFF9NvHdD09zMVsoCB/GgN66dcbZnk+ldidHcwjLFDPXOuHJMx+TKmno3VgUaQ== +"@abp/aspnetcore.mvc.ui.theme.basic@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.3.0-rc.3.tgz#8c8cfe4f7fe7ec68b4a91402fa2665ae4b62c7b1" + integrity sha512-oDgPUXmjAXbceUkhM3LjLWBTGPaBfAeqrl4CCA0EGnlZPzdS+KaD9gbP2Fs9OWyT5yBzbn5R+1cdUrRqI4qv3w== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui.theme.shared@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.3.0-rc.3.tgz#23f4e32b7922afe5364675f5e9065e4785727e31" + integrity sha512-i3YdQ0Trqzij8kkKCmOolPT3p++rBUi0cwjQ8wsxJb6nlAyJp4FcDBS/QAdNIqqxg1DZlxqf+u705EHTqQFZPA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~7.3.0-rc.3" + "@abp/bootstrap" "~7.3.0-rc.3" + "@abp/bootstrap-datepicker" "~7.3.0-rc.3" + "@abp/bootstrap-daterangepicker" "~7.3.0-rc.3" + "@abp/datatables.net-bs5" "~7.3.0-rc.3" + "@abp/font-awesome" "~7.3.0-rc.3" + "@abp/jquery-form" "~7.3.0-rc.3" + "@abp/jquery-validation-unobtrusive" "~7.3.0-rc.3" + "@abp/lodash" "~7.3.0-rc.3" + "@abp/luxon" "~7.3.0-rc.3" + "@abp/malihu-custom-scrollbar-plugin" "~7.3.0-rc.3" + "@abp/moment" "~7.3.0-rc.3" + "@abp/select2" "~7.3.0-rc.3" + "@abp/sweetalert2" "~7.3.0-rc.3" + "@abp/timeago" "~7.3.0-rc.3" + "@abp/toastr" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.3.0-rc.3.tgz#5acd05d14a8dc6b96387a0e30c2d1577d2dac884" + integrity sha512-cNG1Soct0p3qLp5OOrt/P4MaCBk3SbgV9RXBvKY7qp6TatfbIPG7Ggwmue1wj4kQpJxO3JIXfqpaGtg44phsmw== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -51,196 +51,196 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.2.3.tgz#7610ff44a6c1ea73f0c9b4c79a31cbb9e505d66f" - integrity sha512-wiKVXftVrXcjwz0FpshD6P4WW3CNk/4cLH15aaqRjM+J0BigDeH9CczlpVc7jXdn+c8plHIRz0t5tqlUud7dIQ== +"@abp/bootstrap-datepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.3.0-rc.3.tgz#bb1b34cfea9c0211f8e1d9cbffc7f1538c4fdb66" + integrity sha512-VsGYcKO56kMJbEFL7CnvqRWrn03lTM6+NJuVCs0K64YarhU06OI9KPd7PpWSZTP0D7Mz7z02pGYcWV034FXopA== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap-daterangepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.2.3.tgz#3946fb853dae52ef092db4bb23b94389577c17d3" - integrity sha512-ChdnXMzHvg+HwrUtw2z6KuqRTqHVOq8qEBai+IPW6PykJSML+tZKzer3jzDIzyHq68OIqom3n3xL0XpcniKMew== +"@abp/bootstrap-daterangepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.3.0-rc.3.tgz#b883c5a130133af6fc947b83dec179a716c60fe5" + integrity sha512-zV+DuBa0hgDx225kF/6VsotHzBbbHmeJ0iJflnLs+veDwYSBlT5uXgrxBHy4R41LnzDWyZqhwwq9SmHoGXShEQ== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.2.3.tgz#43ecd5912ac65bbc142f198ec112b0b2a15e4864" - integrity sha512-Z00q1sAwo9PvFSpfFlbbUHPMyghLOzuEuAzz/8nA6tK7WR0KQBS/0zGC0nK9hNwbyZ4FqKwPSznRVwuwrnqyhQ== +"@abp/bootstrap@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.3.0-rc.3.tgz#e4f35c0cfd1ecbcc892083f0b1022d9545e2fe89" + integrity sha512-yWd3tC1M2fbJmOfMiw2eqaxYQ5ZfkSIxAfVLZ39269ha+KSRhkZGPdjdRS7gGxB8LgAcG+I+pS9DAa7xv/FO/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" bootstrap "^5.1.3" -"@abp/clipboard@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-7.2.3.tgz#dcd8ffc229bd0419be6cd49679fe65dfea90163e" - integrity sha512-Eu7GIMqXpGqU1UK3gm0QfI4DQLaWcFLeO/hL/RefqU79kpWwN+PKg4bYAH8uuYovQUR8i0DRwk8rqOlayjjWRA== +"@abp/clipboard@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-7.3.0-rc.3.tgz#989141ed79834f80c3a8e351fbadfa5d19357c60" + integrity sha512-rk8ZE+yQE+H8dOcilji8EoyHN3cGtV5jzcM2xcMI+oRDbwRJkv3vI4rqox3cflr+QDZFlHyINlILkz8UrJgIew== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" clipboard "^2.0.8" -"@abp/core@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.2.3.tgz#a669073989a30f600355b368c01c654714456f17" - integrity sha512-UyKBWwXbKCzKZwV2YJPgP3v2naDFsfJzV+KEHpdgLdPZyrpBhp+bQ80VNVe2HHrD/bLfhM4fu9pCXw6RYZKnvA== +"@abp/core@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.3.0-rc.3.tgz#309a66b2c5feb05630acaebff8912f0639e3fc02" + integrity sha512-baD6VaLTj1sWU9lcoLnRtGCISCvrWylXaoqZ0vIuVy3QqskzHe3M3AVlHHn0HDwTNUA4zVBFOe6Of2DwHsYVwg== dependencies: - "@abp/utils" "~7.2.3" + "@abp/utils" "~7.3.0-rc.3" -"@abp/datatables.net-bs5@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.2.3.tgz#362f3b8ff2f3612989787e2b6ef19bad181b4206" - integrity sha512-TmXTkIX+Vb1O/fER5JeRlWIOZLoSXG4QD3F0ZbebrjgS9k7oSu9igR/VhXBs1m1lvOqcNKv7Y4LTNRAMw+Mi0A== +"@abp/datatables.net-bs5@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.3.0-rc.3.tgz#bad0344241f1ae83f4828d6d4a8de737bcaac0bb" + integrity sha512-YSNY1TwAkwr7DBEt66Rjg2Y/cic/0AzBBliqTbZsYtFEYh7rsychp9qmVofhYITXAnUlhsqPXMJ8VPmvWqvAbg== dependencies: - "@abp/datatables.net" "~7.2.3" + "@abp/datatables.net" "~7.3.0-rc.3" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.2.3.tgz#36661e223d15a0f75caad607094007d974ba678b" - integrity sha512-g+LmRMg4Sk34iU/MN4RpgC/yd8NVEjhVWg/kT+nuWunsnwLHkcfK59KPGXn9ZLktL4VqQYj2WeXbDv8TEbOObg== +"@abp/datatables.net@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.3.0-rc.3.tgz#43eb32cb0eb6f9023bfe2ec9801f2758e93aa445" + integrity sha512-rMi3oxfuDL71CYd/e7G3PgL0F/GqIGvpBHi0XunOMXFn+G5pJuZFv+ZnpzHgI3vmwj5BpSMzGJh8TRlosQB/fQ== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" datatables.net "^1.11.4" -"@abp/docs@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-7.2.3.tgz#50c3dfb03c510b5a3bcc8b1b5dbc90b89d2802b1" - integrity sha512-eJgbXE2BMzxJgV2ei7xRnhH3tRo2TAx9T3PZH/mrQ/9Yn46Toz9oQW36S5QqO2iOkDYoL7oANJnXTcAgNaGW2g== +"@abp/docs@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-7.3.0-rc.3.tgz#180e2aec905dd75103ca6cf66612c731fd33f131" + integrity sha512-WsArfsYtYFiYiWocUMQhPXr4MuaRMZWreknUx3srRNXgH+DHXAGK/ZdEA6eTO/tdkGZXO5NoFxF6ioZEf4NlPg== dependencies: - "@abp/anchor-js" "~7.2.3" - "@abp/clipboard" "~7.2.3" - "@abp/malihu-custom-scrollbar-plugin" "~7.2.3" - "@abp/popper.js" "~7.2.3" - "@abp/prismjs" "~7.2.3" + "@abp/anchor-js" "~7.3.0-rc.3" + "@abp/clipboard" "~7.3.0-rc.3" + "@abp/malihu-custom-scrollbar-plugin" "~7.3.0-rc.3" + "@abp/popper.js" "~7.3.0-rc.3" + "@abp/prismjs" "~7.3.0-rc.3" -"@abp/font-awesome@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.2.3.tgz#09b7c02b16ff99c9b5b62c1eefad9b1fc2879bcd" - integrity sha512-+4QRhfU08t1MYkmzTPX0B+p+SZQtOqtlDafzeDm5X6fbOlxV1hi97eRWtLtLgLjodjJWztpECWcsTUTgDhExwQ== +"@abp/font-awesome@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.3.0-rc.3.tgz#511419611d3debd4d808f24f7f40b1c2f4505a46" + integrity sha512-w0TAFFuEu74x6BTK1jHJF9rkxDhcqcu/ZeQTneXQOLzJYZFUWRoCCXxXvk376ZOvnOKuD2YBju0yhpJ9cR1s/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.2.3.tgz#b0b295b22ae2ba292100e64d0bb97b3e1e295307" - integrity sha512-ucdGIZ0sxefakGRei9BJvDuoN16fKsYfpOT70/udw3k7uC3gFJD0AvAlEOEZPsFZhpNoqUKexNMym4lZovqBkg== +"@abp/jquery-form@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.3.0-rc.3.tgz#4af1c9a743e4301fe9b8d983463c15d150046200" + integrity sha512-u//A4wrZisskjRvUvkGqPDpm2J5gEsS2DO9ADkvJOFxa30+fyabq4UW66a0gKX4dtHMzBuxxK8duJX+8lz4C2Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.2.3.tgz#1df04e286baa521c216cb949468199e6cacc34e3" - integrity sha512-Hcf1sqAFRIAYKqvN1pZGed+lazzY1nztvcmQlOOgUquiXRS3QjI3dIvxWw5nekJwUPqMpSfuC1GErQo0KpE1fw== +"@abp/jquery-validation-unobtrusive@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.3.0-rc.3.tgz#80623db86e8d60fda6b8167dc4c17c208e1d9533" + integrity sha512-haoov/Zy1nk6r3tnMaKl4YY67+dO9M1hjxF4txZPHGY2064jRT+QtGotimbINoVISDC2hcmQCbHCPkoyXrydSw== dependencies: - "@abp/jquery-validation" "~7.2.3" + "@abp/jquery-validation" "~7.3.0-rc.3" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.2.3.tgz#438ac052e5d71dab50cf5da8be60ea68a460a725" - integrity sha512-drpE5mXErHQPk/4KChsj3zwNCA4GqNlYquTtHNv9/t5S/NuGqFAkchPV6mRYaiQypcxCndZQNSUEqnWxbuMY0g== +"@abp/jquery-validation@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.3.0-rc.3.tgz#7c738da1b071c0de373bebeccbca59e22a3f469f" + integrity sha512-oXbl+JrhjaZGePL/39fcowJGGL9Kp/DPkan+Ji/gdsFTFxxw7xrdtXZ73TpW4hKSEzDiRwnuBstD4WxdiA5tqA== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-validation "^1.19.3" -"@abp/jquery@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.2.3.tgz#555192ff0bcde89bbabee0f734ff74bf77cce1b5" - integrity sha512-r/p3D2QlV57YvrGJsLfTuIJGwLSSi5AVFtkmgKyfpyXYOCNb+TVF9sEZOZnoZebX6cT0JRvtUfZ0dk6ZBebAzg== +"@abp/jquery@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.3.0-rc.3.tgz#37d1313723ee27a9b8845975cb9b38b61253719a" + integrity sha512-cNp/8Pj8ODhtgYKXFwJId+eENbhr0bPcxSvgUX0b6HoRP3AsYSv7lJK3snku/mneidMzeSI9l1yloR8DEA4wIQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" jquery "~3.6.0" -"@abp/lodash@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.2.3.tgz#99c1667f1499a7f318902e96ff81b4184b0dce86" - integrity sha512-5KuXPPpa2mkTlUYPR83bUTJUSSGoq9/kFSf9fYC0Wk2mFFeG4mRK6mXwcyHTfYshQe2qxuncxZsJ+4j5uQN9PA== +"@abp/lodash@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.3.0-rc.3.tgz#adc5712c820c5608ef5a2f1d4905617aed08626a" + integrity sha512-Y08+IMwQKLEBWIgZgHpRmBiXAfzcMDRUPY7jyciWmUZ5hgPQJHJSR6OkXk/o5AXnHTfTbZ0tWXgjUz7kxnF5bg== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" lodash "^4.17.21" -"@abp/luxon@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.2.3.tgz#f643ed28b2d1743edd41edfec98d0e70b2f1f008" - integrity sha512-Y3IT1GbyuNSAzfpGnc5uzjz3Z/nDRUpYiZhoX0XeoQlJ+GyVT/+dytsZbuQBLgEWmQJhk9zxdcITXFT5vrWDcw== +"@abp/luxon@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.3.0-rc.3.tgz#ba2976091ecdb765bd18b608bf60f36d29a7d6a8" + integrity sha512-22VPZlyEZQSOA430/sU9pQ/rZb5yrDaRidUhTltr/tdlQhexD8+uBT8+v/ue+f84/RjH8x2hOppbIR1oLVkXBQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.2.3.tgz#a29f25921b07683b02e2f5c82a3da827e3e7d552" - integrity sha512-wq9eBrw/bY3wb50v5zuL0qOcVLOT86XN2ZJQj69O/bi2+0WNdLRCqMHhY0kaafb7UIBAlKChKA/xeICwCZxn+w== +"@abp/malihu-custom-scrollbar-plugin@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.3.0-rc.3.tgz#54acc797bdf04c535530389e08155f6f18bfd9ce" + integrity sha512-20oE5c8AO8rCk1olKQYc9KE3gN62wALBqTypbusTXEfIgA/uERgm4EtlVhGb8H6FmGCljwO9Fj+ttnIx9QXoJw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.2.3.tgz#f6d2ba7b030b81239853490bdcc9e3c2bd4a39b1" - integrity sha512-pXsOzSom9RZHRGWuVaLIVzSkPayIcWMMmgSyo8T3gtZzZG/QJbpBWT+pug0X8pmV8So4d9E0LjacmODBKLM30A== +"@abp/moment@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.3.0-rc.3.tgz#e5b0885a55b09c306014d813d118eec3e5eb6e01" + integrity sha512-j+RMRNI8qf3Rr/oUOtneBLtUphDaUhLpLCkuj4RSlNgAijCDZg4w5F3VDVBKTsoQX4ZSnN39YpbtN/vb/3jNyA== dependencies: moment "^2.9.0" -"@abp/popper.js@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-7.2.3.tgz#565d595067fd018ffa931a4e7e9f97a98f42ec6b" - integrity sha512-Hi1YdiDYDBOs6vbJZHuH9Wcr5efzLC7Cz7tgF8oHekg4so67xguFv4eCR+yaS6FscZrbX/xqUkkq31J+PnCLAA== +"@abp/popper.js@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-7.3.0-rc.3.tgz#4e09726ee34a0bed1f110320325b243587702a54" + integrity sha512-F6Mqbj3f+wUGWHXlOA6+z057o7FLCMMpgtY1YGRy8Bu4G9t0Pq/kVZZJHiT/MDPgxvOIW9wvb//ZFCGs1fgBug== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" "@popperjs/core" "^2.11.2" -"@abp/prismjs@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-7.2.3.tgz#3ecef3120373eea8a5d01a7b12aa7669aff45307" - integrity sha512-yR/UPqpQ9MTHqBo5bK5izaVemdyqcncxWNIb1NETU4FwZ8ucLRnCbxX427gQUSWlqo6qc+Q9vdS4hOWjLTuroA== +"@abp/prismjs@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-7.3.0-rc.3.tgz#714873077258fda5b2ab3a2dd1877083b474bbeb" + integrity sha512-30I7KgNzhxQrpx4UNvVQKQDi4tjUl4DmiagiLE+SqxA7uwQ8NF1g6pKfnuyri+XkNcB3BFMhjDD8bbQxxrXpgg== dependencies: - "@abp/clipboard" "~7.2.3" - "@abp/core" "~7.2.3" + "@abp/clipboard" "~7.3.0-rc.3" + "@abp/core" "~7.3.0-rc.3" prismjs "^1.26.0" -"@abp/select2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.2.3.tgz#4cecd1cd843807583fce09ef632f472f3f7da70b" - integrity sha512-Cdzl467UftB421W+l8uikGr2NlOsHwxKDxt5yPrF03LEec1MBys5y7UPUV1TEO6l0xwAVi4mW8dXaawyIOSjUA== +"@abp/select2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.3.0-rc.3.tgz#b1261d10d3c4a870af07aa159a2921e5e78a6225" + integrity sha512-NUvYfxZYBXvB4j2oYwR6ec05quCylAHqe4C/CeH7Qo+cJcPduPRMJ9N5ZUQq1c4uZyOAbu7Tuuo+XTQvu1ZTRA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" select2 "^4.0.13" -"@abp/sweetalert2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.2.3.tgz#9e9c503bdb4d47d2b67b0d8193d82145884c90f3" - integrity sha512-KHZD1YRMN6Z4JxPfXuEwocubooux8nKq6sPNG6RKg+rWpp23Fp8nX/ZngJNywVXSRqzrdEvUAM+92JG7zMwKXw== +"@abp/sweetalert2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.3.0-rc.3.tgz#fa554fb304f7093f0a08fb683cb35c81af3c2ce7" + integrity sha512-iKg4TJex+aQna8n5hk7rPIbwY2ZQaVVP571vPdmFML85hUYQM289CI++ZDF0l2a5p22fDKBFRL99RZzceiGOSw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" sweetalert2 "^11.3.6" -"@abp/timeago@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.2.3.tgz#2ced6fa607a0471bf3385fbf5d9b1f2d902e824a" - integrity sha512-7eiibNXJWBGpQnitd/i8aWUNHOkcsuq8fAwBLJWvG8Whhh1nmBEjng0pGhheMqo0xoydefWi1K2uZDg99tKPeQ== +"@abp/timeago@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.3.0-rc.3.tgz#029839955cb53195259d82a3e0c534d817d3862a" + integrity sha512-JuadVXb/Garz7L0aj1h+Ffg4Ut5eLSf6Ipz5mFM2Q1mzXNhA8crwQCtf+NLZdcNohJ7gbxDWyEQ2jgbYr4ryRw== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" timeago "^1.6.7" -"@abp/toastr@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.2.3.tgz#0ef7c24b232ca3d01d4ac5a7dff57800b0ebdcbf" - integrity sha512-2zNMQE6ArRULP6xl+M66/EY83ZrXfNY+sNHUkmZH4uqfGhqR/ijKIQm1quxCLDmUcAjRr1kzu8BCc98pc9tfFw== +"@abp/toastr@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.3.0-rc.3.tgz#537afff62261482bbb21b50a9d503579fd71936d" + integrity sha512-dsVS9F2iQRDn0RtzbLT1b3nH4JKDj8pHCWdxDR3nT/JHpJuAFEZPAqT1/VrNmZxSoo4jdeHn8/pkQtE4RDhv+Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" toastr "^2.1.4" -"@abp/utils@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.2.3.tgz#f384ba76b2948dbc8c49a453a343facda0825e2c" - integrity sha512-hejxDJhSI9Kor4mS9c/JHHQrW/wLXC/XMOJMUcBVkX/5IQd9GU9EW63oalNQyVA3gz3h5obnb0Qcfdv65wc5Pg== +"@abp/utils@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.3.0-rc.3.tgz#4d4e50dac717cae3e368bfe4fd3ce11f6df0e732" + integrity sha512-sMF2QGhRgbJW8PJtpVBrkiPAgofyfflUGmxNVbbx/HSOR3duFW0TNoXpTvxdP2v9k/SYe4i5XtLmv+mKPyttCw== dependencies: - just-compare "^1.3.0" + just-compare "^2.3.0" "@fortawesome/fontawesome-free@^5.15.4": version "5.15.4" @@ -1515,10 +1515,10 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -just-compare@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-1.5.1.tgz#aed7e93e6bae9c3b69d79aea7805684132a0c0c5" - integrity sha512-xDEEFHNIyJNmN4uo/2RVeUcay9THtN/5ka/iw98Y/gsa8w9KXZQuyaf5eFUY6VlntA2+G+bdPmdhqqTs7T+BRw== +just-compare@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7" + integrity sha512-6shoR7HDT+fzfL3gBahx1jZG3hWLrhPAf+l7nCwahDdT9XDtosB9kIF0ZrzUp5QY8dJWfQVr5rnsPqsbvflDzg== just-debounce@^1.0.0: version "1.1.0" diff --git a/modules/openiddict/app/OpenIddict.Demo.Server/package.json b/modules/openiddict/app/OpenIddict.Demo.Server/package.json index dc291e5514..70ce47f8dd 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Server/package.json +++ b/modules/openiddict/app/OpenIddict.Demo.Server/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3" } } diff --git a/modules/openiddict/app/angular/package.json b/modules/openiddict/app/angular/package.json index d9a303cdbe..5f5bf46e6b 100644 --- a/modules/openiddict/app/angular/package.json +++ b/modules/openiddict/app/angular/package.json @@ -12,15 +12,15 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~7.2.3", - "@abp/ng.components": "~7.2.3", - "@abp/ng.core": "~7.2.3", - "@abp/ng.oauth": "~7.2.3", - "@abp/ng.identity": "~7.2.3", - "@abp/ng.setting-management": "~7.2.3", - "@abp/ng.tenant-management": "~7.2.3", - "@abp/ng.theme.shared": "~7.2.3", - "@abp/ng.theme.lepton-x": "~2.2.1", + "@abp/ng.account": "~7.3.0-rc.3", + "@abp/ng.components": "~7.3.0-rc.3", + "@abp/ng.core": "~7.3.0-rc.3", + "@abp/ng.oauth": "~7.3.0-rc.3", + "@abp/ng.identity": "~7.3.0-rc.3", + "@abp/ng.setting-management": "~7.3.0-rc.3", + "@abp/ng.tenant-management": "~7.3.0-rc.3", + "@abp/ng.theme.shared": "~7.3.0-rc.3", + "@abp/ng.theme.lepton-x": "~2.2.2", "@angular/animations": "^15.0.1", "@angular/common": "^15.0.1", "@angular/compiler": "^15.0.1", @@ -36,7 +36,7 @@ "zone.js": "~0.11.4" }, "devDependencies": { - "@abp/ng.schematics": "~7.2.3", + "@abp/ng.schematics": "~7.3.0-rc.3", "@angular-devkit/build-angular": "^15.0.1", "@angular-eslint/builder": "~15.1.0", "@angular-eslint/eslint-plugin": "~15.1.0", diff --git a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/package.json b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/package.json index 7c99adaf33..b4e0854fbe 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": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3" } } diff --git a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/wwwroot/libs/abp/jquery/abp.jquery.js b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/wwwroot/libs/abp/jquery/abp.jquery.js index 76dfd3897f..7dc3439da2 100644 --- a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/wwwroot/libs/abp/jquery/abp.jquery.js +++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/wwwroot/libs/abp/jquery/abp.jquery.js @@ -371,13 +371,18 @@ var abp = abp || {}; }; var _loadScript = function (url, loadCallback, failCallback) { + var nonce = document.body.nonce || document.body.getAttribute('nonce'); _loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { $.get({ url: url, dataType: 'text' }) .done(function (script) { - $.globalEval(script); + if(nonce){ + $.globalEval(script, { nonce: nonce}); + }else{ + $.globalEval(script); + } urlInfo.succeed(); }) .fail(function () { diff --git a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js new file mode 100644 index 0000000000..a02a2a7a5e --- /dev/null +++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { + return new bootstrap.Popover(popoverTriggerEl) + }) +})(); diff --git a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js new file mode 100644 index 0000000000..5a2b42a1d1 --- /dev/null +++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { + return new bootstrap.Tooltip(tooltipTriggerEl) + }); +})(); 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 7e5e33b3ea..30a7dae9d4 100644 --- a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock +++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/yarn.lock @@ -2,39 +2,39 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.2.3.tgz#31f2dda74b2bf8f520caf97690e509fd1c1088c4" - integrity sha512-7DIwWrkLJSc2kXYcIcZH+EivpwOXzkO4j2yrUilK0OijoOM9Pa/iGStdNTPlYioOKUNti3/1zah+v5SELNdqIw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~7.2.3" - -"@abp/aspnetcore.mvc.ui.theme.shared@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.2.3.tgz#189dde88792497d29f76a6079dc6db34973ee98d" - integrity sha512-+G2mM/BJWqgGqZFg6GP28PaCtq+YlRmRfg7r0JQ1wkAN9pc11yKm0LRQjFnkcVBzg0A+N2hZqnFbW7wQhwXOHg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~7.2.3" - "@abp/bootstrap" "~7.2.3" - "@abp/bootstrap-datepicker" "~7.2.3" - "@abp/bootstrap-daterangepicker" "~7.2.3" - "@abp/datatables.net-bs5" "~7.2.3" - "@abp/font-awesome" "~7.2.3" - "@abp/jquery-form" "~7.2.3" - "@abp/jquery-validation-unobtrusive" "~7.2.3" - "@abp/lodash" "~7.2.3" - "@abp/luxon" "~7.2.3" - "@abp/malihu-custom-scrollbar-plugin" "~7.2.3" - "@abp/moment" "~7.2.3" - "@abp/select2" "~7.2.3" - "@abp/sweetalert2" "~7.2.3" - "@abp/timeago" "~7.2.3" - "@abp/toastr" "~7.2.3" - -"@abp/aspnetcore.mvc.ui@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.2.3.tgz#d828561e678f6ea779a67c908705ba553ae82edc" - integrity sha512-KJCw6OxjQBgNw4QoSoDQOe32bFF9NvHdD09zMVsoCB/GgN66dcbZnk+ldidHcwjLFDPXOuHJMx+TKmno3VgUaQ== +"@abp/aspnetcore.mvc.ui.theme.basic@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.3.0-rc.3.tgz#8c8cfe4f7fe7ec68b4a91402fa2665ae4b62c7b1" + integrity sha512-oDgPUXmjAXbceUkhM3LjLWBTGPaBfAeqrl4CCA0EGnlZPzdS+KaD9gbP2Fs9OWyT5yBzbn5R+1cdUrRqI4qv3w== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui.theme.shared@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.3.0-rc.3.tgz#23f4e32b7922afe5364675f5e9065e4785727e31" + integrity sha512-i3YdQ0Trqzij8kkKCmOolPT3p++rBUi0cwjQ8wsxJb6nlAyJp4FcDBS/QAdNIqqxg1DZlxqf+u705EHTqQFZPA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~7.3.0-rc.3" + "@abp/bootstrap" "~7.3.0-rc.3" + "@abp/bootstrap-datepicker" "~7.3.0-rc.3" + "@abp/bootstrap-daterangepicker" "~7.3.0-rc.3" + "@abp/datatables.net-bs5" "~7.3.0-rc.3" + "@abp/font-awesome" "~7.3.0-rc.3" + "@abp/jquery-form" "~7.3.0-rc.3" + "@abp/jquery-validation-unobtrusive" "~7.3.0-rc.3" + "@abp/lodash" "~7.3.0-rc.3" + "@abp/luxon" "~7.3.0-rc.3" + "@abp/malihu-custom-scrollbar-plugin" "~7.3.0-rc.3" + "@abp/moment" "~7.3.0-rc.3" + "@abp/select2" "~7.3.0-rc.3" + "@abp/sweetalert2" "~7.3.0-rc.3" + "@abp/timeago" "~7.3.0-rc.3" + "@abp/toastr" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.3.0-rc.3.tgz#5acd05d14a8dc6b96387a0e30c2d1577d2dac884" + integrity sha512-cNG1Soct0p3qLp5OOrt/P4MaCBk3SbgV9RXBvKY7qp6TatfbIPG7Ggwmue1wj4kQpJxO3JIXfqpaGtg44phsmw== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -43,160 +43,160 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.2.3.tgz#7610ff44a6c1ea73f0c9b4c79a31cbb9e505d66f" - integrity sha512-wiKVXftVrXcjwz0FpshD6P4WW3CNk/4cLH15aaqRjM+J0BigDeH9CczlpVc7jXdn+c8plHIRz0t5tqlUud7dIQ== +"@abp/bootstrap-datepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.3.0-rc.3.tgz#bb1b34cfea9c0211f8e1d9cbffc7f1538c4fdb66" + integrity sha512-VsGYcKO56kMJbEFL7CnvqRWrn03lTM6+NJuVCs0K64YarhU06OI9KPd7PpWSZTP0D7Mz7z02pGYcWV034FXopA== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap-daterangepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.2.3.tgz#3946fb853dae52ef092db4bb23b94389577c17d3" - integrity sha512-ChdnXMzHvg+HwrUtw2z6KuqRTqHVOq8qEBai+IPW6PykJSML+tZKzer3jzDIzyHq68OIqom3n3xL0XpcniKMew== +"@abp/bootstrap-daterangepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.3.0-rc.3.tgz#b883c5a130133af6fc947b83dec179a716c60fe5" + integrity sha512-zV+DuBa0hgDx225kF/6VsotHzBbbHmeJ0iJflnLs+veDwYSBlT5uXgrxBHy4R41LnzDWyZqhwwq9SmHoGXShEQ== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.2.3.tgz#43ecd5912ac65bbc142f198ec112b0b2a15e4864" - integrity sha512-Z00q1sAwo9PvFSpfFlbbUHPMyghLOzuEuAzz/8nA6tK7WR0KQBS/0zGC0nK9hNwbyZ4FqKwPSznRVwuwrnqyhQ== +"@abp/bootstrap@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.3.0-rc.3.tgz#e4f35c0cfd1ecbcc892083f0b1022d9545e2fe89" + integrity sha512-yWd3tC1M2fbJmOfMiw2eqaxYQ5ZfkSIxAfVLZ39269ha+KSRhkZGPdjdRS7gGxB8LgAcG+I+pS9DAa7xv/FO/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" bootstrap "^5.1.3" -"@abp/core@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.2.3.tgz#a669073989a30f600355b368c01c654714456f17" - integrity sha512-UyKBWwXbKCzKZwV2YJPgP3v2naDFsfJzV+KEHpdgLdPZyrpBhp+bQ80VNVe2HHrD/bLfhM4fu9pCXw6RYZKnvA== +"@abp/core@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.3.0-rc.3.tgz#309a66b2c5feb05630acaebff8912f0639e3fc02" + integrity sha512-baD6VaLTj1sWU9lcoLnRtGCISCvrWylXaoqZ0vIuVy3QqskzHe3M3AVlHHn0HDwTNUA4zVBFOe6Of2DwHsYVwg== dependencies: - "@abp/utils" "~7.2.3" + "@abp/utils" "~7.3.0-rc.3" -"@abp/datatables.net-bs5@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.2.3.tgz#362f3b8ff2f3612989787e2b6ef19bad181b4206" - integrity sha512-TmXTkIX+Vb1O/fER5JeRlWIOZLoSXG4QD3F0ZbebrjgS9k7oSu9igR/VhXBs1m1lvOqcNKv7Y4LTNRAMw+Mi0A== +"@abp/datatables.net-bs5@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.3.0-rc.3.tgz#bad0344241f1ae83f4828d6d4a8de737bcaac0bb" + integrity sha512-YSNY1TwAkwr7DBEt66Rjg2Y/cic/0AzBBliqTbZsYtFEYh7rsychp9qmVofhYITXAnUlhsqPXMJ8VPmvWqvAbg== dependencies: - "@abp/datatables.net" "~7.2.3" + "@abp/datatables.net" "~7.3.0-rc.3" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.2.3.tgz#36661e223d15a0f75caad607094007d974ba678b" - integrity sha512-g+LmRMg4Sk34iU/MN4RpgC/yd8NVEjhVWg/kT+nuWunsnwLHkcfK59KPGXn9ZLktL4VqQYj2WeXbDv8TEbOObg== +"@abp/datatables.net@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.3.0-rc.3.tgz#43eb32cb0eb6f9023bfe2ec9801f2758e93aa445" + integrity sha512-rMi3oxfuDL71CYd/e7G3PgL0F/GqIGvpBHi0XunOMXFn+G5pJuZFv+ZnpzHgI3vmwj5BpSMzGJh8TRlosQB/fQ== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" datatables.net "^1.11.4" -"@abp/font-awesome@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.2.3.tgz#09b7c02b16ff99c9b5b62c1eefad9b1fc2879bcd" - integrity sha512-+4QRhfU08t1MYkmzTPX0B+p+SZQtOqtlDafzeDm5X6fbOlxV1hi97eRWtLtLgLjodjJWztpECWcsTUTgDhExwQ== +"@abp/font-awesome@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.3.0-rc.3.tgz#511419611d3debd4d808f24f7f40b1c2f4505a46" + integrity sha512-w0TAFFuEu74x6BTK1jHJF9rkxDhcqcu/ZeQTneXQOLzJYZFUWRoCCXxXvk376ZOvnOKuD2YBju0yhpJ9cR1s/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.2.3.tgz#b0b295b22ae2ba292100e64d0bb97b3e1e295307" - integrity sha512-ucdGIZ0sxefakGRei9BJvDuoN16fKsYfpOT70/udw3k7uC3gFJD0AvAlEOEZPsFZhpNoqUKexNMym4lZovqBkg== +"@abp/jquery-form@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.3.0-rc.3.tgz#4af1c9a743e4301fe9b8d983463c15d150046200" + integrity sha512-u//A4wrZisskjRvUvkGqPDpm2J5gEsS2DO9ADkvJOFxa30+fyabq4UW66a0gKX4dtHMzBuxxK8duJX+8lz4C2Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.2.3.tgz#1df04e286baa521c216cb949468199e6cacc34e3" - integrity sha512-Hcf1sqAFRIAYKqvN1pZGed+lazzY1nztvcmQlOOgUquiXRS3QjI3dIvxWw5nekJwUPqMpSfuC1GErQo0KpE1fw== +"@abp/jquery-validation-unobtrusive@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.3.0-rc.3.tgz#80623db86e8d60fda6b8167dc4c17c208e1d9533" + integrity sha512-haoov/Zy1nk6r3tnMaKl4YY67+dO9M1hjxF4txZPHGY2064jRT+QtGotimbINoVISDC2hcmQCbHCPkoyXrydSw== dependencies: - "@abp/jquery-validation" "~7.2.3" + "@abp/jquery-validation" "~7.3.0-rc.3" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.2.3.tgz#438ac052e5d71dab50cf5da8be60ea68a460a725" - integrity sha512-drpE5mXErHQPk/4KChsj3zwNCA4GqNlYquTtHNv9/t5S/NuGqFAkchPV6mRYaiQypcxCndZQNSUEqnWxbuMY0g== +"@abp/jquery-validation@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.3.0-rc.3.tgz#7c738da1b071c0de373bebeccbca59e22a3f469f" + integrity sha512-oXbl+JrhjaZGePL/39fcowJGGL9Kp/DPkan+Ji/gdsFTFxxw7xrdtXZ73TpW4hKSEzDiRwnuBstD4WxdiA5tqA== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-validation "^1.19.3" -"@abp/jquery@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.2.3.tgz#555192ff0bcde89bbabee0f734ff74bf77cce1b5" - integrity sha512-r/p3D2QlV57YvrGJsLfTuIJGwLSSi5AVFtkmgKyfpyXYOCNb+TVF9sEZOZnoZebX6cT0JRvtUfZ0dk6ZBebAzg== +"@abp/jquery@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.3.0-rc.3.tgz#37d1313723ee27a9b8845975cb9b38b61253719a" + integrity sha512-cNp/8Pj8ODhtgYKXFwJId+eENbhr0bPcxSvgUX0b6HoRP3AsYSv7lJK3snku/mneidMzeSI9l1yloR8DEA4wIQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" jquery "~3.6.0" -"@abp/lodash@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.2.3.tgz#99c1667f1499a7f318902e96ff81b4184b0dce86" - integrity sha512-5KuXPPpa2mkTlUYPR83bUTJUSSGoq9/kFSf9fYC0Wk2mFFeG4mRK6mXwcyHTfYshQe2qxuncxZsJ+4j5uQN9PA== +"@abp/lodash@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.3.0-rc.3.tgz#adc5712c820c5608ef5a2f1d4905617aed08626a" + integrity sha512-Y08+IMwQKLEBWIgZgHpRmBiXAfzcMDRUPY7jyciWmUZ5hgPQJHJSR6OkXk/o5AXnHTfTbZ0tWXgjUz7kxnF5bg== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" lodash "^4.17.21" -"@abp/luxon@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.2.3.tgz#f643ed28b2d1743edd41edfec98d0e70b2f1f008" - integrity sha512-Y3IT1GbyuNSAzfpGnc5uzjz3Z/nDRUpYiZhoX0XeoQlJ+GyVT/+dytsZbuQBLgEWmQJhk9zxdcITXFT5vrWDcw== +"@abp/luxon@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.3.0-rc.3.tgz#ba2976091ecdb765bd18b608bf60f36d29a7d6a8" + integrity sha512-22VPZlyEZQSOA430/sU9pQ/rZb5yrDaRidUhTltr/tdlQhexD8+uBT8+v/ue+f84/RjH8x2hOppbIR1oLVkXBQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.2.3.tgz#a29f25921b07683b02e2f5c82a3da827e3e7d552" - integrity sha512-wq9eBrw/bY3wb50v5zuL0qOcVLOT86XN2ZJQj69O/bi2+0WNdLRCqMHhY0kaafb7UIBAlKChKA/xeICwCZxn+w== +"@abp/malihu-custom-scrollbar-plugin@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.3.0-rc.3.tgz#54acc797bdf04c535530389e08155f6f18bfd9ce" + integrity sha512-20oE5c8AO8rCk1olKQYc9KE3gN62wALBqTypbusTXEfIgA/uERgm4EtlVhGb8H6FmGCljwO9Fj+ttnIx9QXoJw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.2.3.tgz#f6d2ba7b030b81239853490bdcc9e3c2bd4a39b1" - integrity sha512-pXsOzSom9RZHRGWuVaLIVzSkPayIcWMMmgSyo8T3gtZzZG/QJbpBWT+pug0X8pmV8So4d9E0LjacmODBKLM30A== +"@abp/moment@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.3.0-rc.3.tgz#e5b0885a55b09c306014d813d118eec3e5eb6e01" + integrity sha512-j+RMRNI8qf3Rr/oUOtneBLtUphDaUhLpLCkuj4RSlNgAijCDZg4w5F3VDVBKTsoQX4ZSnN39YpbtN/vb/3jNyA== dependencies: moment "^2.9.0" -"@abp/select2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.2.3.tgz#4cecd1cd843807583fce09ef632f472f3f7da70b" - integrity sha512-Cdzl467UftB421W+l8uikGr2NlOsHwxKDxt5yPrF03LEec1MBys5y7UPUV1TEO6l0xwAVi4mW8dXaawyIOSjUA== +"@abp/select2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.3.0-rc.3.tgz#b1261d10d3c4a870af07aa159a2921e5e78a6225" + integrity sha512-NUvYfxZYBXvB4j2oYwR6ec05quCylAHqe4C/CeH7Qo+cJcPduPRMJ9N5ZUQq1c4uZyOAbu7Tuuo+XTQvu1ZTRA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" select2 "^4.0.13" -"@abp/sweetalert2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.2.3.tgz#9e9c503bdb4d47d2b67b0d8193d82145884c90f3" - integrity sha512-KHZD1YRMN6Z4JxPfXuEwocubooux8nKq6sPNG6RKg+rWpp23Fp8nX/ZngJNywVXSRqzrdEvUAM+92JG7zMwKXw== +"@abp/sweetalert2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.3.0-rc.3.tgz#fa554fb304f7093f0a08fb683cb35c81af3c2ce7" + integrity sha512-iKg4TJex+aQna8n5hk7rPIbwY2ZQaVVP571vPdmFML85hUYQM289CI++ZDF0l2a5p22fDKBFRL99RZzceiGOSw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" sweetalert2 "^11.3.6" -"@abp/timeago@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.2.3.tgz#2ced6fa607a0471bf3385fbf5d9b1f2d902e824a" - integrity sha512-7eiibNXJWBGpQnitd/i8aWUNHOkcsuq8fAwBLJWvG8Whhh1nmBEjng0pGhheMqo0xoydefWi1K2uZDg99tKPeQ== +"@abp/timeago@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.3.0-rc.3.tgz#029839955cb53195259d82a3e0c534d817d3862a" + integrity sha512-JuadVXb/Garz7L0aj1h+Ffg4Ut5eLSf6Ipz5mFM2Q1mzXNhA8crwQCtf+NLZdcNohJ7gbxDWyEQ2jgbYr4ryRw== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" timeago "^1.6.7" -"@abp/toastr@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.2.3.tgz#0ef7c24b232ca3d01d4ac5a7dff57800b0ebdcbf" - integrity sha512-2zNMQE6ArRULP6xl+M66/EY83ZrXfNY+sNHUkmZH4uqfGhqR/ijKIQm1quxCLDmUcAjRr1kzu8BCc98pc9tfFw== +"@abp/toastr@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.3.0-rc.3.tgz#537afff62261482bbb21b50a9d503579fd71936d" + integrity sha512-dsVS9F2iQRDn0RtzbLT1b3nH4JKDj8pHCWdxDR3nT/JHpJuAFEZPAqT1/VrNmZxSoo4jdeHn8/pkQtE4RDhv+Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" toastr "^2.1.4" -"@abp/utils@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.2.3.tgz#f384ba76b2948dbc8c49a453a343facda0825e2c" - integrity sha512-hejxDJhSI9Kor4mS9c/JHHQrW/wLXC/XMOJMUcBVkX/5IQd9GU9EW63oalNQyVA3gz3h5obnb0Qcfdv65wc5Pg== +"@abp/utils@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.3.0-rc.3.tgz#4d4e50dac717cae3e368bfe4fd3ce11f6df0e732" + integrity sha512-sMF2QGhRgbJW8PJtpVBrkiPAgofyfflUGmxNVbbx/HSOR3duFW0TNoXpTvxdP2v9k/SYe4i5XtLmv+mKPyttCw== dependencies: - just-compare "^1.3.0" + just-compare "^2.3.0" "@fortawesome/fontawesome-free@^5.15.4": version "5.15.4" @@ -1440,10 +1440,10 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -just-compare@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-1.5.1.tgz#aed7e93e6bae9c3b69d79aea7805684132a0c0c5" - integrity sha512-xDEEFHNIyJNmN4uo/2RVeUcay9THtN/5ka/iw98Y/gsa8w9KXZQuyaf5eFUY6VlntA2+G+bdPmdhqqTs7T+BRw== +just-compare@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7" + integrity sha512-6shoR7HDT+fzfL3gBahx1jZG3hWLrhPAf+l7nCwahDdT9XDtosB9kIF0ZrzUp5QY8dJWfQVr5rnsPqsbvflDzg== just-debounce@^1.0.0: version "1.1.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 b9ab9e1ec5..44e3eb3ee4 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": "~7.2.3", - "@abp/virtual-file-explorer": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3", + "@abp/virtual-file-explorer": "~7.3.0-rc.3" } } diff --git a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/wwwroot/libs/abp/jquery/abp.jquery.js b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/wwwroot/libs/abp/jquery/abp.jquery.js index 76dfd3897f..7dc3439da2 100644 --- a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/wwwroot/libs/abp/jquery/abp.jquery.js +++ b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/wwwroot/libs/abp/jquery/abp.jquery.js @@ -371,13 +371,18 @@ var abp = abp || {}; }; var _loadScript = function (url, loadCallback, failCallback) { + var nonce = document.body.nonce || document.body.getAttribute('nonce'); _loadFromUrl(url, loadCallback, failCallback, function (urlInfo) { $.get({ url: url, dataType: 'text' }) .done(function (script) { - $.globalEval(script); + if(nonce){ + $.globalEval(script, { nonce: nonce}); + }else{ + $.globalEval(script); + } urlInfo.succeed(); }) .fail(function () { diff --git a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js new file mode 100644 index 0000000000..a02a2a7a5e --- /dev/null +++ b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')).map(function (popoverTriggerEl) { + return new bootstrap.Popover(popoverTriggerEl) + }) +})(); diff --git a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js new file mode 100644 index 0000000000..5a2b42a1d1 --- /dev/null +++ b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js @@ -0,0 +1,5 @@ +(function () { + [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map(function (tooltipTriggerEl) { + return new bootstrap.Tooltip(tooltipTriggerEl) + }); +})(); 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 1c69184181..aa61d1fafb 100644 --- a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/yarn.lock +++ b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/yarn.lock @@ -2,39 +2,39 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.2.3.tgz#31f2dda74b2bf8f520caf97690e509fd1c1088c4" - integrity sha512-7DIwWrkLJSc2kXYcIcZH+EivpwOXzkO4j2yrUilK0OijoOM9Pa/iGStdNTPlYioOKUNti3/1zah+v5SELNdqIw== - dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~7.2.3" - -"@abp/aspnetcore.mvc.ui.theme.shared@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.2.3.tgz#189dde88792497d29f76a6079dc6db34973ee98d" - integrity sha512-+G2mM/BJWqgGqZFg6GP28PaCtq+YlRmRfg7r0JQ1wkAN9pc11yKm0LRQjFnkcVBzg0A+N2hZqnFbW7wQhwXOHg== - dependencies: - "@abp/aspnetcore.mvc.ui" "~7.2.3" - "@abp/bootstrap" "~7.2.3" - "@abp/bootstrap-datepicker" "~7.2.3" - "@abp/bootstrap-daterangepicker" "~7.2.3" - "@abp/datatables.net-bs5" "~7.2.3" - "@abp/font-awesome" "~7.2.3" - "@abp/jquery-form" "~7.2.3" - "@abp/jquery-validation-unobtrusive" "~7.2.3" - "@abp/lodash" "~7.2.3" - "@abp/luxon" "~7.2.3" - "@abp/malihu-custom-scrollbar-plugin" "~7.2.3" - "@abp/moment" "~7.2.3" - "@abp/select2" "~7.2.3" - "@abp/sweetalert2" "~7.2.3" - "@abp/timeago" "~7.2.3" - "@abp/toastr" "~7.2.3" - -"@abp/aspnetcore.mvc.ui@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.2.3.tgz#d828561e678f6ea779a67c908705ba553ae82edc" - integrity sha512-KJCw6OxjQBgNw4QoSoDQOe32bFF9NvHdD09zMVsoCB/GgN66dcbZnk+ldidHcwjLFDPXOuHJMx+TKmno3VgUaQ== +"@abp/aspnetcore.mvc.ui.theme.basic@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-7.3.0-rc.3.tgz#8c8cfe4f7fe7ec68b4a91402fa2665ae4b62c7b1" + integrity sha512-oDgPUXmjAXbceUkhM3LjLWBTGPaBfAeqrl4CCA0EGnlZPzdS+KaD9gbP2Fs9OWyT5yBzbn5R+1cdUrRqI4qv3w== + dependencies: + "@abp/aspnetcore.mvc.ui.theme.shared" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui.theme.shared@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-7.3.0-rc.3.tgz#23f4e32b7922afe5364675f5e9065e4785727e31" + integrity sha512-i3YdQ0Trqzij8kkKCmOolPT3p++rBUi0cwjQ8wsxJb6nlAyJp4FcDBS/QAdNIqqxg1DZlxqf+u705EHTqQFZPA== + dependencies: + "@abp/aspnetcore.mvc.ui" "~7.3.0-rc.3" + "@abp/bootstrap" "~7.3.0-rc.3" + "@abp/bootstrap-datepicker" "~7.3.0-rc.3" + "@abp/bootstrap-daterangepicker" "~7.3.0-rc.3" + "@abp/datatables.net-bs5" "~7.3.0-rc.3" + "@abp/font-awesome" "~7.3.0-rc.3" + "@abp/jquery-form" "~7.3.0-rc.3" + "@abp/jquery-validation-unobtrusive" "~7.3.0-rc.3" + "@abp/lodash" "~7.3.0-rc.3" + "@abp/luxon" "~7.3.0-rc.3" + "@abp/malihu-custom-scrollbar-plugin" "~7.3.0-rc.3" + "@abp/moment" "~7.3.0-rc.3" + "@abp/select2" "~7.3.0-rc.3" + "@abp/sweetalert2" "~7.3.0-rc.3" + "@abp/timeago" "~7.3.0-rc.3" + "@abp/toastr" "~7.3.0-rc.3" + +"@abp/aspnetcore.mvc.ui@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-7.3.0-rc.3.tgz#5acd05d14a8dc6b96387a0e30c2d1577d2dac884" + integrity sha512-cNG1Soct0p3qLp5OOrt/P4MaCBk3SbgV9RXBvKY7qp6TatfbIPG7Ggwmue1wj4kQpJxO3JIXfqpaGtg44phsmw== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -43,185 +43,185 @@ merge-stream "^2.0.0" micromatch "^4.0.2" -"@abp/bootstrap-datepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.2.3.tgz#7610ff44a6c1ea73f0c9b4c79a31cbb9e505d66f" - integrity sha512-wiKVXftVrXcjwz0FpshD6P4WW3CNk/4cLH15aaqRjM+J0BigDeH9CczlpVc7jXdn+c8plHIRz0t5tqlUud7dIQ== +"@abp/bootstrap-datepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-7.3.0-rc.3.tgz#bb1b34cfea9c0211f8e1d9cbffc7f1538c4fdb66" + integrity sha512-VsGYcKO56kMJbEFL7CnvqRWrn03lTM6+NJuVCs0K64YarhU06OI9KPd7PpWSZTP0D7Mz7z02pGYcWV034FXopA== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap-daterangepicker@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.2.3.tgz#3946fb853dae52ef092db4bb23b94389577c17d3" - integrity sha512-ChdnXMzHvg+HwrUtw2z6KuqRTqHVOq8qEBai+IPW6PykJSML+tZKzer3jzDIzyHq68OIqom3n3xL0XpcniKMew== +"@abp/bootstrap-daterangepicker@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-daterangepicker/-/bootstrap-daterangepicker-7.3.0-rc.3.tgz#b883c5a130133af6fc947b83dec179a716c60fe5" + integrity sha512-zV+DuBa0hgDx225kF/6VsotHzBbbHmeJ0iJflnLs+veDwYSBlT5uXgrxBHy4R41LnzDWyZqhwwq9SmHoGXShEQ== dependencies: bootstrap-daterangepicker "^3.1.0" -"@abp/bootstrap@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.2.3.tgz#43ecd5912ac65bbc142f198ec112b0b2a15e4864" - integrity sha512-Z00q1sAwo9PvFSpfFlbbUHPMyghLOzuEuAzz/8nA6tK7WR0KQBS/0zGC0nK9hNwbyZ4FqKwPSznRVwuwrnqyhQ== +"@abp/bootstrap@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-7.3.0-rc.3.tgz#e4f35c0cfd1ecbcc892083f0b1022d9545e2fe89" + integrity sha512-yWd3tC1M2fbJmOfMiw2eqaxYQ5ZfkSIxAfVLZ39269ha+KSRhkZGPdjdRS7gGxB8LgAcG+I+pS9DAa7xv/FO/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" bootstrap "^5.1.3" -"@abp/clipboard@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-7.2.3.tgz#dcd8ffc229bd0419be6cd49679fe65dfea90163e" - integrity sha512-Eu7GIMqXpGqU1UK3gm0QfI4DQLaWcFLeO/hL/RefqU79kpWwN+PKg4bYAH8uuYovQUR8i0DRwk8rqOlayjjWRA== +"@abp/clipboard@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-7.3.0-rc.3.tgz#989141ed79834f80c3a8e351fbadfa5d19357c60" + integrity sha512-rk8ZE+yQE+H8dOcilji8EoyHN3cGtV5jzcM2xcMI+oRDbwRJkv3vI4rqox3cflr+QDZFlHyINlILkz8UrJgIew== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" clipboard "^2.0.8" -"@abp/core@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.2.3.tgz#a669073989a30f600355b368c01c654714456f17" - integrity sha512-UyKBWwXbKCzKZwV2YJPgP3v2naDFsfJzV+KEHpdgLdPZyrpBhp+bQ80VNVe2HHrD/bLfhM4fu9pCXw6RYZKnvA== +"@abp/core@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-7.3.0-rc.3.tgz#309a66b2c5feb05630acaebff8912f0639e3fc02" + integrity sha512-baD6VaLTj1sWU9lcoLnRtGCISCvrWylXaoqZ0vIuVy3QqskzHe3M3AVlHHn0HDwTNUA4zVBFOe6Of2DwHsYVwg== dependencies: - "@abp/utils" "~7.2.3" + "@abp/utils" "~7.3.0-rc.3" -"@abp/datatables.net-bs5@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.2.3.tgz#362f3b8ff2f3612989787e2b6ef19bad181b4206" - integrity sha512-TmXTkIX+Vb1O/fER5JeRlWIOZLoSXG4QD3F0ZbebrjgS9k7oSu9igR/VhXBs1m1lvOqcNKv7Y4LTNRAMw+Mi0A== +"@abp/datatables.net-bs5@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-7.3.0-rc.3.tgz#bad0344241f1ae83f4828d6d4a8de737bcaac0bb" + integrity sha512-YSNY1TwAkwr7DBEt66Rjg2Y/cic/0AzBBliqTbZsYtFEYh7rsychp9qmVofhYITXAnUlhsqPXMJ8VPmvWqvAbg== dependencies: - "@abp/datatables.net" "~7.2.3" + "@abp/datatables.net" "~7.3.0-rc.3" datatables.net-bs5 "^1.11.4" -"@abp/datatables.net@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.2.3.tgz#36661e223d15a0f75caad607094007d974ba678b" - integrity sha512-g+LmRMg4Sk34iU/MN4RpgC/yd8NVEjhVWg/kT+nuWunsnwLHkcfK59KPGXn9ZLktL4VqQYj2WeXbDv8TEbOObg== +"@abp/datatables.net@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-7.3.0-rc.3.tgz#43eb32cb0eb6f9023bfe2ec9801f2758e93aa445" + integrity sha512-rMi3oxfuDL71CYd/e7G3PgL0F/GqIGvpBHi0XunOMXFn+G5pJuZFv+ZnpzHgI3vmwj5BpSMzGJh8TRlosQB/fQ== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" datatables.net "^1.11.4" -"@abp/font-awesome@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.2.3.tgz#09b7c02b16ff99c9b5b62c1eefad9b1fc2879bcd" - integrity sha512-+4QRhfU08t1MYkmzTPX0B+p+SZQtOqtlDafzeDm5X6fbOlxV1hi97eRWtLtLgLjodjJWztpECWcsTUTgDhExwQ== +"@abp/font-awesome@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-7.3.0-rc.3.tgz#511419611d3debd4d808f24f7f40b1c2f4505a46" + integrity sha512-w0TAFFuEu74x6BTK1jHJF9rkxDhcqcu/ZeQTneXQOLzJYZFUWRoCCXxXvk376ZOvnOKuD2YBju0yhpJ9cR1s/Q== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" "@fortawesome/fontawesome-free" "^5.15.4" -"@abp/jquery-form@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.2.3.tgz#b0b295b22ae2ba292100e64d0bb97b3e1e295307" - integrity sha512-ucdGIZ0sxefakGRei9BJvDuoN16fKsYfpOT70/udw3k7uC3gFJD0AvAlEOEZPsFZhpNoqUKexNMym4lZovqBkg== +"@abp/jquery-form@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-7.3.0-rc.3.tgz#4af1c9a743e4301fe9b8d983463c15d150046200" + integrity sha512-u//A4wrZisskjRvUvkGqPDpm2J5gEsS2DO9ADkvJOFxa30+fyabq4UW66a0gKX4dtHMzBuxxK8duJX+8lz4C2Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.2.3.tgz#1df04e286baa521c216cb949468199e6cacc34e3" - integrity sha512-Hcf1sqAFRIAYKqvN1pZGed+lazzY1nztvcmQlOOgUquiXRS3QjI3dIvxWw5nekJwUPqMpSfuC1GErQo0KpE1fw== +"@abp/jquery-validation-unobtrusive@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-7.3.0-rc.3.tgz#80623db86e8d60fda6b8167dc4c17c208e1d9533" + integrity sha512-haoov/Zy1nk6r3tnMaKl4YY67+dO9M1hjxF4txZPHGY2064jRT+QtGotimbINoVISDC2hcmQCbHCPkoyXrydSw== dependencies: - "@abp/jquery-validation" "~7.2.3" + "@abp/jquery-validation" "~7.3.0-rc.3" jquery-validation-unobtrusive "^3.2.12" -"@abp/jquery-validation@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.2.3.tgz#438ac052e5d71dab50cf5da8be60ea68a460a725" - integrity sha512-drpE5mXErHQPk/4KChsj3zwNCA4GqNlYquTtHNv9/t5S/NuGqFAkchPV6mRYaiQypcxCndZQNSUEqnWxbuMY0g== +"@abp/jquery-validation@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-7.3.0-rc.3.tgz#7c738da1b071c0de373bebeccbca59e22a3f469f" + integrity sha512-oXbl+JrhjaZGePL/39fcowJGGL9Kp/DPkan+Ji/gdsFTFxxw7xrdtXZ73TpW4hKSEzDiRwnuBstD4WxdiA5tqA== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" jquery-validation "^1.19.3" -"@abp/jquery@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.2.3.tgz#555192ff0bcde89bbabee0f734ff74bf77cce1b5" - integrity sha512-r/p3D2QlV57YvrGJsLfTuIJGwLSSi5AVFtkmgKyfpyXYOCNb+TVF9sEZOZnoZebX6cT0JRvtUfZ0dk6ZBebAzg== +"@abp/jquery@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-7.3.0-rc.3.tgz#37d1313723ee27a9b8845975cb9b38b61253719a" + integrity sha512-cNp/8Pj8ODhtgYKXFwJId+eENbhr0bPcxSvgUX0b6HoRP3AsYSv7lJK3snku/mneidMzeSI9l1yloR8DEA4wIQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" jquery "~3.6.0" -"@abp/lodash@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.2.3.tgz#99c1667f1499a7f318902e96ff81b4184b0dce86" - integrity sha512-5KuXPPpa2mkTlUYPR83bUTJUSSGoq9/kFSf9fYC0Wk2mFFeG4mRK6mXwcyHTfYshQe2qxuncxZsJ+4j5uQN9PA== +"@abp/lodash@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-7.3.0-rc.3.tgz#adc5712c820c5608ef5a2f1d4905617aed08626a" + integrity sha512-Y08+IMwQKLEBWIgZgHpRmBiXAfzcMDRUPY7jyciWmUZ5hgPQJHJSR6OkXk/o5AXnHTfTbZ0tWXgjUz7kxnF5bg== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" lodash "^4.17.21" -"@abp/luxon@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.2.3.tgz#f643ed28b2d1743edd41edfec98d0e70b2f1f008" - integrity sha512-Y3IT1GbyuNSAzfpGnc5uzjz3Z/nDRUpYiZhoX0XeoQlJ+GyVT/+dytsZbuQBLgEWmQJhk9zxdcITXFT5vrWDcw== +"@abp/luxon@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-7.3.0-rc.3.tgz#ba2976091ecdb765bd18b608bf60f36d29a7d6a8" + integrity sha512-22VPZlyEZQSOA430/sU9pQ/rZb5yrDaRidUhTltr/tdlQhexD8+uBT8+v/ue+f84/RjH8x2hOppbIR1oLVkXBQ== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" luxon "^2.3.0" -"@abp/malihu-custom-scrollbar-plugin@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.2.3.tgz#a29f25921b07683b02e2f5c82a3da827e3e7d552" - integrity sha512-wq9eBrw/bY3wb50v5zuL0qOcVLOT86XN2ZJQj69O/bi2+0WNdLRCqMHhY0kaafb7UIBAlKChKA/xeICwCZxn+w== +"@abp/malihu-custom-scrollbar-plugin@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-7.3.0-rc.3.tgz#54acc797bdf04c535530389e08155f6f18bfd9ce" + integrity sha512-20oE5c8AO8rCk1olKQYc9KE3gN62wALBqTypbusTXEfIgA/uERgm4EtlVhGb8H6FmGCljwO9Fj+ttnIx9QXoJw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/moment@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.2.3.tgz#f6d2ba7b030b81239853490bdcc9e3c2bd4a39b1" - integrity sha512-pXsOzSom9RZHRGWuVaLIVzSkPayIcWMMmgSyo8T3gtZzZG/QJbpBWT+pug0X8pmV8So4d9E0LjacmODBKLM30A== +"@abp/moment@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/moment/-/moment-7.3.0-rc.3.tgz#e5b0885a55b09c306014d813d118eec3e5eb6e01" + integrity sha512-j+RMRNI8qf3Rr/oUOtneBLtUphDaUhLpLCkuj4RSlNgAijCDZg4w5F3VDVBKTsoQX4ZSnN39YpbtN/vb/3jNyA== dependencies: moment "^2.9.0" -"@abp/prismjs@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-7.2.3.tgz#3ecef3120373eea8a5d01a7b12aa7669aff45307" - integrity sha512-yR/UPqpQ9MTHqBo5bK5izaVemdyqcncxWNIb1NETU4FwZ8ucLRnCbxX427gQUSWlqo6qc+Q9vdS4hOWjLTuroA== +"@abp/prismjs@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-7.3.0-rc.3.tgz#714873077258fda5b2ab3a2dd1877083b474bbeb" + integrity sha512-30I7KgNzhxQrpx4UNvVQKQDi4tjUl4DmiagiLE+SqxA7uwQ8NF1g6pKfnuyri+XkNcB3BFMhjDD8bbQxxrXpgg== dependencies: - "@abp/clipboard" "~7.2.3" - "@abp/core" "~7.2.3" + "@abp/clipboard" "~7.3.0-rc.3" + "@abp/core" "~7.3.0-rc.3" prismjs "^1.26.0" -"@abp/select2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.2.3.tgz#4cecd1cd843807583fce09ef632f472f3f7da70b" - integrity sha512-Cdzl467UftB421W+l8uikGr2NlOsHwxKDxt5yPrF03LEec1MBys5y7UPUV1TEO6l0xwAVi4mW8dXaawyIOSjUA== +"@abp/select2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-7.3.0-rc.3.tgz#b1261d10d3c4a870af07aa159a2921e5e78a6225" + integrity sha512-NUvYfxZYBXvB4j2oYwR6ec05quCylAHqe4C/CeH7Qo+cJcPduPRMJ9N5ZUQq1c4uZyOAbu7Tuuo+XTQvu1ZTRA== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" select2 "^4.0.13" -"@abp/sweetalert2@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.2.3.tgz#9e9c503bdb4d47d2b67b0d8193d82145884c90f3" - integrity sha512-KHZD1YRMN6Z4JxPfXuEwocubooux8nKq6sPNG6RKg+rWpp23Fp8nX/ZngJNywVXSRqzrdEvUAM+92JG7zMwKXw== +"@abp/sweetalert2@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-7.3.0-rc.3.tgz#fa554fb304f7093f0a08fb683cb35c81af3c2ce7" + integrity sha512-iKg4TJex+aQna8n5hk7rPIbwY2ZQaVVP571vPdmFML85hUYQM289CI++ZDF0l2a5p22fDKBFRL99RZzceiGOSw== dependencies: - "@abp/core" "~7.2.3" + "@abp/core" "~7.3.0-rc.3" sweetalert2 "^11.3.6" -"@abp/timeago@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.2.3.tgz#2ced6fa607a0471bf3385fbf5d9b1f2d902e824a" - integrity sha512-7eiibNXJWBGpQnitd/i8aWUNHOkcsuq8fAwBLJWvG8Whhh1nmBEjng0pGhheMqo0xoydefWi1K2uZDg99tKPeQ== +"@abp/timeago@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-7.3.0-rc.3.tgz#029839955cb53195259d82a3e0c534d817d3862a" + integrity sha512-JuadVXb/Garz7L0aj1h+Ffg4Ut5eLSf6Ipz5mFM2Q1mzXNhA8crwQCtf+NLZdcNohJ7gbxDWyEQ2jgbYr4ryRw== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" timeago "^1.6.7" -"@abp/toastr@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.2.3.tgz#0ef7c24b232ca3d01d4ac5a7dff57800b0ebdcbf" - integrity sha512-2zNMQE6ArRULP6xl+M66/EY83ZrXfNY+sNHUkmZH4uqfGhqR/ijKIQm1quxCLDmUcAjRr1kzu8BCc98pc9tfFw== +"@abp/toastr@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-7.3.0-rc.3.tgz#537afff62261482bbb21b50a9d503579fd71936d" + integrity sha512-dsVS9F2iQRDn0RtzbLT1b3nH4JKDj8pHCWdxDR3nT/JHpJuAFEZPAqT1/VrNmZxSoo4jdeHn8/pkQtE4RDhv+Q== dependencies: - "@abp/jquery" "~7.2.3" + "@abp/jquery" "~7.3.0-rc.3" toastr "^2.1.4" -"@abp/utils@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.2.3.tgz#f384ba76b2948dbc8c49a453a343facda0825e2c" - integrity sha512-hejxDJhSI9Kor4mS9c/JHHQrW/wLXC/XMOJMUcBVkX/5IQd9GU9EW63oalNQyVA3gz3h5obnb0Qcfdv65wc5Pg== +"@abp/utils@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-7.3.0-rc.3.tgz#4d4e50dac717cae3e368bfe4fd3ce11f6df0e732" + integrity sha512-sMF2QGhRgbJW8PJtpVBrkiPAgofyfflUGmxNVbbx/HSOR3duFW0TNoXpTvxdP2v9k/SYe4i5XtLmv+mKPyttCw== dependencies: - just-compare "^1.3.0" + just-compare "^2.3.0" -"@abp/virtual-file-explorer@~7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@abp/virtual-file-explorer/-/virtual-file-explorer-7.2.3.tgz#c0c53a80cdd848b94957205a5de4ceb63b0fa528" - integrity sha512-stB6v1QCgX6Txynatc98RS4+6afgcaoaurqfB11jw6EOOMMVsXAlGA8EcmZeIDrzaPM++pd13rfvtfcaTCvgrg== +"@abp/virtual-file-explorer@~7.3.0-rc.3": + version "7.3.0-rc.3" + resolved "https://registry.yarnpkg.com/@abp/virtual-file-explorer/-/virtual-file-explorer-7.3.0-rc.3.tgz#139da093741b04258482a60d6870822630a708c0" + integrity sha512-/XMV83m82HGST2lpNDXB5w1ZCduUTo/SoTtfuBV53+6o3p3XHX1tyKySN8iIoW80X9jeUOFODTmFHPltqbAOIQ== dependencies: - "@abp/clipboard" "~7.2.3" - "@abp/prismjs" "~7.2.3" + "@abp/clipboard" "~7.3.0-rc.3" + "@abp/prismjs" "~7.3.0-rc.3" "@fortawesome/fontawesome-free@^5.15.4": version "5.15.4" @@ -1486,10 +1486,10 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== -just-compare@^1.3.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-1.5.1.tgz#aed7e93e6bae9c3b69d79aea7805684132a0c0c5" - integrity sha512-xDEEFHNIyJNmN4uo/2RVeUcay9THtN/5ka/iw98Y/gsa8w9KXZQuyaf5eFUY6VlntA2+G+bdPmdhqqTs7T+BRw== +just-compare@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/just-compare/-/just-compare-2.3.0.tgz#a2adcc1d1940536263275f5a1ef1298bcacfeda7" + integrity sha512-6shoR7HDT+fzfL3gBahx1jZG3hWLrhPAf+l7nCwahDdT9XDtosB9kIF0ZrzUp5QY8dJWfQVr5rnsPqsbvflDzg== just-debounce@^1.0.0: version "1.1.0" diff --git a/npm/lerna.json b/npm/lerna.json index abbd340835..e49db84305 100644 --- a/npm/lerna.json +++ b/npm/lerna.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "packages": [ "packs/*" ], diff --git a/npm/ng-packs/package.json b/npm/ng-packs/package.json index c554a5efbb..402d3225cc 100644 --- a/npm/ng-packs/package.json +++ b/npm/ng-packs/package.json @@ -44,20 +44,20 @@ }, "private": true, "devDependencies": { - "@abp/ng.account": "~7.3.0-rc.2", - "@abp/ng.account.core": "~7.3.0-rc.2", - "@abp/ng.core": "~7.3.0-rc.2", - "@abp/ng.feature-management": "~7.3.0-rc.2", - "@abp/ng.identity": "~7.3.0-rc.2", - "@abp/ng.oauth": "~7.3.0-rc.2", - "@abp/ng.permission-management": "~7.3.0-rc.2", - "@abp/ng.schematics": "~7.3.0-rc.2", - "@abp/ng.setting-management": "~7.3.0-rc.2", - "@abp/ng.tenant-management": "~7.3.0-rc.2", - "@abp/ng.theme.basic": "~7.3.0-rc.2", + "@abp/ng.account": "~7.3.0-rc.3", + "@abp/ng.account.core": "~7.3.0-rc.3", + "@abp/ng.core": "~7.3.0-rc.3", + "@abp/ng.feature-management": "~7.3.0-rc.3", + "@abp/ng.identity": "~7.3.0-rc.3", + "@abp/ng.oauth": "~7.3.0-rc.3", + "@abp/ng.permission-management": "~7.3.0-rc.3", + "@abp/ng.schematics": "~7.3.0-rc.3", + "@abp/ng.setting-management": "~7.3.0-rc.3", + "@abp/ng.tenant-management": "~7.3.0-rc.3", + "@abp/ng.theme.basic": "~7.3.0-rc.3", "@abp/ng.theme.lepton-x": "^2.3.0-rc.1", - "@abp/ng.theme.shared": "~7.3.0-rc.2", - "@abp/utils": "~7.3.0-rc.2", + "@abp/ng.theme.shared": "~7.3.0-rc.3", + "@abp/utils": "~7.3.0-rc.3", "@angular-devkit/build-angular": "16.0.1", "@angular-devkit/core": "16.0.1", "@angular-devkit/schematics": "16.0.1", diff --git a/npm/ng-packs/packages/account-core/package.json b/npm/ng-packs/packages/account-core/package.json index 5e18e55d73..541ac9a318 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "peerDependencies": { - "@abp/ng.core": "~7.3.0-rc.2", - "@abp/ng.theme.shared": "~7.3.0-rc.2", + "@abp/ng.core": "~7.3.0-rc.3", + "@abp/ng.theme.shared": "~7.3.0-rc.3", "@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 2957ac64b7..df1c304ca9 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.account.core": "~7.3.0-rc.2", - "@abp/ng.theme.shared": "~7.3.0-rc.2", + "@abp/ng.account.core": "~7.3.0-rc.3", + "@abp/ng.theme.shared": "~7.3.0-rc.3", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/components/package.json b/npm/ng-packs/packages/components/package.json index 9787e0592f..49631fb5b0 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "peerDependencies": { - "@abp/ng.core": ">=7.3.0-rc.2", - "@abp/ng.theme.shared": ">=7.3.0-rc.2" + "@abp/ng.core": ">=7.3.0-rc.3", + "@abp/ng.theme.shared": ">=7.3.0-rc.3" }, "dependencies": { "chart.js": "^3.5.1", diff --git a/npm/ng-packs/packages/core/package.json b/npm/ng-packs/packages/core/package.json index b0e53524e8..dfa59ceb30 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/utils": "~7.3.0-rc.2", + "@abp/utils": "~7.3.0-rc.3", "angular-oauth2-oidc": "^15.0.1", "just-clone": "^6.1.1", "just-compare": "^2.3.0", diff --git a/npm/ng-packs/packages/feature-management/package.json b/npm/ng-packs/packages/feature-management/package.json index da7b35c8de..fa76df228d 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.theme.shared": "~7.3.0-rc.2", + "@abp/ng.theme.shared": "~7.3.0-rc.3", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/generators/package.json b/npm/ng-packs/packages/generators/package.json index 3e5bcfafa4..92109b84b6 100644 --- a/npm/ng-packs/packages/generators/package.json +++ b/npm/ng-packs/packages/generators/package.json @@ -1,6 +1,6 @@ { "name": "@abp/nx.generators", - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "generators": "./generators.json", "type": "commonjs", diff --git a/npm/ng-packs/packages/identity/package.json b/npm/ng-packs/packages/identity/package.json index 41391a8335..68b1788548 100644 --- a/npm/ng-packs/packages/identity/package.json +++ b/npm/ng-packs/packages/identity/package.json @@ -1,15 +1,15 @@ { "name": "@abp/ng.identity", - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.components": "~7.3.0-rc.2", - "@abp/ng.permission-management": "~7.3.0-rc.2", - "@abp/ng.theme.shared": "~7.3.0-rc.2", + "@abp/ng.components": "~7.3.0-rc.3", + "@abp/ng.permission-management": "~7.3.0-rc.3", + "@abp/ng.theme.shared": "~7.3.0-rc.3", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/oauth/package.json b/npm/ng-packs/packages/oauth/package.json index 8fa11d8b48..135325ef43 100644 --- a/npm/ng-packs/packages/oauth/package.json +++ b/npm/ng-packs/packages/oauth/package.json @@ -1,14 +1,14 @@ { "name": "@abp/ng.oauth", - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.core": "~7.3.0-rc.2", - "@abp/utils": "~7.3.0-rc.2", + "@abp/ng.core": "~7.3.0-rc.3", + "@abp/utils": "~7.3.0-rc.3", "angular-oauth2-oidc": "^15.0.1", "just-clone": "^6.1.1", "just-compare": "^2.3.0", diff --git a/npm/ng-packs/packages/permission-management/package.json b/npm/ng-packs/packages/permission-management/package.json index 21a2859c74..77be02ce5d 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.theme.shared": "~7.3.0-rc.2", + "@abp/ng.theme.shared": "~7.3.0-rc.3", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/schematics/package.json b/npm/ng-packs/packages/schematics/package.json index c405c59478..3790f409fb 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "author": "", "schematics": "./collection.json", "dependencies": { diff --git a/npm/ng-packs/packages/setting-management/package.json b/npm/ng-packs/packages/setting-management/package.json index 3195b966d5..b42db9227c 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.components": "~7.3.0-rc.2", - "@abp/ng.theme.shared": "~7.3.0-rc.2", + "@abp/ng.components": "~7.3.0-rc.3", + "@abp/ng.theme.shared": "~7.3.0-rc.3", "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 4e455dee64..1347ad7ff8 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.feature-management": "~7.3.0-rc.2", - "@abp/ng.theme.shared": "~7.3.0-rc.2", + "@abp/ng.feature-management": "~7.3.0-rc.3", + "@abp/ng.theme.shared": "~7.3.0-rc.3", "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 bfa893e125..1e6b38cf5d 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.account.core": "~7.3.0-rc.2", - "@abp/ng.theme.shared": "~7.3.0-rc.2", + "@abp/ng.account.core": "~7.3.0-rc.3", + "@abp/ng.theme.shared": "~7.3.0-rc.3", "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 a61a7b44c8..9ae9a7e32e 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.core": "~7.3.0-rc.2", + "@abp/ng.core": "~7.3.0-rc.3", "@fortawesome/fontawesome-free": "^5.15.4", "@ng-bootstrap/ng-bootstrap": "^15.0.0", "@ngx-validate/core": "^0.2.0", diff --git a/npm/packs/anchor-js/package.json b/npm/packs/anchor-js/package.json index 714d0d295e..6b2794d943 100644 --- a/npm/packs/anchor-js/package.json +++ b/npm/packs/anchor-js/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/anchor-js", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "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 55cfebdebf..873cee969a 100644 --- a/npm/packs/aspnetcore.components.server.basictheme/package.json +++ b/npm/packs/aspnetcore.components.server.basictheme/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/aspnetcore.components.server.basictheme", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/aspnetcore.components.server.theming": "~7.3.0-rc.2" + "@abp/aspnetcore.components.server.theming": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/aspnetcore.components.server.theming/package.json b/npm/packs/aspnetcore.components.server.theming/package.json index 7f3f3ce7b2..12cadd7e9f 100644 --- a/npm/packs/aspnetcore.components.server.theming/package.json +++ b/npm/packs/aspnetcore.components.server.theming/package.json @@ -1,12 +1,12 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/aspnetcore.components.server.theming", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/bootstrap": "~7.3.0-rc.2", - "@abp/font-awesome": "~7.3.0-rc.2" + "@abp/bootstrap": "~7.3.0-rc.3", + "@abp/font-awesome": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json b/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json index 62e1781f4e..208e6c0644 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/aspnetcore.mvc.ui.theme.basic", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.shared": "~7.3.0-rc.2" + "@abp/aspnetcore.mvc.ui.theme.shared": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json b/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json index 18c3f3f5fd..b6981d17a7 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/aspnetcore.mvc.ui.theme.shared", "repository": { "type": "git", @@ -10,22 +10,22 @@ "access": "public" }, "dependencies": { - "@abp/aspnetcore.mvc.ui": "~7.3.0-rc.2", - "@abp/bootstrap": "~7.3.0-rc.2", - "@abp/bootstrap-datepicker": "~7.3.0-rc.2", - "@abp/bootstrap-daterangepicker": "~7.3.0-rc.2", - "@abp/datatables.net-bs5": "~7.3.0-rc.2", - "@abp/font-awesome": "~7.3.0-rc.2", - "@abp/jquery-form": "~7.3.0-rc.2", - "@abp/jquery-validation-unobtrusive": "~7.3.0-rc.2", - "@abp/lodash": "~7.3.0-rc.2", - "@abp/luxon": "~7.3.0-rc.2", - "@abp/malihu-custom-scrollbar-plugin": "~7.3.0-rc.2", - "@abp/moment": "~7.3.0-rc.2", - "@abp/select2": "~7.3.0-rc.2", - "@abp/sweetalert2": "~7.3.0-rc.2", - "@abp/timeago": "~7.3.0-rc.2", - "@abp/toastr": "~7.3.0-rc.2" + "@abp/aspnetcore.mvc.ui": "~7.3.0-rc.3", + "@abp/bootstrap": "~7.3.0-rc.3", + "@abp/bootstrap-datepicker": "~7.3.0-rc.3", + "@abp/bootstrap-daterangepicker": "~7.3.0-rc.3", + "@abp/datatables.net-bs5": "~7.3.0-rc.3", + "@abp/font-awesome": "~7.3.0-rc.3", + "@abp/jquery-form": "~7.3.0-rc.3", + "@abp/jquery-validation-unobtrusive": "~7.3.0-rc.3", + "@abp/lodash": "~7.3.0-rc.3", + "@abp/luxon": "~7.3.0-rc.3", + "@abp/malihu-custom-scrollbar-plugin": "~7.3.0-rc.3", + "@abp/moment": "~7.3.0-rc.3", + "@abp/select2": "~7.3.0-rc.3", + "@abp/sweetalert2": "~7.3.0-rc.3", + "@abp/timeago": "~7.3.0-rc.3", + "@abp/toastr": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/aspnetcore.mvc.ui/package-lock.json b/npm/packs/aspnetcore.mvc.ui/package-lock.json index 201fd593d5..80612381bf 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": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/npm/packs/aspnetcore.mvc.ui/package.json b/npm/packs/aspnetcore.mvc.ui/package.json index 384765e331..a473872abb 100644 --- a/npm/packs/aspnetcore.mvc.ui/package.json +++ b/npm/packs/aspnetcore.mvc.ui/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/aspnetcore.mvc.ui", "repository": { "type": "git", diff --git a/npm/packs/blogging/package.json b/npm/packs/blogging/package.json index bf8648ea16..fac0e1ca6a 100644 --- a/npm/packs/blogging/package.json +++ b/npm/packs/blogging/package.json @@ -1,14 +1,14 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/blogging", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.shared": "~7.3.0-rc.2", - "@abp/owl.carousel": "~7.3.0-rc.2", - "@abp/prismjs": "~7.3.0-rc.2", - "@abp/tui-editor": "~7.3.0-rc.2" + "@abp/aspnetcore.mvc.ui.theme.shared": "~7.3.0-rc.3", + "@abp/owl.carousel": "~7.3.0-rc.3", + "@abp/prismjs": "~7.3.0-rc.3", + "@abp/tui-editor": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/bootstrap-datepicker/package.json b/npm/packs/bootstrap-datepicker/package.json index 95c77cff61..9856b04d13 100644 --- a/npm/packs/bootstrap-datepicker/package.json +++ b/npm/packs/bootstrap-datepicker/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/bootstrap-datepicker", "repository": { "type": "git", diff --git a/npm/packs/bootstrap-daterangepicker/package.json b/npm/packs/bootstrap-daterangepicker/package.json index c0d732de63..553a30eb0c 100644 --- a/npm/packs/bootstrap-daterangepicker/package.json +++ b/npm/packs/bootstrap-daterangepicker/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/bootstrap-daterangepicker", "repository": { "type": "git", diff --git a/npm/packs/bootstrap/package.json b/npm/packs/bootstrap/package.json index 5ef768151d..f0ad9f74fd 100644 --- a/npm/packs/bootstrap/package.json +++ b/npm/packs/bootstrap/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/bootstrap", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "bootstrap": "^5.1.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/chart.js/package.json b/npm/packs/chart.js/package.json index 76e2176822..858a618a0d 100644 --- a/npm/packs/chart.js/package.json +++ b/npm/packs/chart.js/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/chart.js", "publishConfig": { "access": "public" diff --git a/npm/packs/clipboard/package.json b/npm/packs/clipboard/package.json index 9c8ce408df..0c55779131 100644 --- a/npm/packs/clipboard/package.json +++ b/npm/packs/clipboard/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/clipboard", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "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 bd4d15a957..502d57681b 100644 --- a/npm/packs/cms-kit.admin/package.json +++ b/npm/packs/cms-kit.admin/package.json @@ -1,15 +1,15 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/cms-kit.admin", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/codemirror": "~7.3.0-rc.2", - "@abp/jstree": "~7.3.0-rc.2", - "@abp/slugify": "~7.3.0-rc.2", - "@abp/tui-editor": "~7.3.0-rc.2", - "@abp/uppy": "~7.3.0-rc.2" + "@abp/codemirror": "~7.3.0-rc.3", + "@abp/jstree": "~7.3.0-rc.3", + "@abp/slugify": "~7.3.0-rc.3", + "@abp/tui-editor": "~7.3.0-rc.3", + "@abp/uppy": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/cms-kit.public/package.json b/npm/packs/cms-kit.public/package.json index bc469beb0c..f13b289b64 100644 --- a/npm/packs/cms-kit.public/package.json +++ b/npm/packs/cms-kit.public/package.json @@ -1,12 +1,12 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/cms-kit.public", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/highlight.js": "~7.3.0-rc.2", - "@abp/star-rating-svg": "~7.3.0-rc.2" + "@abp/highlight.js": "~7.3.0-rc.3", + "@abp/star-rating-svg": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/cms-kit/package.json b/npm/packs/cms-kit/package.json index 9ee2453891..fd91311c9e 100644 --- a/npm/packs/cms-kit/package.json +++ b/npm/packs/cms-kit/package.json @@ -1,12 +1,12 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/cms-kit", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/cms-kit.admin": "~7.3.0-rc.2", - "@abp/cms-kit.public": "~7.3.0-rc.2" + "@abp/cms-kit.admin": "~7.3.0-rc.3", + "@abp/cms-kit.public": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/codemirror/package.json b/npm/packs/codemirror/package.json index 1875e8cfa7..f71d305df4 100644 --- a/npm/packs/codemirror/package.json +++ b/npm/packs/codemirror/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/codemirror", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "codemirror": "^5.65.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/core/package.json b/npm/packs/core/package.json index 5dece33156..f0e9c06270 100644 --- a/npm/packs/core/package.json +++ b/npm/packs/core/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/core", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/utils": "~7.3.0-rc.2" + "@abp/utils": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/cropperjs/package.json b/npm/packs/cropperjs/package.json index f0040a1bbe..60e67568e8 100644 --- a/npm/packs/cropperjs/package.json +++ b/npm/packs/cropperjs/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/cropperjs", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "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 9ee169fe4e..bbe4e70336 100644 --- a/npm/packs/datatables.net-bs4/package.json +++ b/npm/packs/datatables.net-bs4/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/datatables.net-bs4", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/datatables.net": "~7.3.0-rc.2", + "@abp/datatables.net": "~7.3.0-rc.3", "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 a8ae890513..b051455de5 100644 --- a/npm/packs/datatables.net-bs5/package.json +++ b/npm/packs/datatables.net-bs5/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/datatables.net-bs5", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/datatables.net": "~7.3.0-rc.2", + "@abp/datatables.net": "~7.3.0-rc.3", "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 223921e01c..3d808190ff 100644 --- a/npm/packs/datatables.net/package.json +++ b/npm/packs/datatables.net/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/datatables.net", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~7.3.0-rc.2", + "@abp/jquery": "~7.3.0-rc.3", "datatables.net": "^1.11.4" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/docs/package.json b/npm/packs/docs/package.json index 0ae4c870e7..f0f3d13f07 100644 --- a/npm/packs/docs/package.json +++ b/npm/packs/docs/package.json @@ -1,15 +1,15 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/docs", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/anchor-js": "~7.3.0-rc.2", - "@abp/clipboard": "~7.3.0-rc.2", - "@abp/malihu-custom-scrollbar-plugin": "~7.3.0-rc.2", - "@abp/popper.js": "~7.3.0-rc.2", - "@abp/prismjs": "~7.3.0-rc.2" + "@abp/anchor-js": "~7.3.0-rc.3", + "@abp/clipboard": "~7.3.0-rc.3", + "@abp/malihu-custom-scrollbar-plugin": "~7.3.0-rc.3", + "@abp/popper.js": "~7.3.0-rc.3", + "@abp/prismjs": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/flag-icon-css/package.json b/npm/packs/flag-icon-css/package.json index dd4767c05f..39f2a2fb2c 100644 --- a/npm/packs/flag-icon-css/package.json +++ b/npm/packs/flag-icon-css/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/flag-icon-css", "publishConfig": { "access": "public" diff --git a/npm/packs/flag-icons/package.json b/npm/packs/flag-icons/package.json index ba63279a50..9fa25e2fc6 100644 --- a/npm/packs/flag-icons/package.json +++ b/npm/packs/flag-icons/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/flag-icons", "publishConfig": { "access": "public" diff --git a/npm/packs/font-awesome/package.json b/npm/packs/font-awesome/package.json index 29688f2fba..0d7b2d7a6a 100644 --- a/npm/packs/font-awesome/package.json +++ b/npm/packs/font-awesome/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/font-awesome", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "@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 805b41f2df..3b86d307ee 100644 --- a/npm/packs/highlight.js/package.json +++ b/npm/packs/highlight.js/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/highlight.js", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "@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 abf766a3cc..2d3e6f113f 100644 --- a/npm/packs/jquery-form/package.json +++ b/npm/packs/jquery-form/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/jquery-form", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~7.3.0-rc.2", + "@abp/jquery": "~7.3.0-rc.3", "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 49abdd6696..c7a17ccf17 100644 --- a/npm/packs/jquery-validation-unobtrusive/package.json +++ b/npm/packs/jquery-validation-unobtrusive/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/jquery-validation-unobtrusive", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery-validation": "~7.3.0-rc.2", + "@abp/jquery-validation": "~7.3.0-rc.3", "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 bdf853d4f3..7b5b99a070 100644 --- a/npm/packs/jquery-validation/package.json +++ b/npm/packs/jquery-validation/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/jquery-validation", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~7.3.0-rc.2", + "@abp/jquery": "~7.3.0-rc.3", "jquery-validation": "^1.19.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/jquery/package.json b/npm/packs/jquery/package.json index 1c5e53e79e..afa55e5a89 100644 --- a/npm/packs/jquery/package.json +++ b/npm/packs/jquery/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/jquery", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "jquery": "~3.6.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/jstree/package.json b/npm/packs/jstree/package.json index 052be8cc5b..fd5afe1c04 100644 --- a/npm/packs/jstree/package.json +++ b/npm/packs/jstree/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/jstree", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~7.3.0-rc.2", + "@abp/jquery": "~7.3.0-rc.3", "jstree": "^3.3.12" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/lodash/package.json b/npm/packs/lodash/package.json index fdd14484c4..58f4cf7021 100644 --- a/npm/packs/lodash/package.json +++ b/npm/packs/lodash/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/lodash", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "lodash": "^4.17.21" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/luxon/package.json b/npm/packs/luxon/package.json index 90d5f1ffa2..6584459d06 100644 --- a/npm/packs/luxon/package.json +++ b/npm/packs/luxon/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/luxon", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "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 dc8bb2bbb2..3421de59aa 100644 --- a/npm/packs/malihu-custom-scrollbar-plugin/package.json +++ b/npm/packs/malihu-custom-scrollbar-plugin/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/malihu-custom-scrollbar-plugin", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "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 ba4be8246e..afa9a45da4 100644 --- a/npm/packs/markdown-it/package.json +++ b/npm/packs/markdown-it/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/markdown-it", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "markdown-it": "^12.3.2" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/moment/package.json b/npm/packs/moment/package.json index 8370951595..dd7ccab5e7 100644 --- a/npm/packs/moment/package.json +++ b/npm/packs/moment/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/moment", "repository": { "type": "git", diff --git a/npm/packs/owl.carousel/package.json b/npm/packs/owl.carousel/package.json index 665ad4c14b..6c1ccbcff0 100644 --- a/npm/packs/owl.carousel/package.json +++ b/npm/packs/owl.carousel/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/owl.carousel", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "owl.carousel": "^2.3.4" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/popper.js/package.json b/npm/packs/popper.js/package.json index 8c99b70e1e..f19b66a125 100644 --- a/npm/packs/popper.js/package.json +++ b/npm/packs/popper.js/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/popper.js", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "@popperjs/core": "^2.11.2" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/prismjs/package.json b/npm/packs/prismjs/package.json index 88e1cfd373..f154a52dad 100644 --- a/npm/packs/prismjs/package.json +++ b/npm/packs/prismjs/package.json @@ -1,12 +1,12 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/prismjs", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/clipboard": "~7.3.0-rc.2", - "@abp/core": "~7.3.0-rc.2", + "@abp/clipboard": "~7.3.0-rc.3", + "@abp/core": "~7.3.0-rc.3", "prismjs": "^1.26.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/qrcode/package.json b/npm/packs/qrcode/package.json index d9ac3cb61a..42f2853e1c 100644 --- a/npm/packs/qrcode/package.json +++ b/npm/packs/qrcode/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/qrcode", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2" + "@abp/core": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/select2/package.json b/npm/packs/select2/package.json index b0e7490286..9cc5509cc3 100644 --- a/npm/packs/select2/package.json +++ b/npm/packs/select2/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/select2", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "select2": "^4.0.13" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/signalr/package.json b/npm/packs/signalr/package.json index 679ab1aac5..34db7cd235 100644 --- a/npm/packs/signalr/package.json +++ b/npm/packs/signalr/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/signalr", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "@microsoft/signalr": "~6.0.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/slugify/package.json b/npm/packs/slugify/package.json index ebd0bf97da..a3e6fd034f 100644 --- a/npm/packs/slugify/package.json +++ b/npm/packs/slugify/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "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 17bc716b0c..d61312caa0 100644 --- a/npm/packs/star-rating-svg/package.json +++ b/npm/packs/star-rating-svg/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/star-rating-svg", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~7.3.0-rc.2", + "@abp/jquery": "~7.3.0-rc.3", "star-rating-svg": "^3.5.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/sweetalert2/package.json b/npm/packs/sweetalert2/package.json index bb3a08199f..db9b3a9886 100644 --- a/npm/packs/sweetalert2/package.json +++ b/npm/packs/sweetalert2/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/sweetalert2", "publishConfig": { "access": "public" @@ -10,7 +10,7 @@ "directory": "npm/packs/sweetalert2" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "sweetalert2": "^11.3.6" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/timeago/package.json b/npm/packs/timeago/package.json index febaef1007..dbcec9b0e0 100644 --- a/npm/packs/timeago/package.json +++ b/npm/packs/timeago/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/timeago", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~7.3.0-rc.2", + "@abp/jquery": "~7.3.0-rc.3", "timeago": "^1.6.7" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/toastr/package.json b/npm/packs/toastr/package.json index fc8eecdf3f..6081d11d84 100644 --- a/npm/packs/toastr/package.json +++ b/npm/packs/toastr/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/toastr", "repository": { "type": "git", @@ -10,7 +10,7 @@ "access": "public" }, "dependencies": { - "@abp/jquery": "~7.3.0-rc.2", + "@abp/jquery": "~7.3.0-rc.3", "toastr": "^2.1.4" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/tui-editor/package.json b/npm/packs/tui-editor/package.json index f49db9d5fe..17cbcb4a18 100644 --- a/npm/packs/tui-editor/package.json +++ b/npm/packs/tui-editor/package.json @@ -1,12 +1,12 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/tui-editor", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~7.3.0-rc.2", - "@abp/prismjs": "~7.3.0-rc.2" + "@abp/jquery": "~7.3.0-rc.3", + "@abp/prismjs": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/uppy/package.json b/npm/packs/uppy/package.json index bc398c6928..ee7a251b23 100644 --- a/npm/packs/uppy/package.json +++ b/npm/packs/uppy/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/uppy", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~7.3.0-rc.2", + "@abp/core": "~7.3.0-rc.3", "uppy": "^1.16.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", diff --git a/npm/packs/utils/package.json b/npm/packs/utils/package.json index 168222929e..b38c95935e 100644 --- a/npm/packs/utils/package.json +++ b/npm/packs/utils/package.json @@ -1,6 +1,6 @@ { "name": "@abp/utils", - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "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 6139d08235..b9ddc938a2 100644 --- a/npm/packs/vee-validate/package.json +++ b/npm/packs/vee-validate/package.json @@ -1,11 +1,11 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/vee-validate", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/vue": "~7.3.0-rc.2", + "@abp/vue": "~7.3.0-rc.3", "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 00ad4cda2b..31b7915d1c 100644 --- a/npm/packs/virtual-file-explorer/package.json +++ b/npm/packs/virtual-file-explorer/package.json @@ -1,12 +1,12 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/virtual-file-explorer", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/clipboard": "~7.3.0-rc.2", - "@abp/prismjs": "~7.3.0-rc.2" + "@abp/clipboard": "~7.3.0-rc.3", + "@abp/prismjs": "~7.3.0-rc.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431", "homepage": "https://abp.io", diff --git a/npm/packs/vue/package.json b/npm/packs/vue/package.json index 8de327e4c0..481392239e 100644 --- a/npm/packs/vue/package.json +++ b/npm/packs/vue/package.json @@ -1,5 +1,5 @@ { - "version": "7.3.0-rc.2", + "version": "7.3.0-rc.3", "name": "@abp/vue", "publishConfig": { "access": "public" diff --git a/source-code/Volo.Abp.Account.SourceCode/Volo.Abp.Account.SourceCode.zip b/source-code/Volo.Abp.Account.SourceCode/Volo.Abp.Account.SourceCode.zip index 373138fd4e..5d078ba04c 100644 Binary files a/source-code/Volo.Abp.Account.SourceCode/Volo.Abp.Account.SourceCode.zip and b/source-code/Volo.Abp.Account.SourceCode/Volo.Abp.Account.SourceCode.zip differ diff --git a/source-code/Volo.Abp.AuditLogging.SourceCode/Volo.Abp.AuditLogging.SourceCode.zip b/source-code/Volo.Abp.AuditLogging.SourceCode/Volo.Abp.AuditLogging.SourceCode.zip index 91a7998c69..ff553ae4c3 100644 Binary files a/source-code/Volo.Abp.AuditLogging.SourceCode/Volo.Abp.AuditLogging.SourceCode.zip and b/source-code/Volo.Abp.AuditLogging.SourceCode/Volo.Abp.AuditLogging.SourceCode.zip differ diff --git a/source-code/Volo.Abp.BackgroundJobs.SourceCode/Volo.Abp.BackgroundJobs.SourceCode.zip b/source-code/Volo.Abp.BackgroundJobs.SourceCode/Volo.Abp.BackgroundJobs.SourceCode.zip index 0e0148c34e..d68485ceae 100644 Binary files a/source-code/Volo.Abp.BackgroundJobs.SourceCode/Volo.Abp.BackgroundJobs.SourceCode.zip and b/source-code/Volo.Abp.BackgroundJobs.SourceCode/Volo.Abp.BackgroundJobs.SourceCode.zip differ diff --git a/source-code/Volo.Abp.BasicTheme.SourceCode/Volo.Abp.BasicTheme.SourceCode.zip b/source-code/Volo.Abp.BasicTheme.SourceCode/Volo.Abp.BasicTheme.SourceCode.zip index 8169f5ec15..aba771980b 100644 Binary files a/source-code/Volo.Abp.BasicTheme.SourceCode/Volo.Abp.BasicTheme.SourceCode.zip and b/source-code/Volo.Abp.BasicTheme.SourceCode/Volo.Abp.BasicTheme.SourceCode.zip differ diff --git a/source-code/Volo.Abp.BlobStoring.Database.SourceCode/Volo.Abp.BlobStoring.Database.SourceCode.zip b/source-code/Volo.Abp.BlobStoring.Database.SourceCode/Volo.Abp.BlobStoring.Database.SourceCode.zip index aa45730515..b3fa3ea2d0 100644 Binary files a/source-code/Volo.Abp.BlobStoring.Database.SourceCode/Volo.Abp.BlobStoring.Database.SourceCode.zip and b/source-code/Volo.Abp.BlobStoring.Database.SourceCode/Volo.Abp.BlobStoring.Database.SourceCode.zip differ diff --git a/source-code/Volo.Abp.FeatureManagement.SourceCode/Volo.Abp.FeatureManagement.SourceCode.zip b/source-code/Volo.Abp.FeatureManagement.SourceCode/Volo.Abp.FeatureManagement.SourceCode.zip index 1e8afd56c1..2ea90c276e 100644 Binary files a/source-code/Volo.Abp.FeatureManagement.SourceCode/Volo.Abp.FeatureManagement.SourceCode.zip and b/source-code/Volo.Abp.FeatureManagement.SourceCode/Volo.Abp.FeatureManagement.SourceCode.zip differ diff --git a/source-code/Volo.Abp.Identity.SourceCode/Volo.Abp.Identity.SourceCode.zip b/source-code/Volo.Abp.Identity.SourceCode/Volo.Abp.Identity.SourceCode.zip index c6b51a42bc..0a3d953126 100644 Binary files a/source-code/Volo.Abp.Identity.SourceCode/Volo.Abp.Identity.SourceCode.zip and b/source-code/Volo.Abp.Identity.SourceCode/Volo.Abp.Identity.SourceCode.zip differ diff --git a/source-code/Volo.Abp.IdentityServer.SourceCode/Volo.Abp.IdentityServer.SourceCode.zip b/source-code/Volo.Abp.IdentityServer.SourceCode/Volo.Abp.IdentityServer.SourceCode.zip index f05a521bbf..152d8d6690 100644 Binary files a/source-code/Volo.Abp.IdentityServer.SourceCode/Volo.Abp.IdentityServer.SourceCode.zip and b/source-code/Volo.Abp.IdentityServer.SourceCode/Volo.Abp.IdentityServer.SourceCode.zip differ diff --git a/source-code/Volo.Abp.OpenIddict.SourceCode/Volo.Abp.OpenIddict.SourceCode.zip b/source-code/Volo.Abp.OpenIddict.SourceCode/Volo.Abp.OpenIddict.SourceCode.zip index 96b51ecbea..f3e01de6ba 100644 Binary files a/source-code/Volo.Abp.OpenIddict.SourceCode/Volo.Abp.OpenIddict.SourceCode.zip and b/source-code/Volo.Abp.OpenIddict.SourceCode/Volo.Abp.OpenIddict.SourceCode.zip differ diff --git a/source-code/Volo.Abp.PermissionManagement.SourceCode/Volo.Abp.PermissionManagement.SourceCode.zip b/source-code/Volo.Abp.PermissionManagement.SourceCode/Volo.Abp.PermissionManagement.SourceCode.zip index ba25c7d097..ead250a99e 100644 Binary files a/source-code/Volo.Abp.PermissionManagement.SourceCode/Volo.Abp.PermissionManagement.SourceCode.zip and b/source-code/Volo.Abp.PermissionManagement.SourceCode/Volo.Abp.PermissionManagement.SourceCode.zip differ diff --git a/source-code/Volo.Abp.SettingManagement.SourceCode/Volo.Abp.SettingManagement.SourceCode.zip b/source-code/Volo.Abp.SettingManagement.SourceCode/Volo.Abp.SettingManagement.SourceCode.zip index 94547b3ae0..e85352e0c2 100644 Binary files a/source-code/Volo.Abp.SettingManagement.SourceCode/Volo.Abp.SettingManagement.SourceCode.zip and b/source-code/Volo.Abp.SettingManagement.SourceCode/Volo.Abp.SettingManagement.SourceCode.zip differ diff --git a/source-code/Volo.Abp.TenantManagement.SourceCode/Volo.Abp.TenantManagement.SourceCode.zip b/source-code/Volo.Abp.TenantManagement.SourceCode/Volo.Abp.TenantManagement.SourceCode.zip index 1e8387c5a8..9c7830b1e7 100644 Binary files a/source-code/Volo.Abp.TenantManagement.SourceCode/Volo.Abp.TenantManagement.SourceCode.zip and b/source-code/Volo.Abp.TenantManagement.SourceCode/Volo.Abp.TenantManagement.SourceCode.zip differ diff --git a/source-code/Volo.Abp.Users.SourceCode/Volo.Abp.Users.SourceCode.zip b/source-code/Volo.Abp.Users.SourceCode/Volo.Abp.Users.SourceCode.zip index 2fc65caa4d..555ea7fd43 100644 Binary files a/source-code/Volo.Abp.Users.SourceCode/Volo.Abp.Users.SourceCode.zip and b/source-code/Volo.Abp.Users.SourceCode/Volo.Abp.Users.SourceCode.zip differ diff --git a/source-code/Volo.Abp.VirtualFileExplorer.SourceCode/Volo.Abp.VirtualFileExplorer.SourceCode.zip b/source-code/Volo.Abp.VirtualFileExplorer.SourceCode/Volo.Abp.VirtualFileExplorer.SourceCode.zip index e96f3bb775..d4a3170113 100644 Binary files a/source-code/Volo.Abp.VirtualFileExplorer.SourceCode/Volo.Abp.VirtualFileExplorer.SourceCode.zip and b/source-code/Volo.Abp.VirtualFileExplorer.SourceCode/Volo.Abp.VirtualFileExplorer.SourceCode.zip differ diff --git a/source-code/Volo.Blogging.SourceCode/Volo.Blogging.SourceCode.zip b/source-code/Volo.Blogging.SourceCode/Volo.Blogging.SourceCode.zip index 9b2bb1e51c..11a5773f1b 100644 Binary files a/source-code/Volo.Blogging.SourceCode/Volo.Blogging.SourceCode.zip and b/source-code/Volo.Blogging.SourceCode/Volo.Blogging.SourceCode.zip differ diff --git a/source-code/Volo.ClientSimulation.SourceCode/Volo.ClientSimulation.SourceCode.zip b/source-code/Volo.ClientSimulation.SourceCode/Volo.ClientSimulation.SourceCode.zip index 2077fabd49..ebfa011cd0 100644 Binary files a/source-code/Volo.ClientSimulation.SourceCode/Volo.ClientSimulation.SourceCode.zip and b/source-code/Volo.ClientSimulation.SourceCode/Volo.ClientSimulation.SourceCode.zip differ diff --git a/source-code/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.zip b/source-code/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.zip index 9088a8fa23..2325fc82c1 100644 Binary files a/source-code/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.zip and b/source-code/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.zip differ diff --git a/source-code/Volo.Docs.SourceCode/Volo.Docs.SourceCode.zip b/source-code/Volo.Docs.SourceCode/Volo.Docs.SourceCode.zip index 941562fed2..9057c4e748 100644 Binary files a/source-code/Volo.Docs.SourceCode/Volo.Docs.SourceCode.zip and b/source-code/Volo.Docs.SourceCode/Volo.Docs.SourceCode.zip differ diff --git a/templates/app-nolayers/angular/package.json b/templates/app-nolayers/angular/package.json index 5601f5c730..524bd69c9e 100644 --- a/templates/app-nolayers/angular/package.json +++ b/templates/app-nolayers/angular/package.json @@ -12,14 +12,14 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~7.3.0-rc.2", - "@abp/ng.components": "~7.3.0-rc.2", - "@abp/ng.core": "~7.3.0-rc.2", - "@abp/ng.oauth": "~7.3.0-rc.2", - "@abp/ng.identity": "~7.3.0-rc.2", - "@abp/ng.setting-management": "~7.3.0-rc.2", - "@abp/ng.tenant-management": "~7.3.0-rc.2", - "@abp/ng.theme.shared": "~7.3.0-rc.2", + "@abp/ng.account": "~7.3.0-rc.3", + "@abp/ng.components": "~7.3.0-rc.3", + "@abp/ng.core": "~7.3.0-rc.3", + "@abp/ng.oauth": "~7.3.0-rc.3", + "@abp/ng.identity": "~7.3.0-rc.3", + "@abp/ng.setting-management": "~7.3.0-rc.3", + "@abp/ng.tenant-management": "~7.3.0-rc.3", + "@abp/ng.theme.shared": "~7.3.0-rc.3", "@abp/ng.theme.lepton-x": "~2.3.0-rc.1", "@angular/animations": "^16.0.2", "@angular/common": "^16.0.2", @@ -36,7 +36,7 @@ "zone.js": "~0.13.0" }, "devDependencies": { - "@abp/ng.schematics": "~7.3.0-rc.2", + "@abp/ng.schematics": "~7.3.0-rc.3", "@angular-devkit/build-angular": "~16.0.0", "@angular-eslint/builder": "~16.0.0", "@angular-eslint/eslint-plugin": "~16.0.0", diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json index c0940ec1d7..694e8bbc23 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.components.server.leptonxlitetheme": "~2.2.1", - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1" + "@abp/aspnetcore.components.server.leptonxlitetheme": "~2.2.2", + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/package.json index 1abb5b0090..54e8ed1f47 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1", - "@abp/aspnetcore.components.server.leptonxlitetheme": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2", + "@abp/aspnetcore.components.server.leptonxlitetheme": "~2.2.2" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/package.json index af067966a5..f906e884cf 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/package.json index af067966a5..f906e884cf 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/package.json index af067966a5..f906e884cf 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/package.json index af067966a5..f906e884cf 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/package.json index af067966a5..f906e884cf 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2" } } diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/package.json b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/package.json index af067966a5..f906e884cf 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/package.json +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2" } } diff --git a/templates/app/angular/package.json b/templates/app/angular/package.json index ad57dd86b5..3ad80ac931 100644 --- a/templates/app/angular/package.json +++ b/templates/app/angular/package.json @@ -12,14 +12,14 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~7.3.0-rc.2", - "@abp/ng.components": "~7.3.0-rc.2", - "@abp/ng.core": "~7.3.0-rc.2", - "@abp/ng.oauth": "~7.3.0-rc.2", - "@abp/ng.identity": "~7.3.0-rc.2", - "@abp/ng.setting-management": "~7.3.0-rc.2", - "@abp/ng.tenant-management": "~7.3.0-rc.2", - "@abp/ng.theme.shared": "~7.3.0-rc.2", + "@abp/ng.account": "~7.3.0-rc.3", + "@abp/ng.components": "~7.3.0-rc.3", + "@abp/ng.core": "~7.3.0-rc.3", + "@abp/ng.oauth": "~7.3.0-rc.3", + "@abp/ng.identity": "~7.3.0-rc.3", + "@abp/ng.setting-management": "~7.3.0-rc.3", + "@abp/ng.tenant-management": "~7.3.0-rc.3", + "@abp/ng.theme.shared": "~7.3.0-rc.3", "@abp/ng.theme.lepton-x": "~2.3.0-rc.1", "@angular/animations": "^16.0.2", "@angular/common": "^16.0.2", @@ -42,7 +42,7 @@ "@angular-eslint/eslint-plugin-template": "^16.0.2", "@angular-eslint/schematics": "^16.0.2", "@angular-eslint/template-parser": "^16.0.2", - "@abp/ng.schematics": "~7.3.0-rc.2", + "@abp/ng.schematics": "~7.3.0-rc.3", "@angular/cli": "^16.0.2", "@angular/compiler-cli": "^16.0.2", "@angular/language-service": "^16.0.2", diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/package.json index e2eca2820f..b0ac29085b 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/package.json @@ -3,6 +3,6 @@ "name": "my-app-authserver", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2" } } diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/package.json index 1abb5b0090..54e8ed1f47 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1", - "@abp/aspnetcore.components.server.leptonxlitetheme": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2", + "@abp/aspnetcore.components.server.leptonxlitetheme": "~2.2.2" } } diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/package.json index 1abb5b0090..54e8ed1f47 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/package.json @@ -3,7 +3,7 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1", - "@abp/aspnetcore.components.server.leptonxlitetheme": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2", + "@abp/aspnetcore.components.server.leptonxlitetheme": "~2.2.2" } } diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package.json index af067966a5..f906e884cf 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2" } } diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/package.json index af067966a5..f906e884cf 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2" } } diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/package.json index af067966a5..f906e884cf 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/package.json @@ -3,6 +3,6 @@ "name": "my-app", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.1" + "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.2.2" } } diff --git a/templates/module/angular/package.json b/templates/module/angular/package.json index d8db55a3b5..04e2367e26 100644 --- a/templates/module/angular/package.json +++ b/templates/module/angular/package.json @@ -15,15 +15,15 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~7.3.0-rc.2", - "@abp/ng.components": "~7.3.0-rc.2", - "@abp/ng.core": "~7.3.0-rc.2", - "@abp/ng.oauth": "~7.3.0-rc.2", - "@abp/ng.identity": "~7.3.0-rc.2", - "@abp/ng.setting-management": "~7.3.0-rc.2", - "@abp/ng.tenant-management": "~7.3.0-rc.2", - "@abp/ng.theme.basic": "~7.3.0-rc.2", - "@abp/ng.theme.shared": "~7.3.0-rc.2", + "@abp/ng.account": "~7.3.0-rc.3", + "@abp/ng.components": "~7.3.0-rc.3", + "@abp/ng.core": "~7.3.0-rc.3", + "@abp/ng.oauth": "~7.3.0-rc.3", + "@abp/ng.identity": "~7.3.0-rc.3", + "@abp/ng.setting-management": "~7.3.0-rc.3", + "@abp/ng.tenant-management": "~7.3.0-rc.3", + "@abp/ng.theme.basic": "~7.3.0-rc.3", + "@abp/ng.theme.shared": "~7.3.0-rc.3", "@angular/animations": "^16.0.2", "@angular/common": "^16.0.2", "@angular/compiler": "^16.0.2", @@ -38,7 +38,7 @@ "zone.js": "~0.13.0" }, "devDependencies": { - "@abp/ng.schematics": "~7.3.0-rc.2", + "@abp/ng.schematics": "~7.3.0-rc.3", "@angular-devkit/build-angular": "~16.0.1", "@angular-eslint/builder": "~16.0.0", "@angular-eslint/eslint-plugin": "~16.0.0", diff --git a/templates/module/angular/projects/my-project-name/package.json b/templates/module/angular/projects/my-project-name/package.json index 066025dcfc..4771350a88 100644 --- a/templates/module/angular/projects/my-project-name/package.json +++ b/templates/module/angular/projects/my-project-name/package.json @@ -4,8 +4,8 @@ "peerDependencies": { "@angular/common": ">=14", "@angular/core": ">=14", - "@abp/ng.core": ">=7.2.3", - "@abp/ng.theme.shared": ">=7.2.3" + "@abp/ng.core": ">=7.3.0-rc.3", + "@abp/ng.theme.shared": ">=7.3.0-rc.3" }, "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 efdf28da3a..fca33584ee 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": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3" } } 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 94078e3825..0c6a792b94 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": "~7.2.3", - "@abp/aspnetcore.components.server.basictheme": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3", + "@abp/aspnetcore.components.server.basictheme": "~7.3.0-rc.3" } } 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 dc291e5514..70ce47f8dd 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": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3" } } 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 dc291e5514..70ce47f8dd 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": "~7.2.3" + "@abp/aspnetcore.mvc.ui.theme.basic": "~7.3.0-rc.3" } }