diff --git a/common.props b/common.props index 7d316ce4b3..f834d1ab49 100644 --- a/common.props +++ b/common.props @@ -1,7 +1,7 @@ - latest - 3.1.0 + latest + 3.1.0 $(NoWarn);CS1591 https://abp.io/assets/abp_nupkg.png https://abp.io diff --git a/docs/en/UI/Angular/Config-State.md b/docs/en/UI/Angular/Config-State.md index 71a5da01f0..089697f064 100644 --- a/docs/en/UI/Angular/Config-State.md +++ b/docs/en/UI/Angular/Config-State.md @@ -201,77 +201,6 @@ this.config.dispatchGetAppConfiguration(); Note that **you do not have to call this method at application initiation**, because the application configuration is already being received from the server at start. -### How to Patch Route Configuration - -The `dispatchPatchRouteByName` finds a route by its name and replaces its configuration in the `Store` with the new configuration passed as the second parameter. - -```js -// this.config is instance of ConfigStateService - -const newRouteConfig: Partial = { - name: "Home", - path: "home", - children: [ - { - name: "Dashboard", - path: "dashboard" - } - ] -}; - -this.config.dispatchPatchRouteByName("::Menu:Home", newRouteConfig); -// returns a state stream which emits after dispatch action is complete -``` - -### How to Add a New Route Configuration - -The `dispatchAddRoute` adds a new route to the configuration state in the `Store`. For this, the route config should be passed as the parameter of the method. - -```js -// this.config is instance of ConfigStateService - -const newRoute: ABP.Route = { - name: "My New Page", - iconClass: "fa fa-dashboard", - path: "page", - invisible: false, - order: 2, - requiredPolicy: "MyProjectName.MyNewPage" -}; - -this.config.dispatchAddRoute(newRoute); -// returns a state stream which emits after dispatch action is complete -``` - -The `newRoute` will be placed as at root level, i.e. without any parent routes and its url will be stored as `'/path'`. - -If you want **to add a child route, you can do this:** - -```js -import { eIdentityRouteNames } from '@abp/ng.identity'; - -// this.config is instance of ConfigStateService - -const newRoute: ABP.Route = { - parentName: eIdentityRouteNames.IdentityManagement, - name: "My New Page", - iconClass: "fa fa-dashboard", - path: "page", - invisible: false, - order: 2, - requiredPolicy: "MyProjectName.MyNewPage" -}; - -this.config.dispatchAddRoute(newRoute); -// returns a state stream which emits after dispatch action is complete -``` - -The `newRoute` will then be placed as a child of the parent route named `eIdentityRouteNames.IdentityManagement` and its url will be set as `'/identity/page'`. - -#### Route Configuration Properties - -Please refer to `ABP.Route` type for all the properties you can pass to `dispatchSetEnvironment` in its parameter. It can be found in the [common.ts file](https://github.com/abpframework/abp/blob/dev/npm/ng-packs/packages/core/src/lib/models/common.ts#L27). - ### How to Set the Environment The `dispatchSetEnvironment` places environment variables passed to it in the `Store` under the configuration state. Here is how it is used: diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/GenerateProxyCommand.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/GenerateProxyCommand.cs index 788ffb4436..f2941c9ce8 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/GenerateProxyCommand.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/GenerateProxyCommand.cs @@ -294,7 +294,7 @@ namespace Volo.Abp.Cli.Commands if (firstType == "List" && !File.Exists(secondTypeModelPath)) { secondType = "any"; - } + } serviceFileText.AppendLine( firstType == "List" @@ -322,13 +322,15 @@ namespace Volo.Abp.Cli.Commands "String" => "string", "IActionResult" => "void", "ActionResult" => "void", + "Int64" => "number", + "Int32" => "number", _ => type - }; + }; serviceFileText.AppendLine( $" {actionName}({parametersText}): Observable<{type}> {{"); - if (type != "void" && type != "string") + if (type != "void" && type != "string" && type != "number") { secondTypeList.Add(type); } @@ -503,6 +505,11 @@ namespace Volo.Abp.Cli.Commands var path = output + $"{outputPrefix}/{rootPath}/{controllerPathName}/models/{typeModelName}"; + if (File.Exists(path)) + { + return null; + } + var modelFileText = new StringBuilder(); var baseType = (string)type["baseType"]; diff --git a/npm/lerna.json b/npm/lerna.json index 90a8b29a08..95cb52942f 100644 --- a/npm/lerna.json +++ b/npm/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.0.2", + "version": "3.0.3", "packages": [ "packs/*" ], diff --git a/npm/ng-packs/lerna.version.json b/npm/ng-packs/lerna.version.json index f695127299..c6671ada20 100644 --- a/npm/ng-packs/lerna.version.json +++ b/npm/ng-packs/lerna.version.json @@ -1,5 +1,5 @@ { - "version": "3.0.2", + "version": "3.0.3", "packages": [ "packages/*" ], diff --git a/npm/ng-packs/packages/account/package.json b/npm/ng-packs/packages/account/package.json index f235c4c6c2..ec1046111e 100644 --- a/npm/ng-packs/packages/account/package.json +++ b/npm/ng-packs/packages/account/package.json @@ -1,13 +1,13 @@ { "name": "@abp/ng.account", - "version": "3.0.2", + "version": "3.0.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.theme.shared": "~3.0.2", + "@abp/ng.theme.shared": "~3.0.3", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/core/package.json b/npm/ng-packs/packages/core/package.json index d5e165861c..f039923e09 100644 --- a/npm/ng-packs/packages/core/package.json +++ b/npm/ng-packs/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@abp/ng.core", - "version": "3.0.2", + "version": "3.0.3", "homepage": "https://abp.io", "repository": { "type": "git", diff --git a/npm/ng-packs/packages/feature-management/package.json b/npm/ng-packs/packages/feature-management/package.json index 3d84f9f6ce..8daad68be0 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": "3.0.2", + "version": "3.0.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.theme.shared": "~3.0.2", + "@abp/ng.theme.shared": "~3.0.3", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/identity/package.json b/npm/ng-packs/packages/identity/package.json index 57d32f0cde..7e8044ff20 100644 --- a/npm/ng-packs/packages/identity/package.json +++ b/npm/ng-packs/packages/identity/package.json @@ -1,14 +1,14 @@ { "name": "@abp/ng.identity", - "version": "3.0.2", + "version": "3.0.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.permission-management": "~3.0.2", - "@abp/ng.theme.shared": "~3.0.2", + "@abp/ng.permission-management": "~3.0.3", + "@abp/ng.theme.shared": "~3.0.3", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/permission-management/package.json b/npm/ng-packs/packages/permission-management/package.json index 07e256bd1b..6c4d5c5f3b 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": "3.0.2", + "version": "3.0.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.theme.shared": "~3.0.2", + "@abp/ng.theme.shared": "~3.0.3", "tslib": "^2.0.0" }, "publishConfig": { diff --git a/npm/ng-packs/packages/setting-management/package.json b/npm/ng-packs/packages/setting-management/package.json index b167570d93..b072f1524f 100644 --- a/npm/ng-packs/packages/setting-management/package.json +++ b/npm/ng-packs/packages/setting-management/package.json @@ -1,13 +1,13 @@ { "name": "@abp/ng.setting-management", - "version": "3.0.2", + "version": "3.0.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.theme.shared": "~3.0.2", + "@abp/ng.theme.shared": "~3.0.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 7ed439d3a2..3368c928af 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": "3.0.2", + "version": "3.0.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.feature-management": "~3.0.2", - "@abp/ng.theme.shared": "~3.0.2", + "@abp/ng.feature-management": "~3.0.3", + "@abp/ng.theme.shared": "~3.0.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 f82f038516..ab2b2a4fcf 100644 --- a/npm/ng-packs/packages/theme-basic/package.json +++ b/npm/ng-packs/packages/theme-basic/package.json @@ -1,13 +1,13 @@ { "name": "@abp/ng.theme.basic", - "version": "3.0.2", + "version": "3.0.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.theme.shared": "~3.0.2", + "@abp/ng.theme.shared": "~3.0.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 43ec42eaaf..d99a4c1e6d 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": "3.0.2", + "version": "3.0.3", "homepage": "https://abp.io", "repository": { "type": "git", "url": "https://github.com/abpframework/abp.git" }, "dependencies": { - "@abp/ng.core": "~3.0.2", + "@abp/ng.core": "~3.0.3", "@fortawesome/fontawesome-free": "^5.13.1", "@ng-bootstrap/ng-bootstrap": "^6.1.0", "@ngx-validate/core": "^0.0.9", diff --git a/npm/packs/anchor-js/package.json b/npm/packs/anchor-js/package.json index a5d86b2980..fbf3c31cb4 100644 --- a/npm/packs/anchor-js/package.json +++ b/npm/packs/anchor-js/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/anchor-js", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "anchor-js": "^4.2.2" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json b/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json index 9ee83cb96e..b7b7809d3b 100644 --- a/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json +++ b/npm/packs/aspnetcore.mvc.ui.theme.basic/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/aspnetcore.mvc.ui.theme.basic", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.shared": "~3.0.2" + "@abp/aspnetcore.mvc.ui.theme.shared": "~3.0.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json b/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json index f74096c766..de6dd2b228 100644 --- a/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json +++ b/npm/packs/aspnetcore.mvc.ui.theme.shared/package.json @@ -1,24 +1,24 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/aspnetcore.mvc.ui.theme.shared", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/aspnetcore.mvc.ui": "~3.0.2", - "@abp/bootstrap": "~3.0.2", - "@abp/bootstrap-datepicker": "~3.0.2", - "@abp/datatables.net-bs4": "~3.0.2", - "@abp/font-awesome": "~3.0.2", - "@abp/jquery-form": "~3.0.2", - "@abp/jquery-validation-unobtrusive": "~3.0.2", - "@abp/lodash": "~3.0.2", - "@abp/luxon": "~3.0.2", - "@abp/malihu-custom-scrollbar-plugin": "~3.0.2", - "@abp/select2": "~3.0.2", - "@abp/sweetalert": "~3.0.2", - "@abp/timeago": "~3.0.2", - "@abp/toastr": "~3.0.2" + "@abp/aspnetcore.mvc.ui": "~3.0.3", + "@abp/bootstrap": "~3.0.3", + "@abp/bootstrap-datepicker": "~3.0.3", + "@abp/datatables.net-bs4": "~3.0.3", + "@abp/font-awesome": "~3.0.3", + "@abp/jquery-form": "~3.0.3", + "@abp/jquery-validation-unobtrusive": "~3.0.3", + "@abp/lodash": "~3.0.3", + "@abp/luxon": "~3.0.3", + "@abp/malihu-custom-scrollbar-plugin": "~3.0.3", + "@abp/select2": "~3.0.3", + "@abp/sweetalert": "~3.0.3", + "@abp/timeago": "~3.0.3", + "@abp/toastr": "~3.0.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/aspnetcore.mvc.ui/package.json b/npm/packs/aspnetcore.mvc.ui/package.json index 9d74d2184e..cc93ee408e 100644 --- a/npm/packs/aspnetcore.mvc.ui/package.json +++ b/npm/packs/aspnetcore.mvc.ui/package.json @@ -1,5 +1,5 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/aspnetcore.mvc.ui", "publishConfig": { "access": "public" diff --git a/npm/packs/blogging/package.json b/npm/packs/blogging/package.json index 9bb0fb2830..5c3fb05c48 100644 --- a/npm/packs/blogging/package.json +++ b/npm/packs/blogging/package.json @@ -1,14 +1,14 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/blogging", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.shared": "~3.0.2", - "@abp/owl.carousel": "~3.0.2", - "@abp/prismjs": "~3.0.2", - "@abp/tui-editor": "~3.0.2" + "@abp/aspnetcore.mvc.ui.theme.shared": "~3.0.3", + "@abp/owl.carousel": "~3.0.3", + "@abp/prismjs": "~3.0.3", + "@abp/tui-editor": "~3.0.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/bootstrap-datepicker/package.json b/npm/packs/bootstrap-datepicker/package.json index c0e3e17b94..14fb2bf809 100644 --- a/npm/packs/bootstrap-datepicker/package.json +++ b/npm/packs/bootstrap-datepicker/package.json @@ -1,5 +1,5 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/bootstrap-datepicker", "publishConfig": { "access": "public" diff --git a/npm/packs/bootstrap/package.json b/npm/packs/bootstrap/package.json index 91fbcfc264..9a81f60bd0 100644 --- a/npm/packs/bootstrap/package.json +++ b/npm/packs/bootstrap/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/bootstrap", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "bootstrap": "^4.5.0", "bootstrap-v4-rtl": "4.4.1-2" }, diff --git a/npm/packs/chart.js/package.json b/npm/packs/chart.js/package.json index b898f40863..2a843dc8bd 100644 --- a/npm/packs/chart.js/package.json +++ b/npm/packs/chart.js/package.json @@ -1,5 +1,5 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/chart.js", "publishConfig": { "access": "public" diff --git a/npm/packs/clipboard/package.json b/npm/packs/clipboard/package.json index 00c3b7ddcd..71b94fb755 100644 --- a/npm/packs/clipboard/package.json +++ b/npm/packs/clipboard/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/clipboard", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "clipboard": "^2.0.6" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/codemirror/package.json b/npm/packs/codemirror/package.json index fb0f19adcb..0251d15c78 100644 --- a/npm/packs/codemirror/package.json +++ b/npm/packs/codemirror/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/codemirror", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "codemirror": "^5.54.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/core/package.json b/npm/packs/core/package.json index cd689a3da5..ebf850f06d 100644 --- a/npm/packs/core/package.json +++ b/npm/packs/core/package.json @@ -1,5 +1,5 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/core", "publishConfig": { "access": "public" diff --git a/npm/packs/datatables.net-bs4/package.json b/npm/packs/datatables.net-bs4/package.json index edf6879c93..281aae2a37 100644 --- a/npm/packs/datatables.net-bs4/package.json +++ b/npm/packs/datatables.net-bs4/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/datatables.net-bs4", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/datatables.net": "~3.0.2", + "@abp/datatables.net": "~3.0.3", "datatables.net-bs4": "^1.10.21" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/datatables.net/package.json b/npm/packs/datatables.net/package.json index e442c7066e..be92433319 100644 --- a/npm/packs/datatables.net/package.json +++ b/npm/packs/datatables.net/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/datatables.net", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~3.0.2", + "@abp/jquery": "~3.0.3", "datatables.net": "^1.10.21" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/docs/package.json b/npm/packs/docs/package.json index e20d30d0d7..dd3f63835d 100644 --- a/npm/packs/docs/package.json +++ b/npm/packs/docs/package.json @@ -1,15 +1,15 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/docs", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/anchor-js": "~3.0.2", - "@abp/clipboard": "~3.0.2", - "@abp/malihu-custom-scrollbar-plugin": "~3.0.2", - "@abp/popper.js": "~3.0.2", - "@abp/prismjs": "~3.0.2" + "@abp/anchor-js": "~3.0.3", + "@abp/clipboard": "~3.0.3", + "@abp/malihu-custom-scrollbar-plugin": "~3.0.3", + "@abp/popper.js": "~3.0.3", + "@abp/prismjs": "~3.0.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/flag-icon-css/package.json b/npm/packs/flag-icon-css/package.json index b03f436110..6446aa548c 100644 --- a/npm/packs/flag-icon-css/package.json +++ b/npm/packs/flag-icon-css/package.json @@ -1,5 +1,5 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/flag-icon-css", "publishConfig": { "access": "public" diff --git a/npm/packs/font-awesome/package.json b/npm/packs/font-awesome/package.json index 07696dc4a5..b3ebd059f7 100644 --- a/npm/packs/font-awesome/package.json +++ b/npm/packs/font-awesome/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/font-awesome", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "@fortawesome/fontawesome-free": "^5.13.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/highlight.js/package.json b/npm/packs/highlight.js/package.json index 2639867005..154ee907f2 100644 --- a/npm/packs/highlight.js/package.json +++ b/npm/packs/highlight.js/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/highlight.js", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2" + "@abp/core": "~3.0.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/npm/packs/jquery-form/package.json b/npm/packs/jquery-form/package.json index 9712017bf2..4696d59b08 100644 --- a/npm/packs/jquery-form/package.json +++ b/npm/packs/jquery-form/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/jquery-form", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~3.0.2", + "@abp/jquery": "~3.0.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 8557d67f96..3c5d4b9528 100644 --- a/npm/packs/jquery-validation-unobtrusive/package.json +++ b/npm/packs/jquery-validation-unobtrusive/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/jquery-validation-unobtrusive", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery-validation": "~3.0.2", + "@abp/jquery-validation": "~3.0.3", "jquery-validation-unobtrusive": "^3.2.11" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/jquery-validation/package.json b/npm/packs/jquery-validation/package.json index 0d2c0c3c41..e2304f5e41 100644 --- a/npm/packs/jquery-validation/package.json +++ b/npm/packs/jquery-validation/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/jquery-validation", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~3.0.2", + "@abp/jquery": "~3.0.3", "jquery-validation": "^1.19.2" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/jquery/package.json b/npm/packs/jquery/package.json index 078a778787..2e3b11397f 100644 --- a/npm/packs/jquery/package.json +++ b/npm/packs/jquery/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/jquery", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "jquery": "~3.5.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/jstree/package.json b/npm/packs/jstree/package.json index 26871e45d0..bdfffec2ee 100644 --- a/npm/packs/jstree/package.json +++ b/npm/packs/jstree/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/jstree", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~3.0.2", + "@abp/jquery": "~3.0.3", "jstree": "^3.3.9" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/lodash/package.json b/npm/packs/lodash/package.json index 82171476e3..2246e9a160 100644 --- a/npm/packs/lodash/package.json +++ b/npm/packs/lodash/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/lodash", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "lodash": "^4.17.15" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/luxon/package.json b/npm/packs/luxon/package.json index 0d11b5954f..74122cc0fe 100644 --- a/npm/packs/luxon/package.json +++ b/npm/packs/luxon/package.json @@ -1,5 +1,5 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/luxon", "publishConfig": { "access": "public" diff --git a/npm/packs/malihu-custom-scrollbar-plugin/package.json b/npm/packs/malihu-custom-scrollbar-plugin/package.json index a56ba4aec6..0b94c760dd 100644 --- a/npm/packs/malihu-custom-scrollbar-plugin/package.json +++ b/npm/packs/malihu-custom-scrollbar-plugin/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/malihu-custom-scrollbar-plugin", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.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 4f8494f924..e88fb99a08 100644 --- a/npm/packs/markdown-it/package.json +++ b/npm/packs/markdown-it/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/markdown-it", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "markdown-it": "^11.0.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/owl.carousel/package.json b/npm/packs/owl.carousel/package.json index fbff287a3d..eaa13a3c86 100644 --- a/npm/packs/owl.carousel/package.json +++ b/npm/packs/owl.carousel/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/owl.carousel", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.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 e22c222814..b5b78d1b4d 100644 --- a/npm/packs/popper.js/package.json +++ b/npm/packs/popper.js/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/popper.js", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "popper.js": "^1.16.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/prismjs/package.json b/npm/packs/prismjs/package.json index 97ddad7581..a402ccf74c 100644 --- a/npm/packs/prismjs/package.json +++ b/npm/packs/prismjs/package.json @@ -1,12 +1,12 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/prismjs", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/clipboard": "~3.0.2", - "@abp/core": "~3.0.2", + "@abp/clipboard": "~3.0.3", + "@abp/core": "~3.0.3", "prismjs": "^1.20.0" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/select2/package.json b/npm/packs/select2/package.json index ae587cec43..dfb12094c6 100644 --- a/npm/packs/select2/package.json +++ b/npm/packs/select2/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/select2", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "select2": "^4.0.13" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/signalr/package.json b/npm/packs/signalr/package.json index b6c004fed9..74c00e7092 100644 --- a/npm/packs/signalr/package.json +++ b/npm/packs/signalr/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/signalr", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "@microsoft/signalr": "~3.1.5" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/sweetalert/package.json b/npm/packs/sweetalert/package.json index 8fa9194c73..25b7f80d72 100644 --- a/npm/packs/sweetalert/package.json +++ b/npm/packs/sweetalert/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/sweetalert", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "sweetalert": "^2.1.2" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/timeago/package.json b/npm/packs/timeago/package.json index 86d977b384..e92b0d9ea4 100644 --- a/npm/packs/timeago/package.json +++ b/npm/packs/timeago/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/timeago", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~3.0.2", + "@abp/jquery": "~3.0.3", "timeago": "^1.6.7" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/toastr/package.json b/npm/packs/toastr/package.json index 05c4079650..eed79e9df9 100644 --- a/npm/packs/toastr/package.json +++ b/npm/packs/toastr/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/toastr", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/jquery": "~3.0.2", + "@abp/jquery": "~3.0.3", "toastr": "^2.1.4" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/tui-editor/package.json b/npm/packs/tui-editor/package.json index 284354d382..f2863bb085 100644 --- a/npm/packs/tui-editor/package.json +++ b/npm/packs/tui-editor/package.json @@ -1,14 +1,14 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/tui-editor", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/codemirror": "~3.0.2", - "@abp/highlight.js": "~3.0.2", - "@abp/jquery": "~3.0.2", - "@abp/markdown-it": "~3.0.2", + "@abp/codemirror": "~3.0.3", + "@abp/highlight.js": "~3.0.3", + "@abp/jquery": "~3.0.3", + "@abp/markdown-it": "~3.0.3", "tui-editor": "^1.4.10" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/uppy/package.json b/npm/packs/uppy/package.json index e21d21deba..7963686361 100644 --- a/npm/packs/uppy/package.json +++ b/npm/packs/uppy/package.json @@ -1,11 +1,11 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/uppy", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/core": "~3.0.2", + "@abp/core": "~3.0.3", "uppy": "^1.16.1" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" diff --git a/npm/packs/utils/package.json b/npm/packs/utils/package.json index 33114c4ff2..70b65b85c0 100644 --- a/npm/packs/utils/package.json +++ b/npm/packs/utils/package.json @@ -1,6 +1,6 @@ { "name": "@abp/utils", - "version": "3.0.2", + "version": "3.0.3", "scripts": { "prepublish": "yarn install --ignore-scripts && node prepublish.js", "ng": "ng", diff --git a/npm/packs/virtual-file-explorer/package.json b/npm/packs/virtual-file-explorer/package.json index f519769d11..9bcf847aec 100644 --- a/npm/packs/virtual-file-explorer/package.json +++ b/npm/packs/virtual-file-explorer/package.json @@ -1,12 +1,12 @@ { - "version": "3.0.2", + "version": "3.0.3", "name": "@abp/virtual-file-explorer", "publishConfig": { "access": "public" }, "dependencies": { - "@abp/clipboard": "~3.0.2", - "@abp/prismjs": "~3.0.2" + "@abp/clipboard": "~3.0.3", + "@abp/prismjs": "~3.0.3" }, "gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431" } diff --git a/templates/app/angular/package.json b/templates/app/angular/package.json index 6e0a283dcb..4843ccb7d8 100644 --- a/templates/app/angular/package.json +++ b/templates/app/angular/package.json @@ -12,11 +12,11 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~3.0.2", - "@abp/ng.identity": "~3.0.2", - "@abp/ng.setting-management": "~3.0.2", - "@abp/ng.tenant-management": "~3.0.2", - "@abp/ng.theme.basic": "~3.0.2", + "@abp/ng.account": "~3.0.3", + "@abp/ng.identity": "~3.0.3", + "@abp/ng.setting-management": "~3.0.3", + "@abp/ng.tenant-management": "~3.0.3", + "@abp/ng.theme.basic": "~3.0.3", "@angular/animations": "~10.0.1", "@angular/common": "~10.0.1", "@angular/compiler": "~10.0.1", 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 5a4bf0be41..4de8e26049 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.basic": "^3.0.2" + "@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.3" } } \ No newline at end of file diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/yarn.lock b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/yarn.lock index 06749cd92d..d3d85df4fb 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/yarn.lock +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.2.tgz#f971fc6afabf66cf73470e08ee8ed9ad5ac36d70" - integrity sha512-54/4SqG1Kqcj7hl4/DI5TE6ksnecKp/JNeIl/SE/Kpha23J9xothiyFVE+fE7ymZFPIy+HouGN+MIg+TDdqYTQ== +"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.3.tgz#d891bcff681544f759ee715f6423130bffd1a05c" + integrity sha512-iXbK+wnPqTrkyzs0MfXxOjqEptJSZC/TdCukfeOI4ozJET1Y+g+r4SOcHCagLCSljIcO7E1Y79z6LPP0/x9fJw== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.2" + "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.3" -"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.2.tgz#b0d6c38dc97d0bd4a010a7cc5c035ecd31c2ac87" - integrity sha512-KoltFRaJYZ6X8UB9actvkNF6TvsoftPDthyVMw/D+nstNwueWo4loYyiH7ukhZ3EpEYz7ROxDB04jQ9FaByPpw== - dependencies: - "@abp/aspnetcore.mvc.ui" "~3.0.2" - "@abp/bootstrap" "~3.0.2" - "@abp/bootstrap-datepicker" "~3.0.2" - "@abp/datatables.net-bs4" "~3.0.2" - "@abp/font-awesome" "~3.0.2" - "@abp/jquery-form" "~3.0.2" - "@abp/jquery-validation-unobtrusive" "~3.0.2" - "@abp/lodash" "~3.0.2" - "@abp/luxon" "~3.0.2" - "@abp/malihu-custom-scrollbar-plugin" "~3.0.2" - "@abp/select2" "~3.0.2" - "@abp/sweetalert" "~3.0.2" - "@abp/timeago" "~3.0.2" - "@abp/toastr" "~3.0.2" - -"@abp/aspnetcore.mvc.ui@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.2.tgz#2a7a481488681f41ed756b434a18a3a03181d366" - integrity sha512-TfJhqNSC66crMyJSRWswTP6bli2WYOZsBmkMH7ziei/uSp7KMUUM16n47qPGEye/jx7E4P3NYG0WH7wCyhgS6A== +"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.3.tgz#fcea3dcea6a85dd88aa370578dca6e77fc80891c" + integrity sha512-ZuBBpH4Rlvr2Y6FpYt7FIiJwZLBmrnB8xJmP993AQtx+s39sLK3enb+poipkUBnq1N3yxmct06j7wsIlsstKXw== + dependencies: + "@abp/aspnetcore.mvc.ui" "~3.0.3" + "@abp/bootstrap" "~3.0.3" + "@abp/bootstrap-datepicker" "~3.0.3" + "@abp/datatables.net-bs4" "~3.0.3" + "@abp/font-awesome" "~3.0.3" + "@abp/jquery-form" "~3.0.3" + "@abp/jquery-validation-unobtrusive" "~3.0.3" + "@abp/lodash" "~3.0.3" + "@abp/luxon" "~3.0.3" + "@abp/malihu-custom-scrollbar-plugin" "~3.0.3" + "@abp/select2" "~3.0.3" + "@abp/sweetalert" "~3.0.3" + "@abp/timeago" "~3.0.3" + "@abp/toastr" "~3.0.3" + +"@abp/aspnetcore.mvc.ui@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.3.tgz#88e3350a839434cee38f9497d160e5f23ef5ac28" + integrity sha512-C4cSlnhGYNGQul/0WD9HP87knBQ/bj2q45Jt73ugn9RygEJVjhXPv30+H4sl1GZXmEg+kLgdAoNjM/Iipe+egQ== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,138 +41,138 @@ path "^0.12.7" rimraf "^3.0.2" -"@abp/bootstrap-datepicker@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.2.tgz#4c4bc2d667d82f299df753a741de0de3333db244" - integrity sha512-vlsKrW0XraHnVJlkv5zm4xVO/+LX9Fz9x6x2B5nHS2DnMnusENaCyvynWwIrm95/lQyXbkUQ1rjnNpI8/5p5TQ== +"@abp/bootstrap-datepicker@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.3.tgz#866d4b3b83bb548e7d71066408c5ab344ce33473" + integrity sha512-nnzm9rxu/vKIUdQQMlN/kGqL+DbOg8FmN81KyWJ23KmisViLVqDeTEJBHPOJ3WuzRN+SacoreiL4f3C+7YiiXQ== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.2.tgz#129b119594cf1ff211736b4295c254bcd7d2174f" - integrity sha512-cbJSsaxVEkP+pvVH+2GaYDn/u2u2sPF8oOQb89ZYOy46d+gVph8ZMuJ4f6pefei8Ps2h+q1JPbb8UPkzyI53Ig== +"@abp/bootstrap@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.3.tgz#1d0ce60eff1dc67642147f0f2897eb13f6353d09" + integrity sha512-Vd/bdyh4bnp3vz4QsPjlc8Wi1qfaRSBDekWbHWkNq568BLXSMkK6ucugGAvC7kshBj3bbSpHd9xWUImim0+Q/w== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" bootstrap "^4.5.0" bootstrap-v4-rtl "4.4.1-2" -"@abp/core@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.2.tgz#88f4c8484a743f50c8980c1bb26cb79f453b9e3f" - integrity sha512-qMwY3YCpzTRmAkPH1u5ViduWjZdRgS9uu7chV+E+Iq7wknJ/JPtE/TrAUYbz/QhA7LFXoA74ZjbOeBW48x/cQA== +"@abp/core@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.3.tgz#05e45a5533f5a6f9014b4a4a87c73d96b7c071dc" + integrity sha512-lNrG0cYbHQHH6i2B5yfBL7iU3rl3TL66H+tDVCBqXNlnGAFOS48RG/jE2mMw54U8xgtwNczwBpgGVWAqU3uKig== dependencies: "@abp/utils" "~2.9.0" -"@abp/datatables.net-bs4@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.2.tgz#f16291b21352a07fe509daeec5b18da56c366157" - integrity sha512-jXM1B2hcNQzAhnMvCyeBc1UWeNWKTtChLk5QYQuQFbxifIT9WPT1Rs9+Q4QlV1VgTq2xzkOnZmXFjCmeQvMWgg== +"@abp/datatables.net-bs4@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.3.tgz#627a64f4fdc8c7fb7f4e51232c4147b5f2cfe041" + integrity sha512-seZR/yu8p0SJMafVCwYA5YAi7F2IMMo6cBJsF+phTBrPGBaXd63arNK7ZiXYp3RfwnafglotKNgswO0lYRMXKw== dependencies: - "@abp/datatables.net" "~3.0.2" + "@abp/datatables.net" "~3.0.3" datatables.net-bs4 "^1.10.21" -"@abp/datatables.net@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.2.tgz#13b0812f448e4cde29518fd38855d4eb285e8d52" - integrity sha512-KKJ11FxJmMuY+/5MqECnyUfVGrap0M4RYfVzt4wunfNA8xOufSMdsak1AbZU9/f6ygc4BTvVQV+ikmDpeaNHiQ== +"@abp/datatables.net@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.3.tgz#2a8eed257f943cc9d477eabe2501ead9fcc37d76" + integrity sha512-ULmYJZ3RU1kisMDCtB1Wq8tBmIn09QKW+asB33y9bT4td/cEDqULyJXbwNZYIzqA6VPzHenxiJbciFkFwPwkaQ== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" datatables.net "^1.10.21" -"@abp/font-awesome@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.2.tgz#85abed5014e1324925142ee3e81f23f9fbffd264" - integrity sha512-z4sw7LPQ2meajQbfCNu1I7lLho6K5cDCU1RZzHfTvry3FWRNrG5I5amvqEgC7/IAzz8WcRk/6O93rJFDuXKiHg== +"@abp/font-awesome@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.3.tgz#e0fb803c04c2f3f36017aa8a065a7f20245a2b50" + integrity sha512-UY9i35H+3EMqBszLdLyM72TRVp+hDe8CFs8q2PBNzoIsrMGqx4mKFSTxUsts03USqQ+4v6D08M056D3a0oS+DQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" "@fortawesome/fontawesome-free" "^5.13.0" -"@abp/jquery-form@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.2.tgz#6c1a3e1ae19add336bdf0c0d7ec8ff041303002d" - integrity sha512-UhjfO2h4ZnaYEncZ3ez8AnLzhg6D0oHy1GFjs3se+0u7rFR2iJ7YN3VlEeHweZokAzlVwoSrNXOKYRkhL8V75g== +"@abp/jquery-form@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.3.tgz#bcb6ca18c5671914fd87bb9651feef57142f9ae3" + integrity sha512-VokAc7jgBQAEcu15FSJPWLJcL+/mrFFwia/DdpkPyU+SrXHgD35Gu7Kb+/knQcVKNCM80mCH5gZXDbaA5Hrt3w== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.2.tgz#50dc6b9b0366b83790ec9d342eb9bd397037102b" - integrity sha512-xx2A0E5I7KFPU1wRK7edvwYk+gcjMFRnnhJYwg1CELAmzeaYORDo6gwXqywcyIIEpFSIKcqIMih4A/mFObq85w== +"@abp/jquery-validation-unobtrusive@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.3.tgz#e4247a56149306aa69a8df1017f7da9a07abce26" + integrity sha512-Ig3UyfPj5qyP2BCLYeaihMzzj2p4Hkh1uJX6Bm2qShRKDW3Br5D0z3JIEXiGvzukGTdCnTG+mwGQowZfdxgdUQ== dependencies: - "@abp/jquery-validation" "~3.0.2" + "@abp/jquery-validation" "~3.0.3" jquery-validation-unobtrusive "^3.2.11" -"@abp/jquery-validation@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.2.tgz#9477215ae684b394ab6c5a0deeac7a3615c2ff18" - integrity sha512-gJQrjScSJeAEMtR348QdsjtdMFut2GCrt070VaNrm0PpM7lhEue6Qq+M6/HJt44puRyyJxoxg6NJvnFm2RKbVQ== +"@abp/jquery-validation@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.3.tgz#c95f5b9fa5d6ec973bffb0e98d08317707a95b83" + integrity sha512-Ss38QtC4IrDbICNJT9fTNWka6ekmhrfCrArOeVR8O47BIx9FRl2IBX8TBjuC3ZXv9c1oNxTICmmSCgQYfdQ02A== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-validation "^1.19.2" -"@abp/jquery@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.2.tgz#d0e2bc7cecb4e6b4841b34779c81996b8f58e208" - integrity sha512-Xx/Qavk0khWu8H6vFi8IvrDu3LtWQCXo+NXi6qF2hPFgC2i9iWu9NQLAO5Wp9rZ+ZcAoLiQfSLYe2ZA9gNufcg== +"@abp/jquery@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.3.tgz#b9b6b5c110c116d484b090a485503eb1e5f7f8fb" + integrity sha512-EVkCdy8bGHZ1Za/H7Iw5e/maiihx3Hn8VvU//D6U3FlC3D/Fo7hYEPOVvlVtpco6J1e0wMe9dUnCQxjPDBfQGw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" jquery "~3.5.1" -"@abp/lodash@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.2.tgz#922fcf503952df0ec9944529d2c5cda1c274eaa5" - integrity sha512-RxboDnNPz8VZQiOW6gu51sbZ7lkXJ7snUyYn1luKk6IVZUoQf3l+LmJ1rLYiyprMniwIcjHfUNYJOu3sk02lig== +"@abp/lodash@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.3.tgz#4289cc71d83ed3ec29beacd784ee68b6ac575274" + integrity sha512-7UIagvq204xsyNQq7yucSHRj3BPE/yvTUELLEDWmjBQPkjB9GukeoeYqUxderEbVboCLIPYgGCwAWz9IyBtvFQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" lodash "^4.17.15" -"@abp/luxon@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.2.tgz#5c57ac2bd834804e725bc3ceb4014cbf2ac7afac" - integrity sha512-ysQ4/MWFWxXdu+QFSBSAufrTCyFF5yZC8ByMYk9ezvkRzzUl+Q4mO1cKV7IXDD+saQeAljKEehvyXS9hpGqf0A== +"@abp/luxon@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.3.tgz#e2eb7db08c07efbd877a7216bf4f6aca18e24473" + integrity sha512-L7rzo7LLV9Kn92Fdk8g0+CqVsxedRs1cLmDA2QDn4idJ728kYJjSZpRWPjLW087dkSBen0Gtr7gxUn6HiXizpA== dependencies: luxon "^1.24.1" -"@abp/malihu-custom-scrollbar-plugin@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.2.tgz#809c20a750b82872fa8e3a57d67c4e50ccb12ce5" - integrity sha512-7GkH4HhxnSciZa/hLR78AB1KYKoic0skU0A/MEYl3E/LWoQ5KpvRDsbhQw90ZKnfXOV+shb7P1sxNlz3bdI/hQ== +"@abp/malihu-custom-scrollbar-plugin@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.3.tgz#77d45ac9044ebbe5a80a5764f4a55f1943c813f1" + integrity sha512-cJfdJexrZjJfoz+mMWXCFgi6gDa0fq9OAcpxZGz5aVeIrNOnWdEvjT02beowU9Rhl6vL6jWxpqaWt3H4jiGOSw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/select2@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.2.tgz#8f970c99c1203a43c0651c0a5c27f6b056442386" - integrity sha512-YgIbaZWoaUzoz8TJQOi7ltPjLHtP0x7unPVnzs94hEPsIHaIBuITZNws93UpF5OJ0peVYCcdPpJXBjGW79kK1A== +"@abp/select2@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.3.tgz#5545502067f12bd9e502133dc9c0f7b73adf0d18" + integrity sha512-tmQN1TfO3szU6iw/K+YjoIqKeD6hnCVNIedg0l2YqTyZfo9QREEzY8CRqQELphhGkHmsMOl5tjXeD9BJVMna2g== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" select2 "^4.0.13" -"@abp/sweetalert@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.2.tgz#c3f1fb7c56ba965ea0717ab80e4cae83b01c7bc2" - integrity sha512-HDNFt9PfFZDYMQ72m4l9M56WlDsG9k9Y51LnXp6hQIbQcw/e2wBi7CGfd6qsspQhoiyjhelz2/EDpBsubE5J7w== +"@abp/sweetalert@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.3.tgz#a167d49303833d0821d63e47e3882b9dcb5a66f4" + integrity sha512-RMBkZ4Tmm2qcW88noswsrnD1cik0R3q2GCDV1Ngm2V+u2KbbSbtLN2B+YQEU1SwDop0Miml8eNk2GeRLYT6kbA== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" sweetalert "^2.1.2" -"@abp/timeago@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.2.tgz#f7aa843c8a934982af4e58a9e3a4bc4860ba2d84" - integrity sha512-PCTBRKqbHq3Qu8WPHIvNz2M+LY4tlR5URmJjvxuK+ckJzPI8bd7XsonJ1naf2BYyC1THlmRH1jA45yaTP8/juw== +"@abp/timeago@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.3.tgz#1fa2f4814babc965a2a95149b432f1fc466ad18a" + integrity sha512-iUG9RfV8vSernjMoojlnManZ+QTaRlMOvikeHQR8MaPYH/XC2sRLNoLN0sYTC5F/xzLQU4MSQFXZ54dobUyYfA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" timeago "^1.6.7" -"@abp/toastr@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.2.tgz#97e74c2bb5c86b400c831ad7c8543a7caea8c6c1" - integrity sha512-UqQX/1PZ0scm5Agparb8raM/L6yiVVuksfS7WKpeq3YtAp1Wd2og+7PxnAxeUlWchzHXgfsuBioPjLMvVTK0VQ== +"@abp/toastr@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.3.tgz#1f4421f03c6c69bd4ca93123953cdc4ac3abfd99" + integrity sha512-phMAFhJcLbti09da3WdDx5YZ2zzkh/Xgag2iJWunnnt5G+dH/4WTN1sLdIo06WwDLjArz19c2ZHqV52uwb2vXA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" toastr "^2.1.4" "@abp/utils@~2.9.0": diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.IdentityServer/package.json b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.IdentityServer/package.json index 782e4f2330..dc3297a937 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.IdentityServer/package.json +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.IdentityServer/package.json @@ -3,6 +3,6 @@ "name": "my-app-identityserver", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.2" + "@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.3" } } \ No newline at end of file diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.IdentityServer/yarn.lock b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.IdentityServer/yarn.lock index 6207b7dea1..422897f2bf 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.IdentityServer/yarn.lock +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.IdentityServer/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.2.tgz#f971fc6afabf66cf73470e08ee8ed9ad5ac36d70" - integrity sha512-54/4SqG1Kqcj7hl4/DI5TE6ksnecKp/JNeIl/SE/Kpha23J9xothiyFVE+fE7ymZFPIy+HouGN+MIg+TDdqYTQ== +"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.3.tgz#d891bcff681544f759ee715f6423130bffd1a05c" + integrity sha512-iXbK+wnPqTrkyzs0MfXxOjqEptJSZC/TdCukfeOI4ozJET1Y+g+r4SOcHCagLCSljIcO7E1Y79z6LPP0/x9fJw== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.2" + "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.3" -"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.2.tgz#b0d6c38dc97d0bd4a010a7cc5c035ecd31c2ac87" - integrity sha512-KoltFRaJYZ6X8UB9actvkNF6TvsoftPDthyVMw/D+nstNwueWo4loYyiH7ukhZ3EpEYz7ROxDB04jQ9FaByPpw== - dependencies: - "@abp/aspnetcore.mvc.ui" "~3.0.2" - "@abp/bootstrap" "~3.0.2" - "@abp/bootstrap-datepicker" "~3.0.2" - "@abp/datatables.net-bs4" "~3.0.2" - "@abp/font-awesome" "~3.0.2" - "@abp/jquery-form" "~3.0.2" - "@abp/jquery-validation-unobtrusive" "~3.0.2" - "@abp/lodash" "~3.0.2" - "@abp/luxon" "~3.0.2" - "@abp/malihu-custom-scrollbar-plugin" "~3.0.2" - "@abp/select2" "~3.0.2" - "@abp/sweetalert" "~3.0.2" - "@abp/timeago" "~3.0.2" - "@abp/toastr" "~3.0.2" - -"@abp/aspnetcore.mvc.ui@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.2.tgz#2a7a481488681f41ed756b434a18a3a03181d366" - integrity sha512-TfJhqNSC66crMyJSRWswTP6bli2WYOZsBmkMH7ziei/uSp7KMUUM16n47qPGEye/jx7E4P3NYG0WH7wCyhgS6A== +"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.3.tgz#fcea3dcea6a85dd88aa370578dca6e77fc80891c" + integrity sha512-ZuBBpH4Rlvr2Y6FpYt7FIiJwZLBmrnB8xJmP993AQtx+s39sLK3enb+poipkUBnq1N3yxmct06j7wsIlsstKXw== + dependencies: + "@abp/aspnetcore.mvc.ui" "~3.0.3" + "@abp/bootstrap" "~3.0.3" + "@abp/bootstrap-datepicker" "~3.0.3" + "@abp/datatables.net-bs4" "~3.0.3" + "@abp/font-awesome" "~3.0.3" + "@abp/jquery-form" "~3.0.3" + "@abp/jquery-validation-unobtrusive" "~3.0.3" + "@abp/lodash" "~3.0.3" + "@abp/luxon" "~3.0.3" + "@abp/malihu-custom-scrollbar-plugin" "~3.0.3" + "@abp/select2" "~3.0.3" + "@abp/sweetalert" "~3.0.3" + "@abp/timeago" "~3.0.3" + "@abp/toastr" "~3.0.3" + +"@abp/aspnetcore.mvc.ui@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.3.tgz#88e3350a839434cee38f9497d160e5f23ef5ac28" + integrity sha512-C4cSlnhGYNGQul/0WD9HP87knBQ/bj2q45Jt73ugn9RygEJVjhXPv30+H4sl1GZXmEg+kLgdAoNjM/Iipe+egQ== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,138 +41,138 @@ path "^0.12.7" rimraf "^3.0.2" -"@abp/bootstrap-datepicker@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.2.tgz#4c4bc2d667d82f299df753a741de0de3333db244" - integrity sha512-vlsKrW0XraHnVJlkv5zm4xVO/+LX9Fz9x6x2B5nHS2DnMnusENaCyvynWwIrm95/lQyXbkUQ1rjnNpI8/5p5TQ== +"@abp/bootstrap-datepicker@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.3.tgz#866d4b3b83bb548e7d71066408c5ab344ce33473" + integrity sha512-nnzm9rxu/vKIUdQQMlN/kGqL+DbOg8FmN81KyWJ23KmisViLVqDeTEJBHPOJ3WuzRN+SacoreiL4f3C+7YiiXQ== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.2.tgz#129b119594cf1ff211736b4295c254bcd7d2174f" - integrity sha512-cbJSsaxVEkP+pvVH+2GaYDn/u2u2sPF8oOQb89ZYOy46d+gVph8ZMuJ4f6pefei8Ps2h+q1JPbb8UPkzyI53Ig== +"@abp/bootstrap@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.3.tgz#1d0ce60eff1dc67642147f0f2897eb13f6353d09" + integrity sha512-Vd/bdyh4bnp3vz4QsPjlc8Wi1qfaRSBDekWbHWkNq568BLXSMkK6ucugGAvC7kshBj3bbSpHd9xWUImim0+Q/w== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" bootstrap "^4.5.0" bootstrap-v4-rtl "4.4.1-2" -"@abp/core@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.2.tgz#88f4c8484a743f50c8980c1bb26cb79f453b9e3f" - integrity sha512-qMwY3YCpzTRmAkPH1u5ViduWjZdRgS9uu7chV+E+Iq7wknJ/JPtE/TrAUYbz/QhA7LFXoA74ZjbOeBW48x/cQA== +"@abp/core@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.3.tgz#05e45a5533f5a6f9014b4a4a87c73d96b7c071dc" + integrity sha512-lNrG0cYbHQHH6i2B5yfBL7iU3rl3TL66H+tDVCBqXNlnGAFOS48RG/jE2mMw54U8xgtwNczwBpgGVWAqU3uKig== dependencies: "@abp/utils" "~2.9.0" -"@abp/datatables.net-bs4@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.2.tgz#f16291b21352a07fe509daeec5b18da56c366157" - integrity sha512-jXM1B2hcNQzAhnMvCyeBc1UWeNWKTtChLk5QYQuQFbxifIT9WPT1Rs9+Q4QlV1VgTq2xzkOnZmXFjCmeQvMWgg== +"@abp/datatables.net-bs4@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.3.tgz#627a64f4fdc8c7fb7f4e51232c4147b5f2cfe041" + integrity sha512-seZR/yu8p0SJMafVCwYA5YAi7F2IMMo6cBJsF+phTBrPGBaXd63arNK7ZiXYp3RfwnafglotKNgswO0lYRMXKw== dependencies: - "@abp/datatables.net" "~3.0.2" + "@abp/datatables.net" "~3.0.3" datatables.net-bs4 "^1.10.21" -"@abp/datatables.net@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.2.tgz#13b0812f448e4cde29518fd38855d4eb285e8d52" - integrity sha512-KKJ11FxJmMuY+/5MqECnyUfVGrap0M4RYfVzt4wunfNA8xOufSMdsak1AbZU9/f6ygc4BTvVQV+ikmDpeaNHiQ== +"@abp/datatables.net@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.3.tgz#2a8eed257f943cc9d477eabe2501ead9fcc37d76" + integrity sha512-ULmYJZ3RU1kisMDCtB1Wq8tBmIn09QKW+asB33y9bT4td/cEDqULyJXbwNZYIzqA6VPzHenxiJbciFkFwPwkaQ== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" datatables.net "^1.10.21" -"@abp/font-awesome@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.2.tgz#85abed5014e1324925142ee3e81f23f9fbffd264" - integrity sha512-z4sw7LPQ2meajQbfCNu1I7lLho6K5cDCU1RZzHfTvry3FWRNrG5I5amvqEgC7/IAzz8WcRk/6O93rJFDuXKiHg== +"@abp/font-awesome@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.3.tgz#e0fb803c04c2f3f36017aa8a065a7f20245a2b50" + integrity sha512-UY9i35H+3EMqBszLdLyM72TRVp+hDe8CFs8q2PBNzoIsrMGqx4mKFSTxUsts03USqQ+4v6D08M056D3a0oS+DQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" "@fortawesome/fontawesome-free" "^5.13.0" -"@abp/jquery-form@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.2.tgz#6c1a3e1ae19add336bdf0c0d7ec8ff041303002d" - integrity sha512-UhjfO2h4ZnaYEncZ3ez8AnLzhg6D0oHy1GFjs3se+0u7rFR2iJ7YN3VlEeHweZokAzlVwoSrNXOKYRkhL8V75g== +"@abp/jquery-form@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.3.tgz#bcb6ca18c5671914fd87bb9651feef57142f9ae3" + integrity sha512-VokAc7jgBQAEcu15FSJPWLJcL+/mrFFwia/DdpkPyU+SrXHgD35Gu7Kb+/knQcVKNCM80mCH5gZXDbaA5Hrt3w== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.2.tgz#50dc6b9b0366b83790ec9d342eb9bd397037102b" - integrity sha512-xx2A0E5I7KFPU1wRK7edvwYk+gcjMFRnnhJYwg1CELAmzeaYORDo6gwXqywcyIIEpFSIKcqIMih4A/mFObq85w== +"@abp/jquery-validation-unobtrusive@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.3.tgz#e4247a56149306aa69a8df1017f7da9a07abce26" + integrity sha512-Ig3UyfPj5qyP2BCLYeaihMzzj2p4Hkh1uJX6Bm2qShRKDW3Br5D0z3JIEXiGvzukGTdCnTG+mwGQowZfdxgdUQ== dependencies: - "@abp/jquery-validation" "~3.0.2" + "@abp/jquery-validation" "~3.0.3" jquery-validation-unobtrusive "^3.2.11" -"@abp/jquery-validation@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.2.tgz#9477215ae684b394ab6c5a0deeac7a3615c2ff18" - integrity sha512-gJQrjScSJeAEMtR348QdsjtdMFut2GCrt070VaNrm0PpM7lhEue6Qq+M6/HJt44puRyyJxoxg6NJvnFm2RKbVQ== +"@abp/jquery-validation@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.3.tgz#c95f5b9fa5d6ec973bffb0e98d08317707a95b83" + integrity sha512-Ss38QtC4IrDbICNJT9fTNWka6ekmhrfCrArOeVR8O47BIx9FRl2IBX8TBjuC3ZXv9c1oNxTICmmSCgQYfdQ02A== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-validation "^1.19.2" -"@abp/jquery@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.2.tgz#d0e2bc7cecb4e6b4841b34779c81996b8f58e208" - integrity sha512-Xx/Qavk0khWu8H6vFi8IvrDu3LtWQCXo+NXi6qF2hPFgC2i9iWu9NQLAO5Wp9rZ+ZcAoLiQfSLYe2ZA9gNufcg== +"@abp/jquery@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.3.tgz#b9b6b5c110c116d484b090a485503eb1e5f7f8fb" + integrity sha512-EVkCdy8bGHZ1Za/H7Iw5e/maiihx3Hn8VvU//D6U3FlC3D/Fo7hYEPOVvlVtpco6J1e0wMe9dUnCQxjPDBfQGw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" jquery "~3.5.1" -"@abp/lodash@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.2.tgz#922fcf503952df0ec9944529d2c5cda1c274eaa5" - integrity sha512-RxboDnNPz8VZQiOW6gu51sbZ7lkXJ7snUyYn1luKk6IVZUoQf3l+LmJ1rLYiyprMniwIcjHfUNYJOu3sk02lig== +"@abp/lodash@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.3.tgz#4289cc71d83ed3ec29beacd784ee68b6ac575274" + integrity sha512-7UIagvq204xsyNQq7yucSHRj3BPE/yvTUELLEDWmjBQPkjB9GukeoeYqUxderEbVboCLIPYgGCwAWz9IyBtvFQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" lodash "^4.17.15" -"@abp/luxon@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.2.tgz#5c57ac2bd834804e725bc3ceb4014cbf2ac7afac" - integrity sha512-ysQ4/MWFWxXdu+QFSBSAufrTCyFF5yZC8ByMYk9ezvkRzzUl+Q4mO1cKV7IXDD+saQeAljKEehvyXS9hpGqf0A== +"@abp/luxon@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.3.tgz#e2eb7db08c07efbd877a7216bf4f6aca18e24473" + integrity sha512-L7rzo7LLV9Kn92Fdk8g0+CqVsxedRs1cLmDA2QDn4idJ728kYJjSZpRWPjLW087dkSBen0Gtr7gxUn6HiXizpA== dependencies: luxon "^1.24.1" -"@abp/malihu-custom-scrollbar-plugin@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.2.tgz#809c20a750b82872fa8e3a57d67c4e50ccb12ce5" - integrity sha512-7GkH4HhxnSciZa/hLR78AB1KYKoic0skU0A/MEYl3E/LWoQ5KpvRDsbhQw90ZKnfXOV+shb7P1sxNlz3bdI/hQ== +"@abp/malihu-custom-scrollbar-plugin@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.3.tgz#77d45ac9044ebbe5a80a5764f4a55f1943c813f1" + integrity sha512-cJfdJexrZjJfoz+mMWXCFgi6gDa0fq9OAcpxZGz5aVeIrNOnWdEvjT02beowU9Rhl6vL6jWxpqaWt3H4jiGOSw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/select2@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.2.tgz#8f970c99c1203a43c0651c0a5c27f6b056442386" - integrity sha512-YgIbaZWoaUzoz8TJQOi7ltPjLHtP0x7unPVnzs94hEPsIHaIBuITZNws93UpF5OJ0peVYCcdPpJXBjGW79kK1A== +"@abp/select2@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.3.tgz#5545502067f12bd9e502133dc9c0f7b73adf0d18" + integrity sha512-tmQN1TfO3szU6iw/K+YjoIqKeD6hnCVNIedg0l2YqTyZfo9QREEzY8CRqQELphhGkHmsMOl5tjXeD9BJVMna2g== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" select2 "^4.0.13" -"@abp/sweetalert@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.2.tgz#c3f1fb7c56ba965ea0717ab80e4cae83b01c7bc2" - integrity sha512-HDNFt9PfFZDYMQ72m4l9M56WlDsG9k9Y51LnXp6hQIbQcw/e2wBi7CGfd6qsspQhoiyjhelz2/EDpBsubE5J7w== +"@abp/sweetalert@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.3.tgz#a167d49303833d0821d63e47e3882b9dcb5a66f4" + integrity sha512-RMBkZ4Tmm2qcW88noswsrnD1cik0R3q2GCDV1Ngm2V+u2KbbSbtLN2B+YQEU1SwDop0Miml8eNk2GeRLYT6kbA== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" sweetalert "^2.1.2" -"@abp/timeago@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.2.tgz#f7aa843c8a934982af4e58a9e3a4bc4860ba2d84" - integrity sha512-PCTBRKqbHq3Qu8WPHIvNz2M+LY4tlR5URmJjvxuK+ckJzPI8bd7XsonJ1naf2BYyC1THlmRH1jA45yaTP8/juw== +"@abp/timeago@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.3.tgz#1fa2f4814babc965a2a95149b432f1fc466ad18a" + integrity sha512-iUG9RfV8vSernjMoojlnManZ+QTaRlMOvikeHQR8MaPYH/XC2sRLNoLN0sYTC5F/xzLQU4MSQFXZ54dobUyYfA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" timeago "^1.6.7" -"@abp/toastr@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.2.tgz#97e74c2bb5c86b400c831ad7c8543a7caea8c6c1" - integrity sha512-UqQX/1PZ0scm5Agparb8raM/L6yiVVuksfS7WKpeq3YtAp1Wd2og+7PxnAxeUlWchzHXgfsuBioPjLMvVTK0VQ== +"@abp/toastr@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.3.tgz#1f4421f03c6c69bd4ca93123953cdc4ac3abfd99" + integrity sha512-phMAFhJcLbti09da3WdDx5YZ2zzkh/Xgag2iJWunnnt5G+dH/4WTN1sLdIo06WwDLjArz19c2ZHqV52uwb2vXA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" toastr "^2.1.4" "@abp/utils@~2.9.0": 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 5a4bf0be41..4de8e26049 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.basic": "^3.0.2" + "@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.3" } } \ No newline at end of file diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/yarn.lock b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/yarn.lock index 6207b7dea1..422897f2bf 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/yarn.lock +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.2.tgz#f971fc6afabf66cf73470e08ee8ed9ad5ac36d70" - integrity sha512-54/4SqG1Kqcj7hl4/DI5TE6ksnecKp/JNeIl/SE/Kpha23J9xothiyFVE+fE7ymZFPIy+HouGN+MIg+TDdqYTQ== +"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.3.tgz#d891bcff681544f759ee715f6423130bffd1a05c" + integrity sha512-iXbK+wnPqTrkyzs0MfXxOjqEptJSZC/TdCukfeOI4ozJET1Y+g+r4SOcHCagLCSljIcO7E1Y79z6LPP0/x9fJw== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.2" + "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.3" -"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.2.tgz#b0d6c38dc97d0bd4a010a7cc5c035ecd31c2ac87" - integrity sha512-KoltFRaJYZ6X8UB9actvkNF6TvsoftPDthyVMw/D+nstNwueWo4loYyiH7ukhZ3EpEYz7ROxDB04jQ9FaByPpw== - dependencies: - "@abp/aspnetcore.mvc.ui" "~3.0.2" - "@abp/bootstrap" "~3.0.2" - "@abp/bootstrap-datepicker" "~3.0.2" - "@abp/datatables.net-bs4" "~3.0.2" - "@abp/font-awesome" "~3.0.2" - "@abp/jquery-form" "~3.0.2" - "@abp/jquery-validation-unobtrusive" "~3.0.2" - "@abp/lodash" "~3.0.2" - "@abp/luxon" "~3.0.2" - "@abp/malihu-custom-scrollbar-plugin" "~3.0.2" - "@abp/select2" "~3.0.2" - "@abp/sweetalert" "~3.0.2" - "@abp/timeago" "~3.0.2" - "@abp/toastr" "~3.0.2" - -"@abp/aspnetcore.mvc.ui@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.2.tgz#2a7a481488681f41ed756b434a18a3a03181d366" - integrity sha512-TfJhqNSC66crMyJSRWswTP6bli2WYOZsBmkMH7ziei/uSp7KMUUM16n47qPGEye/jx7E4P3NYG0WH7wCyhgS6A== +"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.3.tgz#fcea3dcea6a85dd88aa370578dca6e77fc80891c" + integrity sha512-ZuBBpH4Rlvr2Y6FpYt7FIiJwZLBmrnB8xJmP993AQtx+s39sLK3enb+poipkUBnq1N3yxmct06j7wsIlsstKXw== + dependencies: + "@abp/aspnetcore.mvc.ui" "~3.0.3" + "@abp/bootstrap" "~3.0.3" + "@abp/bootstrap-datepicker" "~3.0.3" + "@abp/datatables.net-bs4" "~3.0.3" + "@abp/font-awesome" "~3.0.3" + "@abp/jquery-form" "~3.0.3" + "@abp/jquery-validation-unobtrusive" "~3.0.3" + "@abp/lodash" "~3.0.3" + "@abp/luxon" "~3.0.3" + "@abp/malihu-custom-scrollbar-plugin" "~3.0.3" + "@abp/select2" "~3.0.3" + "@abp/sweetalert" "~3.0.3" + "@abp/timeago" "~3.0.3" + "@abp/toastr" "~3.0.3" + +"@abp/aspnetcore.mvc.ui@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.3.tgz#88e3350a839434cee38f9497d160e5f23ef5ac28" + integrity sha512-C4cSlnhGYNGQul/0WD9HP87knBQ/bj2q45Jt73ugn9RygEJVjhXPv30+H4sl1GZXmEg+kLgdAoNjM/Iipe+egQ== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,138 +41,138 @@ path "^0.12.7" rimraf "^3.0.2" -"@abp/bootstrap-datepicker@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.2.tgz#4c4bc2d667d82f299df753a741de0de3333db244" - integrity sha512-vlsKrW0XraHnVJlkv5zm4xVO/+LX9Fz9x6x2B5nHS2DnMnusENaCyvynWwIrm95/lQyXbkUQ1rjnNpI8/5p5TQ== +"@abp/bootstrap-datepicker@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.3.tgz#866d4b3b83bb548e7d71066408c5ab344ce33473" + integrity sha512-nnzm9rxu/vKIUdQQMlN/kGqL+DbOg8FmN81KyWJ23KmisViLVqDeTEJBHPOJ3WuzRN+SacoreiL4f3C+7YiiXQ== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.2.tgz#129b119594cf1ff211736b4295c254bcd7d2174f" - integrity sha512-cbJSsaxVEkP+pvVH+2GaYDn/u2u2sPF8oOQb89ZYOy46d+gVph8ZMuJ4f6pefei8Ps2h+q1JPbb8UPkzyI53Ig== +"@abp/bootstrap@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.3.tgz#1d0ce60eff1dc67642147f0f2897eb13f6353d09" + integrity sha512-Vd/bdyh4bnp3vz4QsPjlc8Wi1qfaRSBDekWbHWkNq568BLXSMkK6ucugGAvC7kshBj3bbSpHd9xWUImim0+Q/w== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" bootstrap "^4.5.0" bootstrap-v4-rtl "4.4.1-2" -"@abp/core@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.2.tgz#88f4c8484a743f50c8980c1bb26cb79f453b9e3f" - integrity sha512-qMwY3YCpzTRmAkPH1u5ViduWjZdRgS9uu7chV+E+Iq7wknJ/JPtE/TrAUYbz/QhA7LFXoA74ZjbOeBW48x/cQA== +"@abp/core@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.3.tgz#05e45a5533f5a6f9014b4a4a87c73d96b7c071dc" + integrity sha512-lNrG0cYbHQHH6i2B5yfBL7iU3rl3TL66H+tDVCBqXNlnGAFOS48RG/jE2mMw54U8xgtwNczwBpgGVWAqU3uKig== dependencies: "@abp/utils" "~2.9.0" -"@abp/datatables.net-bs4@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.2.tgz#f16291b21352a07fe509daeec5b18da56c366157" - integrity sha512-jXM1B2hcNQzAhnMvCyeBc1UWeNWKTtChLk5QYQuQFbxifIT9WPT1Rs9+Q4QlV1VgTq2xzkOnZmXFjCmeQvMWgg== +"@abp/datatables.net-bs4@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.3.tgz#627a64f4fdc8c7fb7f4e51232c4147b5f2cfe041" + integrity sha512-seZR/yu8p0SJMafVCwYA5YAi7F2IMMo6cBJsF+phTBrPGBaXd63arNK7ZiXYp3RfwnafglotKNgswO0lYRMXKw== dependencies: - "@abp/datatables.net" "~3.0.2" + "@abp/datatables.net" "~3.0.3" datatables.net-bs4 "^1.10.21" -"@abp/datatables.net@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.2.tgz#13b0812f448e4cde29518fd38855d4eb285e8d52" - integrity sha512-KKJ11FxJmMuY+/5MqECnyUfVGrap0M4RYfVzt4wunfNA8xOufSMdsak1AbZU9/f6ygc4BTvVQV+ikmDpeaNHiQ== +"@abp/datatables.net@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.3.tgz#2a8eed257f943cc9d477eabe2501ead9fcc37d76" + integrity sha512-ULmYJZ3RU1kisMDCtB1Wq8tBmIn09QKW+asB33y9bT4td/cEDqULyJXbwNZYIzqA6VPzHenxiJbciFkFwPwkaQ== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" datatables.net "^1.10.21" -"@abp/font-awesome@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.2.tgz#85abed5014e1324925142ee3e81f23f9fbffd264" - integrity sha512-z4sw7LPQ2meajQbfCNu1I7lLho6K5cDCU1RZzHfTvry3FWRNrG5I5amvqEgC7/IAzz8WcRk/6O93rJFDuXKiHg== +"@abp/font-awesome@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.3.tgz#e0fb803c04c2f3f36017aa8a065a7f20245a2b50" + integrity sha512-UY9i35H+3EMqBszLdLyM72TRVp+hDe8CFs8q2PBNzoIsrMGqx4mKFSTxUsts03USqQ+4v6D08M056D3a0oS+DQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" "@fortawesome/fontawesome-free" "^5.13.0" -"@abp/jquery-form@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.2.tgz#6c1a3e1ae19add336bdf0c0d7ec8ff041303002d" - integrity sha512-UhjfO2h4ZnaYEncZ3ez8AnLzhg6D0oHy1GFjs3se+0u7rFR2iJ7YN3VlEeHweZokAzlVwoSrNXOKYRkhL8V75g== +"@abp/jquery-form@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.3.tgz#bcb6ca18c5671914fd87bb9651feef57142f9ae3" + integrity sha512-VokAc7jgBQAEcu15FSJPWLJcL+/mrFFwia/DdpkPyU+SrXHgD35Gu7Kb+/knQcVKNCM80mCH5gZXDbaA5Hrt3w== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.2.tgz#50dc6b9b0366b83790ec9d342eb9bd397037102b" - integrity sha512-xx2A0E5I7KFPU1wRK7edvwYk+gcjMFRnnhJYwg1CELAmzeaYORDo6gwXqywcyIIEpFSIKcqIMih4A/mFObq85w== +"@abp/jquery-validation-unobtrusive@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.3.tgz#e4247a56149306aa69a8df1017f7da9a07abce26" + integrity sha512-Ig3UyfPj5qyP2BCLYeaihMzzj2p4Hkh1uJX6Bm2qShRKDW3Br5D0z3JIEXiGvzukGTdCnTG+mwGQowZfdxgdUQ== dependencies: - "@abp/jquery-validation" "~3.0.2" + "@abp/jquery-validation" "~3.0.3" jquery-validation-unobtrusive "^3.2.11" -"@abp/jquery-validation@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.2.tgz#9477215ae684b394ab6c5a0deeac7a3615c2ff18" - integrity sha512-gJQrjScSJeAEMtR348QdsjtdMFut2GCrt070VaNrm0PpM7lhEue6Qq+M6/HJt44puRyyJxoxg6NJvnFm2RKbVQ== +"@abp/jquery-validation@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.3.tgz#c95f5b9fa5d6ec973bffb0e98d08317707a95b83" + integrity sha512-Ss38QtC4IrDbICNJT9fTNWka6ekmhrfCrArOeVR8O47BIx9FRl2IBX8TBjuC3ZXv9c1oNxTICmmSCgQYfdQ02A== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-validation "^1.19.2" -"@abp/jquery@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.2.tgz#d0e2bc7cecb4e6b4841b34779c81996b8f58e208" - integrity sha512-Xx/Qavk0khWu8H6vFi8IvrDu3LtWQCXo+NXi6qF2hPFgC2i9iWu9NQLAO5Wp9rZ+ZcAoLiQfSLYe2ZA9gNufcg== +"@abp/jquery@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.3.tgz#b9b6b5c110c116d484b090a485503eb1e5f7f8fb" + integrity sha512-EVkCdy8bGHZ1Za/H7Iw5e/maiihx3Hn8VvU//D6U3FlC3D/Fo7hYEPOVvlVtpco6J1e0wMe9dUnCQxjPDBfQGw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" jquery "~3.5.1" -"@abp/lodash@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.2.tgz#922fcf503952df0ec9944529d2c5cda1c274eaa5" - integrity sha512-RxboDnNPz8VZQiOW6gu51sbZ7lkXJ7snUyYn1luKk6IVZUoQf3l+LmJ1rLYiyprMniwIcjHfUNYJOu3sk02lig== +"@abp/lodash@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.3.tgz#4289cc71d83ed3ec29beacd784ee68b6ac575274" + integrity sha512-7UIagvq204xsyNQq7yucSHRj3BPE/yvTUELLEDWmjBQPkjB9GukeoeYqUxderEbVboCLIPYgGCwAWz9IyBtvFQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" lodash "^4.17.15" -"@abp/luxon@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.2.tgz#5c57ac2bd834804e725bc3ceb4014cbf2ac7afac" - integrity sha512-ysQ4/MWFWxXdu+QFSBSAufrTCyFF5yZC8ByMYk9ezvkRzzUl+Q4mO1cKV7IXDD+saQeAljKEehvyXS9hpGqf0A== +"@abp/luxon@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.3.tgz#e2eb7db08c07efbd877a7216bf4f6aca18e24473" + integrity sha512-L7rzo7LLV9Kn92Fdk8g0+CqVsxedRs1cLmDA2QDn4idJ728kYJjSZpRWPjLW087dkSBen0Gtr7gxUn6HiXizpA== dependencies: luxon "^1.24.1" -"@abp/malihu-custom-scrollbar-plugin@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.2.tgz#809c20a750b82872fa8e3a57d67c4e50ccb12ce5" - integrity sha512-7GkH4HhxnSciZa/hLR78AB1KYKoic0skU0A/MEYl3E/LWoQ5KpvRDsbhQw90ZKnfXOV+shb7P1sxNlz3bdI/hQ== +"@abp/malihu-custom-scrollbar-plugin@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.3.tgz#77d45ac9044ebbe5a80a5764f4a55f1943c813f1" + integrity sha512-cJfdJexrZjJfoz+mMWXCFgi6gDa0fq9OAcpxZGz5aVeIrNOnWdEvjT02beowU9Rhl6vL6jWxpqaWt3H4jiGOSw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/select2@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.2.tgz#8f970c99c1203a43c0651c0a5c27f6b056442386" - integrity sha512-YgIbaZWoaUzoz8TJQOi7ltPjLHtP0x7unPVnzs94hEPsIHaIBuITZNws93UpF5OJ0peVYCcdPpJXBjGW79kK1A== +"@abp/select2@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.3.tgz#5545502067f12bd9e502133dc9c0f7b73adf0d18" + integrity sha512-tmQN1TfO3szU6iw/K+YjoIqKeD6hnCVNIedg0l2YqTyZfo9QREEzY8CRqQELphhGkHmsMOl5tjXeD9BJVMna2g== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" select2 "^4.0.13" -"@abp/sweetalert@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.2.tgz#c3f1fb7c56ba965ea0717ab80e4cae83b01c7bc2" - integrity sha512-HDNFt9PfFZDYMQ72m4l9M56WlDsG9k9Y51LnXp6hQIbQcw/e2wBi7CGfd6qsspQhoiyjhelz2/EDpBsubE5J7w== +"@abp/sweetalert@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.3.tgz#a167d49303833d0821d63e47e3882b9dcb5a66f4" + integrity sha512-RMBkZ4Tmm2qcW88noswsrnD1cik0R3q2GCDV1Ngm2V+u2KbbSbtLN2B+YQEU1SwDop0Miml8eNk2GeRLYT6kbA== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" sweetalert "^2.1.2" -"@abp/timeago@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.2.tgz#f7aa843c8a934982af4e58a9e3a4bc4860ba2d84" - integrity sha512-PCTBRKqbHq3Qu8WPHIvNz2M+LY4tlR5URmJjvxuK+ckJzPI8bd7XsonJ1naf2BYyC1THlmRH1jA45yaTP8/juw== +"@abp/timeago@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.3.tgz#1fa2f4814babc965a2a95149b432f1fc466ad18a" + integrity sha512-iUG9RfV8vSernjMoojlnManZ+QTaRlMOvikeHQR8MaPYH/XC2sRLNoLN0sYTC5F/xzLQU4MSQFXZ54dobUyYfA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" timeago "^1.6.7" -"@abp/toastr@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.2.tgz#97e74c2bb5c86b400c831ad7c8543a7caea8c6c1" - integrity sha512-UqQX/1PZ0scm5Agparb8raM/L6yiVVuksfS7WKpeq3YtAp1Wd2og+7PxnAxeUlWchzHXgfsuBioPjLMvVTK0VQ== +"@abp/toastr@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.3.tgz#1f4421f03c6c69bd4ca93123953cdc4ac3abfd99" + integrity sha512-phMAFhJcLbti09da3WdDx5YZ2zzkh/Xgag2iJWunnnt5G+dH/4WTN1sLdIo06WwDLjArz19c2ZHqV52uwb2vXA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" toastr "^2.1.4" "@abp/utils@~2.9.0": 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 5a4bf0be41..4de8e26049 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.basic": "^3.0.2" + "@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.3" } } \ No newline at end of file diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/yarn.lock b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/yarn.lock index 06749cd92d..d3d85df4fb 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/yarn.lock +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.2.tgz#f971fc6afabf66cf73470e08ee8ed9ad5ac36d70" - integrity sha512-54/4SqG1Kqcj7hl4/DI5TE6ksnecKp/JNeIl/SE/Kpha23J9xothiyFVE+fE7ymZFPIy+HouGN+MIg+TDdqYTQ== +"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.3.tgz#d891bcff681544f759ee715f6423130bffd1a05c" + integrity sha512-iXbK+wnPqTrkyzs0MfXxOjqEptJSZC/TdCukfeOI4ozJET1Y+g+r4SOcHCagLCSljIcO7E1Y79z6LPP0/x9fJw== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.2" + "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.3" -"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.2.tgz#b0d6c38dc97d0bd4a010a7cc5c035ecd31c2ac87" - integrity sha512-KoltFRaJYZ6X8UB9actvkNF6TvsoftPDthyVMw/D+nstNwueWo4loYyiH7ukhZ3EpEYz7ROxDB04jQ9FaByPpw== - dependencies: - "@abp/aspnetcore.mvc.ui" "~3.0.2" - "@abp/bootstrap" "~3.0.2" - "@abp/bootstrap-datepicker" "~3.0.2" - "@abp/datatables.net-bs4" "~3.0.2" - "@abp/font-awesome" "~3.0.2" - "@abp/jquery-form" "~3.0.2" - "@abp/jquery-validation-unobtrusive" "~3.0.2" - "@abp/lodash" "~3.0.2" - "@abp/luxon" "~3.0.2" - "@abp/malihu-custom-scrollbar-plugin" "~3.0.2" - "@abp/select2" "~3.0.2" - "@abp/sweetalert" "~3.0.2" - "@abp/timeago" "~3.0.2" - "@abp/toastr" "~3.0.2" - -"@abp/aspnetcore.mvc.ui@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.2.tgz#2a7a481488681f41ed756b434a18a3a03181d366" - integrity sha512-TfJhqNSC66crMyJSRWswTP6bli2WYOZsBmkMH7ziei/uSp7KMUUM16n47qPGEye/jx7E4P3NYG0WH7wCyhgS6A== +"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.3.tgz#fcea3dcea6a85dd88aa370578dca6e77fc80891c" + integrity sha512-ZuBBpH4Rlvr2Y6FpYt7FIiJwZLBmrnB8xJmP993AQtx+s39sLK3enb+poipkUBnq1N3yxmct06j7wsIlsstKXw== + dependencies: + "@abp/aspnetcore.mvc.ui" "~3.0.3" + "@abp/bootstrap" "~3.0.3" + "@abp/bootstrap-datepicker" "~3.0.3" + "@abp/datatables.net-bs4" "~3.0.3" + "@abp/font-awesome" "~3.0.3" + "@abp/jquery-form" "~3.0.3" + "@abp/jquery-validation-unobtrusive" "~3.0.3" + "@abp/lodash" "~3.0.3" + "@abp/luxon" "~3.0.3" + "@abp/malihu-custom-scrollbar-plugin" "~3.0.3" + "@abp/select2" "~3.0.3" + "@abp/sweetalert" "~3.0.3" + "@abp/timeago" "~3.0.3" + "@abp/toastr" "~3.0.3" + +"@abp/aspnetcore.mvc.ui@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.3.tgz#88e3350a839434cee38f9497d160e5f23ef5ac28" + integrity sha512-C4cSlnhGYNGQul/0WD9HP87knBQ/bj2q45Jt73ugn9RygEJVjhXPv30+H4sl1GZXmEg+kLgdAoNjM/Iipe+egQ== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,138 +41,138 @@ path "^0.12.7" rimraf "^3.0.2" -"@abp/bootstrap-datepicker@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.2.tgz#4c4bc2d667d82f299df753a741de0de3333db244" - integrity sha512-vlsKrW0XraHnVJlkv5zm4xVO/+LX9Fz9x6x2B5nHS2DnMnusENaCyvynWwIrm95/lQyXbkUQ1rjnNpI8/5p5TQ== +"@abp/bootstrap-datepicker@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.3.tgz#866d4b3b83bb548e7d71066408c5ab344ce33473" + integrity sha512-nnzm9rxu/vKIUdQQMlN/kGqL+DbOg8FmN81KyWJ23KmisViLVqDeTEJBHPOJ3WuzRN+SacoreiL4f3C+7YiiXQ== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.2.tgz#129b119594cf1ff211736b4295c254bcd7d2174f" - integrity sha512-cbJSsaxVEkP+pvVH+2GaYDn/u2u2sPF8oOQb89ZYOy46d+gVph8ZMuJ4f6pefei8Ps2h+q1JPbb8UPkzyI53Ig== +"@abp/bootstrap@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.3.tgz#1d0ce60eff1dc67642147f0f2897eb13f6353d09" + integrity sha512-Vd/bdyh4bnp3vz4QsPjlc8Wi1qfaRSBDekWbHWkNq568BLXSMkK6ucugGAvC7kshBj3bbSpHd9xWUImim0+Q/w== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" bootstrap "^4.5.0" bootstrap-v4-rtl "4.4.1-2" -"@abp/core@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.2.tgz#88f4c8484a743f50c8980c1bb26cb79f453b9e3f" - integrity sha512-qMwY3YCpzTRmAkPH1u5ViduWjZdRgS9uu7chV+E+Iq7wknJ/JPtE/TrAUYbz/QhA7LFXoA74ZjbOeBW48x/cQA== +"@abp/core@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.3.tgz#05e45a5533f5a6f9014b4a4a87c73d96b7c071dc" + integrity sha512-lNrG0cYbHQHH6i2B5yfBL7iU3rl3TL66H+tDVCBqXNlnGAFOS48RG/jE2mMw54U8xgtwNczwBpgGVWAqU3uKig== dependencies: "@abp/utils" "~2.9.0" -"@abp/datatables.net-bs4@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.2.tgz#f16291b21352a07fe509daeec5b18da56c366157" - integrity sha512-jXM1B2hcNQzAhnMvCyeBc1UWeNWKTtChLk5QYQuQFbxifIT9WPT1Rs9+Q4QlV1VgTq2xzkOnZmXFjCmeQvMWgg== +"@abp/datatables.net-bs4@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.3.tgz#627a64f4fdc8c7fb7f4e51232c4147b5f2cfe041" + integrity sha512-seZR/yu8p0SJMafVCwYA5YAi7F2IMMo6cBJsF+phTBrPGBaXd63arNK7ZiXYp3RfwnafglotKNgswO0lYRMXKw== dependencies: - "@abp/datatables.net" "~3.0.2" + "@abp/datatables.net" "~3.0.3" datatables.net-bs4 "^1.10.21" -"@abp/datatables.net@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.2.tgz#13b0812f448e4cde29518fd38855d4eb285e8d52" - integrity sha512-KKJ11FxJmMuY+/5MqECnyUfVGrap0M4RYfVzt4wunfNA8xOufSMdsak1AbZU9/f6ygc4BTvVQV+ikmDpeaNHiQ== +"@abp/datatables.net@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.3.tgz#2a8eed257f943cc9d477eabe2501ead9fcc37d76" + integrity sha512-ULmYJZ3RU1kisMDCtB1Wq8tBmIn09QKW+asB33y9bT4td/cEDqULyJXbwNZYIzqA6VPzHenxiJbciFkFwPwkaQ== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" datatables.net "^1.10.21" -"@abp/font-awesome@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.2.tgz#85abed5014e1324925142ee3e81f23f9fbffd264" - integrity sha512-z4sw7LPQ2meajQbfCNu1I7lLho6K5cDCU1RZzHfTvry3FWRNrG5I5amvqEgC7/IAzz8WcRk/6O93rJFDuXKiHg== +"@abp/font-awesome@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.3.tgz#e0fb803c04c2f3f36017aa8a065a7f20245a2b50" + integrity sha512-UY9i35H+3EMqBszLdLyM72TRVp+hDe8CFs8q2PBNzoIsrMGqx4mKFSTxUsts03USqQ+4v6D08M056D3a0oS+DQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" "@fortawesome/fontawesome-free" "^5.13.0" -"@abp/jquery-form@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.2.tgz#6c1a3e1ae19add336bdf0c0d7ec8ff041303002d" - integrity sha512-UhjfO2h4ZnaYEncZ3ez8AnLzhg6D0oHy1GFjs3se+0u7rFR2iJ7YN3VlEeHweZokAzlVwoSrNXOKYRkhL8V75g== +"@abp/jquery-form@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.3.tgz#bcb6ca18c5671914fd87bb9651feef57142f9ae3" + integrity sha512-VokAc7jgBQAEcu15FSJPWLJcL+/mrFFwia/DdpkPyU+SrXHgD35Gu7Kb+/knQcVKNCM80mCH5gZXDbaA5Hrt3w== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.2.tgz#50dc6b9b0366b83790ec9d342eb9bd397037102b" - integrity sha512-xx2A0E5I7KFPU1wRK7edvwYk+gcjMFRnnhJYwg1CELAmzeaYORDo6gwXqywcyIIEpFSIKcqIMih4A/mFObq85w== +"@abp/jquery-validation-unobtrusive@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.3.tgz#e4247a56149306aa69a8df1017f7da9a07abce26" + integrity sha512-Ig3UyfPj5qyP2BCLYeaihMzzj2p4Hkh1uJX6Bm2qShRKDW3Br5D0z3JIEXiGvzukGTdCnTG+mwGQowZfdxgdUQ== dependencies: - "@abp/jquery-validation" "~3.0.2" + "@abp/jquery-validation" "~3.0.3" jquery-validation-unobtrusive "^3.2.11" -"@abp/jquery-validation@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.2.tgz#9477215ae684b394ab6c5a0deeac7a3615c2ff18" - integrity sha512-gJQrjScSJeAEMtR348QdsjtdMFut2GCrt070VaNrm0PpM7lhEue6Qq+M6/HJt44puRyyJxoxg6NJvnFm2RKbVQ== +"@abp/jquery-validation@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.3.tgz#c95f5b9fa5d6ec973bffb0e98d08317707a95b83" + integrity sha512-Ss38QtC4IrDbICNJT9fTNWka6ekmhrfCrArOeVR8O47BIx9FRl2IBX8TBjuC3ZXv9c1oNxTICmmSCgQYfdQ02A== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-validation "^1.19.2" -"@abp/jquery@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.2.tgz#d0e2bc7cecb4e6b4841b34779c81996b8f58e208" - integrity sha512-Xx/Qavk0khWu8H6vFi8IvrDu3LtWQCXo+NXi6qF2hPFgC2i9iWu9NQLAO5Wp9rZ+ZcAoLiQfSLYe2ZA9gNufcg== +"@abp/jquery@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.3.tgz#b9b6b5c110c116d484b090a485503eb1e5f7f8fb" + integrity sha512-EVkCdy8bGHZ1Za/H7Iw5e/maiihx3Hn8VvU//D6U3FlC3D/Fo7hYEPOVvlVtpco6J1e0wMe9dUnCQxjPDBfQGw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" jquery "~3.5.1" -"@abp/lodash@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.2.tgz#922fcf503952df0ec9944529d2c5cda1c274eaa5" - integrity sha512-RxboDnNPz8VZQiOW6gu51sbZ7lkXJ7snUyYn1luKk6IVZUoQf3l+LmJ1rLYiyprMniwIcjHfUNYJOu3sk02lig== +"@abp/lodash@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.3.tgz#4289cc71d83ed3ec29beacd784ee68b6ac575274" + integrity sha512-7UIagvq204xsyNQq7yucSHRj3BPE/yvTUELLEDWmjBQPkjB9GukeoeYqUxderEbVboCLIPYgGCwAWz9IyBtvFQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" lodash "^4.17.15" -"@abp/luxon@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.2.tgz#5c57ac2bd834804e725bc3ceb4014cbf2ac7afac" - integrity sha512-ysQ4/MWFWxXdu+QFSBSAufrTCyFF5yZC8ByMYk9ezvkRzzUl+Q4mO1cKV7IXDD+saQeAljKEehvyXS9hpGqf0A== +"@abp/luxon@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.3.tgz#e2eb7db08c07efbd877a7216bf4f6aca18e24473" + integrity sha512-L7rzo7LLV9Kn92Fdk8g0+CqVsxedRs1cLmDA2QDn4idJ728kYJjSZpRWPjLW087dkSBen0Gtr7gxUn6HiXizpA== dependencies: luxon "^1.24.1" -"@abp/malihu-custom-scrollbar-plugin@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.2.tgz#809c20a750b82872fa8e3a57d67c4e50ccb12ce5" - integrity sha512-7GkH4HhxnSciZa/hLR78AB1KYKoic0skU0A/MEYl3E/LWoQ5KpvRDsbhQw90ZKnfXOV+shb7P1sxNlz3bdI/hQ== +"@abp/malihu-custom-scrollbar-plugin@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.3.tgz#77d45ac9044ebbe5a80a5764f4a55f1943c813f1" + integrity sha512-cJfdJexrZjJfoz+mMWXCFgi6gDa0fq9OAcpxZGz5aVeIrNOnWdEvjT02beowU9Rhl6vL6jWxpqaWt3H4jiGOSw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/select2@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.2.tgz#8f970c99c1203a43c0651c0a5c27f6b056442386" - integrity sha512-YgIbaZWoaUzoz8TJQOi7ltPjLHtP0x7unPVnzs94hEPsIHaIBuITZNws93UpF5OJ0peVYCcdPpJXBjGW79kK1A== +"@abp/select2@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.3.tgz#5545502067f12bd9e502133dc9c0f7b73adf0d18" + integrity sha512-tmQN1TfO3szU6iw/K+YjoIqKeD6hnCVNIedg0l2YqTyZfo9QREEzY8CRqQELphhGkHmsMOl5tjXeD9BJVMna2g== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" select2 "^4.0.13" -"@abp/sweetalert@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.2.tgz#c3f1fb7c56ba965ea0717ab80e4cae83b01c7bc2" - integrity sha512-HDNFt9PfFZDYMQ72m4l9M56WlDsG9k9Y51LnXp6hQIbQcw/e2wBi7CGfd6qsspQhoiyjhelz2/EDpBsubE5J7w== +"@abp/sweetalert@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.3.tgz#a167d49303833d0821d63e47e3882b9dcb5a66f4" + integrity sha512-RMBkZ4Tmm2qcW88noswsrnD1cik0R3q2GCDV1Ngm2V+u2KbbSbtLN2B+YQEU1SwDop0Miml8eNk2GeRLYT6kbA== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" sweetalert "^2.1.2" -"@abp/timeago@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.2.tgz#f7aa843c8a934982af4e58a9e3a4bc4860ba2d84" - integrity sha512-PCTBRKqbHq3Qu8WPHIvNz2M+LY4tlR5URmJjvxuK+ckJzPI8bd7XsonJ1naf2BYyC1THlmRH1jA45yaTP8/juw== +"@abp/timeago@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.3.tgz#1fa2f4814babc965a2a95149b432f1fc466ad18a" + integrity sha512-iUG9RfV8vSernjMoojlnManZ+QTaRlMOvikeHQR8MaPYH/XC2sRLNoLN0sYTC5F/xzLQU4MSQFXZ54dobUyYfA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" timeago "^1.6.7" -"@abp/toastr@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.2.tgz#97e74c2bb5c86b400c831ad7c8543a7caea8c6c1" - integrity sha512-UqQX/1PZ0scm5Agparb8raM/L6yiVVuksfS7WKpeq3YtAp1Wd2og+7PxnAxeUlWchzHXgfsuBioPjLMvVTK0VQ== +"@abp/toastr@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.3.tgz#1f4421f03c6c69bd4ca93123953cdc4ac3abfd99" + integrity sha512-phMAFhJcLbti09da3WdDx5YZ2zzkh/Xgag2iJWunnnt5G+dH/4WTN1sLdIo06WwDLjArz19c2ZHqV52uwb2vXA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" toastr "^2.1.4" "@abp/utils@~2.9.0": diff --git a/templates/module/angular/package.json b/templates/module/angular/package.json index 6ce5913188..1e6da4a31b 100644 --- a/templates/module/angular/package.json +++ b/templates/module/angular/package.json @@ -15,11 +15,11 @@ }, "private": true, "dependencies": { - "@abp/ng.account": "~3.0.2", - "@abp/ng.identity": "~3.0.2", - "@abp/ng.setting-management": "~3.0.2", - "@abp/ng.tenant-management": "~3.0.2", - "@abp/ng.theme.basic": "~3.0.2", + "@abp/ng.account": "~3.0.3", + "@abp/ng.identity": "~3.0.3", + "@abp/ng.setting-management": "~3.0.3", + "@abp/ng.tenant-management": "~3.0.3", + "@abp/ng.theme.basic": "~3.0.3", "@angular/animations": "~10.0.0", "@angular/common": "~10.0.0", "@angular/compiler": "~10.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 a724ff7c30..b66c14e3cf 100644 --- a/templates/module/angular/projects/my-project-name/package.json +++ b/templates/module/angular/projects/my-project-name/package.json @@ -4,8 +4,8 @@ "peerDependencies": { "@angular/common": "^9.1.11", "@angular/core": "^9.1.11", - "@abp/ng.core": ">=3.0.2", - "@abp/ng.theme.shared": ">=3.0.2" + "@abp/ng.core": ">=3.0.3", + "@abp/ng.theme.shared": ">=3.0.3" }, "dependencies": { "tslib": "^2.0.0" diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.IdentityServer/package.json b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.IdentityServer/package.json index 782e4f2330..dc3297a937 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.IdentityServer/package.json +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.IdentityServer/package.json @@ -3,6 +3,6 @@ "name": "my-app-identityserver", "private": true, "dependencies": { - "@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.2" + "@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.3" } } \ No newline at end of file diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.IdentityServer/yarn.lock b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.IdentityServer/yarn.lock index 6207b7dea1..422897f2bf 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.IdentityServer/yarn.lock +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.IdentityServer/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.2.tgz#f971fc6afabf66cf73470e08ee8ed9ad5ac36d70" - integrity sha512-54/4SqG1Kqcj7hl4/DI5TE6ksnecKp/JNeIl/SE/Kpha23J9xothiyFVE+fE7ymZFPIy+HouGN+MIg+TDdqYTQ== +"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.3.tgz#d891bcff681544f759ee715f6423130bffd1a05c" + integrity sha512-iXbK+wnPqTrkyzs0MfXxOjqEptJSZC/TdCukfeOI4ozJET1Y+g+r4SOcHCagLCSljIcO7E1Y79z6LPP0/x9fJw== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.2" + "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.3" -"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.2.tgz#b0d6c38dc97d0bd4a010a7cc5c035ecd31c2ac87" - integrity sha512-KoltFRaJYZ6X8UB9actvkNF6TvsoftPDthyVMw/D+nstNwueWo4loYyiH7ukhZ3EpEYz7ROxDB04jQ9FaByPpw== - dependencies: - "@abp/aspnetcore.mvc.ui" "~3.0.2" - "@abp/bootstrap" "~3.0.2" - "@abp/bootstrap-datepicker" "~3.0.2" - "@abp/datatables.net-bs4" "~3.0.2" - "@abp/font-awesome" "~3.0.2" - "@abp/jquery-form" "~3.0.2" - "@abp/jquery-validation-unobtrusive" "~3.0.2" - "@abp/lodash" "~3.0.2" - "@abp/luxon" "~3.0.2" - "@abp/malihu-custom-scrollbar-plugin" "~3.0.2" - "@abp/select2" "~3.0.2" - "@abp/sweetalert" "~3.0.2" - "@abp/timeago" "~3.0.2" - "@abp/toastr" "~3.0.2" - -"@abp/aspnetcore.mvc.ui@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.2.tgz#2a7a481488681f41ed756b434a18a3a03181d366" - integrity sha512-TfJhqNSC66crMyJSRWswTP6bli2WYOZsBmkMH7ziei/uSp7KMUUM16n47qPGEye/jx7E4P3NYG0WH7wCyhgS6A== +"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.3.tgz#fcea3dcea6a85dd88aa370578dca6e77fc80891c" + integrity sha512-ZuBBpH4Rlvr2Y6FpYt7FIiJwZLBmrnB8xJmP993AQtx+s39sLK3enb+poipkUBnq1N3yxmct06j7wsIlsstKXw== + dependencies: + "@abp/aspnetcore.mvc.ui" "~3.0.3" + "@abp/bootstrap" "~3.0.3" + "@abp/bootstrap-datepicker" "~3.0.3" + "@abp/datatables.net-bs4" "~3.0.3" + "@abp/font-awesome" "~3.0.3" + "@abp/jquery-form" "~3.0.3" + "@abp/jquery-validation-unobtrusive" "~3.0.3" + "@abp/lodash" "~3.0.3" + "@abp/luxon" "~3.0.3" + "@abp/malihu-custom-scrollbar-plugin" "~3.0.3" + "@abp/select2" "~3.0.3" + "@abp/sweetalert" "~3.0.3" + "@abp/timeago" "~3.0.3" + "@abp/toastr" "~3.0.3" + +"@abp/aspnetcore.mvc.ui@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.3.tgz#88e3350a839434cee38f9497d160e5f23ef5ac28" + integrity sha512-C4cSlnhGYNGQul/0WD9HP87knBQ/bj2q45Jt73ugn9RygEJVjhXPv30+H4sl1GZXmEg+kLgdAoNjM/Iipe+egQ== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,138 +41,138 @@ path "^0.12.7" rimraf "^3.0.2" -"@abp/bootstrap-datepicker@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.2.tgz#4c4bc2d667d82f299df753a741de0de3333db244" - integrity sha512-vlsKrW0XraHnVJlkv5zm4xVO/+LX9Fz9x6x2B5nHS2DnMnusENaCyvynWwIrm95/lQyXbkUQ1rjnNpI8/5p5TQ== +"@abp/bootstrap-datepicker@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.3.tgz#866d4b3b83bb548e7d71066408c5ab344ce33473" + integrity sha512-nnzm9rxu/vKIUdQQMlN/kGqL+DbOg8FmN81KyWJ23KmisViLVqDeTEJBHPOJ3WuzRN+SacoreiL4f3C+7YiiXQ== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.2.tgz#129b119594cf1ff211736b4295c254bcd7d2174f" - integrity sha512-cbJSsaxVEkP+pvVH+2GaYDn/u2u2sPF8oOQb89ZYOy46d+gVph8ZMuJ4f6pefei8Ps2h+q1JPbb8UPkzyI53Ig== +"@abp/bootstrap@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.3.tgz#1d0ce60eff1dc67642147f0f2897eb13f6353d09" + integrity sha512-Vd/bdyh4bnp3vz4QsPjlc8Wi1qfaRSBDekWbHWkNq568BLXSMkK6ucugGAvC7kshBj3bbSpHd9xWUImim0+Q/w== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" bootstrap "^4.5.0" bootstrap-v4-rtl "4.4.1-2" -"@abp/core@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.2.tgz#88f4c8484a743f50c8980c1bb26cb79f453b9e3f" - integrity sha512-qMwY3YCpzTRmAkPH1u5ViduWjZdRgS9uu7chV+E+Iq7wknJ/JPtE/TrAUYbz/QhA7LFXoA74ZjbOeBW48x/cQA== +"@abp/core@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.3.tgz#05e45a5533f5a6f9014b4a4a87c73d96b7c071dc" + integrity sha512-lNrG0cYbHQHH6i2B5yfBL7iU3rl3TL66H+tDVCBqXNlnGAFOS48RG/jE2mMw54U8xgtwNczwBpgGVWAqU3uKig== dependencies: "@abp/utils" "~2.9.0" -"@abp/datatables.net-bs4@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.2.tgz#f16291b21352a07fe509daeec5b18da56c366157" - integrity sha512-jXM1B2hcNQzAhnMvCyeBc1UWeNWKTtChLk5QYQuQFbxifIT9WPT1Rs9+Q4QlV1VgTq2xzkOnZmXFjCmeQvMWgg== +"@abp/datatables.net-bs4@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.3.tgz#627a64f4fdc8c7fb7f4e51232c4147b5f2cfe041" + integrity sha512-seZR/yu8p0SJMafVCwYA5YAi7F2IMMo6cBJsF+phTBrPGBaXd63arNK7ZiXYp3RfwnafglotKNgswO0lYRMXKw== dependencies: - "@abp/datatables.net" "~3.0.2" + "@abp/datatables.net" "~3.0.3" datatables.net-bs4 "^1.10.21" -"@abp/datatables.net@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.2.tgz#13b0812f448e4cde29518fd38855d4eb285e8d52" - integrity sha512-KKJ11FxJmMuY+/5MqECnyUfVGrap0M4RYfVzt4wunfNA8xOufSMdsak1AbZU9/f6ygc4BTvVQV+ikmDpeaNHiQ== +"@abp/datatables.net@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.3.tgz#2a8eed257f943cc9d477eabe2501ead9fcc37d76" + integrity sha512-ULmYJZ3RU1kisMDCtB1Wq8tBmIn09QKW+asB33y9bT4td/cEDqULyJXbwNZYIzqA6VPzHenxiJbciFkFwPwkaQ== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" datatables.net "^1.10.21" -"@abp/font-awesome@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.2.tgz#85abed5014e1324925142ee3e81f23f9fbffd264" - integrity sha512-z4sw7LPQ2meajQbfCNu1I7lLho6K5cDCU1RZzHfTvry3FWRNrG5I5amvqEgC7/IAzz8WcRk/6O93rJFDuXKiHg== +"@abp/font-awesome@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.3.tgz#e0fb803c04c2f3f36017aa8a065a7f20245a2b50" + integrity sha512-UY9i35H+3EMqBszLdLyM72TRVp+hDe8CFs8q2PBNzoIsrMGqx4mKFSTxUsts03USqQ+4v6D08M056D3a0oS+DQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" "@fortawesome/fontawesome-free" "^5.13.0" -"@abp/jquery-form@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.2.tgz#6c1a3e1ae19add336bdf0c0d7ec8ff041303002d" - integrity sha512-UhjfO2h4ZnaYEncZ3ez8AnLzhg6D0oHy1GFjs3se+0u7rFR2iJ7YN3VlEeHweZokAzlVwoSrNXOKYRkhL8V75g== +"@abp/jquery-form@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.3.tgz#bcb6ca18c5671914fd87bb9651feef57142f9ae3" + integrity sha512-VokAc7jgBQAEcu15FSJPWLJcL+/mrFFwia/DdpkPyU+SrXHgD35Gu7Kb+/knQcVKNCM80mCH5gZXDbaA5Hrt3w== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.2.tgz#50dc6b9b0366b83790ec9d342eb9bd397037102b" - integrity sha512-xx2A0E5I7KFPU1wRK7edvwYk+gcjMFRnnhJYwg1CELAmzeaYORDo6gwXqywcyIIEpFSIKcqIMih4A/mFObq85w== +"@abp/jquery-validation-unobtrusive@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.3.tgz#e4247a56149306aa69a8df1017f7da9a07abce26" + integrity sha512-Ig3UyfPj5qyP2BCLYeaihMzzj2p4Hkh1uJX6Bm2qShRKDW3Br5D0z3JIEXiGvzukGTdCnTG+mwGQowZfdxgdUQ== dependencies: - "@abp/jquery-validation" "~3.0.2" + "@abp/jquery-validation" "~3.0.3" jquery-validation-unobtrusive "^3.2.11" -"@abp/jquery-validation@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.2.tgz#9477215ae684b394ab6c5a0deeac7a3615c2ff18" - integrity sha512-gJQrjScSJeAEMtR348QdsjtdMFut2GCrt070VaNrm0PpM7lhEue6Qq+M6/HJt44puRyyJxoxg6NJvnFm2RKbVQ== +"@abp/jquery-validation@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.3.tgz#c95f5b9fa5d6ec973bffb0e98d08317707a95b83" + integrity sha512-Ss38QtC4IrDbICNJT9fTNWka6ekmhrfCrArOeVR8O47BIx9FRl2IBX8TBjuC3ZXv9c1oNxTICmmSCgQYfdQ02A== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-validation "^1.19.2" -"@abp/jquery@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.2.tgz#d0e2bc7cecb4e6b4841b34779c81996b8f58e208" - integrity sha512-Xx/Qavk0khWu8H6vFi8IvrDu3LtWQCXo+NXi6qF2hPFgC2i9iWu9NQLAO5Wp9rZ+ZcAoLiQfSLYe2ZA9gNufcg== +"@abp/jquery@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.3.tgz#b9b6b5c110c116d484b090a485503eb1e5f7f8fb" + integrity sha512-EVkCdy8bGHZ1Za/H7Iw5e/maiihx3Hn8VvU//D6U3FlC3D/Fo7hYEPOVvlVtpco6J1e0wMe9dUnCQxjPDBfQGw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" jquery "~3.5.1" -"@abp/lodash@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.2.tgz#922fcf503952df0ec9944529d2c5cda1c274eaa5" - integrity sha512-RxboDnNPz8VZQiOW6gu51sbZ7lkXJ7snUyYn1luKk6IVZUoQf3l+LmJ1rLYiyprMniwIcjHfUNYJOu3sk02lig== +"@abp/lodash@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.3.tgz#4289cc71d83ed3ec29beacd784ee68b6ac575274" + integrity sha512-7UIagvq204xsyNQq7yucSHRj3BPE/yvTUELLEDWmjBQPkjB9GukeoeYqUxderEbVboCLIPYgGCwAWz9IyBtvFQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" lodash "^4.17.15" -"@abp/luxon@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.2.tgz#5c57ac2bd834804e725bc3ceb4014cbf2ac7afac" - integrity sha512-ysQ4/MWFWxXdu+QFSBSAufrTCyFF5yZC8ByMYk9ezvkRzzUl+Q4mO1cKV7IXDD+saQeAljKEehvyXS9hpGqf0A== +"@abp/luxon@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.3.tgz#e2eb7db08c07efbd877a7216bf4f6aca18e24473" + integrity sha512-L7rzo7LLV9Kn92Fdk8g0+CqVsxedRs1cLmDA2QDn4idJ728kYJjSZpRWPjLW087dkSBen0Gtr7gxUn6HiXizpA== dependencies: luxon "^1.24.1" -"@abp/malihu-custom-scrollbar-plugin@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.2.tgz#809c20a750b82872fa8e3a57d67c4e50ccb12ce5" - integrity sha512-7GkH4HhxnSciZa/hLR78AB1KYKoic0skU0A/MEYl3E/LWoQ5KpvRDsbhQw90ZKnfXOV+shb7P1sxNlz3bdI/hQ== +"@abp/malihu-custom-scrollbar-plugin@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.3.tgz#77d45ac9044ebbe5a80a5764f4a55f1943c813f1" + integrity sha512-cJfdJexrZjJfoz+mMWXCFgi6gDa0fq9OAcpxZGz5aVeIrNOnWdEvjT02beowU9Rhl6vL6jWxpqaWt3H4jiGOSw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/select2@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.2.tgz#8f970c99c1203a43c0651c0a5c27f6b056442386" - integrity sha512-YgIbaZWoaUzoz8TJQOi7ltPjLHtP0x7unPVnzs94hEPsIHaIBuITZNws93UpF5OJ0peVYCcdPpJXBjGW79kK1A== +"@abp/select2@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.3.tgz#5545502067f12bd9e502133dc9c0f7b73adf0d18" + integrity sha512-tmQN1TfO3szU6iw/K+YjoIqKeD6hnCVNIedg0l2YqTyZfo9QREEzY8CRqQELphhGkHmsMOl5tjXeD9BJVMna2g== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" select2 "^4.0.13" -"@abp/sweetalert@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.2.tgz#c3f1fb7c56ba965ea0717ab80e4cae83b01c7bc2" - integrity sha512-HDNFt9PfFZDYMQ72m4l9M56WlDsG9k9Y51LnXp6hQIbQcw/e2wBi7CGfd6qsspQhoiyjhelz2/EDpBsubE5J7w== +"@abp/sweetalert@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.3.tgz#a167d49303833d0821d63e47e3882b9dcb5a66f4" + integrity sha512-RMBkZ4Tmm2qcW88noswsrnD1cik0R3q2GCDV1Ngm2V+u2KbbSbtLN2B+YQEU1SwDop0Miml8eNk2GeRLYT6kbA== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" sweetalert "^2.1.2" -"@abp/timeago@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.2.tgz#f7aa843c8a934982af4e58a9e3a4bc4860ba2d84" - integrity sha512-PCTBRKqbHq3Qu8WPHIvNz2M+LY4tlR5URmJjvxuK+ckJzPI8bd7XsonJ1naf2BYyC1THlmRH1jA45yaTP8/juw== +"@abp/timeago@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.3.tgz#1fa2f4814babc965a2a95149b432f1fc466ad18a" + integrity sha512-iUG9RfV8vSernjMoojlnManZ+QTaRlMOvikeHQR8MaPYH/XC2sRLNoLN0sYTC5F/xzLQU4MSQFXZ54dobUyYfA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" timeago "^1.6.7" -"@abp/toastr@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.2.tgz#97e74c2bb5c86b400c831ad7c8543a7caea8c6c1" - integrity sha512-UqQX/1PZ0scm5Agparb8raM/L6yiVVuksfS7WKpeq3YtAp1Wd2og+7PxnAxeUlWchzHXgfsuBioPjLMvVTK0VQ== +"@abp/toastr@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.3.tgz#1f4421f03c6c69bd4ca93123953cdc4ac3abfd99" + integrity sha512-phMAFhJcLbti09da3WdDx5YZ2zzkh/Xgag2iJWunnnt5G+dH/4WTN1sLdIo06WwDLjArz19c2ZHqV52uwb2vXA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" toastr "^2.1.4" "@abp/utils@~2.9.0": diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/package.json b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/package.json index 5a4bf0be41..4de8e26049 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": "^3.0.2" + "@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.3" } } \ No newline at end of file diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/yarn.lock b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/yarn.lock index 6207b7dea1..422897f2bf 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/yarn.lock +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.2.tgz#f971fc6afabf66cf73470e08ee8ed9ad5ac36d70" - integrity sha512-54/4SqG1Kqcj7hl4/DI5TE6ksnecKp/JNeIl/SE/Kpha23J9xothiyFVE+fE7ymZFPIy+HouGN+MIg+TDdqYTQ== +"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.3.tgz#d891bcff681544f759ee715f6423130bffd1a05c" + integrity sha512-iXbK+wnPqTrkyzs0MfXxOjqEptJSZC/TdCukfeOI4ozJET1Y+g+r4SOcHCagLCSljIcO7E1Y79z6LPP0/x9fJw== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.2" + "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.3" -"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.2.tgz#b0d6c38dc97d0bd4a010a7cc5c035ecd31c2ac87" - integrity sha512-KoltFRaJYZ6X8UB9actvkNF6TvsoftPDthyVMw/D+nstNwueWo4loYyiH7ukhZ3EpEYz7ROxDB04jQ9FaByPpw== - dependencies: - "@abp/aspnetcore.mvc.ui" "~3.0.2" - "@abp/bootstrap" "~3.0.2" - "@abp/bootstrap-datepicker" "~3.0.2" - "@abp/datatables.net-bs4" "~3.0.2" - "@abp/font-awesome" "~3.0.2" - "@abp/jquery-form" "~3.0.2" - "@abp/jquery-validation-unobtrusive" "~3.0.2" - "@abp/lodash" "~3.0.2" - "@abp/luxon" "~3.0.2" - "@abp/malihu-custom-scrollbar-plugin" "~3.0.2" - "@abp/select2" "~3.0.2" - "@abp/sweetalert" "~3.0.2" - "@abp/timeago" "~3.0.2" - "@abp/toastr" "~3.0.2" - -"@abp/aspnetcore.mvc.ui@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.2.tgz#2a7a481488681f41ed756b434a18a3a03181d366" - integrity sha512-TfJhqNSC66crMyJSRWswTP6bli2WYOZsBmkMH7ziei/uSp7KMUUM16n47qPGEye/jx7E4P3NYG0WH7wCyhgS6A== +"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.3.tgz#fcea3dcea6a85dd88aa370578dca6e77fc80891c" + integrity sha512-ZuBBpH4Rlvr2Y6FpYt7FIiJwZLBmrnB8xJmP993AQtx+s39sLK3enb+poipkUBnq1N3yxmct06j7wsIlsstKXw== + dependencies: + "@abp/aspnetcore.mvc.ui" "~3.0.3" + "@abp/bootstrap" "~3.0.3" + "@abp/bootstrap-datepicker" "~3.0.3" + "@abp/datatables.net-bs4" "~3.0.3" + "@abp/font-awesome" "~3.0.3" + "@abp/jquery-form" "~3.0.3" + "@abp/jquery-validation-unobtrusive" "~3.0.3" + "@abp/lodash" "~3.0.3" + "@abp/luxon" "~3.0.3" + "@abp/malihu-custom-scrollbar-plugin" "~3.0.3" + "@abp/select2" "~3.0.3" + "@abp/sweetalert" "~3.0.3" + "@abp/timeago" "~3.0.3" + "@abp/toastr" "~3.0.3" + +"@abp/aspnetcore.mvc.ui@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.3.tgz#88e3350a839434cee38f9497d160e5f23ef5ac28" + integrity sha512-C4cSlnhGYNGQul/0WD9HP87knBQ/bj2q45Jt73ugn9RygEJVjhXPv30+H4sl1GZXmEg+kLgdAoNjM/Iipe+egQ== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,138 +41,138 @@ path "^0.12.7" rimraf "^3.0.2" -"@abp/bootstrap-datepicker@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.2.tgz#4c4bc2d667d82f299df753a741de0de3333db244" - integrity sha512-vlsKrW0XraHnVJlkv5zm4xVO/+LX9Fz9x6x2B5nHS2DnMnusENaCyvynWwIrm95/lQyXbkUQ1rjnNpI8/5p5TQ== +"@abp/bootstrap-datepicker@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.3.tgz#866d4b3b83bb548e7d71066408c5ab344ce33473" + integrity sha512-nnzm9rxu/vKIUdQQMlN/kGqL+DbOg8FmN81KyWJ23KmisViLVqDeTEJBHPOJ3WuzRN+SacoreiL4f3C+7YiiXQ== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.2.tgz#129b119594cf1ff211736b4295c254bcd7d2174f" - integrity sha512-cbJSsaxVEkP+pvVH+2GaYDn/u2u2sPF8oOQb89ZYOy46d+gVph8ZMuJ4f6pefei8Ps2h+q1JPbb8UPkzyI53Ig== +"@abp/bootstrap@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.3.tgz#1d0ce60eff1dc67642147f0f2897eb13f6353d09" + integrity sha512-Vd/bdyh4bnp3vz4QsPjlc8Wi1qfaRSBDekWbHWkNq568BLXSMkK6ucugGAvC7kshBj3bbSpHd9xWUImim0+Q/w== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" bootstrap "^4.5.0" bootstrap-v4-rtl "4.4.1-2" -"@abp/core@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.2.tgz#88f4c8484a743f50c8980c1bb26cb79f453b9e3f" - integrity sha512-qMwY3YCpzTRmAkPH1u5ViduWjZdRgS9uu7chV+E+Iq7wknJ/JPtE/TrAUYbz/QhA7LFXoA74ZjbOeBW48x/cQA== +"@abp/core@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.3.tgz#05e45a5533f5a6f9014b4a4a87c73d96b7c071dc" + integrity sha512-lNrG0cYbHQHH6i2B5yfBL7iU3rl3TL66H+tDVCBqXNlnGAFOS48RG/jE2mMw54U8xgtwNczwBpgGVWAqU3uKig== dependencies: "@abp/utils" "~2.9.0" -"@abp/datatables.net-bs4@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.2.tgz#f16291b21352a07fe509daeec5b18da56c366157" - integrity sha512-jXM1B2hcNQzAhnMvCyeBc1UWeNWKTtChLk5QYQuQFbxifIT9WPT1Rs9+Q4QlV1VgTq2xzkOnZmXFjCmeQvMWgg== +"@abp/datatables.net-bs4@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.3.tgz#627a64f4fdc8c7fb7f4e51232c4147b5f2cfe041" + integrity sha512-seZR/yu8p0SJMafVCwYA5YAi7F2IMMo6cBJsF+phTBrPGBaXd63arNK7ZiXYp3RfwnafglotKNgswO0lYRMXKw== dependencies: - "@abp/datatables.net" "~3.0.2" + "@abp/datatables.net" "~3.0.3" datatables.net-bs4 "^1.10.21" -"@abp/datatables.net@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.2.tgz#13b0812f448e4cde29518fd38855d4eb285e8d52" - integrity sha512-KKJ11FxJmMuY+/5MqECnyUfVGrap0M4RYfVzt4wunfNA8xOufSMdsak1AbZU9/f6ygc4BTvVQV+ikmDpeaNHiQ== +"@abp/datatables.net@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.3.tgz#2a8eed257f943cc9d477eabe2501ead9fcc37d76" + integrity sha512-ULmYJZ3RU1kisMDCtB1Wq8tBmIn09QKW+asB33y9bT4td/cEDqULyJXbwNZYIzqA6VPzHenxiJbciFkFwPwkaQ== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" datatables.net "^1.10.21" -"@abp/font-awesome@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.2.tgz#85abed5014e1324925142ee3e81f23f9fbffd264" - integrity sha512-z4sw7LPQ2meajQbfCNu1I7lLho6K5cDCU1RZzHfTvry3FWRNrG5I5amvqEgC7/IAzz8WcRk/6O93rJFDuXKiHg== +"@abp/font-awesome@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.3.tgz#e0fb803c04c2f3f36017aa8a065a7f20245a2b50" + integrity sha512-UY9i35H+3EMqBszLdLyM72TRVp+hDe8CFs8q2PBNzoIsrMGqx4mKFSTxUsts03USqQ+4v6D08M056D3a0oS+DQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" "@fortawesome/fontawesome-free" "^5.13.0" -"@abp/jquery-form@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.2.tgz#6c1a3e1ae19add336bdf0c0d7ec8ff041303002d" - integrity sha512-UhjfO2h4ZnaYEncZ3ez8AnLzhg6D0oHy1GFjs3se+0u7rFR2iJ7YN3VlEeHweZokAzlVwoSrNXOKYRkhL8V75g== +"@abp/jquery-form@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.3.tgz#bcb6ca18c5671914fd87bb9651feef57142f9ae3" + integrity sha512-VokAc7jgBQAEcu15FSJPWLJcL+/mrFFwia/DdpkPyU+SrXHgD35Gu7Kb+/knQcVKNCM80mCH5gZXDbaA5Hrt3w== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.2.tgz#50dc6b9b0366b83790ec9d342eb9bd397037102b" - integrity sha512-xx2A0E5I7KFPU1wRK7edvwYk+gcjMFRnnhJYwg1CELAmzeaYORDo6gwXqywcyIIEpFSIKcqIMih4A/mFObq85w== +"@abp/jquery-validation-unobtrusive@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.3.tgz#e4247a56149306aa69a8df1017f7da9a07abce26" + integrity sha512-Ig3UyfPj5qyP2BCLYeaihMzzj2p4Hkh1uJX6Bm2qShRKDW3Br5D0z3JIEXiGvzukGTdCnTG+mwGQowZfdxgdUQ== dependencies: - "@abp/jquery-validation" "~3.0.2" + "@abp/jquery-validation" "~3.0.3" jquery-validation-unobtrusive "^3.2.11" -"@abp/jquery-validation@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.2.tgz#9477215ae684b394ab6c5a0deeac7a3615c2ff18" - integrity sha512-gJQrjScSJeAEMtR348QdsjtdMFut2GCrt070VaNrm0PpM7lhEue6Qq+M6/HJt44puRyyJxoxg6NJvnFm2RKbVQ== +"@abp/jquery-validation@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.3.tgz#c95f5b9fa5d6ec973bffb0e98d08317707a95b83" + integrity sha512-Ss38QtC4IrDbICNJT9fTNWka6ekmhrfCrArOeVR8O47BIx9FRl2IBX8TBjuC3ZXv9c1oNxTICmmSCgQYfdQ02A== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-validation "^1.19.2" -"@abp/jquery@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.2.tgz#d0e2bc7cecb4e6b4841b34779c81996b8f58e208" - integrity sha512-Xx/Qavk0khWu8H6vFi8IvrDu3LtWQCXo+NXi6qF2hPFgC2i9iWu9NQLAO5Wp9rZ+ZcAoLiQfSLYe2ZA9gNufcg== +"@abp/jquery@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.3.tgz#b9b6b5c110c116d484b090a485503eb1e5f7f8fb" + integrity sha512-EVkCdy8bGHZ1Za/H7Iw5e/maiihx3Hn8VvU//D6U3FlC3D/Fo7hYEPOVvlVtpco6J1e0wMe9dUnCQxjPDBfQGw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" jquery "~3.5.1" -"@abp/lodash@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.2.tgz#922fcf503952df0ec9944529d2c5cda1c274eaa5" - integrity sha512-RxboDnNPz8VZQiOW6gu51sbZ7lkXJ7snUyYn1luKk6IVZUoQf3l+LmJ1rLYiyprMniwIcjHfUNYJOu3sk02lig== +"@abp/lodash@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.3.tgz#4289cc71d83ed3ec29beacd784ee68b6ac575274" + integrity sha512-7UIagvq204xsyNQq7yucSHRj3BPE/yvTUELLEDWmjBQPkjB9GukeoeYqUxderEbVboCLIPYgGCwAWz9IyBtvFQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" lodash "^4.17.15" -"@abp/luxon@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.2.tgz#5c57ac2bd834804e725bc3ceb4014cbf2ac7afac" - integrity sha512-ysQ4/MWFWxXdu+QFSBSAufrTCyFF5yZC8ByMYk9ezvkRzzUl+Q4mO1cKV7IXDD+saQeAljKEehvyXS9hpGqf0A== +"@abp/luxon@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.3.tgz#e2eb7db08c07efbd877a7216bf4f6aca18e24473" + integrity sha512-L7rzo7LLV9Kn92Fdk8g0+CqVsxedRs1cLmDA2QDn4idJ728kYJjSZpRWPjLW087dkSBen0Gtr7gxUn6HiXizpA== dependencies: luxon "^1.24.1" -"@abp/malihu-custom-scrollbar-plugin@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.2.tgz#809c20a750b82872fa8e3a57d67c4e50ccb12ce5" - integrity sha512-7GkH4HhxnSciZa/hLR78AB1KYKoic0skU0A/MEYl3E/LWoQ5KpvRDsbhQw90ZKnfXOV+shb7P1sxNlz3bdI/hQ== +"@abp/malihu-custom-scrollbar-plugin@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.3.tgz#77d45ac9044ebbe5a80a5764f4a55f1943c813f1" + integrity sha512-cJfdJexrZjJfoz+mMWXCFgi6gDa0fq9OAcpxZGz5aVeIrNOnWdEvjT02beowU9Rhl6vL6jWxpqaWt3H4jiGOSw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/select2@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.2.tgz#8f970c99c1203a43c0651c0a5c27f6b056442386" - integrity sha512-YgIbaZWoaUzoz8TJQOi7ltPjLHtP0x7unPVnzs94hEPsIHaIBuITZNws93UpF5OJ0peVYCcdPpJXBjGW79kK1A== +"@abp/select2@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.3.tgz#5545502067f12bd9e502133dc9c0f7b73adf0d18" + integrity sha512-tmQN1TfO3szU6iw/K+YjoIqKeD6hnCVNIedg0l2YqTyZfo9QREEzY8CRqQELphhGkHmsMOl5tjXeD9BJVMna2g== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" select2 "^4.0.13" -"@abp/sweetalert@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.2.tgz#c3f1fb7c56ba965ea0717ab80e4cae83b01c7bc2" - integrity sha512-HDNFt9PfFZDYMQ72m4l9M56WlDsG9k9Y51LnXp6hQIbQcw/e2wBi7CGfd6qsspQhoiyjhelz2/EDpBsubE5J7w== +"@abp/sweetalert@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.3.tgz#a167d49303833d0821d63e47e3882b9dcb5a66f4" + integrity sha512-RMBkZ4Tmm2qcW88noswsrnD1cik0R3q2GCDV1Ngm2V+u2KbbSbtLN2B+YQEU1SwDop0Miml8eNk2GeRLYT6kbA== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" sweetalert "^2.1.2" -"@abp/timeago@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.2.tgz#f7aa843c8a934982af4e58a9e3a4bc4860ba2d84" - integrity sha512-PCTBRKqbHq3Qu8WPHIvNz2M+LY4tlR5URmJjvxuK+ckJzPI8bd7XsonJ1naf2BYyC1THlmRH1jA45yaTP8/juw== +"@abp/timeago@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.3.tgz#1fa2f4814babc965a2a95149b432f1fc466ad18a" + integrity sha512-iUG9RfV8vSernjMoojlnManZ+QTaRlMOvikeHQR8MaPYH/XC2sRLNoLN0sYTC5F/xzLQU4MSQFXZ54dobUyYfA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" timeago "^1.6.7" -"@abp/toastr@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.2.tgz#97e74c2bb5c86b400c831ad7c8543a7caea8c6c1" - integrity sha512-UqQX/1PZ0scm5Agparb8raM/L6yiVVuksfS7WKpeq3YtAp1Wd2og+7PxnAxeUlWchzHXgfsuBioPjLMvVTK0VQ== +"@abp/toastr@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.3.tgz#1f4421f03c6c69bd4ca93123953cdc4ac3abfd99" + integrity sha512-phMAFhJcLbti09da3WdDx5YZ2zzkh/Xgag2iJWunnnt5G+dH/4WTN1sLdIo06WwDLjArz19c2ZHqV52uwb2vXA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" toastr "^2.1.4" "@abp/utils@~2.9.0": diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/package.json b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/package.json index 5a4bf0be41..4de8e26049 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": "^3.0.2" + "@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.3" } } \ No newline at end of file diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/yarn.lock b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/yarn.lock index 774a784424..f8ea1c4cb0 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/yarn.lock +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/yarn.lock @@ -2,37 +2,37 @@ # yarn lockfile v1 -"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.2.tgz#f971fc6afabf66cf73470e08ee8ed9ad5ac36d70" - integrity sha512-54/4SqG1Kqcj7hl4/DI5TE6ksnecKp/JNeIl/SE/Kpha23J9xothiyFVE+fE7ymZFPIy+HouGN+MIg+TDdqYTQ== +"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.3.tgz#d891bcff681544f759ee715f6423130bffd1a05c" + integrity sha512-iXbK+wnPqTrkyzs0MfXxOjqEptJSZC/TdCukfeOI4ozJET1Y+g+r4SOcHCagLCSljIcO7E1Y79z6LPP0/x9fJw== dependencies: - "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.2" + "@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.3" -"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.2.tgz#b0d6c38dc97d0bd4a010a7cc5c035ecd31c2ac87" - integrity sha512-KoltFRaJYZ6X8UB9actvkNF6TvsoftPDthyVMw/D+nstNwueWo4loYyiH7ukhZ3EpEYz7ROxDB04jQ9FaByPpw== - dependencies: - "@abp/aspnetcore.mvc.ui" "~3.0.2" - "@abp/bootstrap" "~3.0.2" - "@abp/bootstrap-datepicker" "~3.0.2" - "@abp/datatables.net-bs4" "~3.0.2" - "@abp/font-awesome" "~3.0.2" - "@abp/jquery-form" "~3.0.2" - "@abp/jquery-validation-unobtrusive" "~3.0.2" - "@abp/lodash" "~3.0.2" - "@abp/luxon" "~3.0.2" - "@abp/malihu-custom-scrollbar-plugin" "~3.0.2" - "@abp/select2" "~3.0.2" - "@abp/sweetalert" "~3.0.2" - "@abp/timeago" "~3.0.2" - "@abp/toastr" "~3.0.2" - -"@abp/aspnetcore.mvc.ui@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.2.tgz#2a7a481488681f41ed756b434a18a3a03181d366" - integrity sha512-TfJhqNSC66crMyJSRWswTP6bli2WYOZsBmkMH7ziei/uSp7KMUUM16n47qPGEye/jx7E4P3NYG0WH7wCyhgS6A== +"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.3.tgz#fcea3dcea6a85dd88aa370578dca6e77fc80891c" + integrity sha512-ZuBBpH4Rlvr2Y6FpYt7FIiJwZLBmrnB8xJmP993AQtx+s39sLK3enb+poipkUBnq1N3yxmct06j7wsIlsstKXw== + dependencies: + "@abp/aspnetcore.mvc.ui" "~3.0.3" + "@abp/bootstrap" "~3.0.3" + "@abp/bootstrap-datepicker" "~3.0.3" + "@abp/datatables.net-bs4" "~3.0.3" + "@abp/font-awesome" "~3.0.3" + "@abp/jquery-form" "~3.0.3" + "@abp/jquery-validation-unobtrusive" "~3.0.3" + "@abp/lodash" "~3.0.3" + "@abp/luxon" "~3.0.3" + "@abp/malihu-custom-scrollbar-plugin" "~3.0.3" + "@abp/select2" "~3.0.3" + "@abp/sweetalert" "~3.0.3" + "@abp/timeago" "~3.0.3" + "@abp/toastr" "~3.0.3" + +"@abp/aspnetcore.mvc.ui@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.3.tgz#88e3350a839434cee38f9497d160e5f23ef5ac28" + integrity sha512-C4cSlnhGYNGQul/0WD9HP87knBQ/bj2q45Jt73ugn9RygEJVjhXPv30+H4sl1GZXmEg+kLgdAoNjM/Iipe+egQ== dependencies: ansi-colors "^4.1.1" extend-object "^1.0.0" @@ -41,138 +41,138 @@ path "^0.12.7" rimraf "^3.0.2" -"@abp/bootstrap-datepicker@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.2.tgz#4c4bc2d667d82f299df753a741de0de3333db244" - integrity sha512-vlsKrW0XraHnVJlkv5zm4xVO/+LX9Fz9x6x2B5nHS2DnMnusENaCyvynWwIrm95/lQyXbkUQ1rjnNpI8/5p5TQ== +"@abp/bootstrap-datepicker@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.3.tgz#866d4b3b83bb548e7d71066408c5ab344ce33473" + integrity sha512-nnzm9rxu/vKIUdQQMlN/kGqL+DbOg8FmN81KyWJ23KmisViLVqDeTEJBHPOJ3WuzRN+SacoreiL4f3C+7YiiXQ== dependencies: bootstrap-datepicker "^1.9.0" -"@abp/bootstrap@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.2.tgz#129b119594cf1ff211736b4295c254bcd7d2174f" - integrity sha512-cbJSsaxVEkP+pvVH+2GaYDn/u2u2sPF8oOQb89ZYOy46d+gVph8ZMuJ4f6pefei8Ps2h+q1JPbb8UPkzyI53Ig== +"@abp/bootstrap@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.3.tgz#1d0ce60eff1dc67642147f0f2897eb13f6353d09" + integrity sha512-Vd/bdyh4bnp3vz4QsPjlc8Wi1qfaRSBDekWbHWkNq568BLXSMkK6ucugGAvC7kshBj3bbSpHd9xWUImim0+Q/w== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" bootstrap "^4.5.0" bootstrap-v4-rtl "4.4.1-2" -"@abp/core@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.2.tgz#88f4c8484a743f50c8980c1bb26cb79f453b9e3f" - integrity sha512-qMwY3YCpzTRmAkPH1u5ViduWjZdRgS9uu7chV+E+Iq7wknJ/JPtE/TrAUYbz/QhA7LFXoA74ZjbOeBW48x/cQA== +"@abp/core@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.3.tgz#05e45a5533f5a6f9014b4a4a87c73d96b7c071dc" + integrity sha512-lNrG0cYbHQHH6i2B5yfBL7iU3rl3TL66H+tDVCBqXNlnGAFOS48RG/jE2mMw54U8xgtwNczwBpgGVWAqU3uKig== dependencies: "@abp/utils" "~2.9.0" -"@abp/datatables.net-bs4@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.2.tgz#f16291b21352a07fe509daeec5b18da56c366157" - integrity sha512-jXM1B2hcNQzAhnMvCyeBc1UWeNWKTtChLk5QYQuQFbxifIT9WPT1Rs9+Q4QlV1VgTq2xzkOnZmXFjCmeQvMWgg== +"@abp/datatables.net-bs4@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.3.tgz#627a64f4fdc8c7fb7f4e51232c4147b5f2cfe041" + integrity sha512-seZR/yu8p0SJMafVCwYA5YAi7F2IMMo6cBJsF+phTBrPGBaXd63arNK7ZiXYp3RfwnafglotKNgswO0lYRMXKw== dependencies: - "@abp/datatables.net" "~3.0.2" + "@abp/datatables.net" "~3.0.3" datatables.net-bs4 "^1.10.21" -"@abp/datatables.net@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.2.tgz#13b0812f448e4cde29518fd38855d4eb285e8d52" - integrity sha512-KKJ11FxJmMuY+/5MqECnyUfVGrap0M4RYfVzt4wunfNA8xOufSMdsak1AbZU9/f6ygc4BTvVQV+ikmDpeaNHiQ== +"@abp/datatables.net@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.3.tgz#2a8eed257f943cc9d477eabe2501ead9fcc37d76" + integrity sha512-ULmYJZ3RU1kisMDCtB1Wq8tBmIn09QKW+asB33y9bT4td/cEDqULyJXbwNZYIzqA6VPzHenxiJbciFkFwPwkaQ== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" datatables.net "^1.10.21" -"@abp/font-awesome@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.2.tgz#85abed5014e1324925142ee3e81f23f9fbffd264" - integrity sha512-z4sw7LPQ2meajQbfCNu1I7lLho6K5cDCU1RZzHfTvry3FWRNrG5I5amvqEgC7/IAzz8WcRk/6O93rJFDuXKiHg== +"@abp/font-awesome@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.3.tgz#e0fb803c04c2f3f36017aa8a065a7f20245a2b50" + integrity sha512-UY9i35H+3EMqBszLdLyM72TRVp+hDe8CFs8q2PBNzoIsrMGqx4mKFSTxUsts03USqQ+4v6D08M056D3a0oS+DQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" "@fortawesome/fontawesome-free" "^5.13.0" -"@abp/jquery-form@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.2.tgz#6c1a3e1ae19add336bdf0c0d7ec8ff041303002d" - integrity sha512-UhjfO2h4ZnaYEncZ3ez8AnLzhg6D0oHy1GFjs3se+0u7rFR2iJ7YN3VlEeHweZokAzlVwoSrNXOKYRkhL8V75g== +"@abp/jquery-form@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.3.tgz#bcb6ca18c5671914fd87bb9651feef57142f9ae3" + integrity sha512-VokAc7jgBQAEcu15FSJPWLJcL+/mrFFwia/DdpkPyU+SrXHgD35Gu7Kb+/knQcVKNCM80mCH5gZXDbaA5Hrt3w== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-form "^4.3.0" -"@abp/jquery-validation-unobtrusive@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.2.tgz#50dc6b9b0366b83790ec9d342eb9bd397037102b" - integrity sha512-xx2A0E5I7KFPU1wRK7edvwYk+gcjMFRnnhJYwg1CELAmzeaYORDo6gwXqywcyIIEpFSIKcqIMih4A/mFObq85w== +"@abp/jquery-validation-unobtrusive@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.3.tgz#e4247a56149306aa69a8df1017f7da9a07abce26" + integrity sha512-Ig3UyfPj5qyP2BCLYeaihMzzj2p4Hkh1uJX6Bm2qShRKDW3Br5D0z3JIEXiGvzukGTdCnTG+mwGQowZfdxgdUQ== dependencies: - "@abp/jquery-validation" "~3.0.2" + "@abp/jquery-validation" "~3.0.3" jquery-validation-unobtrusive "^3.2.11" -"@abp/jquery-validation@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.2.tgz#9477215ae684b394ab6c5a0deeac7a3615c2ff18" - integrity sha512-gJQrjScSJeAEMtR348QdsjtdMFut2GCrt070VaNrm0PpM7lhEue6Qq+M6/HJt44puRyyJxoxg6NJvnFm2RKbVQ== +"@abp/jquery-validation@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.3.tgz#c95f5b9fa5d6ec973bffb0e98d08317707a95b83" + integrity sha512-Ss38QtC4IrDbICNJT9fTNWka6ekmhrfCrArOeVR8O47BIx9FRl2IBX8TBjuC3ZXv9c1oNxTICmmSCgQYfdQ02A== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" jquery-validation "^1.19.2" -"@abp/jquery@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.2.tgz#d0e2bc7cecb4e6b4841b34779c81996b8f58e208" - integrity sha512-Xx/Qavk0khWu8H6vFi8IvrDu3LtWQCXo+NXi6qF2hPFgC2i9iWu9NQLAO5Wp9rZ+ZcAoLiQfSLYe2ZA9gNufcg== +"@abp/jquery@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.3.tgz#b9b6b5c110c116d484b090a485503eb1e5f7f8fb" + integrity sha512-EVkCdy8bGHZ1Za/H7Iw5e/maiihx3Hn8VvU//D6U3FlC3D/Fo7hYEPOVvlVtpco6J1e0wMe9dUnCQxjPDBfQGw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" jquery "~3.5.1" -"@abp/lodash@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.2.tgz#922fcf503952df0ec9944529d2c5cda1c274eaa5" - integrity sha512-RxboDnNPz8VZQiOW6gu51sbZ7lkXJ7snUyYn1luKk6IVZUoQf3l+LmJ1rLYiyprMniwIcjHfUNYJOu3sk02lig== +"@abp/lodash@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.3.tgz#4289cc71d83ed3ec29beacd784ee68b6ac575274" + integrity sha512-7UIagvq204xsyNQq7yucSHRj3BPE/yvTUELLEDWmjBQPkjB9GukeoeYqUxderEbVboCLIPYgGCwAWz9IyBtvFQ== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" lodash "^4.17.15" -"@abp/luxon@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.2.tgz#5c57ac2bd834804e725bc3ceb4014cbf2ac7afac" - integrity sha512-ysQ4/MWFWxXdu+QFSBSAufrTCyFF5yZC8ByMYk9ezvkRzzUl+Q4mO1cKV7IXDD+saQeAljKEehvyXS9hpGqf0A== +"@abp/luxon@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.3.tgz#e2eb7db08c07efbd877a7216bf4f6aca18e24473" + integrity sha512-L7rzo7LLV9Kn92Fdk8g0+CqVsxedRs1cLmDA2QDn4idJ728kYJjSZpRWPjLW087dkSBen0Gtr7gxUn6HiXizpA== dependencies: luxon "^1.24.1" -"@abp/malihu-custom-scrollbar-plugin@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.2.tgz#809c20a750b82872fa8e3a57d67c4e50ccb12ce5" - integrity sha512-7GkH4HhxnSciZa/hLR78AB1KYKoic0skU0A/MEYl3E/LWoQ5KpvRDsbhQw90ZKnfXOV+shb7P1sxNlz3bdI/hQ== +"@abp/malihu-custom-scrollbar-plugin@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.3.tgz#77d45ac9044ebbe5a80a5764f4a55f1943c813f1" + integrity sha512-cJfdJexrZjJfoz+mMWXCFgi6gDa0fq9OAcpxZGz5aVeIrNOnWdEvjT02beowU9Rhl6vL6jWxpqaWt3H4jiGOSw== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" malihu-custom-scrollbar-plugin "^3.1.5" -"@abp/select2@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.2.tgz#8f970c99c1203a43c0651c0a5c27f6b056442386" - integrity sha512-YgIbaZWoaUzoz8TJQOi7ltPjLHtP0x7unPVnzs94hEPsIHaIBuITZNws93UpF5OJ0peVYCcdPpJXBjGW79kK1A== +"@abp/select2@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.3.tgz#5545502067f12bd9e502133dc9c0f7b73adf0d18" + integrity sha512-tmQN1TfO3szU6iw/K+YjoIqKeD6hnCVNIedg0l2YqTyZfo9QREEzY8CRqQELphhGkHmsMOl5tjXeD9BJVMna2g== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" select2 "^4.0.13" -"@abp/sweetalert@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.2.tgz#c3f1fb7c56ba965ea0717ab80e4cae83b01c7bc2" - integrity sha512-HDNFt9PfFZDYMQ72m4l9M56WlDsG9k9Y51LnXp6hQIbQcw/e2wBi7CGfd6qsspQhoiyjhelz2/EDpBsubE5J7w== +"@abp/sweetalert@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.3.tgz#a167d49303833d0821d63e47e3882b9dcb5a66f4" + integrity sha512-RMBkZ4Tmm2qcW88noswsrnD1cik0R3q2GCDV1Ngm2V+u2KbbSbtLN2B+YQEU1SwDop0Miml8eNk2GeRLYT6kbA== dependencies: - "@abp/core" "~3.0.2" + "@abp/core" "~3.0.3" sweetalert "^2.1.2" -"@abp/timeago@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.2.tgz#f7aa843c8a934982af4e58a9e3a4bc4860ba2d84" - integrity sha512-PCTBRKqbHq3Qu8WPHIvNz2M+LY4tlR5URmJjvxuK+ckJzPI8bd7XsonJ1naf2BYyC1THlmRH1jA45yaTP8/juw== +"@abp/timeago@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.3.tgz#1fa2f4814babc965a2a95149b432f1fc466ad18a" + integrity sha512-iUG9RfV8vSernjMoojlnManZ+QTaRlMOvikeHQR8MaPYH/XC2sRLNoLN0sYTC5F/xzLQU4MSQFXZ54dobUyYfA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" timeago "^1.6.7" -"@abp/toastr@~3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.2.tgz#97e74c2bb5c86b400c831ad7c8543a7caea8c6c1" - integrity sha512-UqQX/1PZ0scm5Agparb8raM/L6yiVVuksfS7WKpeq3YtAp1Wd2og+7PxnAxeUlWchzHXgfsuBioPjLMvVTK0VQ== +"@abp/toastr@~3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.3.tgz#1f4421f03c6c69bd4ca93123953cdc4ac3abfd99" + integrity sha512-phMAFhJcLbti09da3WdDx5YZ2zzkh/Xgag2iJWunnnt5G+dH/4WTN1sLdIo06WwDLjArz19c2ZHqV52uwb2vXA== dependencies: - "@abp/jquery" "~3.0.2" + "@abp/jquery" "~3.0.3" toastr "^2.1.4" "@abp/utils@~2.9.0":