Merge branch 'dev' of https://github.com/abpframework/abp into feat/4894

pull/4956/head
mehmet-erim 5 years ago
commit 2304e71ffb

@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>3.1.0</Version>
<Version>3.1.0</Version>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<PackageIconUrl>https://abp.io/assets/abp_nupkg.png</PackageIconUrl>
<PackageProjectUrl>https://abp.io</PackageProjectUrl>

@ -7,7 +7,7 @@ ABP Framework provides a pre-built and standard endpoint that contains some usef
* [Setting](../Settings.md) values for the current user.
* Info about the [current user](../CurrentUser.md) (like id and user name).
* Info about the current [tenant](../Multi-Tenancy.md) (like id and name).
* [Time zone](../Timing.md) information for the current user and the [clock](Timing.md) type of the application.
* [Time zone](../Timing.md) information for the current user and the [clock](../Timing.md) type of the application.
## HTTP API

@ -2,12 +2,12 @@
ABP框架提供了一个预构建的标准端点,其中包含一些有关应用程序/服务的有用信息. 这里是此端点的一些基本信息的列表:
* [本地化](Localization.md)值, 支持应用程序的当前语言.
* 当前用户可用和已授予的[策略](Authorization.md)(权限).
* 当前用户的[设置](Settings.md)值.
* 关于[当前用户](CurrentUser.md)的信息 (如 id 和用户名).
* 关于当前[租户](Multi-Tenancy.md)的信息 (如 id 和名称).
* 当前用户的[时区](Timing.md)信息和应用程序的[时钟](Timing.md)类型.
* [本地化](../Localization.md)值, 支持应用程序的当前语言.
* 当前用户可用和已授予的[策略](../Authorization.md)(权限).
* 当前用户的[设置](../Settings.md)值.
* 关于[当前用户](../CurrentUser.md)的信息 (如 id 和用户名).
* 关于当前[租户](../Multi-Tenancy.md)的信息 (如 id 和名称).
* 当前用户的[时区](../Timing.md)信息和应用程序的[时钟](../Timing.md)类型.
## HTTP API

@ -285,8 +285,6 @@ public async Task CreateAsync(CreateAuthorDto input)
abp.auth.isGranted('MyPermissionName');
````
参阅 [abp.auth](UI/AspNetCore/JavaScript-API/Index.md) API 文档了解详情.
## 权限管理
通常权限管理是管理员用户使用权限管理模态框进行授权:

@ -203,7 +203,7 @@ Task<int> VoteAsync(Guid id, VoteType type);
#### 额外的属性
* **推荐** 使用 `MapExtraPropertiesTo` 扩展方法 ([参阅](Object-Extensions.md)) 或配置对象映射 (`MapExtraProperties`) 以允许应用开发人员能够扩展对象和服务.
* **推荐** 使用 `MapExtraPropertiesTo` 扩展方法 ([参阅](../Object-Extensions.md)) 或配置对象映射 (`MapExtraProperties`) 以允许应用开发人员能够扩展对象和服务.
#### 操作/删除 实体

@ -27,7 +27,7 @@ abp add-module Volo.Abp.BlobStoring.Database
这里是此提供程序定义的所有包:
* [Volo.Abp.BlobStoring.Database.Domain.Shared](https://www.nuget.org/packages/Volo.Abp.BlobStoring.Domain.Shared)
* [Volo.Abp.BlobStoring.Database.Domain.Shared](https://www.nuget.org/packages/Volo.Abp.BlobStoring.Database.Domain.Shared)
* [Volo.Abp.BlobStoring.Database.Domain](https://www.nuget.org/packages/Volo.Abp.BlobStoring.Database.Domain)
* [Volo.Abp.BlobStoring.Database.EntityFrameworkCore](https://www.nuget.org/packages/Volo.Abp.BlobStoring.Database.EntityFrameworkCore)
* [Volo.Abp.BlobStoring.Database.MongoDB](https://www.nuget.org/packages/Volo.Abp.BlobStoring.Database.MongoDB)

@ -3,7 +3,7 @@
本文首先介绍[应用程序启动模板](Startup-Templates/Application.md)提供的**默认结构**,并讨论你可能希望为自己的应用程序实现的**各种场景**.
> 本文档适用于希望完全理解和自定义[应用程序启动模板](Startup-Templates/Application.md)附带的数据库结构的人员. 如果你只是想创建实体和管理代码优先(code first)迁移,只需要遵循[启动教程](Tutorials/Index.md).
> 本文档适用于希望完全理解和自定义[应用程序启动模板](Startup-Templates/Application.md)附带的数据库结构的人员. 如果你只是想创建实体和管理代码优先(code first)迁移,只需要遵循[启动教程](Tutorials/Part-1.md).
### 源码

@ -611,7 +611,7 @@ Configure<DocsElasticSearchOptions>(options =>
应用程序启动后如果`Index`不存在则会自动创建`Index`.
`DefaultElasticClientProvider`负责创建`IElasticClient`, 默认情况下它会从`IConfiguration`中读取Elastic Search的`Url`.
如果你的IElasticClient需要其它配置请使用重写IElasticClientProvider服务并在依赖注入系统中替换它.
如果你的 `IElasticClient` 需要其它配置请使用重写 `IElasticClientProvider` 服务并在[依赖注入](../Dependency-Injection.md)系统中替换它.
```
{
"ElasticSearch": {

@ -56,7 +56,7 @@ abp new Acme.IssueManagement -t module --no-ui
### .Domain 项目
解决方案的领域层. 它主要包含 [实体, 集合根](../Entities.md), [领域服务](../Domain-Services.md), [值类型](../Value-Types.md), [仓储接口](../Repositories.md) 和解决方案的其他领域对象.
解决方案的领域层. 它主要包含 [实体, 集合根](../Entities.md), [领域服务](../Domain-Services.md), 值类型, [仓储接口](../Repositories.md) 和解决方案的其他领域对象.
例如 `Issue` 实体, `IssueManager` 领域服务和 `IIssueRepository` 接口都适合放在这个项目中.

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

@ -3,7 +3,7 @@
"name": "asp.net",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.shared": "^3.0.4",
"@abp/aspnetcore.mvc.ui.theme.shared": "^3.0.5",
"highlight.js": "^9.13.1"
},
"devDependencies": {}

@ -2,30 +2,30 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.shared@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.4.tgz#50db612b6492d36c63dd9042000a9fb00fecec54"
integrity sha512-imd2T5XXkNvGQyXV/A9hA80qSeurKaUcW6HDkte8Y2fs4QfvkjgzWXi7neqF6F+HVbYYPg3rIBWC6QF1OXGn2w==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.4"
"@abp/bootstrap" "~3.0.4"
"@abp/bootstrap-datepicker" "~3.0.4"
"@abp/datatables.net-bs4" "~3.0.4"
"@abp/font-awesome" "~3.0.4"
"@abp/jquery-form" "~3.0.4"
"@abp/jquery-validation-unobtrusive" "~3.0.4"
"@abp/lodash" "~3.0.4"
"@abp/luxon" "~3.0.4"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.4"
"@abp/select2" "~3.0.4"
"@abp/sweetalert" "~3.0.4"
"@abp/timeago" "~3.0.4"
"@abp/toastr" "~3.0.4"
"@abp/aspnetcore.mvc.ui@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.4.tgz#4e4344d95a98a60c53037b351cb915d8ff7a7dcb"
integrity sha512-p7KI5CKkpD4EYzG4fCtygrtZhwMu7Z+IZFGbdqXelLbI5ACkbJyrn+N+9trPfS9papymeXY4p1E3v6xOH7rSHQ==
"@abp/aspnetcore.mvc.ui.theme.shared@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.5.tgz#5b370902cf229963f9aa10dd64482d57299dde76"
integrity sha512-iobAH39xrCdnqdaABaiYZg4lqNSOwPkMCLnyc+ytxOMbu/YnNKahXPmRhgd8dR/l+iQY1+6T4SWfLdGswi3gAg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.5"
"@abp/bootstrap" "~3.0.5"
"@abp/bootstrap-datepicker" "~3.0.5"
"@abp/datatables.net-bs4" "~3.0.5"
"@abp/font-awesome" "~3.0.5"
"@abp/jquery-form" "~3.0.5"
"@abp/jquery-validation-unobtrusive" "~3.0.5"
"@abp/lodash" "~3.0.5"
"@abp/luxon" "~3.0.5"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.5"
"@abp/select2" "~3.0.5"
"@abp/sweetalert" "~3.0.5"
"@abp/timeago" "~3.0.5"
"@abp/toastr" "~3.0.5"
"@abp/aspnetcore.mvc.ui@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.5.tgz#a050eaee328c56a3730f5abbf25035adf612d6f0"
integrity sha512-/EOgjXTzR+I1OK9KA7L3yzQ2RGSDW97+n3cQrSdLAUF+tnRvMJS0nytDlSJSRK2hb8/clFMaofZHCC81aUkYUg==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -34,144 +34,144 @@
path "^0.12.7"
rimraf "^3.0.2"
"@abp/bootstrap-datepicker@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.4.tgz#d21963f158a4d348a0acdc46209e67378aae8e55"
integrity sha512-25e9qm39dj9AijIchQIdLlBiBM5/fhASkEuLKNt6M8S/e3qwKLwbRhX90DKMFvOyKdxxcK1gX7tDuGHyG9A8mA==
"@abp/bootstrap-datepicker@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.5.tgz#3a7fd86dbcadc31c11be5b2b31c8cf8ac3035540"
integrity sha512-vIY1wT4RHoJAPhVK11Q5MS71iZbwsmM/0VTBvvs04mjRSSi6xhdyRYkA+l+P49fnOwhZNaaK19XwQdVVScDuhA==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.4.tgz#3b0e2b74dc174a04ce669de1b140df833eee6031"
integrity sha512-DwxL1fGYOwChPwmMpwUxCKiIdzTfRf/YDkOLUiwI8eRrpABBeuE2sSHKfks6Rqh9Wqo/nlWXvfccgDRqweqhsA==
"@abp/bootstrap@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.5.tgz#91f2c8fe6a57fc5789ae8fe9c206b2c159e55880"
integrity sha512-LdydeJIbw5k1k7FkWaI1lTectZeTXmEIoccJtj9Qx4N9yGt40wGsjz9SOvUdJ0IKAgntIWNQP8ohWiBPgzT7Xg==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
bootstrap "^4.5.0"
bootstrap-v4-rtl "4.4.1-2"
"@abp/core@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.4.tgz#281940525e280e9e3a1aa4cb4e8f64548ea026a3"
integrity sha512-ZPEH1fa5bf/f1ek9ZLQHx7u78iF6kRZ8Z2NBI36cNL13RyQbx485qJF+KXyqNlJoJAh0CAs0NsAJADU3utcDNA==
"@abp/core@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.5.tgz#9a7bd990d02edc8128a5be3233b6fbb5669b15b8"
integrity sha512-LdkSkZQfN4hugcGNxBkje0+eQomivwNFbnAkMFQbvCwYLwKB2yvk7GCemEetW1piqvyrUGz4jqhtunjoXps5JA==
dependencies:
"@abp/utils" "^3.0.4"
"@abp/utils" "^3.0.5"
"@abp/datatables.net-bs4@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.4.tgz#e488336bd2c199146ea60464e0ba75aeb134957e"
integrity sha512-ID1XWKPxG9pv6mxBkku7JWvgXjTxJ1uShxmYv5kFYVuwOGMSvj8QVZInTHFcMdECopV56yjGPNOIFLeQj4Mw8Q==
"@abp/datatables.net-bs4@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.5.tgz#9b79935970d2d4074994240b5deb01dff5987c0a"
integrity sha512-jIWRBEG/NlhaE43i6Xzr18XJ5aTWA+WWslf7WgNOArG5slGBbH4lLLja4HswLP3NGdSmzIyHJR1p9XQ82nBkbQ==
dependencies:
"@abp/datatables.net" "~3.0.4"
"@abp/datatables.net" "~3.0.5"
datatables.net-bs4 "^1.10.21"
"@abp/datatables.net@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.4.tgz#7ef143b83143ad8d769be25296411a812a17b255"
integrity sha512-gdQwRuxO5fQWhG/DiUaf40DQ8dWIVGhOCyt6SZ8LQzq4uSaQqa0qrtTTTW2/aiee4MgJu2vJWYF5YCszIR/HhA==
"@abp/datatables.net@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.5.tgz#0a0a39e8fa54522bf8a09ce76ff3927207a79491"
integrity sha512-HClQ2tcZuWBAChf9oOJOtMP1zHv8jqloPEcw3iqbhS/tWZBw5VQ4TO+BVfZsqHDXZNnWSmR6/2xiKsK32nliew==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
datatables.net "^1.10.21"
"@abp/font-awesome@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.4.tgz#98f83d0bf8b5a2a4d988cb07f5cceda2e1bc1a09"
integrity sha512-AKhKCUXx8vdHIgyXUfbSLitfYor5dJbo4qMRRGqIJVSj+cyMkpgYbGjqr24GGijgZxdmOGL+s1b9iCUbIPgLNQ==
"@abp/font-awesome@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.5.tgz#62d58c34f0abf268e30bdf788dfbd3f45b19b412"
integrity sha512-/+31Vtw1S9vvuNy/rN/Q6awkgUaYNNYXESgfvqI0pqIkvlPgigvS8E68mHqGzsxyRqdZisI6JGd94AF+vJD7sQ==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
"@fortawesome/fontawesome-free" "^5.13.0"
"@abp/jquery-form@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.4.tgz#022eebbfe58b55e328984c0f119884c9464bc767"
integrity sha512-xDkk4rY0AmXBJE4qztzr2hZz+OVucVNWeagOEgeQHXJSKU/T+0kj0a1RxEHpyI24xBvEXAbe8PbByTbu0QXYew==
"@abp/jquery-form@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.5.tgz#9d2ea9b2509448ee163a163298a7a09480865f78"
integrity sha512-RKgvQciaMml33NvzA28aYyfNI+WQHRfKLFWvOvqc8qO4C3BvyrnwepuzZcnI/9UsELKLSLoFrfk3rJHhxnTJhg==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.4.tgz#6cc942aadcdde33893e7a45c84aa022e033e4e8b"
integrity sha512-N9sza91HCyPvJo+d0RAfq4skae3TgAYg7KXhlwzRE2hqUQS+EICVARURWyxJW7s7Zu6+gxDTkXhBZRTW56deZA==
"@abp/jquery-validation-unobtrusive@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.5.tgz#b8912e1c4cfdd4fdff6ad4aa7ee8693b55a3be1f"
integrity sha512-kPifDA+1ErbeQBwn+BzwtWuTHXzBke/EMCmITuj59plM/60gZ1ZfVm8EzzTmKS7iLaVVeOqTKf0vEQTobNYffw==
dependencies:
"@abp/jquery-validation" "~3.0.4"
"@abp/jquery-validation" "~3.0.5"
jquery-validation-unobtrusive "^3.2.11"
"@abp/jquery-validation@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.4.tgz#3f96d1f83c75a7fc47e5e5e12c51dbc8da7582b1"
integrity sha512-2ljqas4YKU0PcwB0wQW2qhXejDHjW+N1XCxZDyCZ2wF9UxGlKBR8rFt76TJByXSotKE7n2hJRZaOh9ICZUow2g==
"@abp/jquery-validation@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.5.tgz#55e36b3c832a35447fac69af312dedf1dee22279"
integrity sha512-fdqxc5CJ6TpUAF8+NEsKCmXvvZiOPR5bzczcfvfovxLOjvHvdEO74XPGjsjlBNTdaKMhmNGZRK4JRLUz7fvTng==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
jquery-validation "^1.19.2"
"@abp/jquery@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.4.tgz#5f236d95cfae7f65012cd8778fd74490b7542442"
integrity sha512-g8N8Te5vf+8djdksfZoZ3tXaqlBC4Ra39pAWU/XerlLl64u+XmAX1s6yKRfC2kS8lf292GgiFYuNOkb77J6k4A==
"@abp/jquery@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.5.tgz#2e43ac19a8df6e1e0220d6d4991d33a93d890754"
integrity sha512-2d2l+smWKAVP4/b6GSO+8rmJ7pFXiUewpBDwkHm5qgkK6n6UGqIcK9lIgiS2YQ6rmL6qdtuNhhqtC9GF2TF2kQ==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
jquery "~3.5.1"
"@abp/lodash@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.4.tgz#ee60bc99f98b59fd9fc5ff4bbcf914a13faf209d"
integrity sha512-jxvv74Sm/fUKDBMylK4Ne/8GKm7GuHAdcLFtkoJQptdO+RjZpKJ86ULT+X5vbKskZaTj2fEmOR6l4hmfnBULTA==
"@abp/lodash@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.5.tgz#d5d9f14095d76239bc0e6f9804c24d1f92ffcab4"
integrity sha512-+B2vxfPwxoIIb8Ac8eHi6OgAn0qbjmPZuun7/es0/ouYYTbEhvhTAD20X3PGZlHrIYeDyS2ansuXm8gJI+/BzA==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
lodash "^4.17.15"
"@abp/luxon@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.4.tgz#aa1bf6a93d6254433101e50a205b276759969414"
integrity sha512-gX9dQJt9C6M1wmCSUIBoNr8CAt0jkUZFQ7LKKO/BoADGM/XFvY5vDbhL7zcwbwitgCOzmucoCxs/6rIxSOVlrg==
"@abp/luxon@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.5.tgz#083042c939ea58bf719e35114a6c8efb07b68688"
integrity sha512-0UVHO2CO89t34O35OA3JzWGWLBpg+e1NQXSfVtK90nmg/QmzGkHVM9m7Su0jjLNBt3N5EA5OPOhriot3bCKItw==
dependencies:
luxon "^1.24.1"
"@abp/malihu-custom-scrollbar-plugin@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.4.tgz#c54824b98363f4190cc6a37fcd421c2bfdc1e201"
integrity sha512-6LdSGctOr4ACtdohdSlb19vrFNJ5C0hy1VdbBEafHOBspXckvRVx4uJl2KfHmAC+bMg9apoK/wcHjVNdBHThYQ==
"@abp/malihu-custom-scrollbar-plugin@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.5.tgz#f908289927a63fd76fb8f60b00a37747d9edbe39"
integrity sha512-3GoXA8VtGyZWKiqaPCipPXYLLM7h2Y5Oecq5c5YlMQyW2akv7uHiQQF2GZW/nVsFu3HBbGTOWpKRRmVk3PEO9Q==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.4.tgz#49db0cfbc9b08f6ae4949b2cb8bdef92d7d308dd"
integrity sha512-zKEgkWBFdGU2KiAMUKhucHqBfzDy2KNSefyqxpOiUd1L3PEKu+9o23HZRWzDupYltop+SO1Jw33CNoVAkKm4+A==
"@abp/select2@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.5.tgz#79d7754713c64a6549da520dc6867ef3e3dd0350"
integrity sha512-VbeSHdAdDy8exrjplHMMhLVV4oG7Gq9zBb5M52f0sIkA4DkXFhksXHcHNoOCfhaKAXpenGA03Z9GJewZ3MTpMw==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
select2 "^4.0.13"
"@abp/sweetalert@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.4.tgz#f85d11c5aabc6ceb509af1b8fd8d75bc3c74bd27"
integrity sha512-hO0qXUWxeMy/lfy3sb+5HvOmIPst6UvYJJGy3ZQR6DKEdkOktBX9sEDb7m6ij6xAIHqWIx1xLveul0oGteOG0Q==
"@abp/sweetalert@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.5.tgz#e3b92d23cf3633983980b6255bf63c43d422ceab"
integrity sha512-OUt4ANgj14GESfRG7+UqdONS8daOu+8x2OZDWv98hriuX0uCVBjwB2J0jRI/n653C68Mi0yHixGONDv9OLy/lg==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
sweetalert "^2.1.2"
"@abp/timeago@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.4.tgz#82d90a04f703a7db9c0acedcd2f3cea684e7ae18"
integrity sha512-7SbbqScTKCix25xWy5oLT0slJqUQsW6YgJgI0N41C3AsByRBXZeh5Gcep033gprTPmpgNY8JOWcEcCXySnYvfA==
"@abp/timeago@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.5.tgz#b191a7c43f3dc77645fe27273f2f6619f7d4eb31"
integrity sha512-QhvAOU4C+Qxh/gFuCSGZtLU4KwVhdv/jtK8ovWyqbGvQMCCIimqa8BFKIz0H5XWIJhHwwWblkpjICWgjWh6uXw==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
timeago "^1.6.7"
"@abp/toastr@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.4.tgz#884ab2343ddd59981c291c632e3b0630532f7e9c"
integrity sha512-NG0pVD8bdIXGpjPW9cozCzmyuAdnSLE4vDYLUReP1pZFp9B8SMJqpgPk9eFg0Y06aaHTVMKYBKRoq9xXS4w9Xg==
"@abp/toastr@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.5.tgz#fc83b678f5be3a22040d0421ad9db5b2eac9d4fc"
integrity sha512-qgi2DEu6FYpN/DYcOZrmXsAr1HqcIKMhBWeXgjfoYUIl/K5+OuUgbQ69D/jdc0jz8HU9a4Cw7Q8hhe4CkgssEw==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
toastr "^2.1.4"
"@abp/utils@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-3.0.4.tgz#38068fa8f735e1889cf2f226128366825948814d"
integrity sha512-TnXRZIZcxv5+EctEPsZEi2cyRXbpl3A679wzQa6BACv+pM45cjGO1JR8P0VswKN4TVL0aQRMv26N6U/uie8sEQ==
"@abp/utils@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-3.0.5.tgz#66b3da953500e73ff1f23d1b41168cde8216ce49"
integrity sha512-X9V1xLIEazItaf93nFSA4p94WT6QK3yA4eIyvU7GyyEkkOQdaakNwPbRwy930sd+I+/oXnIqM1vDsJu9QDhgvg==
dependencies:
just-compare "^1.3.0"

@ -3,7 +3,7 @@
"name": "asp.net",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.4"
"@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.5"
},
"devDependencies": {}
}

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.4.tgz#c58e3e06ba78279875cf2b5f96d34b83ce09f6df"
integrity sha512-tKKqVRKpwN7P4Mn+he3bcz4Qbt8bkZ++wk6iOujd6HLTkBNa0uKyM4L6+iCn1Hi62S6HeK2Xytx+b+IYeIlsuw==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.4"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.4.tgz#50db612b6492d36c63dd9042000a9fb00fecec54"
integrity sha512-imd2T5XXkNvGQyXV/A9hA80qSeurKaUcW6HDkte8Y2fs4QfvkjgzWXi7neqF6F+HVbYYPg3rIBWC6QF1OXGn2w==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.4"
"@abp/bootstrap" "~3.0.4"
"@abp/bootstrap-datepicker" "~3.0.4"
"@abp/datatables.net-bs4" "~3.0.4"
"@abp/font-awesome" "~3.0.4"
"@abp/jquery-form" "~3.0.4"
"@abp/jquery-validation-unobtrusive" "~3.0.4"
"@abp/lodash" "~3.0.4"
"@abp/luxon" "~3.0.4"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.4"
"@abp/select2" "~3.0.4"
"@abp/sweetalert" "~3.0.4"
"@abp/timeago" "~3.0.4"
"@abp/toastr" "~3.0.4"
"@abp/aspnetcore.mvc.ui@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.4.tgz#4e4344d95a98a60c53037b351cb915d8ff7a7dcb"
integrity sha512-p7KI5CKkpD4EYzG4fCtygrtZhwMu7Z+IZFGbdqXelLbI5ACkbJyrn+N+9trPfS9papymeXY4p1E3v6xOH7rSHQ==
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.5.tgz#c146f20226522f0305cc0fa31cfcf9d39be78901"
integrity sha512-ptNhD4xV2wSLW7vQ5KUgaRiH5Ov1OscZW2ZEoivnt3kqgtIC3DGw+SiE9vjFCvyY83fjRkIlW2PIfQxSySbteQ==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.5"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.5.tgz#5b370902cf229963f9aa10dd64482d57299dde76"
integrity sha512-iobAH39xrCdnqdaABaiYZg4lqNSOwPkMCLnyc+ytxOMbu/YnNKahXPmRhgd8dR/l+iQY1+6T4SWfLdGswi3gAg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.5"
"@abp/bootstrap" "~3.0.5"
"@abp/bootstrap-datepicker" "~3.0.5"
"@abp/datatables.net-bs4" "~3.0.5"
"@abp/font-awesome" "~3.0.5"
"@abp/jquery-form" "~3.0.5"
"@abp/jquery-validation-unobtrusive" "~3.0.5"
"@abp/lodash" "~3.0.5"
"@abp/luxon" "~3.0.5"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.5"
"@abp/select2" "~3.0.5"
"@abp/sweetalert" "~3.0.5"
"@abp/timeago" "~3.0.5"
"@abp/toastr" "~3.0.5"
"@abp/aspnetcore.mvc.ui@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.5.tgz#a050eaee328c56a3730f5abbf25035adf612d6f0"
integrity sha512-/EOgjXTzR+I1OK9KA7L3yzQ2RGSDW97+n3cQrSdLAUF+tnRvMJS0nytDlSJSRK2hb8/clFMaofZHCC81aUkYUg==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,144 +41,144 @@
path "^0.12.7"
rimraf "^3.0.2"
"@abp/bootstrap-datepicker@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.4.tgz#d21963f158a4d348a0acdc46209e67378aae8e55"
integrity sha512-25e9qm39dj9AijIchQIdLlBiBM5/fhASkEuLKNt6M8S/e3qwKLwbRhX90DKMFvOyKdxxcK1gX7tDuGHyG9A8mA==
"@abp/bootstrap-datepicker@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.5.tgz#3a7fd86dbcadc31c11be5b2b31c8cf8ac3035540"
integrity sha512-vIY1wT4RHoJAPhVK11Q5MS71iZbwsmM/0VTBvvs04mjRSSi6xhdyRYkA+l+P49fnOwhZNaaK19XwQdVVScDuhA==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.4.tgz#3b0e2b74dc174a04ce669de1b140df833eee6031"
integrity sha512-DwxL1fGYOwChPwmMpwUxCKiIdzTfRf/YDkOLUiwI8eRrpABBeuE2sSHKfks6Rqh9Wqo/nlWXvfccgDRqweqhsA==
"@abp/bootstrap@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.5.tgz#91f2c8fe6a57fc5789ae8fe9c206b2c159e55880"
integrity sha512-LdydeJIbw5k1k7FkWaI1lTectZeTXmEIoccJtj9Qx4N9yGt40wGsjz9SOvUdJ0IKAgntIWNQP8ohWiBPgzT7Xg==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
bootstrap "^4.5.0"
bootstrap-v4-rtl "4.4.1-2"
"@abp/core@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.4.tgz#281940525e280e9e3a1aa4cb4e8f64548ea026a3"
integrity sha512-ZPEH1fa5bf/f1ek9ZLQHx7u78iF6kRZ8Z2NBI36cNL13RyQbx485qJF+KXyqNlJoJAh0CAs0NsAJADU3utcDNA==
"@abp/core@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.5.tgz#9a7bd990d02edc8128a5be3233b6fbb5669b15b8"
integrity sha512-LdkSkZQfN4hugcGNxBkje0+eQomivwNFbnAkMFQbvCwYLwKB2yvk7GCemEetW1piqvyrUGz4jqhtunjoXps5JA==
dependencies:
"@abp/utils" "^3.0.4"
"@abp/utils" "^3.0.5"
"@abp/datatables.net-bs4@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.4.tgz#e488336bd2c199146ea60464e0ba75aeb134957e"
integrity sha512-ID1XWKPxG9pv6mxBkku7JWvgXjTxJ1uShxmYv5kFYVuwOGMSvj8QVZInTHFcMdECopV56yjGPNOIFLeQj4Mw8Q==
"@abp/datatables.net-bs4@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.5.tgz#9b79935970d2d4074994240b5deb01dff5987c0a"
integrity sha512-jIWRBEG/NlhaE43i6Xzr18XJ5aTWA+WWslf7WgNOArG5slGBbH4lLLja4HswLP3NGdSmzIyHJR1p9XQ82nBkbQ==
dependencies:
"@abp/datatables.net" "~3.0.4"
"@abp/datatables.net" "~3.0.5"
datatables.net-bs4 "^1.10.21"
"@abp/datatables.net@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.4.tgz#7ef143b83143ad8d769be25296411a812a17b255"
integrity sha512-gdQwRuxO5fQWhG/DiUaf40DQ8dWIVGhOCyt6SZ8LQzq4uSaQqa0qrtTTTW2/aiee4MgJu2vJWYF5YCszIR/HhA==
"@abp/datatables.net@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.5.tgz#0a0a39e8fa54522bf8a09ce76ff3927207a79491"
integrity sha512-HClQ2tcZuWBAChf9oOJOtMP1zHv8jqloPEcw3iqbhS/tWZBw5VQ4TO+BVfZsqHDXZNnWSmR6/2xiKsK32nliew==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
datatables.net "^1.10.21"
"@abp/font-awesome@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.4.tgz#98f83d0bf8b5a2a4d988cb07f5cceda2e1bc1a09"
integrity sha512-AKhKCUXx8vdHIgyXUfbSLitfYor5dJbo4qMRRGqIJVSj+cyMkpgYbGjqr24GGijgZxdmOGL+s1b9iCUbIPgLNQ==
"@abp/font-awesome@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.5.tgz#62d58c34f0abf268e30bdf788dfbd3f45b19b412"
integrity sha512-/+31Vtw1S9vvuNy/rN/Q6awkgUaYNNYXESgfvqI0pqIkvlPgigvS8E68mHqGzsxyRqdZisI6JGd94AF+vJD7sQ==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
"@fortawesome/fontawesome-free" "^5.13.0"
"@abp/jquery-form@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.4.tgz#022eebbfe58b55e328984c0f119884c9464bc767"
integrity sha512-xDkk4rY0AmXBJE4qztzr2hZz+OVucVNWeagOEgeQHXJSKU/T+0kj0a1RxEHpyI24xBvEXAbe8PbByTbu0QXYew==
"@abp/jquery-form@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.5.tgz#9d2ea9b2509448ee163a163298a7a09480865f78"
integrity sha512-RKgvQciaMml33NvzA28aYyfNI+WQHRfKLFWvOvqc8qO4C3BvyrnwepuzZcnI/9UsELKLSLoFrfk3rJHhxnTJhg==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.4.tgz#6cc942aadcdde33893e7a45c84aa022e033e4e8b"
integrity sha512-N9sza91HCyPvJo+d0RAfq4skae3TgAYg7KXhlwzRE2hqUQS+EICVARURWyxJW7s7Zu6+gxDTkXhBZRTW56deZA==
"@abp/jquery-validation-unobtrusive@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.5.tgz#b8912e1c4cfdd4fdff6ad4aa7ee8693b55a3be1f"
integrity sha512-kPifDA+1ErbeQBwn+BzwtWuTHXzBke/EMCmITuj59plM/60gZ1ZfVm8EzzTmKS7iLaVVeOqTKf0vEQTobNYffw==
dependencies:
"@abp/jquery-validation" "~3.0.4"
"@abp/jquery-validation" "~3.0.5"
jquery-validation-unobtrusive "^3.2.11"
"@abp/jquery-validation@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.4.tgz#3f96d1f83c75a7fc47e5e5e12c51dbc8da7582b1"
integrity sha512-2ljqas4YKU0PcwB0wQW2qhXejDHjW+N1XCxZDyCZ2wF9UxGlKBR8rFt76TJByXSotKE7n2hJRZaOh9ICZUow2g==
"@abp/jquery-validation@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.5.tgz#55e36b3c832a35447fac69af312dedf1dee22279"
integrity sha512-fdqxc5CJ6TpUAF8+NEsKCmXvvZiOPR5bzczcfvfovxLOjvHvdEO74XPGjsjlBNTdaKMhmNGZRK4JRLUz7fvTng==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
jquery-validation "^1.19.2"
"@abp/jquery@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.4.tgz#5f236d95cfae7f65012cd8778fd74490b7542442"
integrity sha512-g8N8Te5vf+8djdksfZoZ3tXaqlBC4Ra39pAWU/XerlLl64u+XmAX1s6yKRfC2kS8lf292GgiFYuNOkb77J6k4A==
"@abp/jquery@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.5.tgz#2e43ac19a8df6e1e0220d6d4991d33a93d890754"
integrity sha512-2d2l+smWKAVP4/b6GSO+8rmJ7pFXiUewpBDwkHm5qgkK6n6UGqIcK9lIgiS2YQ6rmL6qdtuNhhqtC9GF2TF2kQ==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
jquery "~3.5.1"
"@abp/lodash@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.4.tgz#ee60bc99f98b59fd9fc5ff4bbcf914a13faf209d"
integrity sha512-jxvv74Sm/fUKDBMylK4Ne/8GKm7GuHAdcLFtkoJQptdO+RjZpKJ86ULT+X5vbKskZaTj2fEmOR6l4hmfnBULTA==
"@abp/lodash@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.5.tgz#d5d9f14095d76239bc0e6f9804c24d1f92ffcab4"
integrity sha512-+B2vxfPwxoIIb8Ac8eHi6OgAn0qbjmPZuun7/es0/ouYYTbEhvhTAD20X3PGZlHrIYeDyS2ansuXm8gJI+/BzA==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
lodash "^4.17.15"
"@abp/luxon@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.4.tgz#aa1bf6a93d6254433101e50a205b276759969414"
integrity sha512-gX9dQJt9C6M1wmCSUIBoNr8CAt0jkUZFQ7LKKO/BoADGM/XFvY5vDbhL7zcwbwitgCOzmucoCxs/6rIxSOVlrg==
"@abp/luxon@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.5.tgz#083042c939ea58bf719e35114a6c8efb07b68688"
integrity sha512-0UVHO2CO89t34O35OA3JzWGWLBpg+e1NQXSfVtK90nmg/QmzGkHVM9m7Su0jjLNBt3N5EA5OPOhriot3bCKItw==
dependencies:
luxon "^1.24.1"
"@abp/malihu-custom-scrollbar-plugin@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.4.tgz#c54824b98363f4190cc6a37fcd421c2bfdc1e201"
integrity sha512-6LdSGctOr4ACtdohdSlb19vrFNJ5C0hy1VdbBEafHOBspXckvRVx4uJl2KfHmAC+bMg9apoK/wcHjVNdBHThYQ==
"@abp/malihu-custom-scrollbar-plugin@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.5.tgz#f908289927a63fd76fb8f60b00a37747d9edbe39"
integrity sha512-3GoXA8VtGyZWKiqaPCipPXYLLM7h2Y5Oecq5c5YlMQyW2akv7uHiQQF2GZW/nVsFu3HBbGTOWpKRRmVk3PEO9Q==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.4.tgz#49db0cfbc9b08f6ae4949b2cb8bdef92d7d308dd"
integrity sha512-zKEgkWBFdGU2KiAMUKhucHqBfzDy2KNSefyqxpOiUd1L3PEKu+9o23HZRWzDupYltop+SO1Jw33CNoVAkKm4+A==
"@abp/select2@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.5.tgz#79d7754713c64a6549da520dc6867ef3e3dd0350"
integrity sha512-VbeSHdAdDy8exrjplHMMhLVV4oG7Gq9zBb5M52f0sIkA4DkXFhksXHcHNoOCfhaKAXpenGA03Z9GJewZ3MTpMw==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
select2 "^4.0.13"
"@abp/sweetalert@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.4.tgz#f85d11c5aabc6ceb509af1b8fd8d75bc3c74bd27"
integrity sha512-hO0qXUWxeMy/lfy3sb+5HvOmIPst6UvYJJGy3ZQR6DKEdkOktBX9sEDb7m6ij6xAIHqWIx1xLveul0oGteOG0Q==
"@abp/sweetalert@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.5.tgz#e3b92d23cf3633983980b6255bf63c43d422ceab"
integrity sha512-OUt4ANgj14GESfRG7+UqdONS8daOu+8x2OZDWv98hriuX0uCVBjwB2J0jRI/n653C68Mi0yHixGONDv9OLy/lg==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
sweetalert "^2.1.2"
"@abp/timeago@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.4.tgz#82d90a04f703a7db9c0acedcd2f3cea684e7ae18"
integrity sha512-7SbbqScTKCix25xWy5oLT0slJqUQsW6YgJgI0N41C3AsByRBXZeh5Gcep033gprTPmpgNY8JOWcEcCXySnYvfA==
"@abp/timeago@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.5.tgz#b191a7c43f3dc77645fe27273f2f6619f7d4eb31"
integrity sha512-QhvAOU4C+Qxh/gFuCSGZtLU4KwVhdv/jtK8ovWyqbGvQMCCIimqa8BFKIz0H5XWIJhHwwWblkpjICWgjWh6uXw==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
timeago "^1.6.7"
"@abp/toastr@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.4.tgz#884ab2343ddd59981c291c632e3b0630532f7e9c"
integrity sha512-NG0pVD8bdIXGpjPW9cozCzmyuAdnSLE4vDYLUReP1pZFp9B8SMJqpgPk9eFg0Y06aaHTVMKYBKRoq9xXS4w9Xg==
"@abp/toastr@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.5.tgz#fc83b678f5be3a22040d0421ad9db5b2eac9d4fc"
integrity sha512-qgi2DEu6FYpN/DYcOZrmXsAr1HqcIKMhBWeXgjfoYUIl/K5+OuUgbQ69D/jdc0jz8HU9a4Cw7Q8hhe4CkgssEw==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
toastr "^2.1.4"
"@abp/utils@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-3.0.4.tgz#38068fa8f735e1889cf2f226128366825948814d"
integrity sha512-TnXRZIZcxv5+EctEPsZEi2cyRXbpl3A679wzQa6BACv+pM45cjGO1JR8P0VswKN4TVL0aQRMv26N6U/uie8sEQ==
"@abp/utils@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-3.0.5.tgz#66b3da953500e73ff1f23d1b41168cde8216ce49"
integrity sha512-X9V1xLIEazItaf93nFSA4p94WT6QK3yA4eIyvU7GyyEkkOQdaakNwPbRwy930sd+I+/oXnIqM1vDsJu9QDhgvg==
dependencies:
just-compare "^1.3.0"

@ -3,7 +3,7 @@
"name": "volo.blogtestapp",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.4",
"@abp/blogging": "^3.0.4"
"@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.5",
"@abp/blogging": "^3.0.5"
}
}

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.4.tgz#c58e3e06ba78279875cf2b5f96d34b83ce09f6df"
integrity sha512-tKKqVRKpwN7P4Mn+he3bcz4Qbt8bkZ++wk6iOujd6HLTkBNa0uKyM4L6+iCn1Hi62S6HeK2Xytx+b+IYeIlsuw==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.4"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.4.tgz#50db612b6492d36c63dd9042000a9fb00fecec54"
integrity sha512-imd2T5XXkNvGQyXV/A9hA80qSeurKaUcW6HDkte8Y2fs4QfvkjgzWXi7neqF6F+HVbYYPg3rIBWC6QF1OXGn2w==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.4"
"@abp/bootstrap" "~3.0.4"
"@abp/bootstrap-datepicker" "~3.0.4"
"@abp/datatables.net-bs4" "~3.0.4"
"@abp/font-awesome" "~3.0.4"
"@abp/jquery-form" "~3.0.4"
"@abp/jquery-validation-unobtrusive" "~3.0.4"
"@abp/lodash" "~3.0.4"
"@abp/luxon" "~3.0.4"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.4"
"@abp/select2" "~3.0.4"
"@abp/sweetalert" "~3.0.4"
"@abp/timeago" "~3.0.4"
"@abp/toastr" "~3.0.4"
"@abp/aspnetcore.mvc.ui@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.4.tgz#4e4344d95a98a60c53037b351cb915d8ff7a7dcb"
integrity sha512-p7KI5CKkpD4EYzG4fCtygrtZhwMu7Z+IZFGbdqXelLbI5ACkbJyrn+N+9trPfS9papymeXY4p1E3v6xOH7rSHQ==
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.5.tgz#c146f20226522f0305cc0fa31cfcf9d39be78901"
integrity sha512-ptNhD4xV2wSLW7vQ5KUgaRiH5Ov1OscZW2ZEoivnt3kqgtIC3DGw+SiE9vjFCvyY83fjRkIlW2PIfQxSySbteQ==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.5"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.5.tgz#5b370902cf229963f9aa10dd64482d57299dde76"
integrity sha512-iobAH39xrCdnqdaABaiYZg4lqNSOwPkMCLnyc+ytxOMbu/YnNKahXPmRhgd8dR/l+iQY1+6T4SWfLdGswi3gAg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.5"
"@abp/bootstrap" "~3.0.5"
"@abp/bootstrap-datepicker" "~3.0.5"
"@abp/datatables.net-bs4" "~3.0.5"
"@abp/font-awesome" "~3.0.5"
"@abp/jquery-form" "~3.0.5"
"@abp/jquery-validation-unobtrusive" "~3.0.5"
"@abp/lodash" "~3.0.5"
"@abp/luxon" "~3.0.5"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.5"
"@abp/select2" "~3.0.5"
"@abp/sweetalert" "~3.0.5"
"@abp/timeago" "~3.0.5"
"@abp/toastr" "~3.0.5"
"@abp/aspnetcore.mvc.ui@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.5.tgz#a050eaee328c56a3730f5abbf25035adf612d6f0"
integrity sha512-/EOgjXTzR+I1OK9KA7L3yzQ2RGSDW97+n3cQrSdLAUF+tnRvMJS0nytDlSJSRK2hb8/clFMaofZHCC81aUkYUg==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,213 +41,213 @@
path "^0.12.7"
rimraf "^3.0.2"
"@abp/blogging@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-3.0.4.tgz#d309b18a410d047346c39ab3063cd95429ca693a"
integrity sha512-HjPmNgFuAI1PPB4Rn8q+CYZq77kTqdRByIbYHvM9NsLyjb4CKruJxwHIFQUEs2oaB1V0/1CtfQWOcJ8r6ciGfA==
"@abp/blogging@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-3.0.5.tgz#07d476d9d7bb20b52ccd122c8cf7c7c2bd3c1aa4"
integrity sha512-3qBS3EfBRrcGzgo8xaJXIVNu/qkuhBLYixPur69nUa8sDAsYI725mVIOfznyYyTAxPXB2EDOf4WA+NKiEINrqQ==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.4"
"@abp/owl.carousel" "~3.0.4"
"@abp/prismjs" "~3.0.4"
"@abp/tui-editor" "~3.0.4"
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.5"
"@abp/owl.carousel" "~3.0.5"
"@abp/prismjs" "~3.0.5"
"@abp/tui-editor" "~3.0.5"
"@abp/bootstrap-datepicker@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.4.tgz#d21963f158a4d348a0acdc46209e67378aae8e55"
integrity sha512-25e9qm39dj9AijIchQIdLlBiBM5/fhASkEuLKNt6M8S/e3qwKLwbRhX90DKMFvOyKdxxcK1gX7tDuGHyG9A8mA==
"@abp/bootstrap-datepicker@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.5.tgz#3a7fd86dbcadc31c11be5b2b31c8cf8ac3035540"
integrity sha512-vIY1wT4RHoJAPhVK11Q5MS71iZbwsmM/0VTBvvs04mjRSSi6xhdyRYkA+l+P49fnOwhZNaaK19XwQdVVScDuhA==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.4.tgz#3b0e2b74dc174a04ce669de1b140df833eee6031"
integrity sha512-DwxL1fGYOwChPwmMpwUxCKiIdzTfRf/YDkOLUiwI8eRrpABBeuE2sSHKfks6Rqh9Wqo/nlWXvfccgDRqweqhsA==
"@abp/bootstrap@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.5.tgz#91f2c8fe6a57fc5789ae8fe9c206b2c159e55880"
integrity sha512-LdydeJIbw5k1k7FkWaI1lTectZeTXmEIoccJtj9Qx4N9yGt40wGsjz9SOvUdJ0IKAgntIWNQP8ohWiBPgzT7Xg==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
bootstrap "^4.5.0"
bootstrap-v4-rtl "4.4.1-2"
"@abp/clipboard@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-3.0.4.tgz#17ff40e398de3c0ab5214e564d443ed52ac10630"
integrity sha512-vjjupRau7fgBxvQwaDrBHApP4Ce1x9XM7L64/c+A+oBny0SzuiSBGBYsjlFrJGmTHT/PhjoB1XQiBHrYYPXQfQ==
"@abp/clipboard@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-3.0.5.tgz#7ceadd21360db11c91582a532029bfe65d10a930"
integrity sha512-iq455C096L5D+b6IrWkMxA9mbpggBNZ1kWfCQ3rhIjo0qbOGrvdGB3uQ+BqRS9Ni9ku7vBb2COldouIC9KOp5A==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
clipboard "^2.0.6"
"@abp/codemirror@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-3.0.4.tgz#d223b9e44719844948025f1c47bd404923d9e40d"
integrity sha512-shv8bqnATrEg9K9P0m14eqlJCCSfSO57SCxYmF0DUH0wuykkWjFJ8gok2GijVZtA9FQDJbNbNXh2oSm4MCgRsA==
"@abp/codemirror@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-3.0.5.tgz#2d60ad50f7b50833b0032f3c2e8992a89f257aa9"
integrity sha512-RkbmRGmSCB2962rJdhp0NgJ+qEP4gG05wuSuCMsYJTU3U9IkhkqiJbzupUzAkHQTaCQwCOUeXoBLUkwCHUP2DA==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
codemirror "^5.54.0"
"@abp/core@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.4.tgz#281940525e280e9e3a1aa4cb4e8f64548ea026a3"
integrity sha512-ZPEH1fa5bf/f1ek9ZLQHx7u78iF6kRZ8Z2NBI36cNL13RyQbx485qJF+KXyqNlJoJAh0CAs0NsAJADU3utcDNA==
"@abp/core@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.5.tgz#9a7bd990d02edc8128a5be3233b6fbb5669b15b8"
integrity sha512-LdkSkZQfN4hugcGNxBkje0+eQomivwNFbnAkMFQbvCwYLwKB2yvk7GCemEetW1piqvyrUGz4jqhtunjoXps5JA==
dependencies:
"@abp/utils" "^3.0.4"
"@abp/utils" "^3.0.5"
"@abp/datatables.net-bs4@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.4.tgz#e488336bd2c199146ea60464e0ba75aeb134957e"
integrity sha512-ID1XWKPxG9pv6mxBkku7JWvgXjTxJ1uShxmYv5kFYVuwOGMSvj8QVZInTHFcMdECopV56yjGPNOIFLeQj4Mw8Q==
"@abp/datatables.net-bs4@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.5.tgz#9b79935970d2d4074994240b5deb01dff5987c0a"
integrity sha512-jIWRBEG/NlhaE43i6Xzr18XJ5aTWA+WWslf7WgNOArG5slGBbH4lLLja4HswLP3NGdSmzIyHJR1p9XQ82nBkbQ==
dependencies:
"@abp/datatables.net" "~3.0.4"
"@abp/datatables.net" "~3.0.5"
datatables.net-bs4 "^1.10.21"
"@abp/datatables.net@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.4.tgz#7ef143b83143ad8d769be25296411a812a17b255"
integrity sha512-gdQwRuxO5fQWhG/DiUaf40DQ8dWIVGhOCyt6SZ8LQzq4uSaQqa0qrtTTTW2/aiee4MgJu2vJWYF5YCszIR/HhA==
"@abp/datatables.net@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.5.tgz#0a0a39e8fa54522bf8a09ce76ff3927207a79491"
integrity sha512-HClQ2tcZuWBAChf9oOJOtMP1zHv8jqloPEcw3iqbhS/tWZBw5VQ4TO+BVfZsqHDXZNnWSmR6/2xiKsK32nliew==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
datatables.net "^1.10.21"
"@abp/font-awesome@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.4.tgz#98f83d0bf8b5a2a4d988cb07f5cceda2e1bc1a09"
integrity sha512-AKhKCUXx8vdHIgyXUfbSLitfYor5dJbo4qMRRGqIJVSj+cyMkpgYbGjqr24GGijgZxdmOGL+s1b9iCUbIPgLNQ==
"@abp/font-awesome@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.5.tgz#62d58c34f0abf268e30bdf788dfbd3f45b19b412"
integrity sha512-/+31Vtw1S9vvuNy/rN/Q6awkgUaYNNYXESgfvqI0pqIkvlPgigvS8E68mHqGzsxyRqdZisI6JGd94AF+vJD7sQ==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
"@fortawesome/fontawesome-free" "^5.13.0"
"@abp/highlight.js@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-3.0.4.tgz#2f4cb60b7b621fd73f3eb92f70c3d8611ce07c2b"
integrity sha512-7iTDFgBBHn3w5MlhRylkV5to0+8cl0akVspe358zvIy9bdBv+t8Xgc8IomxKqA5EfjBFhR+Q/g0+DfoWLpL7xw==
"@abp/highlight.js@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-3.0.5.tgz#f222b54958bd842840db5ad8b32d82f1cd209302"
integrity sha512-VT9UfukzbhMsWhUZNc8b792fY04lqkuJL98QprU59No1Rb7+XUa1k9FMbt2kl12Je3jltY3+UrDl+vrdasFxKg==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
"@abp/jquery-form@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.4.tgz#022eebbfe58b55e328984c0f119884c9464bc767"
integrity sha512-xDkk4rY0AmXBJE4qztzr2hZz+OVucVNWeagOEgeQHXJSKU/T+0kj0a1RxEHpyI24xBvEXAbe8PbByTbu0QXYew==
"@abp/jquery-form@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.5.tgz#9d2ea9b2509448ee163a163298a7a09480865f78"
integrity sha512-RKgvQciaMml33NvzA28aYyfNI+WQHRfKLFWvOvqc8qO4C3BvyrnwepuzZcnI/9UsELKLSLoFrfk3rJHhxnTJhg==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.4.tgz#6cc942aadcdde33893e7a45c84aa022e033e4e8b"
integrity sha512-N9sza91HCyPvJo+d0RAfq4skae3TgAYg7KXhlwzRE2hqUQS+EICVARURWyxJW7s7Zu6+gxDTkXhBZRTW56deZA==
"@abp/jquery-validation-unobtrusive@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.5.tgz#b8912e1c4cfdd4fdff6ad4aa7ee8693b55a3be1f"
integrity sha512-kPifDA+1ErbeQBwn+BzwtWuTHXzBke/EMCmITuj59plM/60gZ1ZfVm8EzzTmKS7iLaVVeOqTKf0vEQTobNYffw==
dependencies:
"@abp/jquery-validation" "~3.0.4"
"@abp/jquery-validation" "~3.0.5"
jquery-validation-unobtrusive "^3.2.11"
"@abp/jquery-validation@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.4.tgz#3f96d1f83c75a7fc47e5e5e12c51dbc8da7582b1"
integrity sha512-2ljqas4YKU0PcwB0wQW2qhXejDHjW+N1XCxZDyCZ2wF9UxGlKBR8rFt76TJByXSotKE7n2hJRZaOh9ICZUow2g==
"@abp/jquery-validation@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.5.tgz#55e36b3c832a35447fac69af312dedf1dee22279"
integrity sha512-fdqxc5CJ6TpUAF8+NEsKCmXvvZiOPR5bzczcfvfovxLOjvHvdEO74XPGjsjlBNTdaKMhmNGZRK4JRLUz7fvTng==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
jquery-validation "^1.19.2"
"@abp/jquery@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.4.tgz#5f236d95cfae7f65012cd8778fd74490b7542442"
integrity sha512-g8N8Te5vf+8djdksfZoZ3tXaqlBC4Ra39pAWU/XerlLl64u+XmAX1s6yKRfC2kS8lf292GgiFYuNOkb77J6k4A==
"@abp/jquery@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.5.tgz#2e43ac19a8df6e1e0220d6d4991d33a93d890754"
integrity sha512-2d2l+smWKAVP4/b6GSO+8rmJ7pFXiUewpBDwkHm5qgkK6n6UGqIcK9lIgiS2YQ6rmL6qdtuNhhqtC9GF2TF2kQ==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
jquery "~3.5.1"
"@abp/lodash@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.4.tgz#ee60bc99f98b59fd9fc5ff4bbcf914a13faf209d"
integrity sha512-jxvv74Sm/fUKDBMylK4Ne/8GKm7GuHAdcLFtkoJQptdO+RjZpKJ86ULT+X5vbKskZaTj2fEmOR6l4hmfnBULTA==
"@abp/lodash@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.5.tgz#d5d9f14095d76239bc0e6f9804c24d1f92ffcab4"
integrity sha512-+B2vxfPwxoIIb8Ac8eHi6OgAn0qbjmPZuun7/es0/ouYYTbEhvhTAD20X3PGZlHrIYeDyS2ansuXm8gJI+/BzA==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
lodash "^4.17.15"
"@abp/luxon@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.4.tgz#aa1bf6a93d6254433101e50a205b276759969414"
integrity sha512-gX9dQJt9C6M1wmCSUIBoNr8CAt0jkUZFQ7LKKO/BoADGM/XFvY5vDbhL7zcwbwitgCOzmucoCxs/6rIxSOVlrg==
"@abp/luxon@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.5.tgz#083042c939ea58bf719e35114a6c8efb07b68688"
integrity sha512-0UVHO2CO89t34O35OA3JzWGWLBpg+e1NQXSfVtK90nmg/QmzGkHVM9m7Su0jjLNBt3N5EA5OPOhriot3bCKItw==
dependencies:
luxon "^1.24.1"
"@abp/malihu-custom-scrollbar-plugin@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.4.tgz#c54824b98363f4190cc6a37fcd421c2bfdc1e201"
integrity sha512-6LdSGctOr4ACtdohdSlb19vrFNJ5C0hy1VdbBEafHOBspXckvRVx4uJl2KfHmAC+bMg9apoK/wcHjVNdBHThYQ==
"@abp/malihu-custom-scrollbar-plugin@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.5.tgz#f908289927a63fd76fb8f60b00a37747d9edbe39"
integrity sha512-3GoXA8VtGyZWKiqaPCipPXYLLM7h2Y5Oecq5c5YlMQyW2akv7uHiQQF2GZW/nVsFu3HBbGTOWpKRRmVk3PEO9Q==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/markdown-it@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/markdown-it/-/markdown-it-3.0.4.tgz#8be97cc1a48add764c76049c6303291252c56b12"
integrity sha512-94HjUbRQ+/RZoG0/h0nYA8Kk6IqJUtVzwM8/rUWGi45kwkSk6N/mCv537QD4hivHS0sLDx2KgEve9Ka8WnIKbQ==
"@abp/markdown-it@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/markdown-it/-/markdown-it-3.0.5.tgz#43c0daf0dd30de3d0109980aa5493db6f72108c1"
integrity sha512-HMRv5B29fQ5nPz4wFlfTsJ3dACotNLHZUuQbOt8SifRkt9Va0t20j+IwIGhSYVc93ttYHjB0IuMk6G10mdBA1A==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
markdown-it "^11.0.0"
"@abp/owl.carousel@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-3.0.4.tgz#18b4f93d06ad3b0f22f9fa4073b757f54e559c93"
integrity sha512-yZjlZ28JCuYSJPtnfoXssn1PdinbLbB4/Rixi43b2RbE0pI3U6ZnUOd0TAOwZyS7sO0OLdlGp2F/MKbln8u53A==
"@abp/owl.carousel@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-3.0.5.tgz#d575d201a9c4853aa8578e6d8da396de60d6c961"
integrity sha512-fBzNaJPRnFc1VV5MBpRAGr3yZtkcbRHOOKlq74bkg9kvnqNa8dLISPRxHsBCtX+bxndWI3OfmN9Uliiq39TgSA==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
owl.carousel "^2.3.4"
"@abp/prismjs@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-3.0.4.tgz#9cd8113b33dfd1b349b12740a2f7462f88bf3841"
integrity sha512-D+RNAhUhOCXnBNZVOq9EQg883eRbPKlIpFsxeMW065XOm5g7iO0eJACvyqGC8mt5reHmtxApnfiGNlhT1dK+Eg==
"@abp/prismjs@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-3.0.5.tgz#81a6ef656f3d7a76f365eb0bcbf2d0d3013d6e72"
integrity sha512-vdSSa1+tXS5+HWIgQyjDy4yQG7Q1YyuHQnFU6zlDJCQlE+20PL6lYgPnqR7DQ+Cd4lhRb3oxvloImYjwiwSQvA==
dependencies:
"@abp/clipboard" "~3.0.4"
"@abp/core" "~3.0.4"
"@abp/clipboard" "~3.0.5"
"@abp/core" "~3.0.5"
prismjs "^1.20.0"
"@abp/select2@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.4.tgz#49db0cfbc9b08f6ae4949b2cb8bdef92d7d308dd"
integrity sha512-zKEgkWBFdGU2KiAMUKhucHqBfzDy2KNSefyqxpOiUd1L3PEKu+9o23HZRWzDupYltop+SO1Jw33CNoVAkKm4+A==
"@abp/select2@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.5.tgz#79d7754713c64a6549da520dc6867ef3e3dd0350"
integrity sha512-VbeSHdAdDy8exrjplHMMhLVV4oG7Gq9zBb5M52f0sIkA4DkXFhksXHcHNoOCfhaKAXpenGA03Z9GJewZ3MTpMw==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
select2 "^4.0.13"
"@abp/sweetalert@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.4.tgz#f85d11c5aabc6ceb509af1b8fd8d75bc3c74bd27"
integrity sha512-hO0qXUWxeMy/lfy3sb+5HvOmIPst6UvYJJGy3ZQR6DKEdkOktBX9sEDb7m6ij6xAIHqWIx1xLveul0oGteOG0Q==
"@abp/sweetalert@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.5.tgz#e3b92d23cf3633983980b6255bf63c43d422ceab"
integrity sha512-OUt4ANgj14GESfRG7+UqdONS8daOu+8x2OZDWv98hriuX0uCVBjwB2J0jRI/n653C68Mi0yHixGONDv9OLy/lg==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
sweetalert "^2.1.2"
"@abp/timeago@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.4.tgz#82d90a04f703a7db9c0acedcd2f3cea684e7ae18"
integrity sha512-7SbbqScTKCix25xWy5oLT0slJqUQsW6YgJgI0N41C3AsByRBXZeh5Gcep033gprTPmpgNY8JOWcEcCXySnYvfA==
"@abp/timeago@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.5.tgz#b191a7c43f3dc77645fe27273f2f6619f7d4eb31"
integrity sha512-QhvAOU4C+Qxh/gFuCSGZtLU4KwVhdv/jtK8ovWyqbGvQMCCIimqa8BFKIz0H5XWIJhHwwWblkpjICWgjWh6uXw==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
timeago "^1.6.7"
"@abp/toastr@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.4.tgz#884ab2343ddd59981c291c632e3b0630532f7e9c"
integrity sha512-NG0pVD8bdIXGpjPW9cozCzmyuAdnSLE4vDYLUReP1pZFp9B8SMJqpgPk9eFg0Y06aaHTVMKYBKRoq9xXS4w9Xg==
"@abp/toastr@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.5.tgz#fc83b678f5be3a22040d0421ad9db5b2eac9d4fc"
integrity sha512-qgi2DEu6FYpN/DYcOZrmXsAr1HqcIKMhBWeXgjfoYUIl/K5+OuUgbQ69D/jdc0jz8HU9a4Cw7Q8hhe4CkgssEw==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
toastr "^2.1.4"
"@abp/tui-editor@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-3.0.4.tgz#fe44e7e28bd9d3902fe2e77b4e78eb2aa2959846"
integrity sha512-+H03yYEtPbX+THnzdsW1j+XXSYMrKl8oLPIrrl71QkUW7mif+c2s6YHauJ2mqJ1Uc/7fEL/i1/nBkqU3XjQXPw==
"@abp/tui-editor@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-3.0.5.tgz#9eee7cb555793a9c01a6e0ce10e77bb46577857c"
integrity sha512-xwaBhwnyvoIbEKWMSrTs2JHIOf3JK6tsABfcxhTRHXQfr2VONOEjbaLaAruNOuLJy3m/7rOsGWTeT8lMWwf3Fw==
dependencies:
"@abp/codemirror" "~3.0.4"
"@abp/highlight.js" "~3.0.4"
"@abp/jquery" "~3.0.4"
"@abp/markdown-it" "~3.0.4"
"@abp/codemirror" "~3.0.5"
"@abp/highlight.js" "~3.0.5"
"@abp/jquery" "~3.0.5"
"@abp/markdown-it" "~3.0.5"
tui-editor "^1.4.10"
"@abp/utils@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-3.0.4.tgz#38068fa8f735e1889cf2f226128366825948814d"
integrity sha512-TnXRZIZcxv5+EctEPsZEi2cyRXbpl3A679wzQa6BACv+pM45cjGO1JR8P0VswKN4TVL0aQRMv26N6U/uie8sEQ==
"@abp/utils@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-3.0.5.tgz#66b3da953500e73ff1f23d1b41168cde8216ce49"
integrity sha512-X9V1xLIEazItaf93nFSA4p94WT6QK3yA4eIyvU7GyyEkkOQdaakNwPbRwy930sd+I+/oXnIqM1vDsJu9QDhgvg==
dependencies:
just-compare "^1.3.0"

@ -3,6 +3,6 @@
"name": "client-simulation-web",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.4"
"@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.5"
}
}

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.4.tgz#c58e3e06ba78279875cf2b5f96d34b83ce09f6df"
integrity sha512-tKKqVRKpwN7P4Mn+he3bcz4Qbt8bkZ++wk6iOujd6HLTkBNa0uKyM4L6+iCn1Hi62S6HeK2Xytx+b+IYeIlsuw==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.4"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.4.tgz#50db612b6492d36c63dd9042000a9fb00fecec54"
integrity sha512-imd2T5XXkNvGQyXV/A9hA80qSeurKaUcW6HDkte8Y2fs4QfvkjgzWXi7neqF6F+HVbYYPg3rIBWC6QF1OXGn2w==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.4"
"@abp/bootstrap" "~3.0.4"
"@abp/bootstrap-datepicker" "~3.0.4"
"@abp/datatables.net-bs4" "~3.0.4"
"@abp/font-awesome" "~3.0.4"
"@abp/jquery-form" "~3.0.4"
"@abp/jquery-validation-unobtrusive" "~3.0.4"
"@abp/lodash" "~3.0.4"
"@abp/luxon" "~3.0.4"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.4"
"@abp/select2" "~3.0.4"
"@abp/sweetalert" "~3.0.4"
"@abp/timeago" "~3.0.4"
"@abp/toastr" "~3.0.4"
"@abp/aspnetcore.mvc.ui@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.4.tgz#4e4344d95a98a60c53037b351cb915d8ff7a7dcb"
integrity sha512-p7KI5CKkpD4EYzG4fCtygrtZhwMu7Z+IZFGbdqXelLbI5ACkbJyrn+N+9trPfS9papymeXY4p1E3v6xOH7rSHQ==
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.5.tgz#c146f20226522f0305cc0fa31cfcf9d39be78901"
integrity sha512-ptNhD4xV2wSLW7vQ5KUgaRiH5Ov1OscZW2ZEoivnt3kqgtIC3DGw+SiE9vjFCvyY83fjRkIlW2PIfQxSySbteQ==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.5"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.5.tgz#5b370902cf229963f9aa10dd64482d57299dde76"
integrity sha512-iobAH39xrCdnqdaABaiYZg4lqNSOwPkMCLnyc+ytxOMbu/YnNKahXPmRhgd8dR/l+iQY1+6T4SWfLdGswi3gAg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.5"
"@abp/bootstrap" "~3.0.5"
"@abp/bootstrap-datepicker" "~3.0.5"
"@abp/datatables.net-bs4" "~3.0.5"
"@abp/font-awesome" "~3.0.5"
"@abp/jquery-form" "~3.0.5"
"@abp/jquery-validation-unobtrusive" "~3.0.5"
"@abp/lodash" "~3.0.5"
"@abp/luxon" "~3.0.5"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.5"
"@abp/select2" "~3.0.5"
"@abp/sweetalert" "~3.0.5"
"@abp/timeago" "~3.0.5"
"@abp/toastr" "~3.0.5"
"@abp/aspnetcore.mvc.ui@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.5.tgz#a050eaee328c56a3730f5abbf25035adf612d6f0"
integrity sha512-/EOgjXTzR+I1OK9KA7L3yzQ2RGSDW97+n3cQrSdLAUF+tnRvMJS0nytDlSJSRK2hb8/clFMaofZHCC81aUkYUg==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,144 +41,144 @@
path "^0.12.7"
rimraf "^3.0.2"
"@abp/bootstrap-datepicker@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.4.tgz#d21963f158a4d348a0acdc46209e67378aae8e55"
integrity sha512-25e9qm39dj9AijIchQIdLlBiBM5/fhASkEuLKNt6M8S/e3qwKLwbRhX90DKMFvOyKdxxcK1gX7tDuGHyG9A8mA==
"@abp/bootstrap-datepicker@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.5.tgz#3a7fd86dbcadc31c11be5b2b31c8cf8ac3035540"
integrity sha512-vIY1wT4RHoJAPhVK11Q5MS71iZbwsmM/0VTBvvs04mjRSSi6xhdyRYkA+l+P49fnOwhZNaaK19XwQdVVScDuhA==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.4.tgz#3b0e2b74dc174a04ce669de1b140df833eee6031"
integrity sha512-DwxL1fGYOwChPwmMpwUxCKiIdzTfRf/YDkOLUiwI8eRrpABBeuE2sSHKfks6Rqh9Wqo/nlWXvfccgDRqweqhsA==
"@abp/bootstrap@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.5.tgz#91f2c8fe6a57fc5789ae8fe9c206b2c159e55880"
integrity sha512-LdydeJIbw5k1k7FkWaI1lTectZeTXmEIoccJtj9Qx4N9yGt40wGsjz9SOvUdJ0IKAgntIWNQP8ohWiBPgzT7Xg==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
bootstrap "^4.5.0"
bootstrap-v4-rtl "4.4.1-2"
"@abp/core@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.4.tgz#281940525e280e9e3a1aa4cb4e8f64548ea026a3"
integrity sha512-ZPEH1fa5bf/f1ek9ZLQHx7u78iF6kRZ8Z2NBI36cNL13RyQbx485qJF+KXyqNlJoJAh0CAs0NsAJADU3utcDNA==
"@abp/core@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.5.tgz#9a7bd990d02edc8128a5be3233b6fbb5669b15b8"
integrity sha512-LdkSkZQfN4hugcGNxBkje0+eQomivwNFbnAkMFQbvCwYLwKB2yvk7GCemEetW1piqvyrUGz4jqhtunjoXps5JA==
dependencies:
"@abp/utils" "^3.0.4"
"@abp/utils" "^3.0.5"
"@abp/datatables.net-bs4@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.4.tgz#e488336bd2c199146ea60464e0ba75aeb134957e"
integrity sha512-ID1XWKPxG9pv6mxBkku7JWvgXjTxJ1uShxmYv5kFYVuwOGMSvj8QVZInTHFcMdECopV56yjGPNOIFLeQj4Mw8Q==
"@abp/datatables.net-bs4@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.5.tgz#9b79935970d2d4074994240b5deb01dff5987c0a"
integrity sha512-jIWRBEG/NlhaE43i6Xzr18XJ5aTWA+WWslf7WgNOArG5slGBbH4lLLja4HswLP3NGdSmzIyHJR1p9XQ82nBkbQ==
dependencies:
"@abp/datatables.net" "~3.0.4"
"@abp/datatables.net" "~3.0.5"
datatables.net-bs4 "^1.10.21"
"@abp/datatables.net@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.4.tgz#7ef143b83143ad8d769be25296411a812a17b255"
integrity sha512-gdQwRuxO5fQWhG/DiUaf40DQ8dWIVGhOCyt6SZ8LQzq4uSaQqa0qrtTTTW2/aiee4MgJu2vJWYF5YCszIR/HhA==
"@abp/datatables.net@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.5.tgz#0a0a39e8fa54522bf8a09ce76ff3927207a79491"
integrity sha512-HClQ2tcZuWBAChf9oOJOtMP1zHv8jqloPEcw3iqbhS/tWZBw5VQ4TO+BVfZsqHDXZNnWSmR6/2xiKsK32nliew==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
datatables.net "^1.10.21"
"@abp/font-awesome@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.4.tgz#98f83d0bf8b5a2a4d988cb07f5cceda2e1bc1a09"
integrity sha512-AKhKCUXx8vdHIgyXUfbSLitfYor5dJbo4qMRRGqIJVSj+cyMkpgYbGjqr24GGijgZxdmOGL+s1b9iCUbIPgLNQ==
"@abp/font-awesome@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.5.tgz#62d58c34f0abf268e30bdf788dfbd3f45b19b412"
integrity sha512-/+31Vtw1S9vvuNy/rN/Q6awkgUaYNNYXESgfvqI0pqIkvlPgigvS8E68mHqGzsxyRqdZisI6JGd94AF+vJD7sQ==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
"@fortawesome/fontawesome-free" "^5.13.0"
"@abp/jquery-form@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.4.tgz#022eebbfe58b55e328984c0f119884c9464bc767"
integrity sha512-xDkk4rY0AmXBJE4qztzr2hZz+OVucVNWeagOEgeQHXJSKU/T+0kj0a1RxEHpyI24xBvEXAbe8PbByTbu0QXYew==
"@abp/jquery-form@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.5.tgz#9d2ea9b2509448ee163a163298a7a09480865f78"
integrity sha512-RKgvQciaMml33NvzA28aYyfNI+WQHRfKLFWvOvqc8qO4C3BvyrnwepuzZcnI/9UsELKLSLoFrfk3rJHhxnTJhg==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.4.tgz#6cc942aadcdde33893e7a45c84aa022e033e4e8b"
integrity sha512-N9sza91HCyPvJo+d0RAfq4skae3TgAYg7KXhlwzRE2hqUQS+EICVARURWyxJW7s7Zu6+gxDTkXhBZRTW56deZA==
"@abp/jquery-validation-unobtrusive@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.5.tgz#b8912e1c4cfdd4fdff6ad4aa7ee8693b55a3be1f"
integrity sha512-kPifDA+1ErbeQBwn+BzwtWuTHXzBke/EMCmITuj59plM/60gZ1ZfVm8EzzTmKS7iLaVVeOqTKf0vEQTobNYffw==
dependencies:
"@abp/jquery-validation" "~3.0.4"
"@abp/jquery-validation" "~3.0.5"
jquery-validation-unobtrusive "^3.2.11"
"@abp/jquery-validation@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.4.tgz#3f96d1f83c75a7fc47e5e5e12c51dbc8da7582b1"
integrity sha512-2ljqas4YKU0PcwB0wQW2qhXejDHjW+N1XCxZDyCZ2wF9UxGlKBR8rFt76TJByXSotKE7n2hJRZaOh9ICZUow2g==
"@abp/jquery-validation@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.5.tgz#55e36b3c832a35447fac69af312dedf1dee22279"
integrity sha512-fdqxc5CJ6TpUAF8+NEsKCmXvvZiOPR5bzczcfvfovxLOjvHvdEO74XPGjsjlBNTdaKMhmNGZRK4JRLUz7fvTng==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
jquery-validation "^1.19.2"
"@abp/jquery@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.4.tgz#5f236d95cfae7f65012cd8778fd74490b7542442"
integrity sha512-g8N8Te5vf+8djdksfZoZ3tXaqlBC4Ra39pAWU/XerlLl64u+XmAX1s6yKRfC2kS8lf292GgiFYuNOkb77J6k4A==
"@abp/jquery@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.5.tgz#2e43ac19a8df6e1e0220d6d4991d33a93d890754"
integrity sha512-2d2l+smWKAVP4/b6GSO+8rmJ7pFXiUewpBDwkHm5qgkK6n6UGqIcK9lIgiS2YQ6rmL6qdtuNhhqtC9GF2TF2kQ==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
jquery "~3.5.1"
"@abp/lodash@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.4.tgz#ee60bc99f98b59fd9fc5ff4bbcf914a13faf209d"
integrity sha512-jxvv74Sm/fUKDBMylK4Ne/8GKm7GuHAdcLFtkoJQptdO+RjZpKJ86ULT+X5vbKskZaTj2fEmOR6l4hmfnBULTA==
"@abp/lodash@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.5.tgz#d5d9f14095d76239bc0e6f9804c24d1f92ffcab4"
integrity sha512-+B2vxfPwxoIIb8Ac8eHi6OgAn0qbjmPZuun7/es0/ouYYTbEhvhTAD20X3PGZlHrIYeDyS2ansuXm8gJI+/BzA==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
lodash "^4.17.15"
"@abp/luxon@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.4.tgz#aa1bf6a93d6254433101e50a205b276759969414"
integrity sha512-gX9dQJt9C6M1wmCSUIBoNr8CAt0jkUZFQ7LKKO/BoADGM/XFvY5vDbhL7zcwbwitgCOzmucoCxs/6rIxSOVlrg==
"@abp/luxon@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.5.tgz#083042c939ea58bf719e35114a6c8efb07b68688"
integrity sha512-0UVHO2CO89t34O35OA3JzWGWLBpg+e1NQXSfVtK90nmg/QmzGkHVM9m7Su0jjLNBt3N5EA5OPOhriot3bCKItw==
dependencies:
luxon "^1.24.1"
"@abp/malihu-custom-scrollbar-plugin@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.4.tgz#c54824b98363f4190cc6a37fcd421c2bfdc1e201"
integrity sha512-6LdSGctOr4ACtdohdSlb19vrFNJ5C0hy1VdbBEafHOBspXckvRVx4uJl2KfHmAC+bMg9apoK/wcHjVNdBHThYQ==
"@abp/malihu-custom-scrollbar-plugin@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.5.tgz#f908289927a63fd76fb8f60b00a37747d9edbe39"
integrity sha512-3GoXA8VtGyZWKiqaPCipPXYLLM7h2Y5Oecq5c5YlMQyW2akv7uHiQQF2GZW/nVsFu3HBbGTOWpKRRmVk3PEO9Q==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.4.tgz#49db0cfbc9b08f6ae4949b2cb8bdef92d7d308dd"
integrity sha512-zKEgkWBFdGU2KiAMUKhucHqBfzDy2KNSefyqxpOiUd1L3PEKu+9o23HZRWzDupYltop+SO1Jw33CNoVAkKm4+A==
"@abp/select2@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.5.tgz#79d7754713c64a6549da520dc6867ef3e3dd0350"
integrity sha512-VbeSHdAdDy8exrjplHMMhLVV4oG7Gq9zBb5M52f0sIkA4DkXFhksXHcHNoOCfhaKAXpenGA03Z9GJewZ3MTpMw==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
select2 "^4.0.13"
"@abp/sweetalert@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.4.tgz#f85d11c5aabc6ceb509af1b8fd8d75bc3c74bd27"
integrity sha512-hO0qXUWxeMy/lfy3sb+5HvOmIPst6UvYJJGy3ZQR6DKEdkOktBX9sEDb7m6ij6xAIHqWIx1xLveul0oGteOG0Q==
"@abp/sweetalert@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.5.tgz#e3b92d23cf3633983980b6255bf63c43d422ceab"
integrity sha512-OUt4ANgj14GESfRG7+UqdONS8daOu+8x2OZDWv98hriuX0uCVBjwB2J0jRI/n653C68Mi0yHixGONDv9OLy/lg==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
sweetalert "^2.1.2"
"@abp/timeago@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.4.tgz#82d90a04f703a7db9c0acedcd2f3cea684e7ae18"
integrity sha512-7SbbqScTKCix25xWy5oLT0slJqUQsW6YgJgI0N41C3AsByRBXZeh5Gcep033gprTPmpgNY8JOWcEcCXySnYvfA==
"@abp/timeago@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.5.tgz#b191a7c43f3dc77645fe27273f2f6619f7d4eb31"
integrity sha512-QhvAOU4C+Qxh/gFuCSGZtLU4KwVhdv/jtK8ovWyqbGvQMCCIimqa8BFKIz0H5XWIJhHwwWblkpjICWgjWh6uXw==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
timeago "^1.6.7"
"@abp/toastr@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.4.tgz#884ab2343ddd59981c291c632e3b0630532f7e9c"
integrity sha512-NG0pVD8bdIXGpjPW9cozCzmyuAdnSLE4vDYLUReP1pZFp9B8SMJqpgPk9eFg0Y06aaHTVMKYBKRoq9xXS4w9Xg==
"@abp/toastr@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.5.tgz#fc83b678f5be3a22040d0421ad9db5b2eac9d4fc"
integrity sha512-qgi2DEu6FYpN/DYcOZrmXsAr1HqcIKMhBWeXgjfoYUIl/K5+OuUgbQ69D/jdc0jz8HU9a4Cw7Q8hhe4CkgssEw==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
toastr "^2.1.4"
"@abp/utils@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-3.0.4.tgz#38068fa8f735e1889cf2f226128366825948814d"
integrity sha512-TnXRZIZcxv5+EctEPsZEi2cyRXbpl3A679wzQa6BACv+pM45cjGO1JR8P0VswKN4TVL0aQRMv26N6U/uie8sEQ==
"@abp/utils@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-3.0.5.tgz#66b3da953500e73ff1f23d1b41168cde8216ce49"
integrity sha512-X9V1xLIEazItaf93nFSA4p94WT6QK3yA4eIyvU7GyyEkkOQdaakNwPbRwy930sd+I+/oXnIqM1vDsJu9QDhgvg==
dependencies:
just-compare "^1.3.0"

@ -3,7 +3,7 @@
"name": "volo.docstestapp",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.4",
"@abp/docs": "^3.0.4"
"@abp/aspnetcore.mvc.ui.theme.basic": "^3.0.5",
"@abp/docs": "^3.0.5"
}
}

@ -2,45 +2,45 @@
# yarn lockfile v1
"@abp/anchor-js@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-3.0.4.tgz#a8a0702c9204ba953e899890338512545af63b4d"
integrity sha512-J8/QIbUK8Cy+7EABw1gUC2CWuJVF44SjdJOIvJSno6k5xbAkyx4oOvPH6x7ngT68rlopt0zez14OpeM6Oy/0Bg==
"@abp/anchor-js@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-3.0.5.tgz#e1affea2e21370562b244f81ce8911d3d36f8d55"
integrity sha512-068PVUu/Zu1zQNgWsJXhUmSIm/HRA4Mx6VXxlNL+qiCLffg8AzRuj4rZc+UaYJieDmJDJc0dlWgiyUFpuvzZ8A==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
anchor-js "^4.2.2"
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.4.tgz#c58e3e06ba78279875cf2b5f96d34b83ce09f6df"
integrity sha512-tKKqVRKpwN7P4Mn+he3bcz4Qbt8bkZ++wk6iOujd6HLTkBNa0uKyM4L6+iCn1Hi62S6HeK2Xytx+b+IYeIlsuw==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.4"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.4.tgz#50db612b6492d36c63dd9042000a9fb00fecec54"
integrity sha512-imd2T5XXkNvGQyXV/A9hA80qSeurKaUcW6HDkte8Y2fs4QfvkjgzWXi7neqF6F+HVbYYPg3rIBWC6QF1OXGn2w==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.4"
"@abp/bootstrap" "~3.0.4"
"@abp/bootstrap-datepicker" "~3.0.4"
"@abp/datatables.net-bs4" "~3.0.4"
"@abp/font-awesome" "~3.0.4"
"@abp/jquery-form" "~3.0.4"
"@abp/jquery-validation-unobtrusive" "~3.0.4"
"@abp/lodash" "~3.0.4"
"@abp/luxon" "~3.0.4"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.4"
"@abp/select2" "~3.0.4"
"@abp/sweetalert" "~3.0.4"
"@abp/timeago" "~3.0.4"
"@abp/toastr" "~3.0.4"
"@abp/aspnetcore.mvc.ui@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.4.tgz#4e4344d95a98a60c53037b351cb915d8ff7a7dcb"
integrity sha512-p7KI5CKkpD4EYzG4fCtygrtZhwMu7Z+IZFGbdqXelLbI5ACkbJyrn+N+9trPfS9papymeXY4p1E3v6xOH7rSHQ==
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.5.tgz#c146f20226522f0305cc0fa31cfcf9d39be78901"
integrity sha512-ptNhD4xV2wSLW7vQ5KUgaRiH5Ov1OscZW2ZEoivnt3kqgtIC3DGw+SiE9vjFCvyY83fjRkIlW2PIfQxSySbteQ==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.5"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.5.tgz#5b370902cf229963f9aa10dd64482d57299dde76"
integrity sha512-iobAH39xrCdnqdaABaiYZg4lqNSOwPkMCLnyc+ytxOMbu/YnNKahXPmRhgd8dR/l+iQY1+6T4SWfLdGswi3gAg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.5"
"@abp/bootstrap" "~3.0.5"
"@abp/bootstrap-datepicker" "~3.0.5"
"@abp/datatables.net-bs4" "~3.0.5"
"@abp/font-awesome" "~3.0.5"
"@abp/jquery-form" "~3.0.5"
"@abp/jquery-validation-unobtrusive" "~3.0.5"
"@abp/lodash" "~3.0.5"
"@abp/luxon" "~3.0.5"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.5"
"@abp/select2" "~3.0.5"
"@abp/sweetalert" "~3.0.5"
"@abp/timeago" "~3.0.5"
"@abp/toastr" "~3.0.5"
"@abp/aspnetcore.mvc.ui@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.5.tgz#a050eaee328c56a3730f5abbf25035adf612d6f0"
integrity sha512-/EOgjXTzR+I1OK9KA7L3yzQ2RGSDW97+n3cQrSdLAUF+tnRvMJS0nytDlSJSRK2hb8/clFMaofZHCC81aUkYUg==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -49,180 +49,180 @@
path "^0.12.7"
rimraf "^3.0.2"
"@abp/bootstrap-datepicker@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.4.tgz#d21963f158a4d348a0acdc46209e67378aae8e55"
integrity sha512-25e9qm39dj9AijIchQIdLlBiBM5/fhASkEuLKNt6M8S/e3qwKLwbRhX90DKMFvOyKdxxcK1gX7tDuGHyG9A8mA==
"@abp/bootstrap-datepicker@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.5.tgz#3a7fd86dbcadc31c11be5b2b31c8cf8ac3035540"
integrity sha512-vIY1wT4RHoJAPhVK11Q5MS71iZbwsmM/0VTBvvs04mjRSSi6xhdyRYkA+l+P49fnOwhZNaaK19XwQdVVScDuhA==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.4.tgz#3b0e2b74dc174a04ce669de1b140df833eee6031"
integrity sha512-DwxL1fGYOwChPwmMpwUxCKiIdzTfRf/YDkOLUiwI8eRrpABBeuE2sSHKfks6Rqh9Wqo/nlWXvfccgDRqweqhsA==
"@abp/bootstrap@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.5.tgz#91f2c8fe6a57fc5789ae8fe9c206b2c159e55880"
integrity sha512-LdydeJIbw5k1k7FkWaI1lTectZeTXmEIoccJtj9Qx4N9yGt40wGsjz9SOvUdJ0IKAgntIWNQP8ohWiBPgzT7Xg==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
bootstrap "^4.5.0"
bootstrap-v4-rtl "4.4.1-2"
"@abp/clipboard@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-3.0.4.tgz#17ff40e398de3c0ab5214e564d443ed52ac10630"
integrity sha512-vjjupRau7fgBxvQwaDrBHApP4Ce1x9XM7L64/c+A+oBny0SzuiSBGBYsjlFrJGmTHT/PhjoB1XQiBHrYYPXQfQ==
"@abp/clipboard@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-3.0.5.tgz#7ceadd21360db11c91582a532029bfe65d10a930"
integrity sha512-iq455C096L5D+b6IrWkMxA9mbpggBNZ1kWfCQ3rhIjo0qbOGrvdGB3uQ+BqRS9Ni9ku7vBb2COldouIC9KOp5A==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
clipboard "^2.0.6"
"@abp/core@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.4.tgz#281940525e280e9e3a1aa4cb4e8f64548ea026a3"
integrity sha512-ZPEH1fa5bf/f1ek9ZLQHx7u78iF6kRZ8Z2NBI36cNL13RyQbx485qJF+KXyqNlJoJAh0CAs0NsAJADU3utcDNA==
"@abp/core@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.5.tgz#9a7bd990d02edc8128a5be3233b6fbb5669b15b8"
integrity sha512-LdkSkZQfN4hugcGNxBkje0+eQomivwNFbnAkMFQbvCwYLwKB2yvk7GCemEetW1piqvyrUGz4jqhtunjoXps5JA==
dependencies:
"@abp/utils" "^3.0.4"
"@abp/utils" "^3.0.5"
"@abp/datatables.net-bs4@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.4.tgz#e488336bd2c199146ea60464e0ba75aeb134957e"
integrity sha512-ID1XWKPxG9pv6mxBkku7JWvgXjTxJ1uShxmYv5kFYVuwOGMSvj8QVZInTHFcMdECopV56yjGPNOIFLeQj4Mw8Q==
"@abp/datatables.net-bs4@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.5.tgz#9b79935970d2d4074994240b5deb01dff5987c0a"
integrity sha512-jIWRBEG/NlhaE43i6Xzr18XJ5aTWA+WWslf7WgNOArG5slGBbH4lLLja4HswLP3NGdSmzIyHJR1p9XQ82nBkbQ==
dependencies:
"@abp/datatables.net" "~3.0.4"
"@abp/datatables.net" "~3.0.5"
datatables.net-bs4 "^1.10.21"
"@abp/datatables.net@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.4.tgz#7ef143b83143ad8d769be25296411a812a17b255"
integrity sha512-gdQwRuxO5fQWhG/DiUaf40DQ8dWIVGhOCyt6SZ8LQzq4uSaQqa0qrtTTTW2/aiee4MgJu2vJWYF5YCszIR/HhA==
"@abp/datatables.net@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.5.tgz#0a0a39e8fa54522bf8a09ce76ff3927207a79491"
integrity sha512-HClQ2tcZuWBAChf9oOJOtMP1zHv8jqloPEcw3iqbhS/tWZBw5VQ4TO+BVfZsqHDXZNnWSmR6/2xiKsK32nliew==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
datatables.net "^1.10.21"
"@abp/docs@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-3.0.4.tgz#366d550247189981d5989652d3d2cf663ae518e5"
integrity sha512-NdqukX/oPkkmG31xZflc8oeVm0Up/CUZCBb9ahKCHleK7C0os8eQBQ52wO27dJFa5FaeUhW2ejLYT3aS2XkrTg==
"@abp/docs@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-3.0.5.tgz#733211ea72f3064ea5c23ed36a16c7f8b0ef5d8b"
integrity sha512-LQDHz6mE3ptP1AmpK+IEoY6edQB/t7Hu5ueLdtNHqTJWkwW7ngXOaECbkC2KVPywLqbXw0vzHBw2OnCVSKxtyw==
dependencies:
"@abp/anchor-js" "~3.0.4"
"@abp/clipboard" "~3.0.4"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.4"
"@abp/popper.js" "~3.0.4"
"@abp/prismjs" "~3.0.4"
"@abp/anchor-js" "~3.0.5"
"@abp/clipboard" "~3.0.5"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.5"
"@abp/popper.js" "~3.0.5"
"@abp/prismjs" "~3.0.5"
"@abp/font-awesome@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.4.tgz#98f83d0bf8b5a2a4d988cb07f5cceda2e1bc1a09"
integrity sha512-AKhKCUXx8vdHIgyXUfbSLitfYor5dJbo4qMRRGqIJVSj+cyMkpgYbGjqr24GGijgZxdmOGL+s1b9iCUbIPgLNQ==
"@abp/font-awesome@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.5.tgz#62d58c34f0abf268e30bdf788dfbd3f45b19b412"
integrity sha512-/+31Vtw1S9vvuNy/rN/Q6awkgUaYNNYXESgfvqI0pqIkvlPgigvS8E68mHqGzsxyRqdZisI6JGd94AF+vJD7sQ==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
"@fortawesome/fontawesome-free" "^5.13.0"
"@abp/jquery-form@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.4.tgz#022eebbfe58b55e328984c0f119884c9464bc767"
integrity sha512-xDkk4rY0AmXBJE4qztzr2hZz+OVucVNWeagOEgeQHXJSKU/T+0kj0a1RxEHpyI24xBvEXAbe8PbByTbu0QXYew==
"@abp/jquery-form@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.5.tgz#9d2ea9b2509448ee163a163298a7a09480865f78"
integrity sha512-RKgvQciaMml33NvzA28aYyfNI+WQHRfKLFWvOvqc8qO4C3BvyrnwepuzZcnI/9UsELKLSLoFrfk3rJHhxnTJhg==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.4.tgz#6cc942aadcdde33893e7a45c84aa022e033e4e8b"
integrity sha512-N9sza91HCyPvJo+d0RAfq4skae3TgAYg7KXhlwzRE2hqUQS+EICVARURWyxJW7s7Zu6+gxDTkXhBZRTW56deZA==
"@abp/jquery-validation-unobtrusive@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.5.tgz#b8912e1c4cfdd4fdff6ad4aa7ee8693b55a3be1f"
integrity sha512-kPifDA+1ErbeQBwn+BzwtWuTHXzBke/EMCmITuj59plM/60gZ1ZfVm8EzzTmKS7iLaVVeOqTKf0vEQTobNYffw==
dependencies:
"@abp/jquery-validation" "~3.0.4"
"@abp/jquery-validation" "~3.0.5"
jquery-validation-unobtrusive "^3.2.11"
"@abp/jquery-validation@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.4.tgz#3f96d1f83c75a7fc47e5e5e12c51dbc8da7582b1"
integrity sha512-2ljqas4YKU0PcwB0wQW2qhXejDHjW+N1XCxZDyCZ2wF9UxGlKBR8rFt76TJByXSotKE7n2hJRZaOh9ICZUow2g==
"@abp/jquery-validation@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.5.tgz#55e36b3c832a35447fac69af312dedf1dee22279"
integrity sha512-fdqxc5CJ6TpUAF8+NEsKCmXvvZiOPR5bzczcfvfovxLOjvHvdEO74XPGjsjlBNTdaKMhmNGZRK4JRLUz7fvTng==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
jquery-validation "^1.19.2"
"@abp/jquery@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.4.tgz#5f236d95cfae7f65012cd8778fd74490b7542442"
integrity sha512-g8N8Te5vf+8djdksfZoZ3tXaqlBC4Ra39pAWU/XerlLl64u+XmAX1s6yKRfC2kS8lf292GgiFYuNOkb77J6k4A==
"@abp/jquery@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.5.tgz#2e43ac19a8df6e1e0220d6d4991d33a93d890754"
integrity sha512-2d2l+smWKAVP4/b6GSO+8rmJ7pFXiUewpBDwkHm5qgkK6n6UGqIcK9lIgiS2YQ6rmL6qdtuNhhqtC9GF2TF2kQ==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
jquery "~3.5.1"
"@abp/lodash@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.4.tgz#ee60bc99f98b59fd9fc5ff4bbcf914a13faf209d"
integrity sha512-jxvv74Sm/fUKDBMylK4Ne/8GKm7GuHAdcLFtkoJQptdO+RjZpKJ86ULT+X5vbKskZaTj2fEmOR6l4hmfnBULTA==
"@abp/lodash@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.5.tgz#d5d9f14095d76239bc0e6f9804c24d1f92ffcab4"
integrity sha512-+B2vxfPwxoIIb8Ac8eHi6OgAn0qbjmPZuun7/es0/ouYYTbEhvhTAD20X3PGZlHrIYeDyS2ansuXm8gJI+/BzA==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
lodash "^4.17.15"
"@abp/luxon@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.4.tgz#aa1bf6a93d6254433101e50a205b276759969414"
integrity sha512-gX9dQJt9C6M1wmCSUIBoNr8CAt0jkUZFQ7LKKO/BoADGM/XFvY5vDbhL7zcwbwitgCOzmucoCxs/6rIxSOVlrg==
"@abp/luxon@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.5.tgz#083042c939ea58bf719e35114a6c8efb07b68688"
integrity sha512-0UVHO2CO89t34O35OA3JzWGWLBpg+e1NQXSfVtK90nmg/QmzGkHVM9m7Su0jjLNBt3N5EA5OPOhriot3bCKItw==
dependencies:
luxon "^1.24.1"
"@abp/malihu-custom-scrollbar-plugin@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.4.tgz#c54824b98363f4190cc6a37fcd421c2bfdc1e201"
integrity sha512-6LdSGctOr4ACtdohdSlb19vrFNJ5C0hy1VdbBEafHOBspXckvRVx4uJl2KfHmAC+bMg9apoK/wcHjVNdBHThYQ==
"@abp/malihu-custom-scrollbar-plugin@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.5.tgz#f908289927a63fd76fb8f60b00a37747d9edbe39"
integrity sha512-3GoXA8VtGyZWKiqaPCipPXYLLM7h2Y5Oecq5c5YlMQyW2akv7uHiQQF2GZW/nVsFu3HBbGTOWpKRRmVk3PEO9Q==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/popper.js@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-3.0.4.tgz#f68f2c3392dd9f86ce0f53cc12b33b0258bbbf9f"
integrity sha512-DTxqTMyLFLGjpf7sbKLJMsPbuZ/+8OdgqlO/JjNjyBVWCCM6b50yhYAcYKQq1f2kcqIegJv0B6+zDHAFMtnibg==
"@abp/popper.js@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-3.0.5.tgz#ef46770e3a63cf10c91d4bda983198cd84b8e063"
integrity sha512-5MzLBMRWh2hHLVJJIrvJa6c4fwEdUk9HmnqpaqXnSX52B4uy9jcBexMdi/H7+cmao9NHm+Ld9n9G0YA8vMNeKA==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
popper.js "^1.16.0"
"@abp/prismjs@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-3.0.4.tgz#9cd8113b33dfd1b349b12740a2f7462f88bf3841"
integrity sha512-D+RNAhUhOCXnBNZVOq9EQg883eRbPKlIpFsxeMW065XOm5g7iO0eJACvyqGC8mt5reHmtxApnfiGNlhT1dK+Eg==
"@abp/prismjs@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-3.0.5.tgz#81a6ef656f3d7a76f365eb0bcbf2d0d3013d6e72"
integrity sha512-vdSSa1+tXS5+HWIgQyjDy4yQG7Q1YyuHQnFU6zlDJCQlE+20PL6lYgPnqR7DQ+Cd4lhRb3oxvloImYjwiwSQvA==
dependencies:
"@abp/clipboard" "~3.0.4"
"@abp/core" "~3.0.4"
"@abp/clipboard" "~3.0.5"
"@abp/core" "~3.0.5"
prismjs "^1.20.0"
"@abp/select2@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.4.tgz#49db0cfbc9b08f6ae4949b2cb8bdef92d7d308dd"
integrity sha512-zKEgkWBFdGU2KiAMUKhucHqBfzDy2KNSefyqxpOiUd1L3PEKu+9o23HZRWzDupYltop+SO1Jw33CNoVAkKm4+A==
"@abp/select2@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.5.tgz#79d7754713c64a6549da520dc6867ef3e3dd0350"
integrity sha512-VbeSHdAdDy8exrjplHMMhLVV4oG7Gq9zBb5M52f0sIkA4DkXFhksXHcHNoOCfhaKAXpenGA03Z9GJewZ3MTpMw==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
select2 "^4.0.13"
"@abp/sweetalert@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.4.tgz#f85d11c5aabc6ceb509af1b8fd8d75bc3c74bd27"
integrity sha512-hO0qXUWxeMy/lfy3sb+5HvOmIPst6UvYJJGy3ZQR6DKEdkOktBX9sEDb7m6ij6xAIHqWIx1xLveul0oGteOG0Q==
"@abp/sweetalert@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.5.tgz#e3b92d23cf3633983980b6255bf63c43d422ceab"
integrity sha512-OUt4ANgj14GESfRG7+UqdONS8daOu+8x2OZDWv98hriuX0uCVBjwB2J0jRI/n653C68Mi0yHixGONDv9OLy/lg==
dependencies:
"@abp/core" "~3.0.4"
"@abp/core" "~3.0.5"
sweetalert "^2.1.2"
"@abp/timeago@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.4.tgz#82d90a04f703a7db9c0acedcd2f3cea684e7ae18"
integrity sha512-7SbbqScTKCix25xWy5oLT0slJqUQsW6YgJgI0N41C3AsByRBXZeh5Gcep033gprTPmpgNY8JOWcEcCXySnYvfA==
"@abp/timeago@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.5.tgz#b191a7c43f3dc77645fe27273f2f6619f7d4eb31"
integrity sha512-QhvAOU4C+Qxh/gFuCSGZtLU4KwVhdv/jtK8ovWyqbGvQMCCIimqa8BFKIz0H5XWIJhHwwWblkpjICWgjWh6uXw==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
timeago "^1.6.7"
"@abp/toastr@~3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.4.tgz#884ab2343ddd59981c291c632e3b0630532f7e9c"
integrity sha512-NG0pVD8bdIXGpjPW9cozCzmyuAdnSLE4vDYLUReP1pZFp9B8SMJqpgPk9eFg0Y06aaHTVMKYBKRoq9xXS4w9Xg==
"@abp/toastr@~3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.5.tgz#fc83b678f5be3a22040d0421ad9db5b2eac9d4fc"
integrity sha512-qgi2DEu6FYpN/DYcOZrmXsAr1HqcIKMhBWeXgjfoYUIl/K5+OuUgbQ69D/jdc0jz8HU9a4Cw7Q8hhe4CkgssEw==
dependencies:
"@abp/jquery" "~3.0.4"
"@abp/jquery" "~3.0.5"
toastr "^2.1.4"
"@abp/utils@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-3.0.4.tgz#38068fa8f735e1889cf2f226128366825948814d"
integrity sha512-TnXRZIZcxv5+EctEPsZEi2cyRXbpl3A679wzQa6BACv+pM45cjGO1JR8P0VswKN4TVL0aQRMv26N6U/uie8sEQ==
"@abp/utils@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-3.0.5.tgz#66b3da953500e73ff1f23d1b41168cde8216ce49"
integrity sha512-X9V1xLIEazItaf93nFSA4p94WT6QK3yA4eIyvU7GyyEkkOQdaakNwPbRwy930sd+I+/oXnIqM1vDsJu9QDhgvg==
dependencies:
just-compare "^1.3.0"

@ -1,25 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<AssemblyName>Volo.Abp.Users.EntityFrameworkCore.Tests</AssemblyName>
<PackageId>Volo.Abp.Users.EntityFrameworkCore.Tests</PackageId>
<LangVersion>latest</LangVersion>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<RootNamespace />
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Volo.Abp.Users.EntityFrameworkCore\Volo.Abp.Users.EntityFrameworkCore.csproj" />
<ProjectReference Include="..\..\test\Volo.Abp.Users.Tests.Shared\Volo.Abp.Users.Tests.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="3.1.4" />
</ItemGroup>
</Project>

@ -1,2 +0,0 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/CSharpLanguageProject/LanguageLevel/@EntryValue">CSharp71</s:String></wpf:ResourceDictionary>

@ -1,7 +0,0 @@
namespace Volo.Abp.Users.EntityFrameworkCore
{
public class AbpUserRepository_Tests : AbpUserRepository_Tests<AbpUsersEntityFrameworkCoreTestModule>
{
}
}

@ -1,38 +0,0 @@
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp.EntityFrameworkCore;
using Volo.Abp.Modularity;
using Volo.Abp.Uow;
namespace Volo.Abp.Users.EntityFrameworkCore
{
[DependsOn(
typeof(AbpUsersTestsSharedModule),
typeof(AbpUsersEntityFrameworkCoreModule)
)]
public class AbpUsersEntityFrameworkCoreTestModule : AbpModule
{
public override void ConfigureServices(IServiceCollection services)
{
services.AddEntityFrameworkInMemoryDatabase();
var databaseName = Guid.NewGuid().ToString();
services.Configure<AbpDbContextOptions>(options =>
{
options.Configure(context =>
{
context.DbContextOptions.UseInMemoryDatabase(databaseName);
});
});
services.Configure<AbpUnitOfWorkDefaultOptions>(options =>
{
options.TransactionBehavior = UnitOfWorkTransactionBehavior.Disabled; //EF in-memory database does not support transactions
});
services.AddAssemblyOf<AbpUsersEntityFrameworkCoreTestModule>();
}
}
}

@ -1,7 +0,0 @@
namespace Volo.Abp.Users.EntityFrameworkCore
{
public class ExternalUserLookupService_Tests : ExternalUserLookupService_Tests<AbpUsersEntityFrameworkCoreTestModule>
{
}
}

@ -1,7 +0,0 @@
namespace Volo.Abp.Users.EntityFrameworkCore
{
public class LocalUserLookupService_Tests : LocalUserLookupService_Tests<AbpUsersEntityFrameworkCoreTestModule>
{
}
}

@ -1,25 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<AssemblyName>Volo.Abp.Users.MongoDB.Tests</AssemblyName>
<PackageId>Volo.Abp.Users.MongoDB.Tests</PackageId>
<LangVersion>latest</LangVersion>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<RootNamespace />
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Volo.Abp.Users.MongoDB\Volo.Abp.Users.MongoDB.csproj" />
<ProjectReference Include="..\..\test\Volo.Abp.Users.Tests.Shared\Volo.Abp.Users.Tests.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="Mongo2Go" Version="2.2.12" />
</ItemGroup>
</Project>

@ -1,8 +0,0 @@
namespace Volo.Abp.Users.MongoDB
{
[Collection(MongoTestCollection.Name)]
public class AbpUserRepository_Tests : AbpUserRepository_Tests<AbpUsersMongoDbTestModule>
{
}
}

@ -1,31 +0,0 @@
using System;
using Microsoft.Extensions.DependencyInjection;
using Mongo2Go;
using Volo.Abp.Data;
using Volo.Abp.Modularity;
namespace Volo.Abp.Users.MongoDB
{
[DependsOn(
typeof(AbpUsersMongoDbModule),
typeof(AbpUsersTestsSharedModule)
)]
public class AbpUsersMongoDbTestModule : AbpModule
{
private static readonly MongoDbRunner MongoDbRunner = MongoDbRunner.Start();
public override void ConfigureServices(IServiceCollection services)
{
var connectionString = MongoDbFixture.ConnectionString.EnsureEndsWith('/') +
"Db_" +
Guid.NewGuid().ToString("N");
Configure<AbpDbConnectionOptions>(options =>
{
options.ConnectionStrings.Default = connectionString;
});
services.AddAssemblyOf<AbpUsersMongoDbTestModule>();
}
}
}

@ -1,8 +0,0 @@
namespace Volo.Abp.Users.MongoDB
{
[Collection(MongoTestCollection.Name)]
public class ExternalUserLookupService_Tests : ExternalUserLookupService_Tests<AbpUsersMongoDbTestModule>
{
}
}

@ -1,8 +0,0 @@
namespace Volo.Abp.Users.MongoDB
{
[Collection(MongoTestCollection.Name)]
public class LocalUserLookupService_Tests : LocalUserLookupService_Tests<AbpUsersMongoDbTestModule>
{
}
}

@ -1,22 +0,0 @@
using System;
using Mongo2Go;
namespace Volo.Abp.Users.MongoDB
{
public class MongoDbFixture : IDisposable
{
private static readonly MongoDbRunner MongoDbRunner;
public static readonly string ConnectionString;
static MongoDbFixture()
{
MongoDbRunner = MongoDbRunner.Start();
ConnectionString = MongoDbRunner.ConnectionString;
}
public void Dispose()
{
MongoDbRunner?.Dispose();
}
}
}

@ -1,10 +0,0 @@
using Xunit;
namespace Volo.Abp.Users.MongoDB
{
[CollectionDefinition(Name)]
public class MongoTestCollection : ICollectionFixture<MongoDbFixture>
{
public const string Name = "MongoDB Collection";
}
}

@ -1,31 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<AssemblyName>Volo.Abp.Users.Tests.Shared</AssemblyName>
<PackageId>Volo.Abp.Users.Tests.Shared</PackageId>
<LangVersion>latest</LangVersion>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<RootNamespace />
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Volo.Abp.Users.Domain\Volo.Abp.Users.Domain.csproj" />
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.Autofac\Volo.Abp.Autofac.csproj" />
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.TestBase\Volo.Abp.TestBase.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="NSubstitute" Version="4.2.1" />
<PackageReference Include="Shouldly" Version="3.0.2" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.extensibility.execution" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
</ItemGroup>
</Project>

@ -1,2 +0,0 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/CSharpLanguageProject/LanguageLevel/@EntryValue">CSharp71</s:String></wpf:ResourceDictionary>

@ -1,53 +0,0 @@
using System;
using System.Linq;
using System.Threading.Tasks;
using Shouldly;
using Volo.Abp.Modularity;
using Xunit;
namespace Volo.Abp.Users
{
public abstract class AbpUserRepository_Tests<TStartupModule> : AbpUsersTestBase<TStartupModule>
where TStartupModule : IAbpModule
{
private readonly AbpUsersLocalTestData _localTestData;
private readonly IAbpUserRepository _userRepository;
protected AbpUserRepository_Tests()
{
_userRepository = GetRequiredService<IAbpUserRepository>();
_localTestData = GetRequiredService<AbpUsersLocalTestData>();
}
[Fact]
public async Task FindAsync()
{
var john = await _userRepository.FindAsync(_localTestData.John.Id);
john.ShouldNotBeNull();
john.UserName.ShouldBe(_localTestData.John.UserName);
//Undefined user
(await _userRepository.FindAsync(Guid.NewGuid())).ShouldBeNull();
}
[Fact]
public async Task FindByUserNameAsync()
{
var john = await _userRepository.FindByUserNameAsync(_localTestData.John.UserName);
john.ShouldNotBeNull();
john.Id.ShouldBe(_localTestData.John.Id);
//Undefined user
(await _userRepository.FindByUserNameAsync("undefined-user")).ShouldBeNull();
}
[Fact]
public async Task GetListAsync()
{
(await _userRepository.GetListAsync(new Guid[0])).Any().ShouldBeFalse();
(await _userRepository.GetListAsync(new[] { _localTestData.John.Id })).Count.ShouldBe(1);
(await _userRepository.GetListAsync(new[] { _localTestData.John.Id, _localTestData.David.Id })).Count.ShouldBe(2);
(await _userRepository.GetListAsync(new[] { _localTestData.John.Id, _localTestData.David.Id, Guid.NewGuid() })).Count.ShouldBe(2);
}
}
}

@ -1,27 +0,0 @@
using System;
using System.Collections.Generic;
using Volo.Abp.DependencyInjection;
namespace Volo.Abp.Users
{
public class AbpUsersExternalTestData : ISingletonDependency
{
public IAbpUserData David { get; }
public IAbpUserData Neo { get; }
public AbpUsersExternalTestData(AbpUsersLocalTestData localTestData)
{
Neo = new AbpUserData(Guid.NewGuid(), "neo");
David = localTestData.David.ToAbpUserData();
}
public List<IAbpUserData> GetAllUsers()
{
return new List<IAbpUserData>
{
David,
Neo
};
}
}
}

@ -1,17 +0,0 @@
using System;
using Volo.Abp.DependencyInjection;
namespace Volo.Abp.Users
{
public class AbpUsersLocalTestData : ISingletonDependency
{
public AbpUser John { get; }
public AbpUser David { get; }
public AbpUsersLocalTestData()
{
John = new AbpUser(Guid.NewGuid(), "john");
David = new AbpUser(Guid.NewGuid(), "david", "david@abp.io");
}
}
}

@ -1,14 +0,0 @@
using Volo.Abp.Modularity;
using Volo.Abp.Testing;
namespace Volo.Abp.Users
{
public abstract class AbpUsersTestBase<TStartupModule> : AbpIntegratedTest<TStartupModule>
where TStartupModule : IAbpModule
{
protected override void SetAbpApplicationCreationOptions(AbpApplicationCreationOptions options)
{
options.UseAutofac();
}
}
}

@ -1,29 +0,0 @@
using Volo.Abp.DependencyInjection;
namespace Volo.Abp.Users
{
public class AbpUsersTestDataBuilder : ITransientDependency
{
private readonly IAbpUserRepository _userRepository;
private readonly AbpUsersLocalTestData _localTestData;
public AbpUsersTestDataBuilder(
IAbpUserRepository userRepository,
AbpUsersLocalTestData localTestData)
{
_userRepository = userRepository;
_localTestData = localTestData;
}
public void Build()
{
AddUsers();
}
private void AddUsers()
{
_userRepository.Insert(_localTestData.John);
_userRepository.Insert(_localTestData.David);
}
}
}

@ -1,34 +0,0 @@
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp.Autofac;
using Volo.Abp.Modularity;
namespace Volo.Abp.Users
{
[DependsOn(
typeof(AbpUsersDomainModule),
typeof(AbpTestBaseModule),
typeof(AbpAutofacModule)
)]
public class AbpUsersTestsSharedModule : AbpModule
{
public override void ConfigureServices(IServiceCollection services)
{
services.AddAssemblyOf<AbpUsersTestsSharedModule>();
}
public override void OnApplicationInitialization(ApplicationInitializationContext context)
{
SeedTestData(context);
}
private static void SeedTestData(ApplicationInitializationContext context)
{
using (var scope = context.ServiceProvider.CreateScope())
{
scope.ServiceProvider
.GetRequiredService<AbpUsersTestDataBuilder>()
.Build();
}
}
}
}

@ -1,77 +0,0 @@
using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using Shouldly;
using Volo.Abp.Modularity;
using Xunit;
namespace Volo.Abp.Users
{
public abstract class ExternalUserLookupService_Tests<TStartupModule> : AbpUsersTestBase<TStartupModule>
where TStartupModule : IAbpModule
{
private readonly IAbpUserLookupService _lookupService;
private readonly AbpUsersLocalTestData _localTestData;
private readonly AbpUsersExternalTestData _externalTestData;
protected ExternalUserLookupService_Tests()
{
_lookupService = GetRequiredService<IAbpUserLookupService>();
_localTestData = GetRequiredService<AbpUsersLocalTestData>();
_externalTestData = GetRequiredService<AbpUsersExternalTestData>();
}
protected override void AfterAddApplication(IServiceCollection services)
{
services.AddTransient<IExternalAbpUserLookupServiceProvider, TestExternalAbpUserLookupServiceProvider>();
}
[Fact]
public async Task FindByUserNameAsync()
{
(await GetRequiredService<IAbpUserRepository>().FindByUserNameAsync(_localTestData.John.UserName)).ShouldNotBeNull();
(await _lookupService.FindByUserNameAsync("undefined-user")).ShouldBeNull();
(await _lookupService.FindByUserNameAsync(_localTestData.John.UserName)).ShouldBeNull(); //Because it's not available in the external provider. And this will delete the user!
(await _lookupService.FindByUserNameAsync(_localTestData.David.UserName)).ShouldNotBeNull();
(await _lookupService.FindByUserNameAsync(_externalTestData.Neo.UserName)).ShouldNotBeNull();
(await GetRequiredService<IAbpUserRepository>().FindByUserNameAsync(_localTestData.John.UserName)).ShouldBeNull();
}
[Fact]
public async Task FindByIdAsync()
{
(await GetRequiredService<IAbpUserRepository>().FindAsync(_localTestData.John.Id)).ShouldNotBeNull();
(await _lookupService.FindByIdAsync(Guid.NewGuid())).ShouldBeNull();
(await _lookupService.FindByIdAsync(_localTestData.John.Id)).ShouldBeNull(); //Because it's not available in the external provider. And this will delete the user!
(await _lookupService.FindByIdAsync(_localTestData.David.Id)).ShouldNotBeNull();
(await _lookupService.FindByIdAsync(_externalTestData.Neo.Id)).ShouldNotBeNull();
(await GetRequiredService<IAbpUserRepository>().FindAsync(_localTestData.John.Id)).ShouldBeNull();
}
public class TestExternalAbpUserLookupServiceProvider : IExternalAbpUserLookupServiceProvider
{
private readonly AbpUsersExternalTestData _externalTestData;
public TestExternalAbpUserLookupServiceProvider(AbpUsersExternalTestData externalTestData)
{
_externalTestData = externalTestData;
}
public Task<IAbpUserData> FindByIdAsync(Guid id, CancellationToken cancellationToken = default)
{
return Task.FromResult(_externalTestData.GetAllUsers().FirstOrDefault(u => u.Id == id));
}
public Task<IAbpUserData> FindByUserNameAsync(string userName, CancellationToken cancellationToken = default)
{
return Task.FromResult(_externalTestData.GetAllUsers().FirstOrDefault(u => u.UserName == userName));
}
}
}
}

@ -1,28 +0,0 @@
using System.Threading.Tasks;
using Shouldly;
using Volo.Abp.Modularity;
using Xunit;
namespace Volo.Abp.Users
{
public abstract class LocalUserLookupService_Tests<TStartupModule> : AbpUsersTestBase<TStartupModule>
where TStartupModule : IAbpModule
{
private readonly IAbpUserLookupService _lookupService;
private readonly AbpUsersLocalTestData _localTestData;
protected LocalUserLookupService_Tests()
{
_lookupService = GetRequiredService<IAbpUserLookupService>();
_localTestData = GetRequiredService<AbpUsersLocalTestData>();
}
[Fact]
public async Task FindByUserNameAsync()
{
(await _lookupService.FindByUserNameAsync(_localTestData.John.UserName)).ShouldNotBeNull();
(await _lookupService.FindByUserNameAsync(_localTestData.David.UserName)).ShouldNotBeNull();
(await _lookupService.FindByUserNameAsync("undefined-user")).ShouldBeNull();
}
}
}

@ -1,5 +1,5 @@
{
"version": "3.0.4",
"version": "3.0.5",
"packages": [
"packs/*"
],

@ -1,5 +1,5 @@
{
"version": "3.0.4",
"version": "3.0.5",
"packages": [
"packages/*"
],

@ -23,16 +23,16 @@
"postinstall": "npm run compile:ivy"
},
"devDependencies": {
"@abp/ng.account": "~3.0.4",
"@abp/ng.core": "~3.0.4",
"@abp/ng.feature-management": "~3.0.4",
"@abp/ng.identity": "~3.0.4",
"@abp/ng.permission-management": "~3.0.4",
"@abp/ng.setting-management": "~3.0.4",
"@abp/ng.tenant-management": "~3.0.4",
"@abp/ng.theme.basic": "~3.0.4",
"@abp/ng.theme.shared": "~3.0.4",
"@abp/utils": "^3.0.4",
"@abp/ng.account": "~3.0.5",
"@abp/ng.core": "~3.0.5",
"@abp/ng.feature-management": "~3.0.5",
"@abp/ng.identity": "~3.0.5",
"@abp/ng.permission-management": "~3.0.5",
"@abp/ng.setting-management": "~3.0.5",
"@abp/ng.tenant-management": "~3.0.5",
"@abp/ng.theme.basic": "~3.0.5",
"@abp/ng.theme.shared": "~3.0.5",
"@abp/utils": "^3.0.5",
"@angular-builders/jest": "^9.0.1",
"@angular-devkit/build-angular": "~0.1000.0",
"@angular-devkit/build-ng-packagr": "~0.1000.0",

@ -1,13 +1,13 @@
{
"name": "@abp/ng.account",
"version": "3.0.4",
"version": "3.0.5",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/ng.theme.shared": "~3.0.4",
"@abp/ng.theme.shared": "~3.0.5",
"tslib": "^2.0.0"
},
"publishConfig": {

@ -1,13 +1,13 @@
{
"name": "@abp/ng.core",
"version": "3.0.4",
"version": "3.0.5",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/utils": "^3.0.4",
"@abp/utils": "^3.0.5",
"@angular/localize": "~9.1.11",
"@ngxs/router-plugin": "^3.6.2",
"@ngxs/storage-plugin": "^3.6.2",

@ -1,13 +1,13 @@
{
"name": "@abp/ng.feature-management",
"version": "3.0.4",
"version": "3.0.5",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/ng.theme.shared": "~3.0.4",
"@abp/ng.theme.shared": "~3.0.5",
"tslib": "^2.0.0"
},
"publishConfig": {

@ -1,14 +1,14 @@
{
"name": "@abp/ng.identity",
"version": "3.0.4",
"version": "3.0.5",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/ng.permission-management": "~3.0.4",
"@abp/ng.theme.shared": "~3.0.4",
"@abp/ng.permission-management": "~3.0.5",
"@abp/ng.theme.shared": "~3.0.5",
"tslib": "^2.0.0"
},
"publishConfig": {

@ -1,13 +1,13 @@
{
"name": "@abp/ng.permission-management",
"version": "3.0.4",
"version": "3.0.5",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/ng.theme.shared": "~3.0.4",
"@abp/ng.theme.shared": "~3.0.5",
"tslib": "^2.0.0"
},
"publishConfig": {

@ -1,13 +1,13 @@
{
"name": "@abp/ng.setting-management",
"version": "3.0.4",
"version": "3.0.5",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/ng.theme.shared": "~3.0.4",
"@abp/ng.theme.shared": "~3.0.5",
"tslib": "^2.0.0"
},
"publishConfig": {

@ -1,14 +1,14 @@
{
"name": "@abp/ng.tenant-management",
"version": "3.0.4",
"version": "3.0.5",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/ng.feature-management": "~3.0.4",
"@abp/ng.theme.shared": "~3.0.4",
"@abp/ng.feature-management": "~3.0.5",
"@abp/ng.theme.shared": "~3.0.5",
"tslib": "^2.0.0"
},
"publishConfig": {

@ -1,13 +1,13 @@
{
"name": "@abp/ng.theme.basic",
"version": "3.0.4",
"version": "3.0.5",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/ng.theme.shared": "~3.0.4",
"@abp/ng.theme.shared": "~3.0.5",
"tslib": "^2.0.0"
},
"publishConfig": {

@ -1,13 +1,13 @@
{
"name": "@abp/ng.theme.shared",
"version": "3.0.4",
"version": "3.0.5",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/ng.core": "~3.0.4",
"@abp/ng.core": "~3.0.5",
"@fortawesome/fontawesome-free": "^5.13.1",
"@ng-bootstrap/ng-bootstrap": "^6.1.0",
"@ngx-validate/core": "^0.0.10",

@ -91,7 +91,14 @@
chart.js "^2.9.3"
tslib "^2.0.0"
"@abp/utils@^3.0.3", "@abp/utils@^3.0.4":
"@abp/utils@^3.0.3":
version "3.0.3"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-3.0.3.tgz#563aa062882ca82227b749d90458adafa46ae73b"
integrity sha512-eV4cl605j1IbuIbnTTO5JW+O3mpUUVxp+AG2xqIeqrRSnyTGhTG0q30XjsDGlTdcUfwxpZORptD4pu8NfCGUpg==
dependencies:
just-compare "^1.3.0"
"@abp/utils@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-3.0.4.tgz#38068fa8f735e1889cf2f226128366825948814d"
integrity sha512-TnXRZIZcxv5+EctEPsZEi2cyRXbpl3A679wzQa6BACv+pM45cjGO1JR8P0VswKN4TVL0aQRMv26N6U/uie8sEQ==
@ -2319,10 +2326,17 @@
rxjs "6.5.5"
webpack-sources "1.4.3"
"@ngx-validate/core@^0.0.9":
version "0.0.9"
resolved "https://registry.yarnpkg.com/@ngx-validate/core/-/core-0.0.9.tgz#c5baea9e6f2f28c70d1adaf1edde5a9bcc8929c0"
integrity sha512-bvgwGr3l47gyxqsfKkI8c7UNMlv8ct/OvwYVDjYI7GBt0A+nhBb+xFmirWbBkMT64bUI0Y8pWIiB5qiewPG1WA==
"@ngx-validate/core@^0.0.10":
version "0.0.10"
resolved "https://registry.yarnpkg.com/@ngx-validate/core/-/core-0.0.10.tgz#a9ff36e5645533f5bc2d4850a980582bdfee8033"
integrity sha512-/uq22KteDF3WcJEMNaK7C9eT6Mxw8rlPqJfq2XteO2g3utzx/n/gKDdb0GzD/2eefjmO1qq98XQKgpFzQXoTag==
dependencies:
tslib "^1.9.0"
"@ngx-validate/core@^0.0.8", "@ngx-validate/core@^0.0.9":
version "0.0.8"
resolved "https://registry.yarnpkg.com/@ngx-validate/core/-/core-0.0.8.tgz#8577405eb1af0f5002cdda7a86fbcda56280f116"
integrity sha512-caIG5ao76Xhf7T+pNA8crnpAwK0yqj3i0OAUGZRUq1W+kNgz+ZnrSd4F9an/W4g+38u/8gfUVvsfsm07ju6qYA==
dependencies:
tslib "^1.9.0"

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/anchor-js",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.4",
"@abp/core": "~3.0.5",
"anchor-js": "^4.2.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/aspnetcore.mvc.ui.theme.basic",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.shared": "~3.0.4"
"@abp/aspnetcore.mvc.ui.theme.shared": "~3.0.5"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,24 +1,24 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/aspnetcore.mvc.ui.theme.shared",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/aspnetcore.mvc.ui": "~3.0.4",
"@abp/bootstrap": "~3.0.4",
"@abp/bootstrap-datepicker": "~3.0.4",
"@abp/datatables.net-bs4": "~3.0.4",
"@abp/font-awesome": "~3.0.4",
"@abp/jquery-form": "~3.0.4",
"@abp/jquery-validation-unobtrusive": "~3.0.4",
"@abp/lodash": "~3.0.4",
"@abp/luxon": "~3.0.4",
"@abp/malihu-custom-scrollbar-plugin": "~3.0.4",
"@abp/select2": "~3.0.4",
"@abp/sweetalert": "~3.0.4",
"@abp/timeago": "~3.0.4",
"@abp/toastr": "~3.0.4"
"@abp/aspnetcore.mvc.ui": "~3.0.5",
"@abp/bootstrap": "~3.0.5",
"@abp/bootstrap-datepicker": "~3.0.5",
"@abp/datatables.net-bs4": "~3.0.5",
"@abp/font-awesome": "~3.0.5",
"@abp/jquery-form": "~3.0.5",
"@abp/jquery-validation-unobtrusive": "~3.0.5",
"@abp/lodash": "~3.0.5",
"@abp/luxon": "~3.0.5",
"@abp/malihu-custom-scrollbar-plugin": "~3.0.5",
"@abp/select2": "~3.0.5",
"@abp/sweetalert": "~3.0.5",
"@abp/timeago": "~3.0.5",
"@abp/toastr": "~3.0.5"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,5 +1,5 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/aspnetcore.mvc.ui",
"publishConfig": {
"access": "public"

@ -1,14 +1,14 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/blogging",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.shared": "~3.0.4",
"@abp/owl.carousel": "~3.0.4",
"@abp/prismjs": "~3.0.4",
"@abp/tui-editor": "~3.0.4"
"@abp/aspnetcore.mvc.ui.theme.shared": "~3.0.5",
"@abp/owl.carousel": "~3.0.5",
"@abp/prismjs": "~3.0.5",
"@abp/tui-editor": "~3.0.5"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,5 +1,5 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/bootstrap-datepicker",
"publishConfig": {
"access": "public"

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/bootstrap",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.4",
"@abp/core": "~3.0.5",
"bootstrap": "^4.5.0",
"bootstrap-v4-rtl": "4.4.1-2"
},

@ -1,5 +1,5 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/chart.js",
"publishConfig": {
"access": "public"

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/clipboard",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.4",
"@abp/core": "~3.0.5",
"clipboard": "^2.0.6"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/codemirror",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.4",
"@abp/core": "~3.0.5",
"codemirror": "^5.54.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/core",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/utils": "^3.0.4"
"@abp/utils": "^3.0.5"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/datatables.net-bs4",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/datatables.net": "~3.0.4",
"@abp/datatables.net": "~3.0.5",
"datatables.net-bs4": "^1.10.21"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/datatables.net",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/jquery": "~3.0.4",
"@abp/jquery": "~3.0.5",
"datatables.net": "^1.10.21"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,15 +1,15 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/docs",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/anchor-js": "~3.0.4",
"@abp/clipboard": "~3.0.4",
"@abp/malihu-custom-scrollbar-plugin": "~3.0.4",
"@abp/popper.js": "~3.0.4",
"@abp/prismjs": "~3.0.4"
"@abp/anchor-js": "~3.0.5",
"@abp/clipboard": "~3.0.5",
"@abp/malihu-custom-scrollbar-plugin": "~3.0.5",
"@abp/popper.js": "~3.0.5",
"@abp/prismjs": "~3.0.5"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,5 +1,5 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/flag-icon-css",
"publishConfig": {
"access": "public"

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/font-awesome",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.4",
"@abp/core": "~3.0.5",
"@fortawesome/fontawesome-free": "^5.13.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/highlight.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.4"
"@abp/core": "~3.0.5"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/jquery-form",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/jquery": "~3.0.4",
"@abp/jquery": "~3.0.5",
"jquery-form": "^4.3.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/jquery-validation-unobtrusive",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/jquery-validation": "~3.0.4",
"@abp/jquery-validation": "~3.0.5",
"jquery-validation-unobtrusive": "^3.2.11"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/jquery-validation",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/jquery": "~3.0.4",
"@abp/jquery": "~3.0.5",
"jquery-validation": "^1.19.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.4",
"version": "3.0.5",
"name": "@abp/jquery",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.4",
"@abp/core": "~3.0.5",
"jquery": "~3.5.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save