Merge pull request #13809 from abpframework/auto-merge/rel-6-0/1304

Merge branch dev with rel-6.0
pull/13095/head
maliming 3 years ago committed by GitHub
commit 6e36425427
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,102 +1,268 @@
## ABP OpenIddict Modules
## ABP OpenIddict Module
## User Interface
This module implements the domain logic and database integrations, but not provides any UI. Management UI is useful if you need to add applications and scopes on the fly. In this case, you may build the management UI yourself or consider to purchase the [ABP Commercial](https://commercial.abp.io/) which provides the management UI for this module.
OpenIddict module provides an integration with the [OpenIddict](https://github.com/openiddict/openiddict-core) which provides advanced authentication features like single sign-on, single log-out, and API access control. This module persists applications, scopes, and other OpenIddict-related objects to the database.
## How to Install
This module comes as pre-installed (as NuGet/NPM packages) when you [create a new solution](https://abp.io/get-started) with the ABP Framework. You can continue to use it as package and get updates easily, or you can include its source code into your solution (see `get-source` [CLI](../CLI.md) command) to develop your custom module.
This module comes as pre-installed (as NuGet/NPM packages) when you [create a new solution](https://abp.io/get-started) with the ABP Framework. You can continue to use it as a package and get updates easily, or you can include its source code into your solution (see `get-source` [CLI](../CLI.md) command) to develop your custom module.
### The Source Code
The source code of this module can be accessed [here](https://github.com/abpframework/abp/tree/dev/modules/openiddict). The source code is licensed with [MIT](https://choosealicense.com/licenses/mit/), so you can freely use and customize it.
The source code of this module can be accessed [here](https://github.com/abpframework/abp/tree/dev/modules/openiddict). The source code is licensed by [MIT](https://choosealicense.com/licenses/mit/), so you can freely use and customize it.
## Relations to Other Modules
## User Interface
This module is based on the [Identity Module](Identity.md) and have an [integration package](https://www.nuget.org/packages/Volo.Abp.Account.Web.OpenIddict) with the [Account Module](Account.md).
This module implements the domain logic and database integrations but does not provide any UI. Management UI is useful if you need to add applications and scopes on the fly. In this case, you may build the management UI yourself or consider purchasing the [ABP Commercial](https://commercial.abp.io/) which provides the management UI for this module.
## The module
## Relations to Other Modules
### Demo projects
This module is based on the [Identity Module](Identity.md) and has an [integration package](https://www.nuget.org/packages/Volo.Abp.Account.Web.OpenIddict) with the [Account Module](Account.md).
In the module's `app` directory there are six projects(including `angular`)
## Options
* `OpenIddict.Demo.Server`: An abp application with integrated modules (has two `clients` and a `scope`).
* `OpenIddict.Demo.API`: ASP NET Core API application using JwtBearer authentication
* `OpenIddict.Demo.Client.Mvc`: ASP NET Core MVC application using `OpenIdConnect` for authentication
* `OpenIddict.Demo.Client.Console`: Use `IdentityModel` to test OpenIddict's various endpoints, and call the api of `OpenIddict.Demo.API`
* `OpenIddict.Demo.Client.BlazorWASM:` ASP NET Core Blazor application using `OidcAuthentication` for authentication
* `angular`: An angular application that integrates the abp ng modules and uses oauth for authentication
### OpenIddictBuilder
#### How to run?
`OpenIddictBuilder` can be configured in the `PreConfigureServices` method of your OpenIddict [module](https://docs.abp.io/en/abp/latest/Module-Development-Basics).
Confirm the connection string of `appsettings.json` in the `OpenIddict.Demo.Server` project. Running the project will automatically create the database and initialize the data.
After running the `OpenIddict.Demo.API` project, then you can run the rest of the projects to test.
Example:
### Domain module
```csharp
public override void PreConfigureServices(ServiceConfigurationContext context)
{
PreConfigure<OpenIddictBuilder>(builder =>
{
//Set options here...
});
}
```
There are four main entities included in this module.
`OpenIddictBuilder` contains various extension methods to configure the OpenIddict services:
* OpenIddictApplication: **Represents applications(client)**
* OpenIddictScope: **Represents scopes**
* OpenIddictAuthorization: **Represents authorizations, Track of logical chains of tokens and user consent..**
* OpenIddictToken: **Represents various tokens.**
- `AddServer()` registers the OpenIddict token server services in the DI container. Contains `OpenIddictServerBuilder` configurations.
- `AddCore()` registers the OpenIddict core services in the DI container. Contains `OpenIddictCoreBuilder` configurations.
- `AddValidation()` registers the OpenIddict token validation services in the DI container. Contains `OpenIddictValidationBuilder` configurations.
Domain also implements four store interfaces in OpenIddict, OpenIddict uses store to manage entities, corresponding to the above four entities, Custom entity repository is used in the store.
### OpenIddictCoreBuilder
`OpenIddictCoreBuilder` contains extension methods to configure the OpenIddict core services.
```cs
//Manager
OpenIddictApplicationManager
OpenIddictScopeManager
OpenIddictAuthorizationManager
OpenIddictTokenManager
//Store
IOpenIddictApplicationStore
IOpenIddictScopeStore
IOpenIddictAuthorizationStore
IOpenIddictTokenStore
//Repository
IOpenIddictApplicationRepository
IOpenIddictScopeRepository
IOpenIddictAuthorizationRepository
IOpenIddictTokenRepository
Example:
```csharp
public override void PreConfigureServices(ServiceConfigurationContext context)
{
PreConfigure<OpenIddictCoreBuilder>(builder =>
{
//Set options here...
});
}
```
We enabled most of OpenIddict's features in the `AddOpenIddict` method, You can change OpenIddict's related builder options via `PreConfigure`.
These services contain:
```cs
PreConfigure<OpenIddictBuilder>(builder =>
{
//builder
});
- Adding `ApplicationStore`, `AuthorizationStore`, `ScopeStore`, `TokenStore`.
- Replacing `ApplicationManager`, `AuthorizationManager`, `ScopeManager`, `TokenManager`.
- Replacing `ApplicationStoreResolver`, `AuthorizationStoreResolver`, `ScopeStoreResolver`, `TokenStoreResolver`.
- Setting `DefaultApplicationEntity`, `DefaultAuthorizationEntity`, `DefaultScopeEntity`, `DefaultTokenEntity`.
### OpenIddictServerBuilder
PreConfigure<OpenIddictCoreBuilder>(builder =>
`OpenIddictServerBuilder` contains extension methods to configure OpenIddict server services.
Example:
```csharp
public override void PreConfigureServices(ServiceConfigurationContext context)
{
//builder
});
PreConfigure<OpenIddictServerBuilder>(builder =>
{
//Set options here...
});
}
```
These services contain:
- Registering claims, scopes.
- Setting the `Issuer` URI that is used as the base address for the endpoint URIs returned from the discovery endpoint.
- Adding development signing keys, encryption/signing keys, credentials, and certificates.
- Adding/removing event handlers.
- Enabling/disabling grant types.
- Setting authentication server endpoint URIs.
### OpenIddictValidationBuilder
PreConfigure<OpenIddictServerBuilder>(builder =>
`OpenIddictValidationBuilder` contains extension methods to configure OpenIddict validation services.
Example:
```csharp
public override void PreConfigureServices(ServiceConfigurationContext context)
{
//builder
});
PreConfigure<OpenIddictValidationBuilder>(builder =>
{
//Set options here...
});
}
```
#### AbpOpenIddictAspNetCoreOptions
These services contain:
- `AddAudiances()` for resource servers.
- `SetIssuer()` URI that is used to determine the actual location of the OAuth 2.0/OpenID Connect configuration document when using provider discovery.
- `SetConfiguration()` to configure `OpenIdConnectConfiguration`.
- `UseIntrospection()` to use introspection instead of local/direct validation.
- Adding encryption key, credentials, and certificates.
- Adding/removing event handlers.
- `SetClientId() ` to set the client identifier `client_id ` when communicating with the remote authorization server (e.g for introspection).
- `SetClientSecret()` to set the identifier `client_secret` when communicating with the remote authorization server (e.g for introspection).
- `EnableAuthorizationEntryValidation()` to enable authorization validation to ensure the `access token` is still valid by making a database call for each API request. *Note:* This may have a negative impact on performance and can only be used with an OpenIddict-based authorization server.
- `EnableTokenEntryValidation()` to enable authorization validation to ensure the `access token` is still valid by making a database call for each API request. *Note:* This may have a negative impact on performance and it is required when the OpenIddict server is configured to use reference tokens.
- `UseLocalServer()` to register the OpenIddict validation/server integration services.
- `UseAspNetCore()` to register the OpenIddict validation services for ASP.NET Core in the DI container.
## Internals
### Domain Layer
#### Aggregates
##### OpenIddictApplication
OpenIddictApplications represent the applications that can request tokens from your OpenIddict Server.
- `OpenIddictApplications` (aggregate root): Represents an OpenIddict application.
- `ClientId` (string): The client identifier associated with the current application.
- `ClientSecret` (string): The client secret associated with the current application. Maybe hashed or encrypted for security reasons.
- `ConsentType` (string): The consent type associated with the current application.
- `DisplayName` (string): The display name associated with the current application.
- `DisplayNames` (string): The localized display names associated with the current application serialized as a JSON object.
- `Permissions` (string): The permissions associated with the current application, serialized as a JSON array.
- `PostLogoutRedirectUris` (string): The logout callback URLs associated with the current application, serialized as a JSON array.
- `Properties` (string): The additional properties associated with the current application serialized as a JSON object or null.
- `RedirectUris` (string): The callback URLs associated with the current application, serialized as a JSON array.
- `Requirements` (string): The requirements associated with the current application
- `Type` (string): The application type associated with the current application.
- `ClientUri` (string): URI to further information about client.
- `LogoUri` (string): URI to client logo.
##### OpenIddictAuthorization
OpenIddictAuthorizations are used to keep the allowed scopes, authorization flow types.
- `OpenIddictAuthorization` (aggregate root): Represents an OpenIddict authorization.
- `ApplicationId` (Guid?): The application associated with the current authorization.
- `Properties` (string): The additional properties associated with the current authorization serialized as a JSON object or null.
- `Scopes` (string): The scopes associated with the current authorization, serialized as a JSON array.
- `Status` (string): The status of the current authorization.
- `Subject` (string): The subject associated with the current authorization.
- `Type` (string): The type of the current authorization.
##### OpenIddictScope
OpenIddictScopes are used to keep the scopes of resources.
- `OpenIddictScope` (aggregate root): Represents an OpenIddict scope.
- `Description` (string): The public description associated with the current scope.
- `Descriptions` (string): The localized public descriptions associated with the current scope, serialized as a JSON object.
- `DisplayName` (string): The display name associated with the current scope.
- `DisplayNames` (string): The localized display names associated with the current scope serialized as a JSON object.
- `Name` (string): The unique name associated with the current scope.
- `Properties` (string): The additional properties associated with the current scope serialized as a JSON object or null.
- `Resources` (string): The resources associated with the current scope, serialized as a JSON array.
##### OpenIddictToken
OpenIddictTokens are used to persist the application tokens.
- `OpenIddictToken` (aggregate root): Represents an OpenIddict token.
- `ApplicationId` (Guid?): The application associated with the current token.
- `AuthorizationId` (Guid?): The application associated with the current token.
- `CreationDate` (DateTime?): The UTC creation date of the current token.
- `ExpirationDate` (DateTime?): The UTC expiration date of the current token.
- `Payload` (string): The payload of the current token, if applicable. Only used for reference tokens and may be encrypted for security reasons.
- `Properties` (string): The additional properties associated with the current token serialized as a JSON object or null.
- `RedemptionDate` (DateTime?): The UTC redemption date of the current token.
- `Status` (string): The status of the current authorization.
- `ReferenceId` (string): The reference identifier associated with the current token, if applicable. Only used for reference tokens and may be hashed or encrypted for security reasons.
- `Status` (string): The status of the current token.
- `Subject` (string): The subject associated with the current token.
- `Type` (string): The type of the current token.
`UpdateAbpClaimTypes(default: true)`: Updates AbpClaimTypes to be compatible with identity server claims.
`AddDevelopmentEncryptionAndSigningCertificate(default: true)`: Registers (and generates if necessary) a user-specific development encryption/development signing certificate.
#### Stores
You can also change this options via `PreConfigure`.
This module implements OpenIddict stores:
#### Automatically removing orphaned tokens/authorizations
- `IAbpOpenIdApplicationStore`
- `IOpenIddictAuthorizationStore`
- `IOpenIddictScopeStore`
- `IOpenIddictTokenStore`
There is a background task in the `Domain` module (`enabled by default`) that automatically removes orphaned tokens/authorizations, you can configure `TokenCleanupOptions` to manage it.
##### Repositories
### ASP NET Core module
The following custom repositories are defined in this module:
- `IOpenIddictApplicationRepository`
- `IOpenIddictAuthorizationRepository`
- `IOpenIddictScopeRepository`
- `IOpenIddictTokenRepository`
##### Domain Services
This module doesn't contain any domain service but overrides the service below:
- `AbpApplicationManager` used to populate/get `AbpApplicationDescriptor` information that contains `ClientUri` and `LogoUri`.
### Database Providers
#### Common
##### Table/Collection Prefix & Schema
All tables/collections use the `OpenIddict` prefix by default. Set static properties on the `AbpOpenIddictDbProperties` class if you need to change the table prefix or set a schema name (if supported by your database provider).
##### Connection String
This module uses `AbpOpenIddict` for the connection string name. If you don't define a connection string with this name, it fallbacks to the `Default` connection string.
See the [connection strings](https://docs.abp.io/en/abp/latest/Connection-Strings) documentation for details.
#### Entity Framework Core
##### Tables
- **OpenIddictApplications**
- **OpenIddictAuthorizations**
- **OpenIddictScopes**
- **OpenIddictTokens**
#### MongoDB
##### Collections
- **OpenIddictApplications**
- **OpenIddictAuthorizations**
- **OpenIddictScopes**
- **OpenIddictTokens**
## ASP.NET Core Module
This module integrates ASP NET Core, with built-in MVC controllers for four protocols. It uses OpenIddict's [Pass-through mode](https://documentation.openiddict.com/guides/index.html#pass-through-mode).
@ -107,15 +273,57 @@ LogoutController -> connect/logout
UserInfoController -> connect/userinfo
```
> We will implement the related functions of **device flow** in the PRO module..
> **Device flow** implementation will be done in the commercial module.
#### AbpOpenIddictAspNetCoreOptions
`AbpOpenIddictAspNetCoreOptions` can be configured in the `PreConfigureServices` method of your OpenIddict [module](https://docs.abp.io/en/abp/latest/Module-Development-Basics).
Example:
```csharp
PreConfigure<AbpOpenIddictAspNetCoreOptions>(options =>
{
//Set options here...
});
```
`AbpOpenIddictAspNetCoreOptions` properties:
- `UpdateAbpClaimTypes(default: true)`: Updates `AbpClaimTypes` to be compatible with the Openiddict claims.
- `AddDevelopmentEncryptionAndSigningCertificate(default: true)`: Registers (and generates if necessary) a user-specific development encryption/development signing certificate.
#### Automatically Removing Orphaned Tokens/Authorizations
The background task that automatically removes orphaned tokens/authorizations. This can be configured by `TokenCleanupOptions` to manage it.
`TokenCleanupOptions` can be configured in the `PreConfigureServices` method of your OpenIddict [module](https://docs.abp.io/en/abp/latest/Module-Development-Basics).
Example:
```csharp
PreConfigure<TokenCleanupOptions>(options =>
{
//Set options here...
});
```
`TokenCleanupOptions` properties:
- `IsCleanupEnabled` (default: true): Enable/disable token clean up.
- `CleanupPeriod` (default: 3,600,000 ms): Setting clean up period.
- `DisableAuthorizationPruning`: Setting a boolean indicating whether authorizations pruning should be disabled.
- `DisableTokenPruning`: Setting a boolean indicating whether token pruning should be disabled.
- `MinimumAuthorizationLifespan` (default: 14 days): Setting the minimum lifespan authorizations must have to be pruned. Cannot be less than 10 minutes.
- `MinimumTokenLifespan` (default: 14 days): Setting the minimum lifespan tokens must have to be pruned. Cannot be less than 10 minutes.
#### How to control claims in access_token and id_token
#### Updating Claims In Access_token and Id_token
You can use the [Claims Principal Factory](https://docs.abp.io/en/abp/latest/Authorization#claims-principal-factory) to add/remove claims to the `ClaimsPrincipal`.
[Claims Principal Factory](https://docs.abp.io/en/abp/latest/Authorization#claims-principal-factory) can be used to add/remove claims to the `ClaimsPrincipal`.
The `AbpDefaultOpenIddictClaimDestinationsProvider` service will add `Name`, `Email` and `Role` types of Claims to `access_token` and `id_token`, other claims are only added to `access_token` by default, and remove the `SecurityStampClaimType` secret claim of `Identity`.
The `AbpDefaultOpenIddictClaimDestinationsProvider` service will add `Name`, `Email,` and `Role` types of Claims to `access_token` and `id_token`, other claims are only added to `access_token` by default, and remove the `SecurityStampClaimType` secret claim of `Identity`.
You can create a service that inherits from `IAbpOpenIddictClaimDestinationsProvider` and add it to DI to fully control the destinations of claims
Create a service that inherits from `IAbpOpenIddictClaimDestinationsProvider` and add it to DI to fully control the destinations of claims.
```cs
public class MyClaimDestinationsProvider : IAbpOpenIddictClaimDestinationsProvider, ITransientDependency
@ -133,30 +341,11 @@ Configure<AbpOpenIddictClaimDestinationsOptions>(options =>
});
```
For detailed information, please refer to: [OpenIddict claim destinations](https://documentation.openiddict.com/configuration/claim-destinations.html)
### EF Core module
Implements the above four repository interfaces.
### MongoDB module
Implements the above four repository interfaces.
## OpenIddict
For detailed information, please refer to: [OpenIddict claim destinations](https://documentation.openiddict.com/configuration/claim-destinations.html)
### Documentation
#### Disable AccessToken Encryption
For more details about OpenIddict, please refer to its official documentation and Github.
https://documentation.openiddict.com
https://github.com/openiddict/openiddict-core#resources
### Disable AccessToken Encryption
ABP disables the `access token encryption` by default for compatibility, you can manually enable it if needed.
ABP disables the `access token encryption` by default for compatibility, it can be enabled manually if needed.
```cs
public override void PreConfigureServices(ServiceConfigurationContext context)
@ -170,22 +359,15 @@ public override void PreConfigureServices(ServiceConfigurationContext context)
https://documentation.openiddict.com/configuration/token-formats.html#disabling-jwt-access-token-encryption
### PKCE
https://documentation.openiddict.com/configuration/proof-key-for-code-exchange.html
### Request/Response process
I will briefly introduce the principle of OpenIddict so that everyone can quickly understand it.
### Request/Response Process
The `OpenIddict.Server.AspNetCore` adds an authentication scheme(`Name: OpenIddict.Server.AspNetCore, handler: OpenIddictServerAspNetCoreHandler`) and implements the `IAuthenticationRequestHandler` interface.
It will be executed first in `AuthenticationMiddleware` and can short-circuit the current request. Otherwise, `DefaultAuthenticateScheme` will be called and continue to execute the pipeline.
`OpenIddictServerAspNetCoreHandler` will call various built-in handlers(Handling requests and responses), And the handler will process according to the context or skip logic that has nothing to do with it.
`OpenIddictServerAspNetCoreHandler` will call various built-in handlers (handling requests and responses), And the handler will process according to the context or skip logic that has nothing to do with it.
Example a token request:
Example of a token request:
```
POST /connect/token HTTP/1.1
@ -199,11 +381,11 @@ Content-Type: application/x-www-form-urlencoded
scope=AbpAPI offline_access
```
This request will be processed by various handlers. They will confirm the endpoint type of the request, check `http/https`, verify that the request parameters (`client. scope etc`) are valid and exist in the database, etc. Various protocol checks. And build a `OpenIddictRequest` object, If there are any errors, the response content may be set and directly short-circuit the current request.
This request will be processed by various handlers. They will confirm the endpoint type of the request, check `HTTP/HTTPS`, verify that the request parameters (`client. scope, etc`) are valid and exist in the database, etc. Various protocol checks. And build a `OpenIddictRequest` object, If there are any errors, the response content may be set and directly short-circuit the current request.
If everything is ok, the request will go to our processing controller(eg `TokenController`), we can get an `OpenIddictRequest` from the http request at this time. The rest of our work will be based on this object.
If everything is ok, the request will go to our processing controller(eg `TokenController`), we can get an `OpenIddictRequest` from the HTTP request at this time. The rest will be based on this object.
We may check the `username` and `password` in the request. If it is correct we create a `ClaimsPrincipal` object and return a `SignInResult`, which uses the `OpenIddict.Validation.AspNetCore` authentication scheme name, will calls `OpenIddictServerAspNetCoreHandler` for processing.
Check the `username` and `password` in the request. If it is correct create a `ClaimsPrincipal` object and return a `SignInResult`, which uses the `OpenIddict.Validation.AspNetCore` authentication scheme name, will calls `OpenIddictServerAspNetCoreHandler` for processing.
`OpenIddictServerAspNetCoreHandler` do some checks to generate json and replace the http response content.
@ -214,10 +396,26 @@ If you need to customize OpenIddict, you need to replace/delete/add new handlers
Please refer to:
https://documentation.openiddict.com/guides/index.html#events-model
## Migrating Guide
### PKCE
[Migrating from IdentityServer to OpenIddict Step by Step Guide ](../Migration-Guides/OpenIddict-Step-by-Step.md)
https://documentation.openiddict.com/configuration/proof-key-for-code-exchange.html
## Sponsor
## Demo projects
In the module's `app` directory there are six projects(including `angular`)
* `OpenIddict.Demo.Server`: An abp application with integrated modules (has two `clients` and a `scope`).
* `OpenIddict.Demo.API`: ASP NET Core API application using JwtBearer authentication.
* `OpenIddict.Demo.Client.Mvc`: ASP NET Core MVC application using `OpenIdConnect` for authentication.
* `OpenIddict.Demo.Client.Console`: Use `IdentityModel` to test OpenIddict's various endpoints, and call the api of `OpenIddict.Demo.API`.
* `OpenIddict.Demo.Client.BlazorWASM:` ASP NET Core Blazor application using `OidcAuthentication` for authentication.
* `angular`: An angular application that integrates the abp ng modules and uses oauth for authentication.
Please consider sponsoring this project: https://github.com/sponsors/kevinchalet
#### How to run?
Confirm the connection string of `appsettings.json` in the `OpenIddict.Demo.Server` project. Running the project will automatically create the database and initialize the data.
After running the `OpenIddict.Demo.API` project, then you can run the rest of the projects to test.
## Migrating Guide
[Migrating from IdentityServer to OpenIddict Step by Step Guide ](../Migration-Guides/OpenIddict-Step-by-Step.md)

@ -41,10 +41,7 @@ public abstract class AppNoLayersTemplateBase : AppTemplateBase
break;
}
if (context.BuildArgs.DatabaseManagementSystem == DatabaseManagementSystem.PostgreSQL)
{
context.Symbols.Add("dbms:PostgreSQL");
}
context.Symbols.Add($"dbms:{context.BuildArgs.DatabaseManagementSystem}");
switch (context.BuildArgs.UiFramework)
{

@ -109,10 +109,7 @@ public abstract class AppTemplateBase : TemplateInfo
steps.Add(new RemoveProjectFromSolutionStep("MyCompanyName.MyProjectName.MongoDB.Tests", projectFolderPath: "/aspnet-core/test/MyCompanyName.MyProjectName.MongoDB.Tests"));
}
if (context.BuildArgs.DatabaseManagementSystem == DatabaseManagementSystem.PostgreSQL)
{
context.Symbols.Add("dbms:PostgreSQL");
}
context.Symbols.Add($"dbms:{context.BuildArgs.DatabaseManagementSystem}");
}
protected void DeleteUnrelatedProjects(ProjectBuildContext context, List<ProjectBuildPipelineStep> steps)

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

@ -2,30 +2,30 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.shared@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.2.tgz#a7a69d3bb4aa09809b3362a045c1adba5b04d17c"
integrity sha512-sszTiRfJxy6EQ2C2xe3GwrfaVfZgSw8xOZcIFScBvW0fDMAfJCTJA+HMcaBTsng9EqHfc7622mWaPlWCD5ImEg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.2"
"@abp/bootstrap" "~6.0.0-rc.2"
"@abp/bootstrap-datepicker" "~6.0.0-rc.2"
"@abp/datatables.net-bs5" "~6.0.0-rc.2"
"@abp/font-awesome" "~6.0.0-rc.2"
"@abp/jquery-form" "~6.0.0-rc.2"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.2"
"@abp/lodash" "~6.0.0-rc.2"
"@abp/luxon" "~6.0.0-rc.2"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.2"
"@abp/select2" "~6.0.0-rc.2"
"@abp/sweetalert2" "~6.0.0-rc.2"
"@abp/timeago" "~6.0.0-rc.2"
"@abp/toastr" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.2.tgz#14d5da45b01af77caab45b01a43f07db6a5425f3"
integrity sha512-AIXP1FP/VvBGRzoslTRTnD4I1oei4Ufh5qVWKG+PwmrFJ6/XoarNV6FCKLePm7NETd1VSrq20uPCrfuZx2WKQg==
"@abp/aspnetcore.mvc.ui.theme.shared@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.3.tgz#664ca2ee712b7d9e66103c00beb41eb9648a6075"
integrity sha512-KxCsGuoUWKaDo7Oo9aKp51pli2m0DZ2tG8m+zK+m4M9U7g96uC+DOFy3gc7MdPlszvrw32Wwm7I0AughstByNA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.3"
"@abp/bootstrap" "~6.0.0-rc.3"
"@abp/bootstrap-datepicker" "~6.0.0-rc.3"
"@abp/datatables.net-bs5" "~6.0.0-rc.3"
"@abp/font-awesome" "~6.0.0-rc.3"
"@abp/jquery-form" "~6.0.0-rc.3"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.3"
"@abp/lodash" "~6.0.0-rc.3"
"@abp/luxon" "~6.0.0-rc.3"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.3"
"@abp/select2" "~6.0.0-rc.3"
"@abp/sweetalert2" "~6.0.0-rc.3"
"@abp/timeago" "~6.0.0-rc.3"
"@abp/toastr" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.3.tgz#47c23b57ed3908bd78a232230e53d1f3cba2de41"
integrity sha512-7eJZy2JUGQP94Tz3JJWXRHRmDfTcPZ/lS1/VNbU8B4qvgl5ChIXklVEJLR1fwrBhKXZV8fGVmqT1XlGTGFvFJA==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -34,144 +34,144 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
"@abp/bootstrap-datepicker@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.2.tgz#74785434be987d4579dcf66b52752d23d3dcc928"
integrity sha512-BvJEChBRwf7vuXap1s/hOi3PrlWkZYtpnZLKNjNpEfLLHa3LPrSLn9GAfVLS92/qxeB+S6Vk49HiwcOtuIeEOA==
"@abp/bootstrap-datepicker@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.3.tgz#89198b863dbfccf5f07ac3c4b20ce6199adcb17a"
integrity sha512-NLoUjcR66mqwSWuVftu2yFH4/j6QP+FiElRfZQ9OYmO8DQx2Ue5UZzjrFTrZ1DBBCfzhr2Bffj80dirGvGDyvg==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.2.tgz#ef9e6fb40eb884dd69581bfd08a2523f274cbab8"
integrity sha512-cf1ttQV6gQX0UNoWIKxaJ7tk8dJAQ79WhklsuDWROl0KtkjQ/oCi14363YvWezMQe82xnps1m4ViX87JqNIM4w==
"@abp/bootstrap@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.3.tgz#4574bf574cc3484869e8ff8bc592f6212d20a969"
integrity sha512-Q5v7WRkGhGcjRg267HXtqs1oU7ts9UXPyCXmg5y2y5qMOyioD+m4MKV4iv67DgoQjabudp8X2egTKxkej6Lzkw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
bootstrap "^5.1.3"
"@abp/core@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.2.tgz#6339637a278fc19e10d468aba118e2384a8310af"
integrity sha512-2t7rhjpRvByoAnkdSVEdN4ZVotHSRanv9fZRqK6yOQpHEZ4LDgByKi+eNdc3kiT0+VU3mHxMgq+FO+pxaBHSAA==
"@abp/core@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.3.tgz#5662ce813d449d97d9fb7ea2552b2774c8df7825"
integrity sha512-X/VRdk5SGNYc5gQzPcBEPAvwcuD9WXsI4YIdrqjnes0s8u2/XmfrTixojh8Y5EYUoOblEE3Soj5hBhY1cVwcbQ==
dependencies:
"@abp/utils" "~6.0.0-rc.2"
"@abp/utils" "~6.0.0-rc.3"
"@abp/datatables.net-bs5@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.2.tgz#76ab55e97bc4d25f8bbfc6564f5e61f8404ab52c"
integrity sha512-Wdt22BSDqFvrZb5x2gcH8JG4jJ0++pN7M+t3jqSM3f9IZMOWHZ5GsUegUt+j60Cvqw7ItjP/BmBySQtmh3WbOg==
"@abp/datatables.net-bs5@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.3.tgz#22865c7e621de720b71af6265b3193f6c78695bd"
integrity sha512-T+mhLc6uSzWmxDQogVwnJ6VxI4845gmF68/i9TmVKNlCtpa3EEfyuF/hgWT1hYfCb4XOsvd/CWrunbkC3fsmtg==
dependencies:
"@abp/datatables.net" "~6.0.0-rc.2"
"@abp/datatables.net" "~6.0.0-rc.3"
datatables.net-bs5 "^1.11.4"
"@abp/datatables.net@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.2.tgz#4364d099f2fc1f647fe40eb5cace2fe8c13281dd"
integrity sha512-exHwF0pmJnT83d2X3NcHFewT8ZyK1TWfwNNBVn+j3jwcm4/5KT9a308CAahV9hTz/Z6ZsjRdCRwdv0eU5VHPkQ==
"@abp/datatables.net@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.3.tgz#d036defe6ad7fc989dffa020ae579362ee3150d1"
integrity sha512-4cUU8/Tn0Vz9bx7jjMOD/0Viyr29fcwoQAAkxaaYZp6qiQbENgz46/xpQf2oBCoudk8CLdzpmNa7jWte7PcJJw==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
datatables.net "^1.11.4"
"@abp/font-awesome@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.2.tgz#bc522149abafb82935094c8fcd72a8201f98a315"
integrity sha512-sPA9urlcUl2868zmABa7X1rA6aPYkihVEt1h/XSSYpjL/hu7I1RtDDEJ2k6GFjgd2AZ+8xKRkI4bpOE5HKtbsg==
"@abp/font-awesome@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.3.tgz#803569d1a7e25f8a1c2be018312449c23fb78217"
integrity sha512-lYdh38UCTSkzzw0B/mpPEo7iFXzSKHCNbBOIHe6dd6O/Qli7wYukTtUOFn5Sh+yoydLY1as92HtiGL1ckSdu1g==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
"@fortawesome/fontawesome-free" "^5.15.4"
"@abp/jquery-form@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.2.tgz#cfeb8a300d2c350854689481c15404c37dfcb428"
integrity sha512-Okl0z6MibakfSH4Mzq2fDA0kj97tWSDpVcJLN+K5CkROhob2ZpkBiAysY7hqEMItAMruDa2SsrANxW65r4mi4Q==
"@abp/jquery-form@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.3.tgz#4ec503c07e2194148c3a7e7cf7ddef2871679e6a"
integrity sha512-Q3uEpflntqrSkYakcdsBnnYYfxJWXD/CDjMiwjbb6gIc8s4qkbIYxVxvYvlEezoIDYQkMSXOn7BS4clWsesiJg==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.2.tgz#a66677d87e3214086483853845c1bb609bbb4f3b"
integrity sha512-ymGMzH/kwfcvw749znmiE4I4jesJScEZu2LR1IrFcJUV9s4ThJEgSGnyjUAXZrt2jNSuWTUCXp4dI0PSm5iU3Q==
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.3.tgz#01da2a59663d373ff1c69022f4c9c66ad0b29403"
integrity sha512-ij1ML2D9rYF3pJthWO6mGQajsJhbDCtOoBvnh9yCZccuwOYkXP22PqfUxjjxtqL4HqFI31KRpFg0ANMGSzEEBg==
dependencies:
"@abp/jquery-validation" "~6.0.0-rc.2"
"@abp/jquery-validation" "~6.0.0-rc.3"
jquery-validation-unobtrusive "^3.2.12"
"@abp/jquery-validation@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.2.tgz#bcc7fbfbac2bc8e7efc94177e1a1a405d18ac387"
integrity sha512-RIeNdhDDa7fQunE9BnBxcdicQpcpcn/l7Rl6q8IuA18PN4z4DueXt3A6Qzl9zPl931yXzs7v28iW7j81/4Xpyw==
"@abp/jquery-validation@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.3.tgz#724aea9572dcb2faccf8c6355332b0b2a4df9260"
integrity sha512-rTK5oHaMtycvWxunNwzbE/MbsXXIr6qDnOY3rVUmjTHjqUOHYz591t/XeQfjnSXPp4k/SZUjG6viTC3J2jzC1A==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-validation "^1.19.3"
"@abp/jquery@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.2.tgz#6d641604a1687d2e8e3220171329960b7e40a315"
integrity sha512-FMCdtl3nPZDaTGZ7aKHzOYIzzYQvhDrdTm0bKD+5nKv70sL8TRQV16hzcARGFoA/9PoBLBfnVPcSYSEN/nL5Dw==
"@abp/jquery@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.3.tgz#ba19cc8b802c46490277939e6c674811127d8016"
integrity sha512-MbD38iInyag7/j5k42cvMT4jLZMtXH4lUK0rjvqUDVaxKEks46Ix/90uczQ9XajYONgx0CJKFj2urgM830+CCA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
jquery "~3.6.0"
"@abp/lodash@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.2.tgz#939d667bc96a268344df16e12e458ae376ae0154"
integrity sha512-Q2+rVGolS+00Zsww/qTo+k2oqAIDzAVZCAaamgTCJ8mliho7wFvW8LWFwII3so/nKWiTb8Gwf7bW0nMKeCnvuw==
"@abp/lodash@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.3.tgz#8a5bab02353e5cab4ca06ab82f6dbe6285faa95a"
integrity sha512-c8yhcapzPsXyeiFjeOC+2a4bn5wFjW5gUoN+p/p+tE+FIcH37yEgyw/tAr6aZPCmR770MqQXct4t7S4Czbbk+A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
lodash "^4.17.21"
"@abp/luxon@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.2.tgz#7703887dcdee26cb1e972386ea295b879e3c51f6"
integrity sha512-ckGfUo7ZD19LjKmrKneYQSO8Mjp5rh4sM/587MdTtc0ZA3nyqX98DtE0nkm8MegTvoVUGYBKWhhIlqTb6VpI4w==
"@abp/luxon@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.3.tgz#ba515e122c61918d481467d5be39f08a363822f6"
integrity sha512-2lRSSC0DYShlnKdbJ/Pmha/azjt09ZRPx57NQ01dc7ungChPry5EJL6pC3kXWnJrCkrPCF0V5+A3+taut9+l3A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
luxon "^2.3.0"
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.2.tgz#22af6c68067671714abdb52537487cd5cc73af43"
integrity sha512-rz3herKYP2KccHSUHpbkF1adfaECSR7TDOkOeFghpM/t5TCv/fs9uSroeteKyCMufWmYswY/1Yi4doYEQWcdfA==
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.3.tgz#0798e37ec6a852748118692a5fbd30c99d9745db"
integrity sha512-FlyShmRxG3wGk1OJCjHIZAdi2/Y2FJPkVxaE72CVIceQSmg0nebGTv3a7bhd4QzKkDsSA3+t6gHjnuKlTlDFLA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.2.tgz#8553c085f087c83cadf0f25a80660db2236387f5"
integrity sha512-im0T2Uah4QkqWOBqiu1fpm6SvV9Id5pV3qup3AFFKRcwhH9rvGGPjpSqq+Fh0sG23P1BSHw/lEedYwAPfxcR0w==
"@abp/select2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.3.tgz#deb8332bfce2102a562004893321a48d5194bf53"
integrity sha512-rb0qElmmhiP09xX8ZbjzNLF6ygFBwErysGWt6Bbgzz5waX2sGe575Cgoz53FaMQ4JaRBg1N0/nCejKyDtiINRA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
select2 "^4.0.13"
"@abp/sweetalert2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.2.tgz#1e0603c7edefe72e32a11b96fc0f5095e9273f12"
integrity sha512-BsiCrj32DQjMBgx9L5FOBDK2xx4x97oEqx5qUAt5lYPtxzIpFUAdn2U3h8WUQfDKRFquQLJxJ993dZai4GfYQg==
"@abp/sweetalert2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.3.tgz#e61fc6c1bed1316c1d44ca5c92f590e422db24d4"
integrity sha512-+SNpBb4XrQlWzRQK9lfdJqA9IfJrlgoqmHwPDgf3Q+P922MzO33TgDlZWbeE7MzVj2y2WmNsPuCKwhjSjSL2rw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
sweetalert2 "^11.3.6"
"@abp/timeago@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.2.tgz#21d67d3fa54b930fdf2c6ae7ed1c182ce16f0c0a"
integrity sha512-oOcW0m2xlsDTw6MjJ+4WbN7y4Le3S1H1IRvU+64i5O3fj5WNBpAKxNEO0X0HLD6JJwlr1tzvE2uWqzoRWO9JXg==
"@abp/timeago@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.3.tgz#0ef8c4801bfd4623e6895b1d047b1437063bda53"
integrity sha512-P3YRDVKjR5/Fz+cXiPg3IiUr7XGbNh7mgmJ1ywRXmKVmVMJmhQ2RsKmmtkGJn4TfVHu/l5iJXe4rqgL21/yX/g==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
timeago "^1.6.7"
"@abp/toastr@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.2.tgz#3523b22b6bf473025b2b731eae59491997f2fbe2"
integrity sha512-StjNgLQNttZwm4L8vOOM/pclgMrmYTs1igmXnBXbYqMcE2Q7QfhZeOYwPvWrm0WlVC4pfR9l3ejYYcZljukqEA==
"@abp/toastr@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.3.tgz#6010d4247937531ebf7c8659d6254cd3db6c4855"
integrity sha512-sC9eCzYVgDrLSFIhJGe9hshzfwA1BkZNah4NQhyq+V6HQ8YF7goMS79N+/XmSoLQ9zzRhusqnPFnb+4FHjr7iA==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
toastr "^2.1.4"
"@abp/utils@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.2.tgz#f93d7bcccc35335df5c14be10dc23bd7472868c8"
integrity sha512-6YdeptFQR1vZzLVKVjHmGQ+R+pK0iBiZdL7A3GkaC+ad5b+adybf8MJPyrbob96xV77/CEuXFUG88URed1B5Fw==
"@abp/utils@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.3.tgz#6d3515694314175218606e9518618ce335b4b360"
integrity sha512-K2geJ9P1ztk4Ehzb9YG3CqqLOi+z8/4iBLUzooNZLQqS+KdlUhCmqfuCoI/A5Aq9DGbTYesalp+Fwoh3S2Dl8A==
dependencies:
just-compare "^1.3.0"

@ -3,8 +3,8 @@
"name": "asp.net",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "^6.0.0-rc.2",
"@abp/prismjs": "^6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.basic": "^6.0.0-rc.3",
"@abp/prismjs": "^6.0.0-rc.3"
},
"devDependencies": {}
}

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.2.tgz#0a80531a46e08719ef90b4f9013b8bb5ec2fe2f0"
integrity sha512-uktT9FXlDzJ0HGleYCnvUhSMgkSHiwrjVnztbx6zRvrhNsq/UNWPhYoGti8He9tQO1dLi2cRq1aTawtMIjgVow==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.2.tgz#a7a69d3bb4aa09809b3362a045c1adba5b04d17c"
integrity sha512-sszTiRfJxy6EQ2C2xe3GwrfaVfZgSw8xOZcIFScBvW0fDMAfJCTJA+HMcaBTsng9EqHfc7622mWaPlWCD5ImEg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.2"
"@abp/bootstrap" "~6.0.0-rc.2"
"@abp/bootstrap-datepicker" "~6.0.0-rc.2"
"@abp/datatables.net-bs5" "~6.0.0-rc.2"
"@abp/font-awesome" "~6.0.0-rc.2"
"@abp/jquery-form" "~6.0.0-rc.2"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.2"
"@abp/lodash" "~6.0.0-rc.2"
"@abp/luxon" "~6.0.0-rc.2"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.2"
"@abp/select2" "~6.0.0-rc.2"
"@abp/sweetalert2" "~6.0.0-rc.2"
"@abp/timeago" "~6.0.0-rc.2"
"@abp/toastr" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.2.tgz#14d5da45b01af77caab45b01a43f07db6a5425f3"
integrity sha512-AIXP1FP/VvBGRzoslTRTnD4I1oei4Ufh5qVWKG+PwmrFJ6/XoarNV6FCKLePm7NETd1VSrq20uPCrfuZx2WKQg==
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.3.tgz#b95266387e562c635de795442f90470f8e9e6318"
integrity sha512-vVkEpotDST455E3rynvRQpBKPcNNJ2m1wLkz/B9dQNdUjvm8L4F6s0ls0XFlKUNvQfCVfedkRtGayuvNje/Oxg==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.3.tgz#664ca2ee712b7d9e66103c00beb41eb9648a6075"
integrity sha512-KxCsGuoUWKaDo7Oo9aKp51pli2m0DZ2tG8m+zK+m4M9U7g96uC+DOFy3gc7MdPlszvrw32Wwm7I0AughstByNA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.3"
"@abp/bootstrap" "~6.0.0-rc.3"
"@abp/bootstrap-datepicker" "~6.0.0-rc.3"
"@abp/datatables.net-bs5" "~6.0.0-rc.3"
"@abp/font-awesome" "~6.0.0-rc.3"
"@abp/jquery-form" "~6.0.0-rc.3"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.3"
"@abp/lodash" "~6.0.0-rc.3"
"@abp/luxon" "~6.0.0-rc.3"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.3"
"@abp/select2" "~6.0.0-rc.3"
"@abp/sweetalert2" "~6.0.0-rc.3"
"@abp/timeago" "~6.0.0-rc.3"
"@abp/toastr" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.3.tgz#47c23b57ed3908bd78a232230e53d1f3cba2de41"
integrity sha512-7eJZy2JUGQP94Tz3JJWXRHRmDfTcPZ/lS1/VNbU8B4qvgl5ChIXklVEJLR1fwrBhKXZV8fGVmqT1XlGTGFvFJA==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,161 +41,161 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
"@abp/bootstrap-datepicker@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.2.tgz#74785434be987d4579dcf66b52752d23d3dcc928"
integrity sha512-BvJEChBRwf7vuXap1s/hOi3PrlWkZYtpnZLKNjNpEfLLHa3LPrSLn9GAfVLS92/qxeB+S6Vk49HiwcOtuIeEOA==
"@abp/bootstrap-datepicker@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.3.tgz#89198b863dbfccf5f07ac3c4b20ce6199adcb17a"
integrity sha512-NLoUjcR66mqwSWuVftu2yFH4/j6QP+FiElRfZQ9OYmO8DQx2Ue5UZzjrFTrZ1DBBCfzhr2Bffj80dirGvGDyvg==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.2.tgz#ef9e6fb40eb884dd69581bfd08a2523f274cbab8"
integrity sha512-cf1ttQV6gQX0UNoWIKxaJ7tk8dJAQ79WhklsuDWROl0KtkjQ/oCi14363YvWezMQe82xnps1m4ViX87JqNIM4w==
"@abp/bootstrap@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.3.tgz#4574bf574cc3484869e8ff8bc592f6212d20a969"
integrity sha512-Q5v7WRkGhGcjRg267HXtqs1oU7ts9UXPyCXmg5y2y5qMOyioD+m4MKV4iv67DgoQjabudp8X2egTKxkej6Lzkw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
bootstrap "^5.1.3"
"@abp/clipboard@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-6.0.0-rc.2.tgz#99f54676d61fb8b83447b453f69f2c8fedfc07ad"
integrity sha512-oNQ7i8lR0d74t/Hoqt6EgK1dgXfH44TmOuovqyegpqeOXlMPZJVeZ0Kkp2DTV6WgGQeR8rTMFWJyBvGfVFMQdA==
"@abp/clipboard@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-6.0.0-rc.3.tgz#ee3a586b491d89442eefff08aaebbf9d38cb46d4"
integrity sha512-01svpp3mR29z1FTM+2Qe+MUNLPbl95bWlOXY5zz2hvNSbdD45lGud+BiOHfeZwlDk5jjr3FqLel+hxx2ByBvOA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
clipboard "^2.0.8"
"@abp/core@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.2.tgz#6339637a278fc19e10d468aba118e2384a8310af"
integrity sha512-2t7rhjpRvByoAnkdSVEdN4ZVotHSRanv9fZRqK6yOQpHEZ4LDgByKi+eNdc3kiT0+VU3mHxMgq+FO+pxaBHSAA==
"@abp/core@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.3.tgz#5662ce813d449d97d9fb7ea2552b2774c8df7825"
integrity sha512-X/VRdk5SGNYc5gQzPcBEPAvwcuD9WXsI4YIdrqjnes0s8u2/XmfrTixojh8Y5EYUoOblEE3Soj5hBhY1cVwcbQ==
dependencies:
"@abp/utils" "~6.0.0-rc.2"
"@abp/utils" "~6.0.0-rc.3"
"@abp/datatables.net-bs5@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.2.tgz#76ab55e97bc4d25f8bbfc6564f5e61f8404ab52c"
integrity sha512-Wdt22BSDqFvrZb5x2gcH8JG4jJ0++pN7M+t3jqSM3f9IZMOWHZ5GsUegUt+j60Cvqw7ItjP/BmBySQtmh3WbOg==
"@abp/datatables.net-bs5@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.3.tgz#22865c7e621de720b71af6265b3193f6c78695bd"
integrity sha512-T+mhLc6uSzWmxDQogVwnJ6VxI4845gmF68/i9TmVKNlCtpa3EEfyuF/hgWT1hYfCb4XOsvd/CWrunbkC3fsmtg==
dependencies:
"@abp/datatables.net" "~6.0.0-rc.2"
"@abp/datatables.net" "~6.0.0-rc.3"
datatables.net-bs5 "^1.11.4"
"@abp/datatables.net@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.2.tgz#4364d099f2fc1f647fe40eb5cace2fe8c13281dd"
integrity sha512-exHwF0pmJnT83d2X3NcHFewT8ZyK1TWfwNNBVn+j3jwcm4/5KT9a308CAahV9hTz/Z6ZsjRdCRwdv0eU5VHPkQ==
"@abp/datatables.net@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.3.tgz#d036defe6ad7fc989dffa020ae579362ee3150d1"
integrity sha512-4cUU8/Tn0Vz9bx7jjMOD/0Viyr29fcwoQAAkxaaYZp6qiQbENgz46/xpQf2oBCoudk8CLdzpmNa7jWte7PcJJw==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
datatables.net "^1.11.4"
"@abp/font-awesome@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.2.tgz#bc522149abafb82935094c8fcd72a8201f98a315"
integrity sha512-sPA9urlcUl2868zmABa7X1rA6aPYkihVEt1h/XSSYpjL/hu7I1RtDDEJ2k6GFjgd2AZ+8xKRkI4bpOE5HKtbsg==
"@abp/font-awesome@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.3.tgz#803569d1a7e25f8a1c2be018312449c23fb78217"
integrity sha512-lYdh38UCTSkzzw0B/mpPEo7iFXzSKHCNbBOIHe6dd6O/Qli7wYukTtUOFn5Sh+yoydLY1as92HtiGL1ckSdu1g==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
"@fortawesome/fontawesome-free" "^5.15.4"
"@abp/jquery-form@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.2.tgz#cfeb8a300d2c350854689481c15404c37dfcb428"
integrity sha512-Okl0z6MibakfSH4Mzq2fDA0kj97tWSDpVcJLN+K5CkROhob2ZpkBiAysY7hqEMItAMruDa2SsrANxW65r4mi4Q==
"@abp/jquery-form@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.3.tgz#4ec503c07e2194148c3a7e7cf7ddef2871679e6a"
integrity sha512-Q3uEpflntqrSkYakcdsBnnYYfxJWXD/CDjMiwjbb6gIc8s4qkbIYxVxvYvlEezoIDYQkMSXOn7BS4clWsesiJg==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.2.tgz#a66677d87e3214086483853845c1bb609bbb4f3b"
integrity sha512-ymGMzH/kwfcvw749znmiE4I4jesJScEZu2LR1IrFcJUV9s4ThJEgSGnyjUAXZrt2jNSuWTUCXp4dI0PSm5iU3Q==
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.3.tgz#01da2a59663d373ff1c69022f4c9c66ad0b29403"
integrity sha512-ij1ML2D9rYF3pJthWO6mGQajsJhbDCtOoBvnh9yCZccuwOYkXP22PqfUxjjxtqL4HqFI31KRpFg0ANMGSzEEBg==
dependencies:
"@abp/jquery-validation" "~6.0.0-rc.2"
"@abp/jquery-validation" "~6.0.0-rc.3"
jquery-validation-unobtrusive "^3.2.12"
"@abp/jquery-validation@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.2.tgz#bcc7fbfbac2bc8e7efc94177e1a1a405d18ac387"
integrity sha512-RIeNdhDDa7fQunE9BnBxcdicQpcpcn/l7Rl6q8IuA18PN4z4DueXt3A6Qzl9zPl931yXzs7v28iW7j81/4Xpyw==
"@abp/jquery-validation@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.3.tgz#724aea9572dcb2faccf8c6355332b0b2a4df9260"
integrity sha512-rTK5oHaMtycvWxunNwzbE/MbsXXIr6qDnOY3rVUmjTHjqUOHYz591t/XeQfjnSXPp4k/SZUjG6viTC3J2jzC1A==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-validation "^1.19.3"
"@abp/jquery@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.2.tgz#6d641604a1687d2e8e3220171329960b7e40a315"
integrity sha512-FMCdtl3nPZDaTGZ7aKHzOYIzzYQvhDrdTm0bKD+5nKv70sL8TRQV16hzcARGFoA/9PoBLBfnVPcSYSEN/nL5Dw==
"@abp/jquery@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.3.tgz#ba19cc8b802c46490277939e6c674811127d8016"
integrity sha512-MbD38iInyag7/j5k42cvMT4jLZMtXH4lUK0rjvqUDVaxKEks46Ix/90uczQ9XajYONgx0CJKFj2urgM830+CCA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
jquery "~3.6.0"
"@abp/lodash@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.2.tgz#939d667bc96a268344df16e12e458ae376ae0154"
integrity sha512-Q2+rVGolS+00Zsww/qTo+k2oqAIDzAVZCAaamgTCJ8mliho7wFvW8LWFwII3so/nKWiTb8Gwf7bW0nMKeCnvuw==
"@abp/lodash@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.3.tgz#8a5bab02353e5cab4ca06ab82f6dbe6285faa95a"
integrity sha512-c8yhcapzPsXyeiFjeOC+2a4bn5wFjW5gUoN+p/p+tE+FIcH37yEgyw/tAr6aZPCmR770MqQXct4t7S4Czbbk+A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
lodash "^4.17.21"
"@abp/luxon@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.2.tgz#7703887dcdee26cb1e972386ea295b879e3c51f6"
integrity sha512-ckGfUo7ZD19LjKmrKneYQSO8Mjp5rh4sM/587MdTtc0ZA3nyqX98DtE0nkm8MegTvoVUGYBKWhhIlqTb6VpI4w==
"@abp/luxon@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.3.tgz#ba515e122c61918d481467d5be39f08a363822f6"
integrity sha512-2lRSSC0DYShlnKdbJ/Pmha/azjt09ZRPx57NQ01dc7ungChPry5EJL6pC3kXWnJrCkrPCF0V5+A3+taut9+l3A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
luxon "^2.3.0"
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.2.tgz#22af6c68067671714abdb52537487cd5cc73af43"
integrity sha512-rz3herKYP2KccHSUHpbkF1adfaECSR7TDOkOeFghpM/t5TCv/fs9uSroeteKyCMufWmYswY/1Yi4doYEQWcdfA==
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.3.tgz#0798e37ec6a852748118692a5fbd30c99d9745db"
integrity sha512-FlyShmRxG3wGk1OJCjHIZAdi2/Y2FJPkVxaE72CVIceQSmg0nebGTv3a7bhd4QzKkDsSA3+t6gHjnuKlTlDFLA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/prismjs@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-6.0.0-rc.2.tgz#5c200260038e1e7e7bcf627df840ec8d31efd255"
integrity sha512-zESjrel58EWNoreOvdYmpPLR3TpdPQEw7R8aGPgieTZSKxcM7aHYBa1vbN6czaIeD3RjwIBtaMVCOGhiPYSKug==
"@abp/prismjs@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-6.0.0-rc.3.tgz#e4faf595e29db81c5a66030e59b0e09f09759bfd"
integrity sha512-zzd3iw/Im0M9FUmTviwkTCr4slkoZJExtK+qB1FmLxRY59+hyU9wxd6hwzic/QwhXxFQoYILJ3S3FNxsPIm76A==
dependencies:
"@abp/clipboard" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.2"
"@abp/clipboard" "~6.0.0-rc.3"
"@abp/core" "~6.0.0-rc.3"
prismjs "^1.26.0"
"@abp/select2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.2.tgz#8553c085f087c83cadf0f25a80660db2236387f5"
integrity sha512-im0T2Uah4QkqWOBqiu1fpm6SvV9Id5pV3qup3AFFKRcwhH9rvGGPjpSqq+Fh0sG23P1BSHw/lEedYwAPfxcR0w==
"@abp/select2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.3.tgz#deb8332bfce2102a562004893321a48d5194bf53"
integrity sha512-rb0qElmmhiP09xX8ZbjzNLF6ygFBwErysGWt6Bbgzz5waX2sGe575Cgoz53FaMQ4JaRBg1N0/nCejKyDtiINRA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
select2 "^4.0.13"
"@abp/sweetalert2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.2.tgz#1e0603c7edefe72e32a11b96fc0f5095e9273f12"
integrity sha512-BsiCrj32DQjMBgx9L5FOBDK2xx4x97oEqx5qUAt5lYPtxzIpFUAdn2U3h8WUQfDKRFquQLJxJ993dZai4GfYQg==
"@abp/sweetalert2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.3.tgz#e61fc6c1bed1316c1d44ca5c92f590e422db24d4"
integrity sha512-+SNpBb4XrQlWzRQK9lfdJqA9IfJrlgoqmHwPDgf3Q+P922MzO33TgDlZWbeE7MzVj2y2WmNsPuCKwhjSjSL2rw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
sweetalert2 "^11.3.6"
"@abp/timeago@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.2.tgz#21d67d3fa54b930fdf2c6ae7ed1c182ce16f0c0a"
integrity sha512-oOcW0m2xlsDTw6MjJ+4WbN7y4Le3S1H1IRvU+64i5O3fj5WNBpAKxNEO0X0HLD6JJwlr1tzvE2uWqzoRWO9JXg==
"@abp/timeago@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.3.tgz#0ef8c4801bfd4623e6895b1d047b1437063bda53"
integrity sha512-P3YRDVKjR5/Fz+cXiPg3IiUr7XGbNh7mgmJ1ywRXmKVmVMJmhQ2RsKmmtkGJn4TfVHu/l5iJXe4rqgL21/yX/g==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
timeago "^1.6.7"
"@abp/toastr@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.2.tgz#3523b22b6bf473025b2b731eae59491997f2fbe2"
integrity sha512-StjNgLQNttZwm4L8vOOM/pclgMrmYTs1igmXnBXbYqMcE2Q7QfhZeOYwPvWrm0WlVC4pfR9l3ejYYcZljukqEA==
"@abp/toastr@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.3.tgz#6010d4247937531ebf7c8659d6254cd3db6c4855"
integrity sha512-sC9eCzYVgDrLSFIhJGe9hshzfwA1BkZNah4NQhyq+V6HQ8YF7goMS79N+/XmSoLQ9zzRhusqnPFnb+4FHjr7iA==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
toastr "^2.1.4"
"@abp/utils@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.2.tgz#f93d7bcccc35335df5c14be10dc23bd7472868c8"
integrity sha512-6YdeptFQR1vZzLVKVjHmGQ+R+pK0iBiZdL7A3GkaC+ad5b+adybf8MJPyrbob96xV77/CEuXFUG88URed1B5Fw==
"@abp/utils@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.3.tgz#6d3515694314175218606e9518618ce335b4b360"
integrity sha512-K2geJ9P1ztk4Ehzb9YG3CqqLOi+z8/4iBLUzooNZLQqS+KdlUhCmqfuCoI/A5Aq9DGbTYesalp+Fwoh3S2Dl8A==
dependencies:
just-compare "^1.3.0"

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

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.2.tgz#0a80531a46e08719ef90b4f9013b8bb5ec2fe2f0"
integrity sha512-uktT9FXlDzJ0HGleYCnvUhSMgkSHiwrjVnztbx6zRvrhNsq/UNWPhYoGti8He9tQO1dLi2cRq1aTawtMIjgVow==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.2.tgz#a7a69d3bb4aa09809b3362a045c1adba5b04d17c"
integrity sha512-sszTiRfJxy6EQ2C2xe3GwrfaVfZgSw8xOZcIFScBvW0fDMAfJCTJA+HMcaBTsng9EqHfc7622mWaPlWCD5ImEg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.2"
"@abp/bootstrap" "~6.0.0-rc.2"
"@abp/bootstrap-datepicker" "~6.0.0-rc.2"
"@abp/datatables.net-bs5" "~6.0.0-rc.2"
"@abp/font-awesome" "~6.0.0-rc.2"
"@abp/jquery-form" "~6.0.0-rc.2"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.2"
"@abp/lodash" "~6.0.0-rc.2"
"@abp/luxon" "~6.0.0-rc.2"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.2"
"@abp/select2" "~6.0.0-rc.2"
"@abp/sweetalert2" "~6.0.0-rc.2"
"@abp/timeago" "~6.0.0-rc.2"
"@abp/toastr" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.2.tgz#14d5da45b01af77caab45b01a43f07db6a5425f3"
integrity sha512-AIXP1FP/VvBGRzoslTRTnD4I1oei4Ufh5qVWKG+PwmrFJ6/XoarNV6FCKLePm7NETd1VSrq20uPCrfuZx2WKQg==
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.3.tgz#b95266387e562c635de795442f90470f8e9e6318"
integrity sha512-vVkEpotDST455E3rynvRQpBKPcNNJ2m1wLkz/B9dQNdUjvm8L4F6s0ls0XFlKUNvQfCVfedkRtGayuvNje/Oxg==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.3.tgz#664ca2ee712b7d9e66103c00beb41eb9648a6075"
integrity sha512-KxCsGuoUWKaDo7Oo9aKp51pli2m0DZ2tG8m+zK+m4M9U7g96uC+DOFy3gc7MdPlszvrw32Wwm7I0AughstByNA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.3"
"@abp/bootstrap" "~6.0.0-rc.3"
"@abp/bootstrap-datepicker" "~6.0.0-rc.3"
"@abp/datatables.net-bs5" "~6.0.0-rc.3"
"@abp/font-awesome" "~6.0.0-rc.3"
"@abp/jquery-form" "~6.0.0-rc.3"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.3"
"@abp/lodash" "~6.0.0-rc.3"
"@abp/luxon" "~6.0.0-rc.3"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.3"
"@abp/select2" "~6.0.0-rc.3"
"@abp/sweetalert2" "~6.0.0-rc.3"
"@abp/timeago" "~6.0.0-rc.3"
"@abp/toastr" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.3.tgz#47c23b57ed3908bd78a232230e53d1f3cba2de41"
integrity sha512-7eJZy2JUGQP94Tz3JJWXRHRmDfTcPZ/lS1/VNbU8B4qvgl5ChIXklVEJLR1fwrBhKXZV8fGVmqT1XlGTGFvFJA==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,187 +41,187 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
"@abp/blogging@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-6.0.0-rc.2.tgz#193367b08ade62a65f721e23891216dc769836a7"
integrity sha512-d6RIA63iA55SEFkg8TrjE2Ru0xbZrLcERwTkgQYkpsFMqHy5o7MeCIJV1dlOtuN+BFkdo8ZJWKWCF0L2onk21A==
"@abp/blogging@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/blogging/-/blogging-6.0.0-rc.3.tgz#604e3497bcdfa69a29d4cbbe062b5b691234a8c5"
integrity sha512-OZyqi2Xlq7PDDvmwcVRcssr0hElxSKGoa2UXXeqF8P7FP22TsMvuX81xsNtSn7Qlu3pcFs1pr4em+SfOb8H6jw==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.2"
"@abp/owl.carousel" "~6.0.0-rc.2"
"@abp/prismjs" "~6.0.0-rc.2"
"@abp/tui-editor" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.3"
"@abp/owl.carousel" "~6.0.0-rc.3"
"@abp/prismjs" "~6.0.0-rc.3"
"@abp/tui-editor" "~6.0.0-rc.3"
"@abp/bootstrap-datepicker@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.2.tgz#74785434be987d4579dcf66b52752d23d3dcc928"
integrity sha512-BvJEChBRwf7vuXap1s/hOi3PrlWkZYtpnZLKNjNpEfLLHa3LPrSLn9GAfVLS92/qxeB+S6Vk49HiwcOtuIeEOA==
"@abp/bootstrap-datepicker@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.3.tgz#89198b863dbfccf5f07ac3c4b20ce6199adcb17a"
integrity sha512-NLoUjcR66mqwSWuVftu2yFH4/j6QP+FiElRfZQ9OYmO8DQx2Ue5UZzjrFTrZ1DBBCfzhr2Bffj80dirGvGDyvg==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.2.tgz#ef9e6fb40eb884dd69581bfd08a2523f274cbab8"
integrity sha512-cf1ttQV6gQX0UNoWIKxaJ7tk8dJAQ79WhklsuDWROl0KtkjQ/oCi14363YvWezMQe82xnps1m4ViX87JqNIM4w==
"@abp/bootstrap@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.3.tgz#4574bf574cc3484869e8ff8bc592f6212d20a969"
integrity sha512-Q5v7WRkGhGcjRg267HXtqs1oU7ts9UXPyCXmg5y2y5qMOyioD+m4MKV4iv67DgoQjabudp8X2egTKxkej6Lzkw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
bootstrap "^5.1.3"
"@abp/clipboard@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-6.0.0-rc.2.tgz#99f54676d61fb8b83447b453f69f2c8fedfc07ad"
integrity sha512-oNQ7i8lR0d74t/Hoqt6EgK1dgXfH44TmOuovqyegpqeOXlMPZJVeZ0Kkp2DTV6WgGQeR8rTMFWJyBvGfVFMQdA==
"@abp/clipboard@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-6.0.0-rc.3.tgz#ee3a586b491d89442eefff08aaebbf9d38cb46d4"
integrity sha512-01svpp3mR29z1FTM+2Qe+MUNLPbl95bWlOXY5zz2hvNSbdD45lGud+BiOHfeZwlDk5jjr3FqLel+hxx2ByBvOA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
clipboard "^2.0.8"
"@abp/core@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.2.tgz#6339637a278fc19e10d468aba118e2384a8310af"
integrity sha512-2t7rhjpRvByoAnkdSVEdN4ZVotHSRanv9fZRqK6yOQpHEZ4LDgByKi+eNdc3kiT0+VU3mHxMgq+FO+pxaBHSAA==
"@abp/core@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.3.tgz#5662ce813d449d97d9fb7ea2552b2774c8df7825"
integrity sha512-X/VRdk5SGNYc5gQzPcBEPAvwcuD9WXsI4YIdrqjnes0s8u2/XmfrTixojh8Y5EYUoOblEE3Soj5hBhY1cVwcbQ==
dependencies:
"@abp/utils" "~6.0.0-rc.2"
"@abp/utils" "~6.0.0-rc.3"
"@abp/datatables.net-bs5@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.2.tgz#76ab55e97bc4d25f8bbfc6564f5e61f8404ab52c"
integrity sha512-Wdt22BSDqFvrZb5x2gcH8JG4jJ0++pN7M+t3jqSM3f9IZMOWHZ5GsUegUt+j60Cvqw7ItjP/BmBySQtmh3WbOg==
"@abp/datatables.net-bs5@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.3.tgz#22865c7e621de720b71af6265b3193f6c78695bd"
integrity sha512-T+mhLc6uSzWmxDQogVwnJ6VxI4845gmF68/i9TmVKNlCtpa3EEfyuF/hgWT1hYfCb4XOsvd/CWrunbkC3fsmtg==
dependencies:
"@abp/datatables.net" "~6.0.0-rc.2"
"@abp/datatables.net" "~6.0.0-rc.3"
datatables.net-bs5 "^1.11.4"
"@abp/datatables.net@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.2.tgz#4364d099f2fc1f647fe40eb5cace2fe8c13281dd"
integrity sha512-exHwF0pmJnT83d2X3NcHFewT8ZyK1TWfwNNBVn+j3jwcm4/5KT9a308CAahV9hTz/Z6ZsjRdCRwdv0eU5VHPkQ==
"@abp/datatables.net@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.3.tgz#d036defe6ad7fc989dffa020ae579362ee3150d1"
integrity sha512-4cUU8/Tn0Vz9bx7jjMOD/0Viyr29fcwoQAAkxaaYZp6qiQbENgz46/xpQf2oBCoudk8CLdzpmNa7jWte7PcJJw==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
datatables.net "^1.11.4"
"@abp/font-awesome@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.2.tgz#bc522149abafb82935094c8fcd72a8201f98a315"
integrity sha512-sPA9urlcUl2868zmABa7X1rA6aPYkihVEt1h/XSSYpjL/hu7I1RtDDEJ2k6GFjgd2AZ+8xKRkI4bpOE5HKtbsg==
"@abp/font-awesome@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.3.tgz#803569d1a7e25f8a1c2be018312449c23fb78217"
integrity sha512-lYdh38UCTSkzzw0B/mpPEo7iFXzSKHCNbBOIHe6dd6O/Qli7wYukTtUOFn5Sh+yoydLY1as92HtiGL1ckSdu1g==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
"@fortawesome/fontawesome-free" "^5.15.4"
"@abp/jquery-form@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.2.tgz#cfeb8a300d2c350854689481c15404c37dfcb428"
integrity sha512-Okl0z6MibakfSH4Mzq2fDA0kj97tWSDpVcJLN+K5CkROhob2ZpkBiAysY7hqEMItAMruDa2SsrANxW65r4mi4Q==
"@abp/jquery-form@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.3.tgz#4ec503c07e2194148c3a7e7cf7ddef2871679e6a"
integrity sha512-Q3uEpflntqrSkYakcdsBnnYYfxJWXD/CDjMiwjbb6gIc8s4qkbIYxVxvYvlEezoIDYQkMSXOn7BS4clWsesiJg==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.2.tgz#a66677d87e3214086483853845c1bb609bbb4f3b"
integrity sha512-ymGMzH/kwfcvw749znmiE4I4jesJScEZu2LR1IrFcJUV9s4ThJEgSGnyjUAXZrt2jNSuWTUCXp4dI0PSm5iU3Q==
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.3.tgz#01da2a59663d373ff1c69022f4c9c66ad0b29403"
integrity sha512-ij1ML2D9rYF3pJthWO6mGQajsJhbDCtOoBvnh9yCZccuwOYkXP22PqfUxjjxtqL4HqFI31KRpFg0ANMGSzEEBg==
dependencies:
"@abp/jquery-validation" "~6.0.0-rc.2"
"@abp/jquery-validation" "~6.0.0-rc.3"
jquery-validation-unobtrusive "^3.2.12"
"@abp/jquery-validation@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.2.tgz#bcc7fbfbac2bc8e7efc94177e1a1a405d18ac387"
integrity sha512-RIeNdhDDa7fQunE9BnBxcdicQpcpcn/l7Rl6q8IuA18PN4z4DueXt3A6Qzl9zPl931yXzs7v28iW7j81/4Xpyw==
"@abp/jquery-validation@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.3.tgz#724aea9572dcb2faccf8c6355332b0b2a4df9260"
integrity sha512-rTK5oHaMtycvWxunNwzbE/MbsXXIr6qDnOY3rVUmjTHjqUOHYz591t/XeQfjnSXPp4k/SZUjG6viTC3J2jzC1A==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-validation "^1.19.3"
"@abp/jquery@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.2.tgz#6d641604a1687d2e8e3220171329960b7e40a315"
integrity sha512-FMCdtl3nPZDaTGZ7aKHzOYIzzYQvhDrdTm0bKD+5nKv70sL8TRQV16hzcARGFoA/9PoBLBfnVPcSYSEN/nL5Dw==
"@abp/jquery@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.3.tgz#ba19cc8b802c46490277939e6c674811127d8016"
integrity sha512-MbD38iInyag7/j5k42cvMT4jLZMtXH4lUK0rjvqUDVaxKEks46Ix/90uczQ9XajYONgx0CJKFj2urgM830+CCA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
jquery "~3.6.0"
"@abp/lodash@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.2.tgz#939d667bc96a268344df16e12e458ae376ae0154"
integrity sha512-Q2+rVGolS+00Zsww/qTo+k2oqAIDzAVZCAaamgTCJ8mliho7wFvW8LWFwII3so/nKWiTb8Gwf7bW0nMKeCnvuw==
"@abp/lodash@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.3.tgz#8a5bab02353e5cab4ca06ab82f6dbe6285faa95a"
integrity sha512-c8yhcapzPsXyeiFjeOC+2a4bn5wFjW5gUoN+p/p+tE+FIcH37yEgyw/tAr6aZPCmR770MqQXct4t7S4Czbbk+A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
lodash "^4.17.21"
"@abp/luxon@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.2.tgz#7703887dcdee26cb1e972386ea295b879e3c51f6"
integrity sha512-ckGfUo7ZD19LjKmrKneYQSO8Mjp5rh4sM/587MdTtc0ZA3nyqX98DtE0nkm8MegTvoVUGYBKWhhIlqTb6VpI4w==
"@abp/luxon@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.3.tgz#ba515e122c61918d481467d5be39f08a363822f6"
integrity sha512-2lRSSC0DYShlnKdbJ/Pmha/azjt09ZRPx57NQ01dc7ungChPry5EJL6pC3kXWnJrCkrPCF0V5+A3+taut9+l3A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
luxon "^2.3.0"
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.2.tgz#22af6c68067671714abdb52537487cd5cc73af43"
integrity sha512-rz3herKYP2KccHSUHpbkF1adfaECSR7TDOkOeFghpM/t5TCv/fs9uSroeteKyCMufWmYswY/1Yi4doYEQWcdfA==
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.3.tgz#0798e37ec6a852748118692a5fbd30c99d9745db"
integrity sha512-FlyShmRxG3wGk1OJCjHIZAdi2/Y2FJPkVxaE72CVIceQSmg0nebGTv3a7bhd4QzKkDsSA3+t6gHjnuKlTlDFLA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/owl.carousel@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-6.0.0-rc.2.tgz#9f1ee82fa94d71041c0d2d2c382df76e93eb7ea1"
integrity sha512-MdY2Ibeqnr47evTGY2CBV7fGEXC2/U73paKGX3/1ks3jbxWkmj9a9cteDQ2wZkurdMN3kprSQoYbvRcGZ7srVQ==
"@abp/owl.carousel@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/owl.carousel/-/owl.carousel-6.0.0-rc.3.tgz#5d5884a622e6423cc73175a2cd376c892325be20"
integrity sha512-4KGPzfGUEeN2CN+EtYYKuhJU1nb1OIQd1Fxi6DmkFYeN/9KdgS8dwGZjMvFxYde+BfhDZP1zrfS6ZbpJKkzsPQ==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
owl.carousel "^2.3.4"
"@abp/prismjs@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-6.0.0-rc.2.tgz#5c200260038e1e7e7bcf627df840ec8d31efd255"
integrity sha512-zESjrel58EWNoreOvdYmpPLR3TpdPQEw7R8aGPgieTZSKxcM7aHYBa1vbN6czaIeD3RjwIBtaMVCOGhiPYSKug==
"@abp/prismjs@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-6.0.0-rc.3.tgz#e4faf595e29db81c5a66030e59b0e09f09759bfd"
integrity sha512-zzd3iw/Im0M9FUmTviwkTCr4slkoZJExtK+qB1FmLxRY59+hyU9wxd6hwzic/QwhXxFQoYILJ3S3FNxsPIm76A==
dependencies:
"@abp/clipboard" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.2"
"@abp/clipboard" "~6.0.0-rc.3"
"@abp/core" "~6.0.0-rc.3"
prismjs "^1.26.0"
"@abp/select2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.2.tgz#8553c085f087c83cadf0f25a80660db2236387f5"
integrity sha512-im0T2Uah4QkqWOBqiu1fpm6SvV9Id5pV3qup3AFFKRcwhH9rvGGPjpSqq+Fh0sG23P1BSHw/lEedYwAPfxcR0w==
"@abp/select2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.3.tgz#deb8332bfce2102a562004893321a48d5194bf53"
integrity sha512-rb0qElmmhiP09xX8ZbjzNLF6ygFBwErysGWt6Bbgzz5waX2sGe575Cgoz53FaMQ4JaRBg1N0/nCejKyDtiINRA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
select2 "^4.0.13"
"@abp/sweetalert2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.2.tgz#1e0603c7edefe72e32a11b96fc0f5095e9273f12"
integrity sha512-BsiCrj32DQjMBgx9L5FOBDK2xx4x97oEqx5qUAt5lYPtxzIpFUAdn2U3h8WUQfDKRFquQLJxJ993dZai4GfYQg==
"@abp/sweetalert2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.3.tgz#e61fc6c1bed1316c1d44ca5c92f590e422db24d4"
integrity sha512-+SNpBb4XrQlWzRQK9lfdJqA9IfJrlgoqmHwPDgf3Q+P922MzO33TgDlZWbeE7MzVj2y2WmNsPuCKwhjSjSL2rw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
sweetalert2 "^11.3.6"
"@abp/timeago@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.2.tgz#21d67d3fa54b930fdf2c6ae7ed1c182ce16f0c0a"
integrity sha512-oOcW0m2xlsDTw6MjJ+4WbN7y4Le3S1H1IRvU+64i5O3fj5WNBpAKxNEO0X0HLD6JJwlr1tzvE2uWqzoRWO9JXg==
"@abp/timeago@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.3.tgz#0ef8c4801bfd4623e6895b1d047b1437063bda53"
integrity sha512-P3YRDVKjR5/Fz+cXiPg3IiUr7XGbNh7mgmJ1ywRXmKVmVMJmhQ2RsKmmtkGJn4TfVHu/l5iJXe4rqgL21/yX/g==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
timeago "^1.6.7"
"@abp/toastr@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.2.tgz#3523b22b6bf473025b2b731eae59491997f2fbe2"
integrity sha512-StjNgLQNttZwm4L8vOOM/pclgMrmYTs1igmXnBXbYqMcE2Q7QfhZeOYwPvWrm0WlVC4pfR9l3ejYYcZljukqEA==
"@abp/toastr@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.3.tgz#6010d4247937531ebf7c8659d6254cd3db6c4855"
integrity sha512-sC9eCzYVgDrLSFIhJGe9hshzfwA1BkZNah4NQhyq+V6HQ8YF7goMS79N+/XmSoLQ9zzRhusqnPFnb+4FHjr7iA==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
toastr "^2.1.4"
"@abp/tui-editor@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-6.0.0-rc.2.tgz#019dbb34c60f61e46660c1e6eaf8065919ad86fa"
integrity sha512-C3CkyRcUa0SP4rVNtobfV4lNVFfFib+Lgz9YN+Dz1YvoIIokpfxZr1UX/MqObsNV5gWnAw49fFTowd5e7BFVBA==
"@abp/tui-editor@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-6.0.0-rc.3.tgz#7e913a80139af381d881f2b0205d4938ec6f6ca3"
integrity sha512-FC+gyHMn/FecAb8sVNFwf9FcJ035Lqm+LwiIXckS2VaSTbuKna0K/ADlOoSr1Ntwe5GWptZ93STIgSt1QJPdEw==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/prismjs" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
"@abp/prismjs" "~6.0.0-rc.3"
"@abp/utils@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.2.tgz#f93d7bcccc35335df5c14be10dc23bd7472868c8"
integrity sha512-6YdeptFQR1vZzLVKVjHmGQ+R+pK0iBiZdL7A3GkaC+ad5b+adybf8MJPyrbob96xV77/CEuXFUG88URed1B5Fw==
"@abp/utils@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.3.tgz#6d3515694314175218606e9518618ce335b4b360"
integrity sha512-K2geJ9P1ztk4Ehzb9YG3CqqLOi+z8/4iBLUzooNZLQqS+KdlUhCmqfuCoI/A5Aq9DGbTYesalp+Fwoh3S2Dl8A==
dependencies:
just-compare "^1.3.0"

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

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.2.tgz#0a80531a46e08719ef90b4f9013b8bb5ec2fe2f0"
integrity sha512-uktT9FXlDzJ0HGleYCnvUhSMgkSHiwrjVnztbx6zRvrhNsq/UNWPhYoGti8He9tQO1dLi2cRq1aTawtMIjgVow==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.2.tgz#a7a69d3bb4aa09809b3362a045c1adba5b04d17c"
integrity sha512-sszTiRfJxy6EQ2C2xe3GwrfaVfZgSw8xOZcIFScBvW0fDMAfJCTJA+HMcaBTsng9EqHfc7622mWaPlWCD5ImEg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.2"
"@abp/bootstrap" "~6.0.0-rc.2"
"@abp/bootstrap-datepicker" "~6.0.0-rc.2"
"@abp/datatables.net-bs5" "~6.0.0-rc.2"
"@abp/font-awesome" "~6.0.0-rc.2"
"@abp/jquery-form" "~6.0.0-rc.2"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.2"
"@abp/lodash" "~6.0.0-rc.2"
"@abp/luxon" "~6.0.0-rc.2"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.2"
"@abp/select2" "~6.0.0-rc.2"
"@abp/sweetalert2" "~6.0.0-rc.2"
"@abp/timeago" "~6.0.0-rc.2"
"@abp/toastr" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.2.tgz#14d5da45b01af77caab45b01a43f07db6a5425f3"
integrity sha512-AIXP1FP/VvBGRzoslTRTnD4I1oei4Ufh5qVWKG+PwmrFJ6/XoarNV6FCKLePm7NETd1VSrq20uPCrfuZx2WKQg==
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.3.tgz#b95266387e562c635de795442f90470f8e9e6318"
integrity sha512-vVkEpotDST455E3rynvRQpBKPcNNJ2m1wLkz/B9dQNdUjvm8L4F6s0ls0XFlKUNvQfCVfedkRtGayuvNje/Oxg==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.3.tgz#664ca2ee712b7d9e66103c00beb41eb9648a6075"
integrity sha512-KxCsGuoUWKaDo7Oo9aKp51pli2m0DZ2tG8m+zK+m4M9U7g96uC+DOFy3gc7MdPlszvrw32Wwm7I0AughstByNA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.3"
"@abp/bootstrap" "~6.0.0-rc.3"
"@abp/bootstrap-datepicker" "~6.0.0-rc.3"
"@abp/datatables.net-bs5" "~6.0.0-rc.3"
"@abp/font-awesome" "~6.0.0-rc.3"
"@abp/jquery-form" "~6.0.0-rc.3"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.3"
"@abp/lodash" "~6.0.0-rc.3"
"@abp/luxon" "~6.0.0-rc.3"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.3"
"@abp/select2" "~6.0.0-rc.3"
"@abp/sweetalert2" "~6.0.0-rc.3"
"@abp/timeago" "~6.0.0-rc.3"
"@abp/toastr" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.3.tgz#47c23b57ed3908bd78a232230e53d1f3cba2de41"
integrity sha512-7eJZy2JUGQP94Tz3JJWXRHRmDfTcPZ/lS1/VNbU8B4qvgl5ChIXklVEJLR1fwrBhKXZV8fGVmqT1XlGTGFvFJA==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,144 +41,144 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
"@abp/bootstrap-datepicker@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.2.tgz#74785434be987d4579dcf66b52752d23d3dcc928"
integrity sha512-BvJEChBRwf7vuXap1s/hOi3PrlWkZYtpnZLKNjNpEfLLHa3LPrSLn9GAfVLS92/qxeB+S6Vk49HiwcOtuIeEOA==
"@abp/bootstrap-datepicker@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.3.tgz#89198b863dbfccf5f07ac3c4b20ce6199adcb17a"
integrity sha512-NLoUjcR66mqwSWuVftu2yFH4/j6QP+FiElRfZQ9OYmO8DQx2Ue5UZzjrFTrZ1DBBCfzhr2Bffj80dirGvGDyvg==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.2.tgz#ef9e6fb40eb884dd69581bfd08a2523f274cbab8"
integrity sha512-cf1ttQV6gQX0UNoWIKxaJ7tk8dJAQ79WhklsuDWROl0KtkjQ/oCi14363YvWezMQe82xnps1m4ViX87JqNIM4w==
"@abp/bootstrap@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.3.tgz#4574bf574cc3484869e8ff8bc592f6212d20a969"
integrity sha512-Q5v7WRkGhGcjRg267HXtqs1oU7ts9UXPyCXmg5y2y5qMOyioD+m4MKV4iv67DgoQjabudp8X2egTKxkej6Lzkw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
bootstrap "^5.1.3"
"@abp/core@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.2.tgz#6339637a278fc19e10d468aba118e2384a8310af"
integrity sha512-2t7rhjpRvByoAnkdSVEdN4ZVotHSRanv9fZRqK6yOQpHEZ4LDgByKi+eNdc3kiT0+VU3mHxMgq+FO+pxaBHSAA==
"@abp/core@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.3.tgz#5662ce813d449d97d9fb7ea2552b2774c8df7825"
integrity sha512-X/VRdk5SGNYc5gQzPcBEPAvwcuD9WXsI4YIdrqjnes0s8u2/XmfrTixojh8Y5EYUoOblEE3Soj5hBhY1cVwcbQ==
dependencies:
"@abp/utils" "~6.0.0-rc.2"
"@abp/utils" "~6.0.0-rc.3"
"@abp/datatables.net-bs5@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.2.tgz#76ab55e97bc4d25f8bbfc6564f5e61f8404ab52c"
integrity sha512-Wdt22BSDqFvrZb5x2gcH8JG4jJ0++pN7M+t3jqSM3f9IZMOWHZ5GsUegUt+j60Cvqw7ItjP/BmBySQtmh3WbOg==
"@abp/datatables.net-bs5@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.3.tgz#22865c7e621de720b71af6265b3193f6c78695bd"
integrity sha512-T+mhLc6uSzWmxDQogVwnJ6VxI4845gmF68/i9TmVKNlCtpa3EEfyuF/hgWT1hYfCb4XOsvd/CWrunbkC3fsmtg==
dependencies:
"@abp/datatables.net" "~6.0.0-rc.2"
"@abp/datatables.net" "~6.0.0-rc.3"
datatables.net-bs5 "^1.11.4"
"@abp/datatables.net@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.2.tgz#4364d099f2fc1f647fe40eb5cace2fe8c13281dd"
integrity sha512-exHwF0pmJnT83d2X3NcHFewT8ZyK1TWfwNNBVn+j3jwcm4/5KT9a308CAahV9hTz/Z6ZsjRdCRwdv0eU5VHPkQ==
"@abp/datatables.net@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.3.tgz#d036defe6ad7fc989dffa020ae579362ee3150d1"
integrity sha512-4cUU8/Tn0Vz9bx7jjMOD/0Viyr29fcwoQAAkxaaYZp6qiQbENgz46/xpQf2oBCoudk8CLdzpmNa7jWte7PcJJw==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
datatables.net "^1.11.4"
"@abp/font-awesome@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.2.tgz#bc522149abafb82935094c8fcd72a8201f98a315"
integrity sha512-sPA9urlcUl2868zmABa7X1rA6aPYkihVEt1h/XSSYpjL/hu7I1RtDDEJ2k6GFjgd2AZ+8xKRkI4bpOE5HKtbsg==
"@abp/font-awesome@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.3.tgz#803569d1a7e25f8a1c2be018312449c23fb78217"
integrity sha512-lYdh38UCTSkzzw0B/mpPEo7iFXzSKHCNbBOIHe6dd6O/Qli7wYukTtUOFn5Sh+yoydLY1as92HtiGL1ckSdu1g==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
"@fortawesome/fontawesome-free" "^5.15.4"
"@abp/jquery-form@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.2.tgz#cfeb8a300d2c350854689481c15404c37dfcb428"
integrity sha512-Okl0z6MibakfSH4Mzq2fDA0kj97tWSDpVcJLN+K5CkROhob2ZpkBiAysY7hqEMItAMruDa2SsrANxW65r4mi4Q==
"@abp/jquery-form@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.3.tgz#4ec503c07e2194148c3a7e7cf7ddef2871679e6a"
integrity sha512-Q3uEpflntqrSkYakcdsBnnYYfxJWXD/CDjMiwjbb6gIc8s4qkbIYxVxvYvlEezoIDYQkMSXOn7BS4clWsesiJg==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.2.tgz#a66677d87e3214086483853845c1bb609bbb4f3b"
integrity sha512-ymGMzH/kwfcvw749znmiE4I4jesJScEZu2LR1IrFcJUV9s4ThJEgSGnyjUAXZrt2jNSuWTUCXp4dI0PSm5iU3Q==
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.3.tgz#01da2a59663d373ff1c69022f4c9c66ad0b29403"
integrity sha512-ij1ML2D9rYF3pJthWO6mGQajsJhbDCtOoBvnh9yCZccuwOYkXP22PqfUxjjxtqL4HqFI31KRpFg0ANMGSzEEBg==
dependencies:
"@abp/jquery-validation" "~6.0.0-rc.2"
"@abp/jquery-validation" "~6.0.0-rc.3"
jquery-validation-unobtrusive "^3.2.12"
"@abp/jquery-validation@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.2.tgz#bcc7fbfbac2bc8e7efc94177e1a1a405d18ac387"
integrity sha512-RIeNdhDDa7fQunE9BnBxcdicQpcpcn/l7Rl6q8IuA18PN4z4DueXt3A6Qzl9zPl931yXzs7v28iW7j81/4Xpyw==
"@abp/jquery-validation@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.3.tgz#724aea9572dcb2faccf8c6355332b0b2a4df9260"
integrity sha512-rTK5oHaMtycvWxunNwzbE/MbsXXIr6qDnOY3rVUmjTHjqUOHYz591t/XeQfjnSXPp4k/SZUjG6viTC3J2jzC1A==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-validation "^1.19.3"
"@abp/jquery@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.2.tgz#6d641604a1687d2e8e3220171329960b7e40a315"
integrity sha512-FMCdtl3nPZDaTGZ7aKHzOYIzzYQvhDrdTm0bKD+5nKv70sL8TRQV16hzcARGFoA/9PoBLBfnVPcSYSEN/nL5Dw==
"@abp/jquery@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.3.tgz#ba19cc8b802c46490277939e6c674811127d8016"
integrity sha512-MbD38iInyag7/j5k42cvMT4jLZMtXH4lUK0rjvqUDVaxKEks46Ix/90uczQ9XajYONgx0CJKFj2urgM830+CCA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
jquery "~3.6.0"
"@abp/lodash@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.2.tgz#939d667bc96a268344df16e12e458ae376ae0154"
integrity sha512-Q2+rVGolS+00Zsww/qTo+k2oqAIDzAVZCAaamgTCJ8mliho7wFvW8LWFwII3so/nKWiTb8Gwf7bW0nMKeCnvuw==
"@abp/lodash@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.3.tgz#8a5bab02353e5cab4ca06ab82f6dbe6285faa95a"
integrity sha512-c8yhcapzPsXyeiFjeOC+2a4bn5wFjW5gUoN+p/p+tE+FIcH37yEgyw/tAr6aZPCmR770MqQXct4t7S4Czbbk+A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
lodash "^4.17.21"
"@abp/luxon@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.2.tgz#7703887dcdee26cb1e972386ea295b879e3c51f6"
integrity sha512-ckGfUo7ZD19LjKmrKneYQSO8Mjp5rh4sM/587MdTtc0ZA3nyqX98DtE0nkm8MegTvoVUGYBKWhhIlqTb6VpI4w==
"@abp/luxon@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.3.tgz#ba515e122c61918d481467d5be39f08a363822f6"
integrity sha512-2lRSSC0DYShlnKdbJ/Pmha/azjt09ZRPx57NQ01dc7ungChPry5EJL6pC3kXWnJrCkrPCF0V5+A3+taut9+l3A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
luxon "^2.3.0"
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.2.tgz#22af6c68067671714abdb52537487cd5cc73af43"
integrity sha512-rz3herKYP2KccHSUHpbkF1adfaECSR7TDOkOeFghpM/t5TCv/fs9uSroeteKyCMufWmYswY/1Yi4doYEQWcdfA==
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.3.tgz#0798e37ec6a852748118692a5fbd30c99d9745db"
integrity sha512-FlyShmRxG3wGk1OJCjHIZAdi2/Y2FJPkVxaE72CVIceQSmg0nebGTv3a7bhd4QzKkDsSA3+t6gHjnuKlTlDFLA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.2.tgz#8553c085f087c83cadf0f25a80660db2236387f5"
integrity sha512-im0T2Uah4QkqWOBqiu1fpm6SvV9Id5pV3qup3AFFKRcwhH9rvGGPjpSqq+Fh0sG23P1BSHw/lEedYwAPfxcR0w==
"@abp/select2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.3.tgz#deb8332bfce2102a562004893321a48d5194bf53"
integrity sha512-rb0qElmmhiP09xX8ZbjzNLF6ygFBwErysGWt6Bbgzz5waX2sGe575Cgoz53FaMQ4JaRBg1N0/nCejKyDtiINRA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
select2 "^4.0.13"
"@abp/sweetalert2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.2.tgz#1e0603c7edefe72e32a11b96fc0f5095e9273f12"
integrity sha512-BsiCrj32DQjMBgx9L5FOBDK2xx4x97oEqx5qUAt5lYPtxzIpFUAdn2U3h8WUQfDKRFquQLJxJ993dZai4GfYQg==
"@abp/sweetalert2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.3.tgz#e61fc6c1bed1316c1d44ca5c92f590e422db24d4"
integrity sha512-+SNpBb4XrQlWzRQK9lfdJqA9IfJrlgoqmHwPDgf3Q+P922MzO33TgDlZWbeE7MzVj2y2WmNsPuCKwhjSjSL2rw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
sweetalert2 "^11.3.6"
"@abp/timeago@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.2.tgz#21d67d3fa54b930fdf2c6ae7ed1c182ce16f0c0a"
integrity sha512-oOcW0m2xlsDTw6MjJ+4WbN7y4Le3S1H1IRvU+64i5O3fj5WNBpAKxNEO0X0HLD6JJwlr1tzvE2uWqzoRWO9JXg==
"@abp/timeago@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.3.tgz#0ef8c4801bfd4623e6895b1d047b1437063bda53"
integrity sha512-P3YRDVKjR5/Fz+cXiPg3IiUr7XGbNh7mgmJ1ywRXmKVmVMJmhQ2RsKmmtkGJn4TfVHu/l5iJXe4rqgL21/yX/g==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
timeago "^1.6.7"
"@abp/toastr@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.2.tgz#3523b22b6bf473025b2b731eae59491997f2fbe2"
integrity sha512-StjNgLQNttZwm4L8vOOM/pclgMrmYTs1igmXnBXbYqMcE2Q7QfhZeOYwPvWrm0WlVC4pfR9l3ejYYcZljukqEA==
"@abp/toastr@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.3.tgz#6010d4247937531ebf7c8659d6254cd3db6c4855"
integrity sha512-sC9eCzYVgDrLSFIhJGe9hshzfwA1BkZNah4NQhyq+V6HQ8YF7goMS79N+/XmSoLQ9zzRhusqnPFnb+4FHjr7iA==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
toastr "^2.1.4"
"@abp/utils@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.2.tgz#f93d7bcccc35335df5c14be10dc23bd7472868c8"
integrity sha512-6YdeptFQR1vZzLVKVjHmGQ+R+pK0iBiZdL7A3GkaC+ad5b+adybf8MJPyrbob96xV77/CEuXFUG88URed1B5Fw==
"@abp/utils@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.3.tgz#6d3515694314175218606e9518618ce335b4b360"
integrity sha512-K2geJ9P1ztk4Ehzb9YG3CqqLOi+z8/4iBLUzooNZLQqS+KdlUhCmqfuCoI/A5Aq9DGbTYesalp+Fwoh3S2Dl8A==
dependencies:
just-compare "^1.3.0"

@ -15,11 +15,11 @@
},
"private": true,
"dependencies": {
"@abp/ng.account": "~6.0.0-rc.2",
"@abp/ng.identity": "~6.0.0-rc.2",
"@abp/ng.setting-management": "~6.0.0-rc.2",
"@abp/ng.tenant-management": "~6.0.0-rc.2",
"@abp/ng.theme.basic": "~6.0.0-rc.2",
"@abp/ng.account": "~6.0.0-rc.3",
"@abp/ng.identity": "~6.0.0-rc.3",
"@abp/ng.setting-management": "~6.0.0-rc.3",
"@abp/ng.tenant-management": "~6.0.0-rc.3",
"@abp/ng.theme.basic": "~6.0.0-rc.3",
"@angular/animations": "~10.0.0",
"@angular/common": "~10.0.0",
"@angular/compiler": "~10.0.0",

@ -4,8 +4,8 @@
"peerDependencies": {
"@angular/common": "^9.1.11",
"@angular/core": "^9.1.11",
"@abp/ng.core": ">=6.0.0-rc.2",
"@abp/ng.theme.shared": ">=6.0.0-rc.2"
"@abp/ng.core": ">=6.0.0-rc.3",
"@abp/ng.theme.shared": ">=6.0.0-rc.3"
},
"dependencies": {
"tslib": "^2.0.0"

@ -3,6 +3,6 @@
"name": "my-app-identityserver",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "^6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.basic": "^6.0.0-rc.3"
}
}

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.2.tgz#0a80531a46e08719ef90b4f9013b8bb5ec2fe2f0"
integrity sha512-uktT9FXlDzJ0HGleYCnvUhSMgkSHiwrjVnztbx6zRvrhNsq/UNWPhYoGti8He9tQO1dLi2cRq1aTawtMIjgVow==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.2.tgz#a7a69d3bb4aa09809b3362a045c1adba5b04d17c"
integrity sha512-sszTiRfJxy6EQ2C2xe3GwrfaVfZgSw8xOZcIFScBvW0fDMAfJCTJA+HMcaBTsng9EqHfc7622mWaPlWCD5ImEg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.2"
"@abp/bootstrap" "~6.0.0-rc.2"
"@abp/bootstrap-datepicker" "~6.0.0-rc.2"
"@abp/datatables.net-bs5" "~6.0.0-rc.2"
"@abp/font-awesome" "~6.0.0-rc.2"
"@abp/jquery-form" "~6.0.0-rc.2"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.2"
"@abp/lodash" "~6.0.0-rc.2"
"@abp/luxon" "~6.0.0-rc.2"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.2"
"@abp/select2" "~6.0.0-rc.2"
"@abp/sweetalert2" "~6.0.0-rc.2"
"@abp/timeago" "~6.0.0-rc.2"
"@abp/toastr" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.2.tgz#14d5da45b01af77caab45b01a43f07db6a5425f3"
integrity sha512-AIXP1FP/VvBGRzoslTRTnD4I1oei4Ufh5qVWKG+PwmrFJ6/XoarNV6FCKLePm7NETd1VSrq20uPCrfuZx2WKQg==
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.3.tgz#b95266387e562c635de795442f90470f8e9e6318"
integrity sha512-vVkEpotDST455E3rynvRQpBKPcNNJ2m1wLkz/B9dQNdUjvm8L4F6s0ls0XFlKUNvQfCVfedkRtGayuvNje/Oxg==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.3.tgz#664ca2ee712b7d9e66103c00beb41eb9648a6075"
integrity sha512-KxCsGuoUWKaDo7Oo9aKp51pli2m0DZ2tG8m+zK+m4M9U7g96uC+DOFy3gc7MdPlszvrw32Wwm7I0AughstByNA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.3"
"@abp/bootstrap" "~6.0.0-rc.3"
"@abp/bootstrap-datepicker" "~6.0.0-rc.3"
"@abp/datatables.net-bs5" "~6.0.0-rc.3"
"@abp/font-awesome" "~6.0.0-rc.3"
"@abp/jquery-form" "~6.0.0-rc.3"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.3"
"@abp/lodash" "~6.0.0-rc.3"
"@abp/luxon" "~6.0.0-rc.3"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.3"
"@abp/select2" "~6.0.0-rc.3"
"@abp/sweetalert2" "~6.0.0-rc.3"
"@abp/timeago" "~6.0.0-rc.3"
"@abp/toastr" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.3.tgz#47c23b57ed3908bd78a232230e53d1f3cba2de41"
integrity sha512-7eJZy2JUGQP94Tz3JJWXRHRmDfTcPZ/lS1/VNbU8B4qvgl5ChIXklVEJLR1fwrBhKXZV8fGVmqT1XlGTGFvFJA==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,144 +41,144 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
"@abp/bootstrap-datepicker@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.2.tgz#74785434be987d4579dcf66b52752d23d3dcc928"
integrity sha512-BvJEChBRwf7vuXap1s/hOi3PrlWkZYtpnZLKNjNpEfLLHa3LPrSLn9GAfVLS92/qxeB+S6Vk49HiwcOtuIeEOA==
"@abp/bootstrap-datepicker@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.3.tgz#89198b863dbfccf5f07ac3c4b20ce6199adcb17a"
integrity sha512-NLoUjcR66mqwSWuVftu2yFH4/j6QP+FiElRfZQ9OYmO8DQx2Ue5UZzjrFTrZ1DBBCfzhr2Bffj80dirGvGDyvg==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.2.tgz#ef9e6fb40eb884dd69581bfd08a2523f274cbab8"
integrity sha512-cf1ttQV6gQX0UNoWIKxaJ7tk8dJAQ79WhklsuDWROl0KtkjQ/oCi14363YvWezMQe82xnps1m4ViX87JqNIM4w==
"@abp/bootstrap@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.3.tgz#4574bf574cc3484869e8ff8bc592f6212d20a969"
integrity sha512-Q5v7WRkGhGcjRg267HXtqs1oU7ts9UXPyCXmg5y2y5qMOyioD+m4MKV4iv67DgoQjabudp8X2egTKxkej6Lzkw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
bootstrap "^5.1.3"
"@abp/core@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.2.tgz#6339637a278fc19e10d468aba118e2384a8310af"
integrity sha512-2t7rhjpRvByoAnkdSVEdN4ZVotHSRanv9fZRqK6yOQpHEZ4LDgByKi+eNdc3kiT0+VU3mHxMgq+FO+pxaBHSAA==
"@abp/core@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.3.tgz#5662ce813d449d97d9fb7ea2552b2774c8df7825"
integrity sha512-X/VRdk5SGNYc5gQzPcBEPAvwcuD9WXsI4YIdrqjnes0s8u2/XmfrTixojh8Y5EYUoOblEE3Soj5hBhY1cVwcbQ==
dependencies:
"@abp/utils" "~6.0.0-rc.2"
"@abp/utils" "~6.0.0-rc.3"
"@abp/datatables.net-bs5@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.2.tgz#76ab55e97bc4d25f8bbfc6564f5e61f8404ab52c"
integrity sha512-Wdt22BSDqFvrZb5x2gcH8JG4jJ0++pN7M+t3jqSM3f9IZMOWHZ5GsUegUt+j60Cvqw7ItjP/BmBySQtmh3WbOg==
"@abp/datatables.net-bs5@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.3.tgz#22865c7e621de720b71af6265b3193f6c78695bd"
integrity sha512-T+mhLc6uSzWmxDQogVwnJ6VxI4845gmF68/i9TmVKNlCtpa3EEfyuF/hgWT1hYfCb4XOsvd/CWrunbkC3fsmtg==
dependencies:
"@abp/datatables.net" "~6.0.0-rc.2"
"@abp/datatables.net" "~6.0.0-rc.3"
datatables.net-bs5 "^1.11.4"
"@abp/datatables.net@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.2.tgz#4364d099f2fc1f647fe40eb5cace2fe8c13281dd"
integrity sha512-exHwF0pmJnT83d2X3NcHFewT8ZyK1TWfwNNBVn+j3jwcm4/5KT9a308CAahV9hTz/Z6ZsjRdCRwdv0eU5VHPkQ==
"@abp/datatables.net@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.3.tgz#d036defe6ad7fc989dffa020ae579362ee3150d1"
integrity sha512-4cUU8/Tn0Vz9bx7jjMOD/0Viyr29fcwoQAAkxaaYZp6qiQbENgz46/xpQf2oBCoudk8CLdzpmNa7jWte7PcJJw==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
datatables.net "^1.11.4"
"@abp/font-awesome@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.2.tgz#bc522149abafb82935094c8fcd72a8201f98a315"
integrity sha512-sPA9urlcUl2868zmABa7X1rA6aPYkihVEt1h/XSSYpjL/hu7I1RtDDEJ2k6GFjgd2AZ+8xKRkI4bpOE5HKtbsg==
"@abp/font-awesome@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.3.tgz#803569d1a7e25f8a1c2be018312449c23fb78217"
integrity sha512-lYdh38UCTSkzzw0B/mpPEo7iFXzSKHCNbBOIHe6dd6O/Qli7wYukTtUOFn5Sh+yoydLY1as92HtiGL1ckSdu1g==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
"@fortawesome/fontawesome-free" "^5.15.4"
"@abp/jquery-form@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.2.tgz#cfeb8a300d2c350854689481c15404c37dfcb428"
integrity sha512-Okl0z6MibakfSH4Mzq2fDA0kj97tWSDpVcJLN+K5CkROhob2ZpkBiAysY7hqEMItAMruDa2SsrANxW65r4mi4Q==
"@abp/jquery-form@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.3.tgz#4ec503c07e2194148c3a7e7cf7ddef2871679e6a"
integrity sha512-Q3uEpflntqrSkYakcdsBnnYYfxJWXD/CDjMiwjbb6gIc8s4qkbIYxVxvYvlEezoIDYQkMSXOn7BS4clWsesiJg==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.2.tgz#a66677d87e3214086483853845c1bb609bbb4f3b"
integrity sha512-ymGMzH/kwfcvw749znmiE4I4jesJScEZu2LR1IrFcJUV9s4ThJEgSGnyjUAXZrt2jNSuWTUCXp4dI0PSm5iU3Q==
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.3.tgz#01da2a59663d373ff1c69022f4c9c66ad0b29403"
integrity sha512-ij1ML2D9rYF3pJthWO6mGQajsJhbDCtOoBvnh9yCZccuwOYkXP22PqfUxjjxtqL4HqFI31KRpFg0ANMGSzEEBg==
dependencies:
"@abp/jquery-validation" "~6.0.0-rc.2"
"@abp/jquery-validation" "~6.0.0-rc.3"
jquery-validation-unobtrusive "^3.2.12"
"@abp/jquery-validation@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.2.tgz#bcc7fbfbac2bc8e7efc94177e1a1a405d18ac387"
integrity sha512-RIeNdhDDa7fQunE9BnBxcdicQpcpcn/l7Rl6q8IuA18PN4z4DueXt3A6Qzl9zPl931yXzs7v28iW7j81/4Xpyw==
"@abp/jquery-validation@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.3.tgz#724aea9572dcb2faccf8c6355332b0b2a4df9260"
integrity sha512-rTK5oHaMtycvWxunNwzbE/MbsXXIr6qDnOY3rVUmjTHjqUOHYz591t/XeQfjnSXPp4k/SZUjG6viTC3J2jzC1A==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-validation "^1.19.3"
"@abp/jquery@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.2.tgz#6d641604a1687d2e8e3220171329960b7e40a315"
integrity sha512-FMCdtl3nPZDaTGZ7aKHzOYIzzYQvhDrdTm0bKD+5nKv70sL8TRQV16hzcARGFoA/9PoBLBfnVPcSYSEN/nL5Dw==
"@abp/jquery@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.3.tgz#ba19cc8b802c46490277939e6c674811127d8016"
integrity sha512-MbD38iInyag7/j5k42cvMT4jLZMtXH4lUK0rjvqUDVaxKEks46Ix/90uczQ9XajYONgx0CJKFj2urgM830+CCA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
jquery "~3.6.0"
"@abp/lodash@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.2.tgz#939d667bc96a268344df16e12e458ae376ae0154"
integrity sha512-Q2+rVGolS+00Zsww/qTo+k2oqAIDzAVZCAaamgTCJ8mliho7wFvW8LWFwII3so/nKWiTb8Gwf7bW0nMKeCnvuw==
"@abp/lodash@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.3.tgz#8a5bab02353e5cab4ca06ab82f6dbe6285faa95a"
integrity sha512-c8yhcapzPsXyeiFjeOC+2a4bn5wFjW5gUoN+p/p+tE+FIcH37yEgyw/tAr6aZPCmR770MqQXct4t7S4Czbbk+A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
lodash "^4.17.21"
"@abp/luxon@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.2.tgz#7703887dcdee26cb1e972386ea295b879e3c51f6"
integrity sha512-ckGfUo7ZD19LjKmrKneYQSO8Mjp5rh4sM/587MdTtc0ZA3nyqX98DtE0nkm8MegTvoVUGYBKWhhIlqTb6VpI4w==
"@abp/luxon@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.3.tgz#ba515e122c61918d481467d5be39f08a363822f6"
integrity sha512-2lRSSC0DYShlnKdbJ/Pmha/azjt09ZRPx57NQ01dc7ungChPry5EJL6pC3kXWnJrCkrPCF0V5+A3+taut9+l3A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
luxon "^2.3.0"
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.2.tgz#22af6c68067671714abdb52537487cd5cc73af43"
integrity sha512-rz3herKYP2KccHSUHpbkF1adfaECSR7TDOkOeFghpM/t5TCv/fs9uSroeteKyCMufWmYswY/1Yi4doYEQWcdfA==
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.3.tgz#0798e37ec6a852748118692a5fbd30c99d9745db"
integrity sha512-FlyShmRxG3wGk1OJCjHIZAdi2/Y2FJPkVxaE72CVIceQSmg0nebGTv3a7bhd4QzKkDsSA3+t6gHjnuKlTlDFLA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.2.tgz#8553c085f087c83cadf0f25a80660db2236387f5"
integrity sha512-im0T2Uah4QkqWOBqiu1fpm6SvV9Id5pV3qup3AFFKRcwhH9rvGGPjpSqq+Fh0sG23P1BSHw/lEedYwAPfxcR0w==
"@abp/select2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.3.tgz#deb8332bfce2102a562004893321a48d5194bf53"
integrity sha512-rb0qElmmhiP09xX8ZbjzNLF6ygFBwErysGWt6Bbgzz5waX2sGe575Cgoz53FaMQ4JaRBg1N0/nCejKyDtiINRA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
select2 "^4.0.13"
"@abp/sweetalert2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.2.tgz#1e0603c7edefe72e32a11b96fc0f5095e9273f12"
integrity sha512-BsiCrj32DQjMBgx9L5FOBDK2xx4x97oEqx5qUAt5lYPtxzIpFUAdn2U3h8WUQfDKRFquQLJxJ993dZai4GfYQg==
"@abp/sweetalert2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.3.tgz#e61fc6c1bed1316c1d44ca5c92f590e422db24d4"
integrity sha512-+SNpBb4XrQlWzRQK9lfdJqA9IfJrlgoqmHwPDgf3Q+P922MzO33TgDlZWbeE7MzVj2y2WmNsPuCKwhjSjSL2rw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
sweetalert2 "^11.3.6"
"@abp/timeago@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.2.tgz#21d67d3fa54b930fdf2c6ae7ed1c182ce16f0c0a"
integrity sha512-oOcW0m2xlsDTw6MjJ+4WbN7y4Le3S1H1IRvU+64i5O3fj5WNBpAKxNEO0X0HLD6JJwlr1tzvE2uWqzoRWO9JXg==
"@abp/timeago@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.3.tgz#0ef8c4801bfd4623e6895b1d047b1437063bda53"
integrity sha512-P3YRDVKjR5/Fz+cXiPg3IiUr7XGbNh7mgmJ1ywRXmKVmVMJmhQ2RsKmmtkGJn4TfVHu/l5iJXe4rqgL21/yX/g==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
timeago "^1.6.7"
"@abp/toastr@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.2.tgz#3523b22b6bf473025b2b731eae59491997f2fbe2"
integrity sha512-StjNgLQNttZwm4L8vOOM/pclgMrmYTs1igmXnBXbYqMcE2Q7QfhZeOYwPvWrm0WlVC4pfR9l3ejYYcZljukqEA==
"@abp/toastr@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.3.tgz#6010d4247937531ebf7c8659d6254cd3db6c4855"
integrity sha512-sC9eCzYVgDrLSFIhJGe9hshzfwA1BkZNah4NQhyq+V6HQ8YF7goMS79N+/XmSoLQ9zzRhusqnPFnb+4FHjr7iA==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
toastr "^2.1.4"
"@abp/utils@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.2.tgz#f93d7bcccc35335df5c14be10dc23bd7472868c8"
integrity sha512-6YdeptFQR1vZzLVKVjHmGQ+R+pK0iBiZdL7A3GkaC+ad5b+adybf8MJPyrbob96xV77/CEuXFUG88URed1B5Fw==
"@abp/utils@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.3.tgz#6d3515694314175218606e9518618ce335b4b360"
integrity sha512-K2geJ9P1ztk4Ehzb9YG3CqqLOi+z8/4iBLUzooNZLQqS+KdlUhCmqfuCoI/A5Aq9DGbTYesalp+Fwoh3S2Dl8A==
dependencies:
just-compare "^1.3.0"

@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "^6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.basic": "^6.0.0-rc.3"
}
}

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.2.tgz#0a80531a46e08719ef90b4f9013b8bb5ec2fe2f0"
integrity sha512-uktT9FXlDzJ0HGleYCnvUhSMgkSHiwrjVnztbx6zRvrhNsq/UNWPhYoGti8He9tQO1dLi2cRq1aTawtMIjgVow==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.2.tgz#a7a69d3bb4aa09809b3362a045c1adba5b04d17c"
integrity sha512-sszTiRfJxy6EQ2C2xe3GwrfaVfZgSw8xOZcIFScBvW0fDMAfJCTJA+HMcaBTsng9EqHfc7622mWaPlWCD5ImEg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.2"
"@abp/bootstrap" "~6.0.0-rc.2"
"@abp/bootstrap-datepicker" "~6.0.0-rc.2"
"@abp/datatables.net-bs5" "~6.0.0-rc.2"
"@abp/font-awesome" "~6.0.0-rc.2"
"@abp/jquery-form" "~6.0.0-rc.2"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.2"
"@abp/lodash" "~6.0.0-rc.2"
"@abp/luxon" "~6.0.0-rc.2"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.2"
"@abp/select2" "~6.0.0-rc.2"
"@abp/sweetalert2" "~6.0.0-rc.2"
"@abp/timeago" "~6.0.0-rc.2"
"@abp/toastr" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.2.tgz#14d5da45b01af77caab45b01a43f07db6a5425f3"
integrity sha512-AIXP1FP/VvBGRzoslTRTnD4I1oei4Ufh5qVWKG+PwmrFJ6/XoarNV6FCKLePm7NETd1VSrq20uPCrfuZx2WKQg==
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.3.tgz#b95266387e562c635de795442f90470f8e9e6318"
integrity sha512-vVkEpotDST455E3rynvRQpBKPcNNJ2m1wLkz/B9dQNdUjvm8L4F6s0ls0XFlKUNvQfCVfedkRtGayuvNje/Oxg==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.3.tgz#664ca2ee712b7d9e66103c00beb41eb9648a6075"
integrity sha512-KxCsGuoUWKaDo7Oo9aKp51pli2m0DZ2tG8m+zK+m4M9U7g96uC+DOFy3gc7MdPlszvrw32Wwm7I0AughstByNA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.3"
"@abp/bootstrap" "~6.0.0-rc.3"
"@abp/bootstrap-datepicker" "~6.0.0-rc.3"
"@abp/datatables.net-bs5" "~6.0.0-rc.3"
"@abp/font-awesome" "~6.0.0-rc.3"
"@abp/jquery-form" "~6.0.0-rc.3"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.3"
"@abp/lodash" "~6.0.0-rc.3"
"@abp/luxon" "~6.0.0-rc.3"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.3"
"@abp/select2" "~6.0.0-rc.3"
"@abp/sweetalert2" "~6.0.0-rc.3"
"@abp/timeago" "~6.0.0-rc.3"
"@abp/toastr" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.3.tgz#47c23b57ed3908bd78a232230e53d1f3cba2de41"
integrity sha512-7eJZy2JUGQP94Tz3JJWXRHRmDfTcPZ/lS1/VNbU8B4qvgl5ChIXklVEJLR1fwrBhKXZV8fGVmqT1XlGTGFvFJA==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,144 +41,144 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
"@abp/bootstrap-datepicker@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.2.tgz#74785434be987d4579dcf66b52752d23d3dcc928"
integrity sha512-BvJEChBRwf7vuXap1s/hOi3PrlWkZYtpnZLKNjNpEfLLHa3LPrSLn9GAfVLS92/qxeB+S6Vk49HiwcOtuIeEOA==
"@abp/bootstrap-datepicker@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.3.tgz#89198b863dbfccf5f07ac3c4b20ce6199adcb17a"
integrity sha512-NLoUjcR66mqwSWuVftu2yFH4/j6QP+FiElRfZQ9OYmO8DQx2Ue5UZzjrFTrZ1DBBCfzhr2Bffj80dirGvGDyvg==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.2.tgz#ef9e6fb40eb884dd69581bfd08a2523f274cbab8"
integrity sha512-cf1ttQV6gQX0UNoWIKxaJ7tk8dJAQ79WhklsuDWROl0KtkjQ/oCi14363YvWezMQe82xnps1m4ViX87JqNIM4w==
"@abp/bootstrap@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.3.tgz#4574bf574cc3484869e8ff8bc592f6212d20a969"
integrity sha512-Q5v7WRkGhGcjRg267HXtqs1oU7ts9UXPyCXmg5y2y5qMOyioD+m4MKV4iv67DgoQjabudp8X2egTKxkej6Lzkw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
bootstrap "^5.1.3"
"@abp/core@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.2.tgz#6339637a278fc19e10d468aba118e2384a8310af"
integrity sha512-2t7rhjpRvByoAnkdSVEdN4ZVotHSRanv9fZRqK6yOQpHEZ4LDgByKi+eNdc3kiT0+VU3mHxMgq+FO+pxaBHSAA==
"@abp/core@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.3.tgz#5662ce813d449d97d9fb7ea2552b2774c8df7825"
integrity sha512-X/VRdk5SGNYc5gQzPcBEPAvwcuD9WXsI4YIdrqjnes0s8u2/XmfrTixojh8Y5EYUoOblEE3Soj5hBhY1cVwcbQ==
dependencies:
"@abp/utils" "~6.0.0-rc.2"
"@abp/utils" "~6.0.0-rc.3"
"@abp/datatables.net-bs5@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.2.tgz#76ab55e97bc4d25f8bbfc6564f5e61f8404ab52c"
integrity sha512-Wdt22BSDqFvrZb5x2gcH8JG4jJ0++pN7M+t3jqSM3f9IZMOWHZ5GsUegUt+j60Cvqw7ItjP/BmBySQtmh3WbOg==
"@abp/datatables.net-bs5@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.3.tgz#22865c7e621de720b71af6265b3193f6c78695bd"
integrity sha512-T+mhLc6uSzWmxDQogVwnJ6VxI4845gmF68/i9TmVKNlCtpa3EEfyuF/hgWT1hYfCb4XOsvd/CWrunbkC3fsmtg==
dependencies:
"@abp/datatables.net" "~6.0.0-rc.2"
"@abp/datatables.net" "~6.0.0-rc.3"
datatables.net-bs5 "^1.11.4"
"@abp/datatables.net@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.2.tgz#4364d099f2fc1f647fe40eb5cace2fe8c13281dd"
integrity sha512-exHwF0pmJnT83d2X3NcHFewT8ZyK1TWfwNNBVn+j3jwcm4/5KT9a308CAahV9hTz/Z6ZsjRdCRwdv0eU5VHPkQ==
"@abp/datatables.net@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.3.tgz#d036defe6ad7fc989dffa020ae579362ee3150d1"
integrity sha512-4cUU8/Tn0Vz9bx7jjMOD/0Viyr29fcwoQAAkxaaYZp6qiQbENgz46/xpQf2oBCoudk8CLdzpmNa7jWte7PcJJw==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
datatables.net "^1.11.4"
"@abp/font-awesome@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.2.tgz#bc522149abafb82935094c8fcd72a8201f98a315"
integrity sha512-sPA9urlcUl2868zmABa7X1rA6aPYkihVEt1h/XSSYpjL/hu7I1RtDDEJ2k6GFjgd2AZ+8xKRkI4bpOE5HKtbsg==
"@abp/font-awesome@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.3.tgz#803569d1a7e25f8a1c2be018312449c23fb78217"
integrity sha512-lYdh38UCTSkzzw0B/mpPEo7iFXzSKHCNbBOIHe6dd6O/Qli7wYukTtUOFn5Sh+yoydLY1as92HtiGL1ckSdu1g==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
"@fortawesome/fontawesome-free" "^5.15.4"
"@abp/jquery-form@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.2.tgz#cfeb8a300d2c350854689481c15404c37dfcb428"
integrity sha512-Okl0z6MibakfSH4Mzq2fDA0kj97tWSDpVcJLN+K5CkROhob2ZpkBiAysY7hqEMItAMruDa2SsrANxW65r4mi4Q==
"@abp/jquery-form@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.3.tgz#4ec503c07e2194148c3a7e7cf7ddef2871679e6a"
integrity sha512-Q3uEpflntqrSkYakcdsBnnYYfxJWXD/CDjMiwjbb6gIc8s4qkbIYxVxvYvlEezoIDYQkMSXOn7BS4clWsesiJg==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.2.tgz#a66677d87e3214086483853845c1bb609bbb4f3b"
integrity sha512-ymGMzH/kwfcvw749znmiE4I4jesJScEZu2LR1IrFcJUV9s4ThJEgSGnyjUAXZrt2jNSuWTUCXp4dI0PSm5iU3Q==
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.3.tgz#01da2a59663d373ff1c69022f4c9c66ad0b29403"
integrity sha512-ij1ML2D9rYF3pJthWO6mGQajsJhbDCtOoBvnh9yCZccuwOYkXP22PqfUxjjxtqL4HqFI31KRpFg0ANMGSzEEBg==
dependencies:
"@abp/jquery-validation" "~6.0.0-rc.2"
"@abp/jquery-validation" "~6.0.0-rc.3"
jquery-validation-unobtrusive "^3.2.12"
"@abp/jquery-validation@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.2.tgz#bcc7fbfbac2bc8e7efc94177e1a1a405d18ac387"
integrity sha512-RIeNdhDDa7fQunE9BnBxcdicQpcpcn/l7Rl6q8IuA18PN4z4DueXt3A6Qzl9zPl931yXzs7v28iW7j81/4Xpyw==
"@abp/jquery-validation@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.3.tgz#724aea9572dcb2faccf8c6355332b0b2a4df9260"
integrity sha512-rTK5oHaMtycvWxunNwzbE/MbsXXIr6qDnOY3rVUmjTHjqUOHYz591t/XeQfjnSXPp4k/SZUjG6viTC3J2jzC1A==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-validation "^1.19.3"
"@abp/jquery@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.2.tgz#6d641604a1687d2e8e3220171329960b7e40a315"
integrity sha512-FMCdtl3nPZDaTGZ7aKHzOYIzzYQvhDrdTm0bKD+5nKv70sL8TRQV16hzcARGFoA/9PoBLBfnVPcSYSEN/nL5Dw==
"@abp/jquery@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.3.tgz#ba19cc8b802c46490277939e6c674811127d8016"
integrity sha512-MbD38iInyag7/j5k42cvMT4jLZMtXH4lUK0rjvqUDVaxKEks46Ix/90uczQ9XajYONgx0CJKFj2urgM830+CCA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
jquery "~3.6.0"
"@abp/lodash@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.2.tgz#939d667bc96a268344df16e12e458ae376ae0154"
integrity sha512-Q2+rVGolS+00Zsww/qTo+k2oqAIDzAVZCAaamgTCJ8mliho7wFvW8LWFwII3so/nKWiTb8Gwf7bW0nMKeCnvuw==
"@abp/lodash@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.3.tgz#8a5bab02353e5cab4ca06ab82f6dbe6285faa95a"
integrity sha512-c8yhcapzPsXyeiFjeOC+2a4bn5wFjW5gUoN+p/p+tE+FIcH37yEgyw/tAr6aZPCmR770MqQXct4t7S4Czbbk+A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
lodash "^4.17.21"
"@abp/luxon@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.2.tgz#7703887dcdee26cb1e972386ea295b879e3c51f6"
integrity sha512-ckGfUo7ZD19LjKmrKneYQSO8Mjp5rh4sM/587MdTtc0ZA3nyqX98DtE0nkm8MegTvoVUGYBKWhhIlqTb6VpI4w==
"@abp/luxon@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.3.tgz#ba515e122c61918d481467d5be39f08a363822f6"
integrity sha512-2lRSSC0DYShlnKdbJ/Pmha/azjt09ZRPx57NQ01dc7ungChPry5EJL6pC3kXWnJrCkrPCF0V5+A3+taut9+l3A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
luxon "^2.3.0"
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.2.tgz#22af6c68067671714abdb52537487cd5cc73af43"
integrity sha512-rz3herKYP2KccHSUHpbkF1adfaECSR7TDOkOeFghpM/t5TCv/fs9uSroeteKyCMufWmYswY/1Yi4doYEQWcdfA==
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.3.tgz#0798e37ec6a852748118692a5fbd30c99d9745db"
integrity sha512-FlyShmRxG3wGk1OJCjHIZAdi2/Y2FJPkVxaE72CVIceQSmg0nebGTv3a7bhd4QzKkDsSA3+t6gHjnuKlTlDFLA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.2.tgz#8553c085f087c83cadf0f25a80660db2236387f5"
integrity sha512-im0T2Uah4QkqWOBqiu1fpm6SvV9Id5pV3qup3AFFKRcwhH9rvGGPjpSqq+Fh0sG23P1BSHw/lEedYwAPfxcR0w==
"@abp/select2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.3.tgz#deb8332bfce2102a562004893321a48d5194bf53"
integrity sha512-rb0qElmmhiP09xX8ZbjzNLF6ygFBwErysGWt6Bbgzz5waX2sGe575Cgoz53FaMQ4JaRBg1N0/nCejKyDtiINRA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
select2 "^4.0.13"
"@abp/sweetalert2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.2.tgz#1e0603c7edefe72e32a11b96fc0f5095e9273f12"
integrity sha512-BsiCrj32DQjMBgx9L5FOBDK2xx4x97oEqx5qUAt5lYPtxzIpFUAdn2U3h8WUQfDKRFquQLJxJ993dZai4GfYQg==
"@abp/sweetalert2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.3.tgz#e61fc6c1bed1316c1d44ca5c92f590e422db24d4"
integrity sha512-+SNpBb4XrQlWzRQK9lfdJqA9IfJrlgoqmHwPDgf3Q+P922MzO33TgDlZWbeE7MzVj2y2WmNsPuCKwhjSjSL2rw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
sweetalert2 "^11.3.6"
"@abp/timeago@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.2.tgz#21d67d3fa54b930fdf2c6ae7ed1c182ce16f0c0a"
integrity sha512-oOcW0m2xlsDTw6MjJ+4WbN7y4Le3S1H1IRvU+64i5O3fj5WNBpAKxNEO0X0HLD6JJwlr1tzvE2uWqzoRWO9JXg==
"@abp/timeago@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.3.tgz#0ef8c4801bfd4623e6895b1d047b1437063bda53"
integrity sha512-P3YRDVKjR5/Fz+cXiPg3IiUr7XGbNh7mgmJ1ywRXmKVmVMJmhQ2RsKmmtkGJn4TfVHu/l5iJXe4rqgL21/yX/g==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
timeago "^1.6.7"
"@abp/toastr@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.2.tgz#3523b22b6bf473025b2b731eae59491997f2fbe2"
integrity sha512-StjNgLQNttZwm4L8vOOM/pclgMrmYTs1igmXnBXbYqMcE2Q7QfhZeOYwPvWrm0WlVC4pfR9l3ejYYcZljukqEA==
"@abp/toastr@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.3.tgz#6010d4247937531ebf7c8659d6254cd3db6c4855"
integrity sha512-sC9eCzYVgDrLSFIhJGe9hshzfwA1BkZNah4NQhyq+V6HQ8YF7goMS79N+/XmSoLQ9zzRhusqnPFnb+4FHjr7iA==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
toastr "^2.1.4"
"@abp/utils@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.2.tgz#f93d7bcccc35335df5c14be10dc23bd7472868c8"
integrity sha512-6YdeptFQR1vZzLVKVjHmGQ+R+pK0iBiZdL7A3GkaC+ad5b+adybf8MJPyrbob96xV77/CEuXFUG88URed1B5Fw==
"@abp/utils@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.3.tgz#6d3515694314175218606e9518618ce335b4b360"
integrity sha512-K2geJ9P1ztk4Ehzb9YG3CqqLOi+z8/4iBLUzooNZLQqS+KdlUhCmqfuCoI/A5Aq9DGbTYesalp+Fwoh3S2Dl8A==
dependencies:
just-compare "^1.3.0"

@ -3,7 +3,7 @@
"name": "my-app",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "^6.0.0-rc.2",
"@abp/cms-kit": "6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.basic": "^6.0.0-rc.3",
"@abp/cms-kit": "6.0.0-rc.3"
}
}

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.2.tgz#0a80531a46e08719ef90b4f9013b8bb5ec2fe2f0"
integrity sha512-uktT9FXlDzJ0HGleYCnvUhSMgkSHiwrjVnztbx6zRvrhNsq/UNWPhYoGti8He9tQO1dLi2cRq1aTawtMIjgVow==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.2.tgz#a7a69d3bb4aa09809b3362a045c1adba5b04d17c"
integrity sha512-sszTiRfJxy6EQ2C2xe3GwrfaVfZgSw8xOZcIFScBvW0fDMAfJCTJA+HMcaBTsng9EqHfc7622mWaPlWCD5ImEg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.2"
"@abp/bootstrap" "~6.0.0-rc.2"
"@abp/bootstrap-datepicker" "~6.0.0-rc.2"
"@abp/datatables.net-bs5" "~6.0.0-rc.2"
"@abp/font-awesome" "~6.0.0-rc.2"
"@abp/jquery-form" "~6.0.0-rc.2"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.2"
"@abp/lodash" "~6.0.0-rc.2"
"@abp/luxon" "~6.0.0-rc.2"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.2"
"@abp/select2" "~6.0.0-rc.2"
"@abp/sweetalert2" "~6.0.0-rc.2"
"@abp/timeago" "~6.0.0-rc.2"
"@abp/toastr" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.2.tgz#14d5da45b01af77caab45b01a43f07db6a5425f3"
integrity sha512-AIXP1FP/VvBGRzoslTRTnD4I1oei4Ufh5qVWKG+PwmrFJ6/XoarNV6FCKLePm7NETd1VSrq20uPCrfuZx2WKQg==
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.3.tgz#b95266387e562c635de795442f90470f8e9e6318"
integrity sha512-vVkEpotDST455E3rynvRQpBKPcNNJ2m1wLkz/B9dQNdUjvm8L4F6s0ls0XFlKUNvQfCVfedkRtGayuvNje/Oxg==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.3.tgz#664ca2ee712b7d9e66103c00beb41eb9648a6075"
integrity sha512-KxCsGuoUWKaDo7Oo9aKp51pli2m0DZ2tG8m+zK+m4M9U7g96uC+DOFy3gc7MdPlszvrw32Wwm7I0AughstByNA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.3"
"@abp/bootstrap" "~6.0.0-rc.3"
"@abp/bootstrap-datepicker" "~6.0.0-rc.3"
"@abp/datatables.net-bs5" "~6.0.0-rc.3"
"@abp/font-awesome" "~6.0.0-rc.3"
"@abp/jquery-form" "~6.0.0-rc.3"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.3"
"@abp/lodash" "~6.0.0-rc.3"
"@abp/luxon" "~6.0.0-rc.3"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.3"
"@abp/select2" "~6.0.0-rc.3"
"@abp/sweetalert2" "~6.0.0-rc.3"
"@abp/timeago" "~6.0.0-rc.3"
"@abp/toastr" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.3.tgz#47c23b57ed3908bd78a232230e53d1f3cba2de41"
integrity sha512-7eJZy2JUGQP94Tz3JJWXRHRmDfTcPZ/lS1/VNbU8B4qvgl5ChIXklVEJLR1fwrBhKXZV8fGVmqT1XlGTGFvFJA==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,243 +41,243 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
"@abp/bootstrap-datepicker@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.2.tgz#74785434be987d4579dcf66b52752d23d3dcc928"
integrity sha512-BvJEChBRwf7vuXap1s/hOi3PrlWkZYtpnZLKNjNpEfLLHa3LPrSLn9GAfVLS92/qxeB+S6Vk49HiwcOtuIeEOA==
"@abp/bootstrap-datepicker@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.3.tgz#89198b863dbfccf5f07ac3c4b20ce6199adcb17a"
integrity sha512-NLoUjcR66mqwSWuVftu2yFH4/j6QP+FiElRfZQ9OYmO8DQx2Ue5UZzjrFTrZ1DBBCfzhr2Bffj80dirGvGDyvg==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.2.tgz#ef9e6fb40eb884dd69581bfd08a2523f274cbab8"
integrity sha512-cf1ttQV6gQX0UNoWIKxaJ7tk8dJAQ79WhklsuDWROl0KtkjQ/oCi14363YvWezMQe82xnps1m4ViX87JqNIM4w==
"@abp/bootstrap@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.3.tgz#4574bf574cc3484869e8ff8bc592f6212d20a969"
integrity sha512-Q5v7WRkGhGcjRg267HXtqs1oU7ts9UXPyCXmg5y2y5qMOyioD+m4MKV4iv67DgoQjabudp8X2egTKxkej6Lzkw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
bootstrap "^5.1.3"
"@abp/clipboard@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-6.0.0-rc.2.tgz#99f54676d61fb8b83447b453f69f2c8fedfc07ad"
integrity sha512-oNQ7i8lR0d74t/Hoqt6EgK1dgXfH44TmOuovqyegpqeOXlMPZJVeZ0Kkp2DTV6WgGQeR8rTMFWJyBvGfVFMQdA==
"@abp/clipboard@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-6.0.0-rc.3.tgz#ee3a586b491d89442eefff08aaebbf9d38cb46d4"
integrity sha512-01svpp3mR29z1FTM+2Qe+MUNLPbl95bWlOXY5zz2hvNSbdD45lGud+BiOHfeZwlDk5jjr3FqLel+hxx2ByBvOA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
clipboard "^2.0.8"
"@abp/cms-kit.admin@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-6.0.0-rc.2.tgz#a86da327b1e93068a19976446cd04620a4d7d595"
integrity sha512-/nefUgMno7pndjm3BHy0gMpe8172OobPdz1V1FKnjE5ZX+0aLI4KK1acrIAg9rxbJE19i92GpU+gQjr05CtyfA==
"@abp/cms-kit.admin@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/cms-kit.admin/-/cms-kit.admin-6.0.0-rc.3.tgz#2e1b05e88846971e73977736635b4fd1c235a092"
integrity sha512-ClVNcpKpOrZSUf0TuEx175ucK3IIxgH7GdqJpGkirqjCxVKyeGWhwyWB1JRCkXfHdE5XUxNJaYitrhQoNuZklw==
dependencies:
"@abp/codemirror" "~6.0.0-rc.2"
"@abp/jstree" "~6.0.0-rc.2"
"@abp/slugify" "~6.0.0-rc.2"
"@abp/tui-editor" "~6.0.0-rc.2"
"@abp/uppy" "~6.0.0-rc.2"
"@abp/codemirror" "~6.0.0-rc.3"
"@abp/jstree" "~6.0.0-rc.3"
"@abp/slugify" "~6.0.0-rc.3"
"@abp/tui-editor" "~6.0.0-rc.3"
"@abp/uppy" "~6.0.0-rc.3"
"@abp/cms-kit.public@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-6.0.0-rc.2.tgz#df28c125658dbfcb9ac21ec4064a32de9c128cfd"
integrity sha512-ata7z2O1VXI8vmxMgS1Px3i/gxfOgAX407u9bbTpwvfy9koJIzVWcz0PsGHCxUJfxc/12TKqojUpiibk/ngjug==
"@abp/cms-kit.public@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/cms-kit.public/-/cms-kit.public-6.0.0-rc.3.tgz#18c3e18d094a0c5d6fafb7865f27bfba49bdc420"
integrity sha512-6Pg1Y2UGwsBLLHe37MMerxSg0n8Qa3CLJoyGJndPmRpxfX14Vu465efSPjxENJrhnoU1FEe9xaNssJ9Lb+JdjA==
dependencies:
"@abp/highlight.js" "~6.0.0-rc.2"
"@abp/star-rating-svg" "~6.0.0-rc.2"
"@abp/highlight.js" "~6.0.0-rc.3"
"@abp/star-rating-svg" "~6.0.0-rc.3"
"@abp/cms-kit@6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-6.0.0-rc.2.tgz#3d5c0fd0ccb51e56afb0313c007f1eb1ce6e3694"
integrity sha512-s61/GbbTMWzJ8HTzxmZaI6zWogw6h7eMcqb3Y44vaul0B8bn0YBXcAmdLZExch4vBCAlTRLQlWYgRlO9sLQiKQ==
"@abp/cms-kit@6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/cms-kit/-/cms-kit-6.0.0-rc.3.tgz#3e8883553b57f6daf025cb6fa595984a2f6d0be0"
integrity sha512-WiZrpuNhmh/ei8e6HFneBIH99rFdIE2cCGhFBY9WY+Ne3SzcUGYUjJ8DN4x63OS5P2AtxVDhckIznYZWpAw+kQ==
dependencies:
"@abp/cms-kit.admin" "~6.0.0-rc.2"
"@abp/cms-kit.public" "~6.0.0-rc.2"
"@abp/cms-kit.admin" "~6.0.0-rc.3"
"@abp/cms-kit.public" "~6.0.0-rc.3"
"@abp/codemirror@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-6.0.0-rc.2.tgz#5421ff718e85c434b739bf13d40c19c1f94c4f41"
integrity sha512-/yX2qmI2CFvgODIkfbNDi7fv/Fte98WXZLrjiu3HVPTTlSls3kE9Z0ZcOJ8o52oWe66nXRsrLifZNimRpoCo7w==
"@abp/codemirror@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/codemirror/-/codemirror-6.0.0-rc.3.tgz#3624229745308b14fc95b19cf99a7771945d458e"
integrity sha512-FqqYAKFzLCtcRri33YhMcVNuM2zHpV2Qvcu1DTWPL+kdeiw5tPi/Nm9qB0D0aRfefJNkcVLDvP64pnLnVLLWMA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
codemirror "^5.65.1"
"@abp/core@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.2.tgz#6339637a278fc19e10d468aba118e2384a8310af"
integrity sha512-2t7rhjpRvByoAnkdSVEdN4ZVotHSRanv9fZRqK6yOQpHEZ4LDgByKi+eNdc3kiT0+VU3mHxMgq+FO+pxaBHSAA==
"@abp/core@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.3.tgz#5662ce813d449d97d9fb7ea2552b2774c8df7825"
integrity sha512-X/VRdk5SGNYc5gQzPcBEPAvwcuD9WXsI4YIdrqjnes0s8u2/XmfrTixojh8Y5EYUoOblEE3Soj5hBhY1cVwcbQ==
dependencies:
"@abp/utils" "~6.0.0-rc.2"
"@abp/utils" "~6.0.0-rc.3"
"@abp/datatables.net-bs5@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.2.tgz#76ab55e97bc4d25f8bbfc6564f5e61f8404ab52c"
integrity sha512-Wdt22BSDqFvrZb5x2gcH8JG4jJ0++pN7M+t3jqSM3f9IZMOWHZ5GsUegUt+j60Cvqw7ItjP/BmBySQtmh3WbOg==
"@abp/datatables.net-bs5@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.3.tgz#22865c7e621de720b71af6265b3193f6c78695bd"
integrity sha512-T+mhLc6uSzWmxDQogVwnJ6VxI4845gmF68/i9TmVKNlCtpa3EEfyuF/hgWT1hYfCb4XOsvd/CWrunbkC3fsmtg==
dependencies:
"@abp/datatables.net" "~6.0.0-rc.2"
"@abp/datatables.net" "~6.0.0-rc.3"
datatables.net-bs5 "^1.11.4"
"@abp/datatables.net@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.2.tgz#4364d099f2fc1f647fe40eb5cace2fe8c13281dd"
integrity sha512-exHwF0pmJnT83d2X3NcHFewT8ZyK1TWfwNNBVn+j3jwcm4/5KT9a308CAahV9hTz/Z6ZsjRdCRwdv0eU5VHPkQ==
"@abp/datatables.net@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.3.tgz#d036defe6ad7fc989dffa020ae579362ee3150d1"
integrity sha512-4cUU8/Tn0Vz9bx7jjMOD/0Viyr29fcwoQAAkxaaYZp6qiQbENgz46/xpQf2oBCoudk8CLdzpmNa7jWte7PcJJw==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
datatables.net "^1.11.4"
"@abp/font-awesome@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.2.tgz#bc522149abafb82935094c8fcd72a8201f98a315"
integrity sha512-sPA9urlcUl2868zmABa7X1rA6aPYkihVEt1h/XSSYpjL/hu7I1RtDDEJ2k6GFjgd2AZ+8xKRkI4bpOE5HKtbsg==
"@abp/font-awesome@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.3.tgz#803569d1a7e25f8a1c2be018312449c23fb78217"
integrity sha512-lYdh38UCTSkzzw0B/mpPEo7iFXzSKHCNbBOIHe6dd6O/Qli7wYukTtUOFn5Sh+yoydLY1as92HtiGL1ckSdu1g==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
"@fortawesome/fontawesome-free" "^5.15.4"
"@abp/highlight.js@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-6.0.0-rc.2.tgz#89bafe48e1cfdb3dd7369fbd02068ec8c8329950"
integrity sha512-ORBYfLWmV+L/Yegh8Q6WNIWUPuU+7SXUgCUh3uaUXp4eZ1lrsZpzq2J2bA3nyyk+CpjfYxpiOW5wxE/6dAe/Zg==
"@abp/highlight.js@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/highlight.js/-/highlight.js-6.0.0-rc.3.tgz#e7aa8388afb57a1574f2645a7f786000b553562d"
integrity sha512-q0WhsovYfYrlNvIJyyXShXSTaY9cXNMEJbwJmmlQMVSyHUUPMfOf3w4ofBEC92U0mgzeIi7TMx9vJlm9qjSVJA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
"@highlightjs/cdn-assets" "~11.4.0"
"@abp/jquery-form@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.2.tgz#cfeb8a300d2c350854689481c15404c37dfcb428"
integrity sha512-Okl0z6MibakfSH4Mzq2fDA0kj97tWSDpVcJLN+K5CkROhob2ZpkBiAysY7hqEMItAMruDa2SsrANxW65r4mi4Q==
"@abp/jquery-form@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.3.tgz#4ec503c07e2194148c3a7e7cf7ddef2871679e6a"
integrity sha512-Q3uEpflntqrSkYakcdsBnnYYfxJWXD/CDjMiwjbb6gIc8s4qkbIYxVxvYvlEezoIDYQkMSXOn7BS4clWsesiJg==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.2.tgz#a66677d87e3214086483853845c1bb609bbb4f3b"
integrity sha512-ymGMzH/kwfcvw749znmiE4I4jesJScEZu2LR1IrFcJUV9s4ThJEgSGnyjUAXZrt2jNSuWTUCXp4dI0PSm5iU3Q==
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.3.tgz#01da2a59663d373ff1c69022f4c9c66ad0b29403"
integrity sha512-ij1ML2D9rYF3pJthWO6mGQajsJhbDCtOoBvnh9yCZccuwOYkXP22PqfUxjjxtqL4HqFI31KRpFg0ANMGSzEEBg==
dependencies:
"@abp/jquery-validation" "~6.0.0-rc.2"
"@abp/jquery-validation" "~6.0.0-rc.3"
jquery-validation-unobtrusive "^3.2.12"
"@abp/jquery-validation@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.2.tgz#bcc7fbfbac2bc8e7efc94177e1a1a405d18ac387"
integrity sha512-RIeNdhDDa7fQunE9BnBxcdicQpcpcn/l7Rl6q8IuA18PN4z4DueXt3A6Qzl9zPl931yXzs7v28iW7j81/4Xpyw==
"@abp/jquery-validation@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.3.tgz#724aea9572dcb2faccf8c6355332b0b2a4df9260"
integrity sha512-rTK5oHaMtycvWxunNwzbE/MbsXXIr6qDnOY3rVUmjTHjqUOHYz591t/XeQfjnSXPp4k/SZUjG6viTC3J2jzC1A==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-validation "^1.19.3"
"@abp/jquery@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.2.tgz#6d641604a1687d2e8e3220171329960b7e40a315"
integrity sha512-FMCdtl3nPZDaTGZ7aKHzOYIzzYQvhDrdTm0bKD+5nKv70sL8TRQV16hzcARGFoA/9PoBLBfnVPcSYSEN/nL5Dw==
"@abp/jquery@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.3.tgz#ba19cc8b802c46490277939e6c674811127d8016"
integrity sha512-MbD38iInyag7/j5k42cvMT4jLZMtXH4lUK0rjvqUDVaxKEks46Ix/90uczQ9XajYONgx0CJKFj2urgM830+CCA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
jquery "~3.6.0"
"@abp/jstree@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-6.0.0-rc.2.tgz#f6bd2b79ef12f778dec501b7f5f72e5e2f680479"
integrity sha512-OfeQBg8ApJs01bredzHeVhKjuZ32gMs6f2CxiwpMo2NO3KkcobjRonpQQL8tKOz7/IzMyUCce3q9bc1AjYaghw==
"@abp/jstree@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jstree/-/jstree-6.0.0-rc.3.tgz#b43b83d0b4904daf3f16df6465b26ce38348a62b"
integrity sha512-0N+U/pBWyTg634h2Hfq44ECKvGB2Sryp/JNJAbqbAsIagiaA67xcC2Gj5C/NbNKkPCTTjhC6nh4wNvZX7A+x1Q==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jstree "^3.3.12"
"@abp/lodash@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.2.tgz#939d667bc96a268344df16e12e458ae376ae0154"
integrity sha512-Q2+rVGolS+00Zsww/qTo+k2oqAIDzAVZCAaamgTCJ8mliho7wFvW8LWFwII3so/nKWiTb8Gwf7bW0nMKeCnvuw==
"@abp/lodash@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.3.tgz#8a5bab02353e5cab4ca06ab82f6dbe6285faa95a"
integrity sha512-c8yhcapzPsXyeiFjeOC+2a4bn5wFjW5gUoN+p/p+tE+FIcH37yEgyw/tAr6aZPCmR770MqQXct4t7S4Czbbk+A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
lodash "^4.17.21"
"@abp/luxon@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.2.tgz#7703887dcdee26cb1e972386ea295b879e3c51f6"
integrity sha512-ckGfUo7ZD19LjKmrKneYQSO8Mjp5rh4sM/587MdTtc0ZA3nyqX98DtE0nkm8MegTvoVUGYBKWhhIlqTb6VpI4w==
"@abp/luxon@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.3.tgz#ba515e122c61918d481467d5be39f08a363822f6"
integrity sha512-2lRSSC0DYShlnKdbJ/Pmha/azjt09ZRPx57NQ01dc7ungChPry5EJL6pC3kXWnJrCkrPCF0V5+A3+taut9+l3A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
luxon "^2.3.0"
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.2.tgz#22af6c68067671714abdb52537487cd5cc73af43"
integrity sha512-rz3herKYP2KccHSUHpbkF1adfaECSR7TDOkOeFghpM/t5TCv/fs9uSroeteKyCMufWmYswY/1Yi4doYEQWcdfA==
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.3.tgz#0798e37ec6a852748118692a5fbd30c99d9745db"
integrity sha512-FlyShmRxG3wGk1OJCjHIZAdi2/Y2FJPkVxaE72CVIceQSmg0nebGTv3a7bhd4QzKkDsSA3+t6gHjnuKlTlDFLA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/prismjs@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-6.0.0-rc.2.tgz#5c200260038e1e7e7bcf627df840ec8d31efd255"
integrity sha512-zESjrel58EWNoreOvdYmpPLR3TpdPQEw7R8aGPgieTZSKxcM7aHYBa1vbN6czaIeD3RjwIBtaMVCOGhiPYSKug==
"@abp/prismjs@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-6.0.0-rc.3.tgz#e4faf595e29db81c5a66030e59b0e09f09759bfd"
integrity sha512-zzd3iw/Im0M9FUmTviwkTCr4slkoZJExtK+qB1FmLxRY59+hyU9wxd6hwzic/QwhXxFQoYILJ3S3FNxsPIm76A==
dependencies:
"@abp/clipboard" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.2"
"@abp/clipboard" "~6.0.0-rc.3"
"@abp/core" "~6.0.0-rc.3"
prismjs "^1.26.0"
"@abp/select2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.2.tgz#8553c085f087c83cadf0f25a80660db2236387f5"
integrity sha512-im0T2Uah4QkqWOBqiu1fpm6SvV9Id5pV3qup3AFFKRcwhH9rvGGPjpSqq+Fh0sG23P1BSHw/lEedYwAPfxcR0w==
"@abp/select2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.3.tgz#deb8332bfce2102a562004893321a48d5194bf53"
integrity sha512-rb0qElmmhiP09xX8ZbjzNLF6ygFBwErysGWt6Bbgzz5waX2sGe575Cgoz53FaMQ4JaRBg1N0/nCejKyDtiINRA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
select2 "^4.0.13"
"@abp/slugify@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-6.0.0-rc.2.tgz#3f02fca3fa7722475973c878a0baf3b419d11b55"
integrity sha512-qO2k5CEm4tYcmwGW8PiweiCzqMifVZQOqCac4re5K0pHvc3sToidOonK+GSWdeczKrVj9fa8hbUocJC/lPmnyA==
"@abp/slugify@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/slugify/-/slugify-6.0.0-rc.3.tgz#9ab27f563a6f89ba254240f4f0fe7c6a162bf0e8"
integrity sha512-V/lAX81CYe5DDGCv+xFiHuleOW/H/2ntXBByNDOqAFpK74vbEsxLTeCRpJ902intRDlnZFJb2G4khJNPQgb91w==
dependencies:
slugify "^1.6.5"
"@abp/star-rating-svg@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-6.0.0-rc.2.tgz#4ecc9fa40e82fdc176fe3962aebab6abeafce36a"
integrity sha512-Q8h54OctJLEOh/8wAU3FGLWdJ58lCoinrwfS0eW0w3PJ0D4vpJY/ul4L0YYeuSEgPlgqmmpkn+Tkvp2NNj+ZHQ==
"@abp/star-rating-svg@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/star-rating-svg/-/star-rating-svg-6.0.0-rc.3.tgz#81c6bdcf5161ca269de5b7162c4178d2bac2d877"
integrity sha512-o3ciRL2wID/TZflcAZybGMaXLs76Ed7a4LHmDuvPcN/VP92uUWB/baKcl2bVbYLq+xokyko+Ei2YtkqoysG7/A==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
star-rating-svg "^3.5.0"
"@abp/sweetalert2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.2.tgz#1e0603c7edefe72e32a11b96fc0f5095e9273f12"
integrity sha512-BsiCrj32DQjMBgx9L5FOBDK2xx4x97oEqx5qUAt5lYPtxzIpFUAdn2U3h8WUQfDKRFquQLJxJ993dZai4GfYQg==
"@abp/sweetalert2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.3.tgz#e61fc6c1bed1316c1d44ca5c92f590e422db24d4"
integrity sha512-+SNpBb4XrQlWzRQK9lfdJqA9IfJrlgoqmHwPDgf3Q+P922MzO33TgDlZWbeE7MzVj2y2WmNsPuCKwhjSjSL2rw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
sweetalert2 "^11.3.6"
"@abp/timeago@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.2.tgz#21d67d3fa54b930fdf2c6ae7ed1c182ce16f0c0a"
integrity sha512-oOcW0m2xlsDTw6MjJ+4WbN7y4Le3S1H1IRvU+64i5O3fj5WNBpAKxNEO0X0HLD6JJwlr1tzvE2uWqzoRWO9JXg==
"@abp/timeago@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.3.tgz#0ef8c4801bfd4623e6895b1d047b1437063bda53"
integrity sha512-P3YRDVKjR5/Fz+cXiPg3IiUr7XGbNh7mgmJ1ywRXmKVmVMJmhQ2RsKmmtkGJn4TfVHu/l5iJXe4rqgL21/yX/g==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
timeago "^1.6.7"
"@abp/toastr@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.2.tgz#3523b22b6bf473025b2b731eae59491997f2fbe2"
integrity sha512-StjNgLQNttZwm4L8vOOM/pclgMrmYTs1igmXnBXbYqMcE2Q7QfhZeOYwPvWrm0WlVC4pfR9l3ejYYcZljukqEA==
"@abp/toastr@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.3.tgz#6010d4247937531ebf7c8659d6254cd3db6c4855"
integrity sha512-sC9eCzYVgDrLSFIhJGe9hshzfwA1BkZNah4NQhyq+V6HQ8YF7goMS79N+/XmSoLQ9zzRhusqnPFnb+4FHjr7iA==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
toastr "^2.1.4"
"@abp/tui-editor@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-6.0.0-rc.2.tgz#019dbb34c60f61e46660c1e6eaf8065919ad86fa"
integrity sha512-C3CkyRcUa0SP4rVNtobfV4lNVFfFib+Lgz9YN+Dz1YvoIIokpfxZr1UX/MqObsNV5gWnAw49fFTowd5e7BFVBA==
"@abp/tui-editor@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/tui-editor/-/tui-editor-6.0.0-rc.3.tgz#7e913a80139af381d881f2b0205d4938ec6f6ca3"
integrity sha512-FC+gyHMn/FecAb8sVNFwf9FcJ035Lqm+LwiIXckS2VaSTbuKna0K/ADlOoSr1Ntwe5GWptZ93STIgSt1QJPdEw==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/prismjs" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
"@abp/prismjs" "~6.0.0-rc.3"
"@abp/uppy@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-6.0.0-rc.2.tgz#f2617885a86ae9e7b9aec181089914588092c13e"
integrity sha512-aLcl88yQ4trs0hKF7zxZ8csiT/pn6KfZ30btk5tNUvrJn1AaaD/MvqyaVuJnzkEfD+jZ37LK+my0Bbxcl0FC3g==
"@abp/uppy@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/uppy/-/uppy-6.0.0-rc.3.tgz#9b978aa86ef4721a4e7b534e92d717c6f594873d"
integrity sha512-RDj30BLUJIQYWUMsJOC6Px0Ez4qqMYBsodmp6SpnayI8V+PRLYBkHvRQGE4cgul9lpMMcAO87fohpL9w0oRm8w==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
uppy "^1.16.1"
"@abp/utils@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.2.tgz#f93d7bcccc35335df5c14be10dc23bd7472868c8"
integrity sha512-6YdeptFQR1vZzLVKVjHmGQ+R+pK0iBiZdL7A3GkaC+ad5b+adybf8MJPyrbob96xV77/CEuXFUG88URed1B5Fw==
"@abp/utils@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.3.tgz#6d3515694314175218606e9518618ce335b4b360"
integrity sha512-K2geJ9P1ztk4Ehzb9YG3CqqLOi+z8/4iBLUzooNZLQqS+KdlUhCmqfuCoI/A5Aq9DGbTYesalp+Fwoh3S2Dl8A==
dependencies:
just-compare "^1.3.0"

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

@ -2,45 +2,45 @@
# yarn lockfile v1
"@abp/anchor-js@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-6.0.0-rc.2.tgz#80b788c281581df92fc4e9821d9256478abf46d3"
integrity sha512-mn3ByjpU1SVm1jiB607l9C9T5xYxsTdylHqsS5+egzGuxEgF4dGF1SVJ6GubUh2isStHGpv7oKm2uhoFO02aow==
"@abp/anchor-js@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/anchor-js/-/anchor-js-6.0.0-rc.3.tgz#1f350b7cb1b73f5c5d07b7a64b5a184b11a62d25"
integrity sha512-1eQZPnANlQgrBqYCUKDXzytUw1MPKBakJnyRFIWknW7IBTMbRTZZFjdqscRV4JaXil3wfrYJJKaa2WWyD4nxbg==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
anchor-js "^4.3.1"
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.2.tgz#0a80531a46e08719ef90b4f9013b8bb5ec2fe2f0"
integrity sha512-uktT9FXlDzJ0HGleYCnvUhSMgkSHiwrjVnztbx6zRvrhNsq/UNWPhYoGti8He9tQO1dLi2cRq1aTawtMIjgVow==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.2.tgz#a7a69d3bb4aa09809b3362a045c1adba5b04d17c"
integrity sha512-sszTiRfJxy6EQ2C2xe3GwrfaVfZgSw8xOZcIFScBvW0fDMAfJCTJA+HMcaBTsng9EqHfc7622mWaPlWCD5ImEg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.2"
"@abp/bootstrap" "~6.0.0-rc.2"
"@abp/bootstrap-datepicker" "~6.0.0-rc.2"
"@abp/datatables.net-bs5" "~6.0.0-rc.2"
"@abp/font-awesome" "~6.0.0-rc.2"
"@abp/jquery-form" "~6.0.0-rc.2"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.2"
"@abp/lodash" "~6.0.0-rc.2"
"@abp/luxon" "~6.0.0-rc.2"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.2"
"@abp/select2" "~6.0.0-rc.2"
"@abp/sweetalert2" "~6.0.0-rc.2"
"@abp/timeago" "~6.0.0-rc.2"
"@abp/toastr" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.2.tgz#14d5da45b01af77caab45b01a43f07db6a5425f3"
integrity sha512-AIXP1FP/VvBGRzoslTRTnD4I1oei4Ufh5qVWKG+PwmrFJ6/XoarNV6FCKLePm7NETd1VSrq20uPCrfuZx2WKQg==
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.3.tgz#b95266387e562c635de795442f90470f8e9e6318"
integrity sha512-vVkEpotDST455E3rynvRQpBKPcNNJ2m1wLkz/B9dQNdUjvm8L4F6s0ls0XFlKUNvQfCVfedkRtGayuvNje/Oxg==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.3.tgz#664ca2ee712b7d9e66103c00beb41eb9648a6075"
integrity sha512-KxCsGuoUWKaDo7Oo9aKp51pli2m0DZ2tG8m+zK+m4M9U7g96uC+DOFy3gc7MdPlszvrw32Wwm7I0AughstByNA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.3"
"@abp/bootstrap" "~6.0.0-rc.3"
"@abp/bootstrap-datepicker" "~6.0.0-rc.3"
"@abp/datatables.net-bs5" "~6.0.0-rc.3"
"@abp/font-awesome" "~6.0.0-rc.3"
"@abp/jquery-form" "~6.0.0-rc.3"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.3"
"@abp/lodash" "~6.0.0-rc.3"
"@abp/luxon" "~6.0.0-rc.3"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.3"
"@abp/select2" "~6.0.0-rc.3"
"@abp/sweetalert2" "~6.0.0-rc.3"
"@abp/timeago" "~6.0.0-rc.3"
"@abp/toastr" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.3.tgz#47c23b57ed3908bd78a232230e53d1f3cba2de41"
integrity sha512-7eJZy2JUGQP94Tz3JJWXRHRmDfTcPZ/lS1/VNbU8B4qvgl5ChIXklVEJLR1fwrBhKXZV8fGVmqT1XlGTGFvFJA==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -49,180 +49,180 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
"@abp/bootstrap-datepicker@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.2.tgz#74785434be987d4579dcf66b52752d23d3dcc928"
integrity sha512-BvJEChBRwf7vuXap1s/hOi3PrlWkZYtpnZLKNjNpEfLLHa3LPrSLn9GAfVLS92/qxeB+S6Vk49HiwcOtuIeEOA==
"@abp/bootstrap-datepicker@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.3.tgz#89198b863dbfccf5f07ac3c4b20ce6199adcb17a"
integrity sha512-NLoUjcR66mqwSWuVftu2yFH4/j6QP+FiElRfZQ9OYmO8DQx2Ue5UZzjrFTrZ1DBBCfzhr2Bffj80dirGvGDyvg==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.2.tgz#ef9e6fb40eb884dd69581bfd08a2523f274cbab8"
integrity sha512-cf1ttQV6gQX0UNoWIKxaJ7tk8dJAQ79WhklsuDWROl0KtkjQ/oCi14363YvWezMQe82xnps1m4ViX87JqNIM4w==
"@abp/bootstrap@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.3.tgz#4574bf574cc3484869e8ff8bc592f6212d20a969"
integrity sha512-Q5v7WRkGhGcjRg267HXtqs1oU7ts9UXPyCXmg5y2y5qMOyioD+m4MKV4iv67DgoQjabudp8X2egTKxkej6Lzkw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
bootstrap "^5.1.3"
"@abp/clipboard@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-6.0.0-rc.2.tgz#99f54676d61fb8b83447b453f69f2c8fedfc07ad"
integrity sha512-oNQ7i8lR0d74t/Hoqt6EgK1dgXfH44TmOuovqyegpqeOXlMPZJVeZ0Kkp2DTV6WgGQeR8rTMFWJyBvGfVFMQdA==
"@abp/clipboard@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-6.0.0-rc.3.tgz#ee3a586b491d89442eefff08aaebbf9d38cb46d4"
integrity sha512-01svpp3mR29z1FTM+2Qe+MUNLPbl95bWlOXY5zz2hvNSbdD45lGud+BiOHfeZwlDk5jjr3FqLel+hxx2ByBvOA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
clipboard "^2.0.8"
"@abp/core@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.2.tgz#6339637a278fc19e10d468aba118e2384a8310af"
integrity sha512-2t7rhjpRvByoAnkdSVEdN4ZVotHSRanv9fZRqK6yOQpHEZ4LDgByKi+eNdc3kiT0+VU3mHxMgq+FO+pxaBHSAA==
"@abp/core@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.3.tgz#5662ce813d449d97d9fb7ea2552b2774c8df7825"
integrity sha512-X/VRdk5SGNYc5gQzPcBEPAvwcuD9WXsI4YIdrqjnes0s8u2/XmfrTixojh8Y5EYUoOblEE3Soj5hBhY1cVwcbQ==
dependencies:
"@abp/utils" "~6.0.0-rc.2"
"@abp/utils" "~6.0.0-rc.3"
"@abp/datatables.net-bs5@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.2.tgz#76ab55e97bc4d25f8bbfc6564f5e61f8404ab52c"
integrity sha512-Wdt22BSDqFvrZb5x2gcH8JG4jJ0++pN7M+t3jqSM3f9IZMOWHZ5GsUegUt+j60Cvqw7ItjP/BmBySQtmh3WbOg==
"@abp/datatables.net-bs5@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.3.tgz#22865c7e621de720b71af6265b3193f6c78695bd"
integrity sha512-T+mhLc6uSzWmxDQogVwnJ6VxI4845gmF68/i9TmVKNlCtpa3EEfyuF/hgWT1hYfCb4XOsvd/CWrunbkC3fsmtg==
dependencies:
"@abp/datatables.net" "~6.0.0-rc.2"
"@abp/datatables.net" "~6.0.0-rc.3"
datatables.net-bs5 "^1.11.4"
"@abp/datatables.net@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.2.tgz#4364d099f2fc1f647fe40eb5cace2fe8c13281dd"
integrity sha512-exHwF0pmJnT83d2X3NcHFewT8ZyK1TWfwNNBVn+j3jwcm4/5KT9a308CAahV9hTz/Z6ZsjRdCRwdv0eU5VHPkQ==
"@abp/datatables.net@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.3.tgz#d036defe6ad7fc989dffa020ae579362ee3150d1"
integrity sha512-4cUU8/Tn0Vz9bx7jjMOD/0Viyr29fcwoQAAkxaaYZp6qiQbENgz46/xpQf2oBCoudk8CLdzpmNa7jWte7PcJJw==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
datatables.net "^1.11.4"
"@abp/docs@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-6.0.0-rc.2.tgz#27b6519e9f902ef2a54eb011a4f4a2344ff1cd4a"
integrity sha512-Z2D2fD9y86+u72v6s2hkGR2RC+6/FW+lRHJwW8YwZLlC7bst7qqgYPAsMr2JrwIAmie/Zb6LTqMRGZVnnBeJXQ==
"@abp/docs@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/docs/-/docs-6.0.0-rc.3.tgz#3300578c2bdface9e7672e9093c2a387c11f482f"
integrity sha512-ymLh1jR6qGTB+4G5uttYvbiYWZ853GYLRkRbQ6VtcyBDnX+IpexsxPCtL9Ralp8YGDbxYIHnnRAC5TAvSHn16Q==
dependencies:
"@abp/anchor-js" "~6.0.0-rc.2"
"@abp/clipboard" "~6.0.0-rc.2"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.2"
"@abp/popper.js" "~6.0.0-rc.2"
"@abp/prismjs" "~6.0.0-rc.2"
"@abp/anchor-js" "~6.0.0-rc.3"
"@abp/clipboard" "~6.0.0-rc.3"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.3"
"@abp/popper.js" "~6.0.0-rc.3"
"@abp/prismjs" "~6.0.0-rc.3"
"@abp/font-awesome@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.2.tgz#bc522149abafb82935094c8fcd72a8201f98a315"
integrity sha512-sPA9urlcUl2868zmABa7X1rA6aPYkihVEt1h/XSSYpjL/hu7I1RtDDEJ2k6GFjgd2AZ+8xKRkI4bpOE5HKtbsg==
"@abp/font-awesome@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.3.tgz#803569d1a7e25f8a1c2be018312449c23fb78217"
integrity sha512-lYdh38UCTSkzzw0B/mpPEo7iFXzSKHCNbBOIHe6dd6O/Qli7wYukTtUOFn5Sh+yoydLY1as92HtiGL1ckSdu1g==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
"@fortawesome/fontawesome-free" "^5.15.4"
"@abp/jquery-form@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.2.tgz#cfeb8a300d2c350854689481c15404c37dfcb428"
integrity sha512-Okl0z6MibakfSH4Mzq2fDA0kj97tWSDpVcJLN+K5CkROhob2ZpkBiAysY7hqEMItAMruDa2SsrANxW65r4mi4Q==
"@abp/jquery-form@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.3.tgz#4ec503c07e2194148c3a7e7cf7ddef2871679e6a"
integrity sha512-Q3uEpflntqrSkYakcdsBnnYYfxJWXD/CDjMiwjbb6gIc8s4qkbIYxVxvYvlEezoIDYQkMSXOn7BS4clWsesiJg==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.2.tgz#a66677d87e3214086483853845c1bb609bbb4f3b"
integrity sha512-ymGMzH/kwfcvw749znmiE4I4jesJScEZu2LR1IrFcJUV9s4ThJEgSGnyjUAXZrt2jNSuWTUCXp4dI0PSm5iU3Q==
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.3.tgz#01da2a59663d373ff1c69022f4c9c66ad0b29403"
integrity sha512-ij1ML2D9rYF3pJthWO6mGQajsJhbDCtOoBvnh9yCZccuwOYkXP22PqfUxjjxtqL4HqFI31KRpFg0ANMGSzEEBg==
dependencies:
"@abp/jquery-validation" "~6.0.0-rc.2"
"@abp/jquery-validation" "~6.0.0-rc.3"
jquery-validation-unobtrusive "^3.2.12"
"@abp/jquery-validation@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.2.tgz#bcc7fbfbac2bc8e7efc94177e1a1a405d18ac387"
integrity sha512-RIeNdhDDa7fQunE9BnBxcdicQpcpcn/l7Rl6q8IuA18PN4z4DueXt3A6Qzl9zPl931yXzs7v28iW7j81/4Xpyw==
"@abp/jquery-validation@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.3.tgz#724aea9572dcb2faccf8c6355332b0b2a4df9260"
integrity sha512-rTK5oHaMtycvWxunNwzbE/MbsXXIr6qDnOY3rVUmjTHjqUOHYz591t/XeQfjnSXPp4k/SZUjG6viTC3J2jzC1A==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-validation "^1.19.3"
"@abp/jquery@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.2.tgz#6d641604a1687d2e8e3220171329960b7e40a315"
integrity sha512-FMCdtl3nPZDaTGZ7aKHzOYIzzYQvhDrdTm0bKD+5nKv70sL8TRQV16hzcARGFoA/9PoBLBfnVPcSYSEN/nL5Dw==
"@abp/jquery@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.3.tgz#ba19cc8b802c46490277939e6c674811127d8016"
integrity sha512-MbD38iInyag7/j5k42cvMT4jLZMtXH4lUK0rjvqUDVaxKEks46Ix/90uczQ9XajYONgx0CJKFj2urgM830+CCA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
jquery "~3.6.0"
"@abp/lodash@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.2.tgz#939d667bc96a268344df16e12e458ae376ae0154"
integrity sha512-Q2+rVGolS+00Zsww/qTo+k2oqAIDzAVZCAaamgTCJ8mliho7wFvW8LWFwII3so/nKWiTb8Gwf7bW0nMKeCnvuw==
"@abp/lodash@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.3.tgz#8a5bab02353e5cab4ca06ab82f6dbe6285faa95a"
integrity sha512-c8yhcapzPsXyeiFjeOC+2a4bn5wFjW5gUoN+p/p+tE+FIcH37yEgyw/tAr6aZPCmR770MqQXct4t7S4Czbbk+A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
lodash "^4.17.21"
"@abp/luxon@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.2.tgz#7703887dcdee26cb1e972386ea295b879e3c51f6"
integrity sha512-ckGfUo7ZD19LjKmrKneYQSO8Mjp5rh4sM/587MdTtc0ZA3nyqX98DtE0nkm8MegTvoVUGYBKWhhIlqTb6VpI4w==
"@abp/luxon@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.3.tgz#ba515e122c61918d481467d5be39f08a363822f6"
integrity sha512-2lRSSC0DYShlnKdbJ/Pmha/azjt09ZRPx57NQ01dc7ungChPry5EJL6pC3kXWnJrCkrPCF0V5+A3+taut9+l3A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
luxon "^2.3.0"
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.2.tgz#22af6c68067671714abdb52537487cd5cc73af43"
integrity sha512-rz3herKYP2KccHSUHpbkF1adfaECSR7TDOkOeFghpM/t5TCv/fs9uSroeteKyCMufWmYswY/1Yi4doYEQWcdfA==
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.3.tgz#0798e37ec6a852748118692a5fbd30c99d9745db"
integrity sha512-FlyShmRxG3wGk1OJCjHIZAdi2/Y2FJPkVxaE72CVIceQSmg0nebGTv3a7bhd4QzKkDsSA3+t6gHjnuKlTlDFLA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/popper.js@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-6.0.0-rc.2.tgz#9c05de9d662129ce99e518d6959b41976a898c0d"
integrity sha512-l4LlDPfu0nt2TzzGhKfTLyHe2lRsFTgY4hm0W3hdFteC6Sh5q+yw1Rlolb3HD7bIHYp92dRfV2hxgYvH06/COw==
"@abp/popper.js@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/popper.js/-/popper.js-6.0.0-rc.3.tgz#de55a85186f720e16607a3d2445885accb8c1527"
integrity sha512-YggzPKVWaERf5esSzAsa9Qi6+BCSfNPULkwXAPa3qoP/OtXuI6e+U12CzhTWrcFLp4Xv6Wq8Y+iNNSkVhj/n2w==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
"@popperjs/core" "^2.11.2"
"@abp/prismjs@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-6.0.0-rc.2.tgz#5c200260038e1e7e7bcf627df840ec8d31efd255"
integrity sha512-zESjrel58EWNoreOvdYmpPLR3TpdPQEw7R8aGPgieTZSKxcM7aHYBa1vbN6czaIeD3RjwIBtaMVCOGhiPYSKug==
"@abp/prismjs@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-6.0.0-rc.3.tgz#e4faf595e29db81c5a66030e59b0e09f09759bfd"
integrity sha512-zzd3iw/Im0M9FUmTviwkTCr4slkoZJExtK+qB1FmLxRY59+hyU9wxd6hwzic/QwhXxFQoYILJ3S3FNxsPIm76A==
dependencies:
"@abp/clipboard" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.2"
"@abp/clipboard" "~6.0.0-rc.3"
"@abp/core" "~6.0.0-rc.3"
prismjs "^1.26.0"
"@abp/select2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.2.tgz#8553c085f087c83cadf0f25a80660db2236387f5"
integrity sha512-im0T2Uah4QkqWOBqiu1fpm6SvV9Id5pV3qup3AFFKRcwhH9rvGGPjpSqq+Fh0sG23P1BSHw/lEedYwAPfxcR0w==
"@abp/select2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.3.tgz#deb8332bfce2102a562004893321a48d5194bf53"
integrity sha512-rb0qElmmhiP09xX8ZbjzNLF6ygFBwErysGWt6Bbgzz5waX2sGe575Cgoz53FaMQ4JaRBg1N0/nCejKyDtiINRA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
select2 "^4.0.13"
"@abp/sweetalert2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.2.tgz#1e0603c7edefe72e32a11b96fc0f5095e9273f12"
integrity sha512-BsiCrj32DQjMBgx9L5FOBDK2xx4x97oEqx5qUAt5lYPtxzIpFUAdn2U3h8WUQfDKRFquQLJxJ993dZai4GfYQg==
"@abp/sweetalert2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.3.tgz#e61fc6c1bed1316c1d44ca5c92f590e422db24d4"
integrity sha512-+SNpBb4XrQlWzRQK9lfdJqA9IfJrlgoqmHwPDgf3Q+P922MzO33TgDlZWbeE7MzVj2y2WmNsPuCKwhjSjSL2rw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
sweetalert2 "^11.3.6"
"@abp/timeago@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.2.tgz#21d67d3fa54b930fdf2c6ae7ed1c182ce16f0c0a"
integrity sha512-oOcW0m2xlsDTw6MjJ+4WbN7y4Le3S1H1IRvU+64i5O3fj5WNBpAKxNEO0X0HLD6JJwlr1tzvE2uWqzoRWO9JXg==
"@abp/timeago@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.3.tgz#0ef8c4801bfd4623e6895b1d047b1437063bda53"
integrity sha512-P3YRDVKjR5/Fz+cXiPg3IiUr7XGbNh7mgmJ1ywRXmKVmVMJmhQ2RsKmmtkGJn4TfVHu/l5iJXe4rqgL21/yX/g==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
timeago "^1.6.7"
"@abp/toastr@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.2.tgz#3523b22b6bf473025b2b731eae59491997f2fbe2"
integrity sha512-StjNgLQNttZwm4L8vOOM/pclgMrmYTs1igmXnBXbYqMcE2Q7QfhZeOYwPvWrm0WlVC4pfR9l3ejYYcZljukqEA==
"@abp/toastr@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.3.tgz#6010d4247937531ebf7c8659d6254cd3db6c4855"
integrity sha512-sC9eCzYVgDrLSFIhJGe9hshzfwA1BkZNah4NQhyq+V6HQ8YF7goMS79N+/XmSoLQ9zzRhusqnPFnb+4FHjr7iA==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
toastr "^2.1.4"
"@abp/utils@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.2.tgz#f93d7bcccc35335df5c14be10dc23bd7472868c8"
integrity sha512-6YdeptFQR1vZzLVKVjHmGQ+R+pK0iBiZdL7A3GkaC+ad5b+adybf8MJPyrbob96xV77/CEuXFUG88URed1B5Fw==
"@abp/utils@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.3.tgz#6d3515694314175218606e9518618ce335b4b360"
integrity sha512-K2geJ9P1ztk4Ehzb9YG3CqqLOi+z8/4iBLUzooNZLQqS+KdlUhCmqfuCoI/A5Aq9DGbTYesalp+Fwoh3S2Dl8A==
dependencies:
just-compare "^1.3.0"

@ -3,6 +3,6 @@
"name": "my-app",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.basic": "~6.0.0-rc.3"
}
}

@ -12,14 +12,14 @@
},
"private": true,
"dependencies": {
"@abp/ng.account": "~6.0.0-rc.2",
"@abp/ng.components": "~6.0.0-rc.2",
"@abp/ng.core": "~6.0.0-rc.2",
"@abp/ng.identity": "~6.0.0-rc.2",
"@abp/ng.setting-management": "~6.0.0-rc.2",
"@abp/ng.tenant-management": "~6.0.0-rc.2",
"@abp/ng.theme.basic": "~6.0.0-rc.2",
"@abp/ng.theme.shared": "~6.0.0-rc.2",
"@abp/ng.account": "~6.0.0-rc.3",
"@abp/ng.components": "~6.0.0-rc.3",
"@abp/ng.core": "~6.0.0-rc.3",
"@abp/ng.identity": "~6.0.0-rc.3",
"@abp/ng.setting-management": "~6.0.0-rc.3",
"@abp/ng.tenant-management": "~6.0.0-rc.3",
"@abp/ng.theme.basic": "~6.0.0-rc.3",
"@abp/ng.theme.shared": "~6.0.0-rc.3",
"@angular/animations": "~13.1.1",
"@angular/common": "~13.1.1",
"@angular/compiler": "~13.1.1",
@ -34,7 +34,7 @@
"zone.js": "~0.11.4"
},
"devDependencies": {
"@abp/ng.schematics": "~6.0.0-rc.2",
"@abp/ng.schematics": "~6.0.0-rc.3",
"@angular-devkit/build-angular": "~13.1.2",
"@angular-eslint/builder": "~13.0.1",
"@angular-eslint/eslint-plugin": "~13.0.1",

@ -6,5 +6,5 @@ public static class AbpOpenIddictDbProperties
public static string DbSchema { get; set; } = null;
public const string ConnectionStringName = "OpenIddict";
public const string ConnectionStringName = "AbpOpenIddict";
}

@ -3,6 +3,6 @@
"name": "demo-app",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "^6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.basic": "^6.0.0-rc.3"
}
}

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.2.tgz#0a80531a46e08719ef90b4f9013b8bb5ec2fe2f0"
integrity sha512-uktT9FXlDzJ0HGleYCnvUhSMgkSHiwrjVnztbx6zRvrhNsq/UNWPhYoGti8He9tQO1dLi2cRq1aTawtMIjgVow==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.2.tgz#a7a69d3bb4aa09809b3362a045c1adba5b04d17c"
integrity sha512-sszTiRfJxy6EQ2C2xe3GwrfaVfZgSw8xOZcIFScBvW0fDMAfJCTJA+HMcaBTsng9EqHfc7622mWaPlWCD5ImEg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.2"
"@abp/bootstrap" "~6.0.0-rc.2"
"@abp/bootstrap-datepicker" "~6.0.0-rc.2"
"@abp/datatables.net-bs5" "~6.0.0-rc.2"
"@abp/font-awesome" "~6.0.0-rc.2"
"@abp/jquery-form" "~6.0.0-rc.2"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.2"
"@abp/lodash" "~6.0.0-rc.2"
"@abp/luxon" "~6.0.0-rc.2"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.2"
"@abp/select2" "~6.0.0-rc.2"
"@abp/sweetalert2" "~6.0.0-rc.2"
"@abp/timeago" "~6.0.0-rc.2"
"@abp/toastr" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.2.tgz#14d5da45b01af77caab45b01a43f07db6a5425f3"
integrity sha512-AIXP1FP/VvBGRzoslTRTnD4I1oei4Ufh5qVWKG+PwmrFJ6/XoarNV6FCKLePm7NETd1VSrq20uPCrfuZx2WKQg==
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.3.tgz#b95266387e562c635de795442f90470f8e9e6318"
integrity sha512-vVkEpotDST455E3rynvRQpBKPcNNJ2m1wLkz/B9dQNdUjvm8L4F6s0ls0XFlKUNvQfCVfedkRtGayuvNje/Oxg==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.3.tgz#664ca2ee712b7d9e66103c00beb41eb9648a6075"
integrity sha512-KxCsGuoUWKaDo7Oo9aKp51pli2m0DZ2tG8m+zK+m4M9U7g96uC+DOFy3gc7MdPlszvrw32Wwm7I0AughstByNA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.3"
"@abp/bootstrap" "~6.0.0-rc.3"
"@abp/bootstrap-datepicker" "~6.0.0-rc.3"
"@abp/datatables.net-bs5" "~6.0.0-rc.3"
"@abp/font-awesome" "~6.0.0-rc.3"
"@abp/jquery-form" "~6.0.0-rc.3"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.3"
"@abp/lodash" "~6.0.0-rc.3"
"@abp/luxon" "~6.0.0-rc.3"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.3"
"@abp/select2" "~6.0.0-rc.3"
"@abp/sweetalert2" "~6.0.0-rc.3"
"@abp/timeago" "~6.0.0-rc.3"
"@abp/toastr" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.3.tgz#47c23b57ed3908bd78a232230e53d1f3cba2de41"
integrity sha512-7eJZy2JUGQP94Tz3JJWXRHRmDfTcPZ/lS1/VNbU8B4qvgl5ChIXklVEJLR1fwrBhKXZV8fGVmqT1XlGTGFvFJA==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,144 +41,144 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
"@abp/bootstrap-datepicker@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.2.tgz#74785434be987d4579dcf66b52752d23d3dcc928"
integrity sha512-BvJEChBRwf7vuXap1s/hOi3PrlWkZYtpnZLKNjNpEfLLHa3LPrSLn9GAfVLS92/qxeB+S6Vk49HiwcOtuIeEOA==
"@abp/bootstrap-datepicker@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.3.tgz#89198b863dbfccf5f07ac3c4b20ce6199adcb17a"
integrity sha512-NLoUjcR66mqwSWuVftu2yFH4/j6QP+FiElRfZQ9OYmO8DQx2Ue5UZzjrFTrZ1DBBCfzhr2Bffj80dirGvGDyvg==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.2.tgz#ef9e6fb40eb884dd69581bfd08a2523f274cbab8"
integrity sha512-cf1ttQV6gQX0UNoWIKxaJ7tk8dJAQ79WhklsuDWROl0KtkjQ/oCi14363YvWezMQe82xnps1m4ViX87JqNIM4w==
"@abp/bootstrap@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.3.tgz#4574bf574cc3484869e8ff8bc592f6212d20a969"
integrity sha512-Q5v7WRkGhGcjRg267HXtqs1oU7ts9UXPyCXmg5y2y5qMOyioD+m4MKV4iv67DgoQjabudp8X2egTKxkej6Lzkw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
bootstrap "^5.1.3"
"@abp/core@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.2.tgz#6339637a278fc19e10d468aba118e2384a8310af"
integrity sha512-2t7rhjpRvByoAnkdSVEdN4ZVotHSRanv9fZRqK6yOQpHEZ4LDgByKi+eNdc3kiT0+VU3mHxMgq+FO+pxaBHSAA==
"@abp/core@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.3.tgz#5662ce813d449d97d9fb7ea2552b2774c8df7825"
integrity sha512-X/VRdk5SGNYc5gQzPcBEPAvwcuD9WXsI4YIdrqjnes0s8u2/XmfrTixojh8Y5EYUoOblEE3Soj5hBhY1cVwcbQ==
dependencies:
"@abp/utils" "~6.0.0-rc.2"
"@abp/utils" "~6.0.0-rc.3"
"@abp/datatables.net-bs5@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.2.tgz#76ab55e97bc4d25f8bbfc6564f5e61f8404ab52c"
integrity sha512-Wdt22BSDqFvrZb5x2gcH8JG4jJ0++pN7M+t3jqSM3f9IZMOWHZ5GsUegUt+j60Cvqw7ItjP/BmBySQtmh3WbOg==
"@abp/datatables.net-bs5@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.3.tgz#22865c7e621de720b71af6265b3193f6c78695bd"
integrity sha512-T+mhLc6uSzWmxDQogVwnJ6VxI4845gmF68/i9TmVKNlCtpa3EEfyuF/hgWT1hYfCb4XOsvd/CWrunbkC3fsmtg==
dependencies:
"@abp/datatables.net" "~6.0.0-rc.2"
"@abp/datatables.net" "~6.0.0-rc.3"
datatables.net-bs5 "^1.11.4"
"@abp/datatables.net@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.2.tgz#4364d099f2fc1f647fe40eb5cace2fe8c13281dd"
integrity sha512-exHwF0pmJnT83d2X3NcHFewT8ZyK1TWfwNNBVn+j3jwcm4/5KT9a308CAahV9hTz/Z6ZsjRdCRwdv0eU5VHPkQ==
"@abp/datatables.net@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.3.tgz#d036defe6ad7fc989dffa020ae579362ee3150d1"
integrity sha512-4cUU8/Tn0Vz9bx7jjMOD/0Viyr29fcwoQAAkxaaYZp6qiQbENgz46/xpQf2oBCoudk8CLdzpmNa7jWte7PcJJw==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
datatables.net "^1.11.4"
"@abp/font-awesome@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.2.tgz#bc522149abafb82935094c8fcd72a8201f98a315"
integrity sha512-sPA9urlcUl2868zmABa7X1rA6aPYkihVEt1h/XSSYpjL/hu7I1RtDDEJ2k6GFjgd2AZ+8xKRkI4bpOE5HKtbsg==
"@abp/font-awesome@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.3.tgz#803569d1a7e25f8a1c2be018312449c23fb78217"
integrity sha512-lYdh38UCTSkzzw0B/mpPEo7iFXzSKHCNbBOIHe6dd6O/Qli7wYukTtUOFn5Sh+yoydLY1as92HtiGL1ckSdu1g==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
"@fortawesome/fontawesome-free" "^5.15.4"
"@abp/jquery-form@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.2.tgz#cfeb8a300d2c350854689481c15404c37dfcb428"
integrity sha512-Okl0z6MibakfSH4Mzq2fDA0kj97tWSDpVcJLN+K5CkROhob2ZpkBiAysY7hqEMItAMruDa2SsrANxW65r4mi4Q==
"@abp/jquery-form@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.3.tgz#4ec503c07e2194148c3a7e7cf7ddef2871679e6a"
integrity sha512-Q3uEpflntqrSkYakcdsBnnYYfxJWXD/CDjMiwjbb6gIc8s4qkbIYxVxvYvlEezoIDYQkMSXOn7BS4clWsesiJg==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.2.tgz#a66677d87e3214086483853845c1bb609bbb4f3b"
integrity sha512-ymGMzH/kwfcvw749znmiE4I4jesJScEZu2LR1IrFcJUV9s4ThJEgSGnyjUAXZrt2jNSuWTUCXp4dI0PSm5iU3Q==
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.3.tgz#01da2a59663d373ff1c69022f4c9c66ad0b29403"
integrity sha512-ij1ML2D9rYF3pJthWO6mGQajsJhbDCtOoBvnh9yCZccuwOYkXP22PqfUxjjxtqL4HqFI31KRpFg0ANMGSzEEBg==
dependencies:
"@abp/jquery-validation" "~6.0.0-rc.2"
"@abp/jquery-validation" "~6.0.0-rc.3"
jquery-validation-unobtrusive "^3.2.12"
"@abp/jquery-validation@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.2.tgz#bcc7fbfbac2bc8e7efc94177e1a1a405d18ac387"
integrity sha512-RIeNdhDDa7fQunE9BnBxcdicQpcpcn/l7Rl6q8IuA18PN4z4DueXt3A6Qzl9zPl931yXzs7v28iW7j81/4Xpyw==
"@abp/jquery-validation@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.3.tgz#724aea9572dcb2faccf8c6355332b0b2a4df9260"
integrity sha512-rTK5oHaMtycvWxunNwzbE/MbsXXIr6qDnOY3rVUmjTHjqUOHYz591t/XeQfjnSXPp4k/SZUjG6viTC3J2jzC1A==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-validation "^1.19.3"
"@abp/jquery@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.2.tgz#6d641604a1687d2e8e3220171329960b7e40a315"
integrity sha512-FMCdtl3nPZDaTGZ7aKHzOYIzzYQvhDrdTm0bKD+5nKv70sL8TRQV16hzcARGFoA/9PoBLBfnVPcSYSEN/nL5Dw==
"@abp/jquery@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.3.tgz#ba19cc8b802c46490277939e6c674811127d8016"
integrity sha512-MbD38iInyag7/j5k42cvMT4jLZMtXH4lUK0rjvqUDVaxKEks46Ix/90uczQ9XajYONgx0CJKFj2urgM830+CCA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
jquery "~3.6.0"
"@abp/lodash@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.2.tgz#939d667bc96a268344df16e12e458ae376ae0154"
integrity sha512-Q2+rVGolS+00Zsww/qTo+k2oqAIDzAVZCAaamgTCJ8mliho7wFvW8LWFwII3so/nKWiTb8Gwf7bW0nMKeCnvuw==
"@abp/lodash@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.3.tgz#8a5bab02353e5cab4ca06ab82f6dbe6285faa95a"
integrity sha512-c8yhcapzPsXyeiFjeOC+2a4bn5wFjW5gUoN+p/p+tE+FIcH37yEgyw/tAr6aZPCmR770MqQXct4t7S4Czbbk+A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
lodash "^4.17.21"
"@abp/luxon@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.2.tgz#7703887dcdee26cb1e972386ea295b879e3c51f6"
integrity sha512-ckGfUo7ZD19LjKmrKneYQSO8Mjp5rh4sM/587MdTtc0ZA3nyqX98DtE0nkm8MegTvoVUGYBKWhhIlqTb6VpI4w==
"@abp/luxon@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.3.tgz#ba515e122c61918d481467d5be39f08a363822f6"
integrity sha512-2lRSSC0DYShlnKdbJ/Pmha/azjt09ZRPx57NQ01dc7ungChPry5EJL6pC3kXWnJrCkrPCF0V5+A3+taut9+l3A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
luxon "^2.3.0"
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.2.tgz#22af6c68067671714abdb52537487cd5cc73af43"
integrity sha512-rz3herKYP2KccHSUHpbkF1adfaECSR7TDOkOeFghpM/t5TCv/fs9uSroeteKyCMufWmYswY/1Yi4doYEQWcdfA==
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.3.tgz#0798e37ec6a852748118692a5fbd30c99d9745db"
integrity sha512-FlyShmRxG3wGk1OJCjHIZAdi2/Y2FJPkVxaE72CVIceQSmg0nebGTv3a7bhd4QzKkDsSA3+t6gHjnuKlTlDFLA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.2.tgz#8553c085f087c83cadf0f25a80660db2236387f5"
integrity sha512-im0T2Uah4QkqWOBqiu1fpm6SvV9Id5pV3qup3AFFKRcwhH9rvGGPjpSqq+Fh0sG23P1BSHw/lEedYwAPfxcR0w==
"@abp/select2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.3.tgz#deb8332bfce2102a562004893321a48d5194bf53"
integrity sha512-rb0qElmmhiP09xX8ZbjzNLF6ygFBwErysGWt6Bbgzz5waX2sGe575Cgoz53FaMQ4JaRBg1N0/nCejKyDtiINRA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
select2 "^4.0.13"
"@abp/sweetalert2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.2.tgz#1e0603c7edefe72e32a11b96fc0f5095e9273f12"
integrity sha512-BsiCrj32DQjMBgx9L5FOBDK2xx4x97oEqx5qUAt5lYPtxzIpFUAdn2U3h8WUQfDKRFquQLJxJ993dZai4GfYQg==
"@abp/sweetalert2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.3.tgz#e61fc6c1bed1316c1d44ca5c92f590e422db24d4"
integrity sha512-+SNpBb4XrQlWzRQK9lfdJqA9IfJrlgoqmHwPDgf3Q+P922MzO33TgDlZWbeE7MzVj2y2WmNsPuCKwhjSjSL2rw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
sweetalert2 "^11.3.6"
"@abp/timeago@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.2.tgz#21d67d3fa54b930fdf2c6ae7ed1c182ce16f0c0a"
integrity sha512-oOcW0m2xlsDTw6MjJ+4WbN7y4Le3S1H1IRvU+64i5O3fj5WNBpAKxNEO0X0HLD6JJwlr1tzvE2uWqzoRWO9JXg==
"@abp/timeago@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.3.tgz#0ef8c4801bfd4623e6895b1d047b1437063bda53"
integrity sha512-P3YRDVKjR5/Fz+cXiPg3IiUr7XGbNh7mgmJ1ywRXmKVmVMJmhQ2RsKmmtkGJn4TfVHu/l5iJXe4rqgL21/yX/g==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
timeago "^1.6.7"
"@abp/toastr@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.2.tgz#3523b22b6bf473025b2b731eae59491997f2fbe2"
integrity sha512-StjNgLQNttZwm4L8vOOM/pclgMrmYTs1igmXnBXbYqMcE2Q7QfhZeOYwPvWrm0WlVC4pfR9l3ejYYcZljukqEA==
"@abp/toastr@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.3.tgz#6010d4247937531ebf7c8659d6254cd3db6c4855"
integrity sha512-sC9eCzYVgDrLSFIhJGe9hshzfwA1BkZNah4NQhyq+V6HQ8YF7goMS79N+/XmSoLQ9zzRhusqnPFnb+4FHjr7iA==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
toastr "^2.1.4"
"@abp/utils@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.2.tgz#f93d7bcccc35335df5c14be10dc23bd7472868c8"
integrity sha512-6YdeptFQR1vZzLVKVjHmGQ+R+pK0iBiZdL7A3GkaC+ad5b+adybf8MJPyrbob96xV77/CEuXFUG88URed1B5Fw==
"@abp/utils@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.3.tgz#6d3515694314175218606e9518618ce335b4b360"
integrity sha512-K2geJ9P1ztk4Ehzb9YG3CqqLOi+z8/4iBLUzooNZLQqS+KdlUhCmqfuCoI/A5Aq9DGbTYesalp+Fwoh3S2Dl8A==
dependencies:
just-compare "^1.3.0"

@ -3,7 +3,7 @@
"version": "1.0.0",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "^6.0.0-rc.2",
"@abp/virtual-file-explorer": "^6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.basic": "^6.0.0-rc.3",
"@abp/virtual-file-explorer": "^6.0.0-rc.3"
}
}

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.2.tgz#0a80531a46e08719ef90b4f9013b8bb5ec2fe2f0"
integrity sha512-uktT9FXlDzJ0HGleYCnvUhSMgkSHiwrjVnztbx6zRvrhNsq/UNWPhYoGti8He9tQO1dLi2cRq1aTawtMIjgVow==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.2.tgz#a7a69d3bb4aa09809b3362a045c1adba5b04d17c"
integrity sha512-sszTiRfJxy6EQ2C2xe3GwrfaVfZgSw8xOZcIFScBvW0fDMAfJCTJA+HMcaBTsng9EqHfc7622mWaPlWCD5ImEg==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.2"
"@abp/bootstrap" "~6.0.0-rc.2"
"@abp/bootstrap-datepicker" "~6.0.0-rc.2"
"@abp/datatables.net-bs5" "~6.0.0-rc.2"
"@abp/font-awesome" "~6.0.0-rc.2"
"@abp/jquery-form" "~6.0.0-rc.2"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.2"
"@abp/lodash" "~6.0.0-rc.2"
"@abp/luxon" "~6.0.0-rc.2"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.2"
"@abp/select2" "~6.0.0-rc.2"
"@abp/sweetalert2" "~6.0.0-rc.2"
"@abp/timeago" "~6.0.0-rc.2"
"@abp/toastr" "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.2.tgz#14d5da45b01af77caab45b01a43f07db6a5425f3"
integrity sha512-AIXP1FP/VvBGRzoslTRTnD4I1oei4Ufh5qVWKG+PwmrFJ6/XoarNV6FCKLePm7NETd1VSrq20uPCrfuZx2WKQg==
"@abp/aspnetcore.mvc.ui.theme.basic@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-6.0.0-rc.3.tgz#b95266387e562c635de795442f90470f8e9e6318"
integrity sha512-vVkEpotDST455E3rynvRQpBKPcNNJ2m1wLkz/B9dQNdUjvm8L4F6s0ls0XFlKUNvQfCVfedkRtGayuvNje/Oxg==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui.theme.shared@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-6.0.0-rc.3.tgz#664ca2ee712b7d9e66103c00beb41eb9648a6075"
integrity sha512-KxCsGuoUWKaDo7Oo9aKp51pli2m0DZ2tG8m+zK+m4M9U7g96uC+DOFy3gc7MdPlszvrw32Wwm7I0AughstByNA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~6.0.0-rc.3"
"@abp/bootstrap" "~6.0.0-rc.3"
"@abp/bootstrap-datepicker" "~6.0.0-rc.3"
"@abp/datatables.net-bs5" "~6.0.0-rc.3"
"@abp/font-awesome" "~6.0.0-rc.3"
"@abp/jquery-form" "~6.0.0-rc.3"
"@abp/jquery-validation-unobtrusive" "~6.0.0-rc.3"
"@abp/lodash" "~6.0.0-rc.3"
"@abp/luxon" "~6.0.0-rc.3"
"@abp/malihu-custom-scrollbar-plugin" "~6.0.0-rc.3"
"@abp/select2" "~6.0.0-rc.3"
"@abp/sweetalert2" "~6.0.0-rc.3"
"@abp/timeago" "~6.0.0-rc.3"
"@abp/toastr" "~6.0.0-rc.3"
"@abp/aspnetcore.mvc.ui@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-6.0.0-rc.3.tgz#47c23b57ed3908bd78a232230e53d1f3cba2de41"
integrity sha512-7eJZy2JUGQP94Tz3JJWXRHRmDfTcPZ/lS1/VNbU8B4qvgl5ChIXklVEJLR1fwrBhKXZV8fGVmqT1XlGTGFvFJA==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,171 +41,171 @@
merge-stream "^2.0.0"
micromatch "^4.0.2"
"@abp/bootstrap-datepicker@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.2.tgz#74785434be987d4579dcf66b52752d23d3dcc928"
integrity sha512-BvJEChBRwf7vuXap1s/hOi3PrlWkZYtpnZLKNjNpEfLLHa3LPrSLn9GAfVLS92/qxeB+S6Vk49HiwcOtuIeEOA==
"@abp/bootstrap-datepicker@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-6.0.0-rc.3.tgz#89198b863dbfccf5f07ac3c4b20ce6199adcb17a"
integrity sha512-NLoUjcR66mqwSWuVftu2yFH4/j6QP+FiElRfZQ9OYmO8DQx2Ue5UZzjrFTrZ1DBBCfzhr2Bffj80dirGvGDyvg==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.2.tgz#ef9e6fb40eb884dd69581bfd08a2523f274cbab8"
integrity sha512-cf1ttQV6gQX0UNoWIKxaJ7tk8dJAQ79WhklsuDWROl0KtkjQ/oCi14363YvWezMQe82xnps1m4ViX87JqNIM4w==
"@abp/bootstrap@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-6.0.0-rc.3.tgz#4574bf574cc3484869e8ff8bc592f6212d20a969"
integrity sha512-Q5v7WRkGhGcjRg267HXtqs1oU7ts9UXPyCXmg5y2y5qMOyioD+m4MKV4iv67DgoQjabudp8X2egTKxkej6Lzkw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
bootstrap "^5.1.3"
"@abp/clipboard@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-6.0.0-rc.2.tgz#99f54676d61fb8b83447b453f69f2c8fedfc07ad"
integrity sha512-oNQ7i8lR0d74t/Hoqt6EgK1dgXfH44TmOuovqyegpqeOXlMPZJVeZ0Kkp2DTV6WgGQeR8rTMFWJyBvGfVFMQdA==
"@abp/clipboard@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/clipboard/-/clipboard-6.0.0-rc.3.tgz#ee3a586b491d89442eefff08aaebbf9d38cb46d4"
integrity sha512-01svpp3mR29z1FTM+2Qe+MUNLPbl95bWlOXY5zz2hvNSbdD45lGud+BiOHfeZwlDk5jjr3FqLel+hxx2ByBvOA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
clipboard "^2.0.8"
"@abp/core@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.2.tgz#6339637a278fc19e10d468aba118e2384a8310af"
integrity sha512-2t7rhjpRvByoAnkdSVEdN4ZVotHSRanv9fZRqK6yOQpHEZ4LDgByKi+eNdc3kiT0+VU3mHxMgq+FO+pxaBHSAA==
"@abp/core@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-6.0.0-rc.3.tgz#5662ce813d449d97d9fb7ea2552b2774c8df7825"
integrity sha512-X/VRdk5SGNYc5gQzPcBEPAvwcuD9WXsI4YIdrqjnes0s8u2/XmfrTixojh8Y5EYUoOblEE3Soj5hBhY1cVwcbQ==
dependencies:
"@abp/utils" "~6.0.0-rc.2"
"@abp/utils" "~6.0.0-rc.3"
"@abp/datatables.net-bs5@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.2.tgz#76ab55e97bc4d25f8bbfc6564f5e61f8404ab52c"
integrity sha512-Wdt22BSDqFvrZb5x2gcH8JG4jJ0++pN7M+t3jqSM3f9IZMOWHZ5GsUegUt+j60Cvqw7ItjP/BmBySQtmh3WbOg==
"@abp/datatables.net-bs5@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs5/-/datatables.net-bs5-6.0.0-rc.3.tgz#22865c7e621de720b71af6265b3193f6c78695bd"
integrity sha512-T+mhLc6uSzWmxDQogVwnJ6VxI4845gmF68/i9TmVKNlCtpa3EEfyuF/hgWT1hYfCb4XOsvd/CWrunbkC3fsmtg==
dependencies:
"@abp/datatables.net" "~6.0.0-rc.2"
"@abp/datatables.net" "~6.0.0-rc.3"
datatables.net-bs5 "^1.11.4"
"@abp/datatables.net@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.2.tgz#4364d099f2fc1f647fe40eb5cace2fe8c13281dd"
integrity sha512-exHwF0pmJnT83d2X3NcHFewT8ZyK1TWfwNNBVn+j3jwcm4/5KT9a308CAahV9hTz/Z6ZsjRdCRwdv0eU5VHPkQ==
"@abp/datatables.net@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-6.0.0-rc.3.tgz#d036defe6ad7fc989dffa020ae579362ee3150d1"
integrity sha512-4cUU8/Tn0Vz9bx7jjMOD/0Viyr29fcwoQAAkxaaYZp6qiQbENgz46/xpQf2oBCoudk8CLdzpmNa7jWte7PcJJw==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
datatables.net "^1.11.4"
"@abp/font-awesome@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.2.tgz#bc522149abafb82935094c8fcd72a8201f98a315"
integrity sha512-sPA9urlcUl2868zmABa7X1rA6aPYkihVEt1h/XSSYpjL/hu7I1RtDDEJ2k6GFjgd2AZ+8xKRkI4bpOE5HKtbsg==
"@abp/font-awesome@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-6.0.0-rc.3.tgz#803569d1a7e25f8a1c2be018312449c23fb78217"
integrity sha512-lYdh38UCTSkzzw0B/mpPEo7iFXzSKHCNbBOIHe6dd6O/Qli7wYukTtUOFn5Sh+yoydLY1as92HtiGL1ckSdu1g==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
"@fortawesome/fontawesome-free" "^5.15.4"
"@abp/jquery-form@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.2.tgz#cfeb8a300d2c350854689481c15404c37dfcb428"
integrity sha512-Okl0z6MibakfSH4Mzq2fDA0kj97tWSDpVcJLN+K5CkROhob2ZpkBiAysY7hqEMItAMruDa2SsrANxW65r4mi4Q==
"@abp/jquery-form@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-6.0.0-rc.3.tgz#4ec503c07e2194148c3a7e7cf7ddef2871679e6a"
integrity sha512-Q3uEpflntqrSkYakcdsBnnYYfxJWXD/CDjMiwjbb6gIc8s4qkbIYxVxvYvlEezoIDYQkMSXOn7BS4clWsesiJg==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.2.tgz#a66677d87e3214086483853845c1bb609bbb4f3b"
integrity sha512-ymGMzH/kwfcvw749znmiE4I4jesJScEZu2LR1IrFcJUV9s4ThJEgSGnyjUAXZrt2jNSuWTUCXp4dI0PSm5iU3Q==
"@abp/jquery-validation-unobtrusive@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-6.0.0-rc.3.tgz#01da2a59663d373ff1c69022f4c9c66ad0b29403"
integrity sha512-ij1ML2D9rYF3pJthWO6mGQajsJhbDCtOoBvnh9yCZccuwOYkXP22PqfUxjjxtqL4HqFI31KRpFg0ANMGSzEEBg==
dependencies:
"@abp/jquery-validation" "~6.0.0-rc.2"
"@abp/jquery-validation" "~6.0.0-rc.3"
jquery-validation-unobtrusive "^3.2.12"
"@abp/jquery-validation@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.2.tgz#bcc7fbfbac2bc8e7efc94177e1a1a405d18ac387"
integrity sha512-RIeNdhDDa7fQunE9BnBxcdicQpcpcn/l7Rl6q8IuA18PN4z4DueXt3A6Qzl9zPl931yXzs7v28iW7j81/4Xpyw==
"@abp/jquery-validation@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-6.0.0-rc.3.tgz#724aea9572dcb2faccf8c6355332b0b2a4df9260"
integrity sha512-rTK5oHaMtycvWxunNwzbE/MbsXXIr6qDnOY3rVUmjTHjqUOHYz591t/XeQfjnSXPp4k/SZUjG6viTC3J2jzC1A==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
jquery-validation "^1.19.3"
"@abp/jquery@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.2.tgz#6d641604a1687d2e8e3220171329960b7e40a315"
integrity sha512-FMCdtl3nPZDaTGZ7aKHzOYIzzYQvhDrdTm0bKD+5nKv70sL8TRQV16hzcARGFoA/9PoBLBfnVPcSYSEN/nL5Dw==
"@abp/jquery@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-6.0.0-rc.3.tgz#ba19cc8b802c46490277939e6c674811127d8016"
integrity sha512-MbD38iInyag7/j5k42cvMT4jLZMtXH4lUK0rjvqUDVaxKEks46Ix/90uczQ9XajYONgx0CJKFj2urgM830+CCA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
jquery "~3.6.0"
"@abp/lodash@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.2.tgz#939d667bc96a268344df16e12e458ae376ae0154"
integrity sha512-Q2+rVGolS+00Zsww/qTo+k2oqAIDzAVZCAaamgTCJ8mliho7wFvW8LWFwII3so/nKWiTb8Gwf7bW0nMKeCnvuw==
"@abp/lodash@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-6.0.0-rc.3.tgz#8a5bab02353e5cab4ca06ab82f6dbe6285faa95a"
integrity sha512-c8yhcapzPsXyeiFjeOC+2a4bn5wFjW5gUoN+p/p+tE+FIcH37yEgyw/tAr6aZPCmR770MqQXct4t7S4Czbbk+A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
lodash "^4.17.21"
"@abp/luxon@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.2.tgz#7703887dcdee26cb1e972386ea295b879e3c51f6"
integrity sha512-ckGfUo7ZD19LjKmrKneYQSO8Mjp5rh4sM/587MdTtc0ZA3nyqX98DtE0nkm8MegTvoVUGYBKWhhIlqTb6VpI4w==
"@abp/luxon@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-6.0.0-rc.3.tgz#ba515e122c61918d481467d5be39f08a363822f6"
integrity sha512-2lRSSC0DYShlnKdbJ/Pmha/azjt09ZRPx57NQ01dc7ungChPry5EJL6pC3kXWnJrCkrPCF0V5+A3+taut9+l3A==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
luxon "^2.3.0"
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.2.tgz#22af6c68067671714abdb52537487cd5cc73af43"
integrity sha512-rz3herKYP2KccHSUHpbkF1adfaECSR7TDOkOeFghpM/t5TCv/fs9uSroeteKyCMufWmYswY/1Yi4doYEQWcdfA==
"@abp/malihu-custom-scrollbar-plugin@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-6.0.0-rc.3.tgz#0798e37ec6a852748118692a5fbd30c99d9745db"
integrity sha512-FlyShmRxG3wGk1OJCjHIZAdi2/Y2FJPkVxaE72CVIceQSmg0nebGTv3a7bhd4QzKkDsSA3+t6gHjnuKlTlDFLA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/prismjs@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-6.0.0-rc.2.tgz#5c200260038e1e7e7bcf627df840ec8d31efd255"
integrity sha512-zESjrel58EWNoreOvdYmpPLR3TpdPQEw7R8aGPgieTZSKxcM7aHYBa1vbN6czaIeD3RjwIBtaMVCOGhiPYSKug==
"@abp/prismjs@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/prismjs/-/prismjs-6.0.0-rc.3.tgz#e4faf595e29db81c5a66030e59b0e09f09759bfd"
integrity sha512-zzd3iw/Im0M9FUmTviwkTCr4slkoZJExtK+qB1FmLxRY59+hyU9wxd6hwzic/QwhXxFQoYILJ3S3FNxsPIm76A==
dependencies:
"@abp/clipboard" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.2"
"@abp/clipboard" "~6.0.0-rc.3"
"@abp/core" "~6.0.0-rc.3"
prismjs "^1.26.0"
"@abp/select2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.2.tgz#8553c085f087c83cadf0f25a80660db2236387f5"
integrity sha512-im0T2Uah4QkqWOBqiu1fpm6SvV9Id5pV3qup3AFFKRcwhH9rvGGPjpSqq+Fh0sG23P1BSHw/lEedYwAPfxcR0w==
"@abp/select2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-6.0.0-rc.3.tgz#deb8332bfce2102a562004893321a48d5194bf53"
integrity sha512-rb0qElmmhiP09xX8ZbjzNLF6ygFBwErysGWt6Bbgzz5waX2sGe575Cgoz53FaMQ4JaRBg1N0/nCejKyDtiINRA==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
select2 "^4.0.13"
"@abp/sweetalert2@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.2.tgz#1e0603c7edefe72e32a11b96fc0f5095e9273f12"
integrity sha512-BsiCrj32DQjMBgx9L5FOBDK2xx4x97oEqx5qUAt5lYPtxzIpFUAdn2U3h8WUQfDKRFquQLJxJ993dZai4GfYQg==
"@abp/sweetalert2@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/sweetalert2/-/sweetalert2-6.0.0-rc.3.tgz#e61fc6c1bed1316c1d44ca5c92f590e422db24d4"
integrity sha512-+SNpBb4XrQlWzRQK9lfdJqA9IfJrlgoqmHwPDgf3Q+P922MzO33TgDlZWbeE7MzVj2y2WmNsPuCKwhjSjSL2rw==
dependencies:
"@abp/core" "~6.0.0-rc.2"
"@abp/core" "~6.0.0-rc.3"
sweetalert2 "^11.3.6"
"@abp/timeago@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.2.tgz#21d67d3fa54b930fdf2c6ae7ed1c182ce16f0c0a"
integrity sha512-oOcW0m2xlsDTw6MjJ+4WbN7y4Le3S1H1IRvU+64i5O3fj5WNBpAKxNEO0X0HLD6JJwlr1tzvE2uWqzoRWO9JXg==
"@abp/timeago@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-6.0.0-rc.3.tgz#0ef8c4801bfd4623e6895b1d047b1437063bda53"
integrity sha512-P3YRDVKjR5/Fz+cXiPg3IiUr7XGbNh7mgmJ1ywRXmKVmVMJmhQ2RsKmmtkGJn4TfVHu/l5iJXe4rqgL21/yX/g==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
timeago "^1.6.7"
"@abp/toastr@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.2.tgz#3523b22b6bf473025b2b731eae59491997f2fbe2"
integrity sha512-StjNgLQNttZwm4L8vOOM/pclgMrmYTs1igmXnBXbYqMcE2Q7QfhZeOYwPvWrm0WlVC4pfR9l3ejYYcZljukqEA==
"@abp/toastr@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-6.0.0-rc.3.tgz#6010d4247937531ebf7c8659d6254cd3db6c4855"
integrity sha512-sC9eCzYVgDrLSFIhJGe9hshzfwA1BkZNah4NQhyq+V6HQ8YF7goMS79N+/XmSoLQ9zzRhusqnPFnb+4FHjr7iA==
dependencies:
"@abp/jquery" "~6.0.0-rc.2"
"@abp/jquery" "~6.0.0-rc.3"
toastr "^2.1.4"
"@abp/utils@~6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.2.tgz#f93d7bcccc35335df5c14be10dc23bd7472868c8"
integrity sha512-6YdeptFQR1vZzLVKVjHmGQ+R+pK0iBiZdL7A3GkaC+ad5b+adybf8MJPyrbob96xV77/CEuXFUG88URed1B5Fw==
"@abp/utils@~6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/utils/-/utils-6.0.0-rc.3.tgz#6d3515694314175218606e9518618ce335b4b360"
integrity sha512-K2geJ9P1ztk4Ehzb9YG3CqqLOi+z8/4iBLUzooNZLQqS+KdlUhCmqfuCoI/A5Aq9DGbTYesalp+Fwoh3S2Dl8A==
dependencies:
just-compare "^1.3.0"
"@abp/virtual-file-explorer@^6.0.0-rc.2":
version "6.0.0-rc.2"
resolved "https://registry.yarnpkg.com/@abp/virtual-file-explorer/-/virtual-file-explorer-6.0.0-rc.2.tgz#15602f3a6530716922e3708b2eb86311d59c2f5b"
integrity sha512-YEsH6dNLvdZNBnLrmyIV+bM7KloPJOeLWJ5SkFTZYCKHhwGyEcwrcxT4pfzJVydssd8J+8p3dIbr0ZUWTb2yMg==
"@abp/virtual-file-explorer@^6.0.0-rc.3":
version "6.0.0-rc.3"
resolved "https://registry.yarnpkg.com/@abp/virtual-file-explorer/-/virtual-file-explorer-6.0.0-rc.3.tgz#92de34df581cf85d23282484b1686306cbb880b6"
integrity sha512-PrZw+CH7Uwc/SPkhDdU3P9ixhUAX35k1ucXy6/AaMdms9cppKYw5C7O3nkj3UIN+PliLy+etc2nox1Y2WafSzQ==
dependencies:
"@abp/clipboard" "~6.0.0-rc.2"
"@abp/prismjs" "~6.0.0-rc.2"
"@abp/clipboard" "~6.0.0-rc.3"
"@abp/prismjs" "~6.0.0-rc.3"
"@fortawesome/fontawesome-free@^5.15.4":
version "5.15.4"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"packages": [
"packs/*"
],

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"packages": [
"packages/*"
],

@ -40,7 +40,7 @@
},
"private": true,
"devDependencies": {
"@abp/utils": "~6.0.0-rc.2",
"@abp/utils": "~6.0.0-rc.3",
"@angular-devkit/build-angular": "13.3.5",
"@angular-devkit/build-ng-packagr": "^0.1002.0",
"@angular-devkit/schematics-cli": "~12.2.0",
@ -59,17 +59,17 @@
"@angular/platform-browser": "13.3.6",
"@angular/platform-browser-dynamic": "13.3.6",
"@angular/router": "13.3.6",
"@abp/ng.account": "~6.0.0-rc.2",
"@abp/ng.account.core": "~6.0.0-rc.2",
"@abp/ng.core": "~6.0.0-rc.2",
"@abp/ng.feature-management": "~6.0.0-rc.2",
"@abp/ng.identity": "~6.0.0-rc.2",
"@abp/ng.permission-management": "~6.0.0-rc.2",
"@abp/ng.schematics": "~6.0.0-rc.2",
"@abp/ng.setting-management": "~6.0.0-rc.2",
"@abp/ng.tenant-management": "~6.0.0-rc.2",
"@abp/ng.theme.basic": "~6.0.0-rc.2",
"@abp/ng.theme.shared": "~6.0.0-rc.2",
"@abp/ng.account": "~6.0.0-rc.3",
"@abp/ng.account.core": "~6.0.0-rc.3",
"@abp/ng.core": "~6.0.0-rc.3",
"@abp/ng.feature-management": "~6.0.0-rc.3",
"@abp/ng.identity": "~6.0.0-rc.3",
"@abp/ng.permission-management": "~6.0.0-rc.3",
"@abp/ng.schematics": "~6.0.0-rc.3",
"@abp/ng.setting-management": "~6.0.0-rc.3",
"@abp/ng.tenant-management": "~6.0.0-rc.3",
"@abp/ng.theme.basic": "~6.0.0-rc.3",
"@abp/ng.theme.shared": "~6.0.0-rc.3",
"@fortawesome/fontawesome-free": "^5.15.4",
"@ng-bootstrap/ng-bootstrap": "~12.0.0-beta.4",
"@ngneat/spectator": "^10.0.0",

@ -1,14 +1,14 @@
{
"name": "@abp/ng.account.core",
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"peerDependencies": {
"@abp/ng.core": "~6.0.0-rc.2",
"@abp/ng.theme.shared": "~6.0.0-rc.2",
"@abp/ng.core": "~6.0.0-rc.3",
"@abp/ng.theme.shared": "~6.0.0-rc.3",
"@angular/common": ">=12.0.0",
"@angular/core": ">=12.0.0"
},

@ -1,14 +1,14 @@
{
"name": "@abp/ng.account",
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/ng.account.core": "~6.0.0-rc.2",
"@abp/ng.theme.shared": "~6.0.0-rc.2",
"@abp/ng.account.core": "~6.0.0-rc.3",
"@abp/ng.theme.shared": "~6.0.0-rc.3",
"tslib": "^2.0.0"
},
"publishConfig": {

@ -1,14 +1,14 @@
{
"name": "@abp/ng.components",
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"peerDependencies": {
"@abp/ng.core": ">=6.0.0-rc.2",
"@abp/ng.theme.shared": ">=6.0.0-rc.2",
"@abp/ng.core": ">=6.0.0-rc.3",
"@abp/ng.theme.shared": ">=6.0.0-rc.3",
"@ng-bootstrap/ng-bootstrap": ">=10.0.0"
},
"dependencies": {

@ -1,13 +1,13 @@
{
"name": "@abp/ng.core",
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/utils": "~6.0.0-rc.2",
"@abp/utils": "~6.0.0-rc.3",
"angular-oauth2-oidc": "^13.0.1",
"just-clone": "^3.2.1",
"just-compare": "^1.4.0",

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

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

@ -65,4 +65,12 @@ export const DEFAULT_USERS_CREATE_FORM_PROPS = FormProp.createMany<IdentityUserD
},
]);
export const DEFAULT_USERS_EDIT_FORM_PROPS = DEFAULT_USERS_CREATE_FORM_PROPS
export const DEFAULT_USERS_EDIT_FORM_PROPS = DEFAULT_USERS_CREATE_FORM_PROPS.map(prop => {
if (prop.name === 'password') {
return {
...prop,
validators: data => [...getPasswordValidators({ get: data.getInjected })],
};
}
return prop;
});

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

@ -1,6 +1,6 @@
{
"name": "@abp/ng.schematics",
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"description": "Schematics that works with ABP Backend",
"keywords": [
"schematics"

@ -1,14 +1,14 @@
{
"name": "@abp/ng.setting-management",
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/ng.components": "~6.0.0-rc.2",
"@abp/ng.theme.shared": "~6.0.0-rc.2",
"@abp/ng.components": "~6.0.0-rc.3",
"@abp/ng.theme.shared": "~6.0.0-rc.3",
"tslib": "^2.0.0"
},
"publishConfig": {

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

@ -1,14 +1,14 @@
{
"name": "@abp/ng.theme.basic",
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/ng.account.core": "~6.0.0-rc.2",
"@abp/ng.theme.shared": "~6.0.0-rc.2",
"@abp/ng.account.core": "~6.0.0-rc.3",
"@abp/ng.theme.shared": "~6.0.0-rc.3",
"tslib": "^2.0.0"
},
"publishConfig": {

@ -1,13 +1,13 @@
{
"name": "@abp/ng.theme.shared",
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"homepage": "https://abp.io",
"repository": {
"type": "git",
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/ng.core": "~6.0.0-rc.2",
"@abp/ng.core": "~6.0.0-rc.3",
"@fortawesome/fontawesome-free": "^5.15.4",
"@ng-bootstrap/ng-bootstrap": "~12.0.0-beta.4",
"@ngx-validate/core": "^0.1.2",

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/anchor-js",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"anchor-js": "^4.3.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/aspnetcore.components.server.basictheme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/aspnetcore.components.server.theming": "~6.0.0-rc.2"
"@abp/aspnetcore.components.server.theming": "~6.0.0-rc.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,12 +1,12 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/aspnetcore.components.server.theming",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/bootstrap": "~6.0.0-rc.2",
"@abp/font-awesome": "~6.0.0-rc.2"
"@abp/bootstrap": "~6.0.0-rc.3",
"@abp/font-awesome": "~6.0.0-rc.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/aspnetcore.mvc.ui.theme.basic",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.shared": "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui.theme.shared": "~6.0.0-rc.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/aspnetcore.mvc.ui.theme.shared",
"repository": {
"type": "git",
@ -10,20 +10,20 @@
"access": "public"
},
"dependencies": {
"@abp/aspnetcore.mvc.ui": "~6.0.0-rc.2",
"@abp/bootstrap": "~6.0.0-rc.2",
"@abp/bootstrap-datepicker": "~6.0.0-rc.2",
"@abp/datatables.net-bs5": "~6.0.0-rc.2",
"@abp/font-awesome": "~6.0.0-rc.2",
"@abp/jquery-form": "~6.0.0-rc.2",
"@abp/jquery-validation-unobtrusive": "~6.0.0-rc.2",
"@abp/lodash": "~6.0.0-rc.2",
"@abp/luxon": "~6.0.0-rc.2",
"@abp/malihu-custom-scrollbar-plugin": "~6.0.0-rc.2",
"@abp/select2": "~6.0.0-rc.2",
"@abp/sweetalert2": "~6.0.0-rc.2",
"@abp/timeago": "~6.0.0-rc.2",
"@abp/toastr": "~6.0.0-rc.2"
"@abp/aspnetcore.mvc.ui": "~6.0.0-rc.3",
"@abp/bootstrap": "~6.0.0-rc.3",
"@abp/bootstrap-datepicker": "~6.0.0-rc.3",
"@abp/datatables.net-bs5": "~6.0.0-rc.3",
"@abp/font-awesome": "~6.0.0-rc.3",
"@abp/jquery-form": "~6.0.0-rc.3",
"@abp/jquery-validation-unobtrusive": "~6.0.0-rc.3",
"@abp/lodash": "~6.0.0-rc.3",
"@abp/luxon": "~6.0.0-rc.3",
"@abp/malihu-custom-scrollbar-plugin": "~6.0.0-rc.3",
"@abp/select2": "~6.0.0-rc.3",
"@abp/sweetalert2": "~6.0.0-rc.3",
"@abp/timeago": "~6.0.0-rc.3",
"@abp/toastr": "~6.0.0-rc.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,6 +1,6 @@
{
"name": "@abp/aspnetcore.mvc.ui",
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/aspnetcore.mvc.ui",
"repository": {
"type": "git",

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

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/bootstrap-datepicker",
"repository": {
"type": "git",

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/bootstrap",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"bootstrap": "^5.1.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/chart.js",
"publishConfig": {
"access": "public"

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/clipboard",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"clipboard": "^2.0.8"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,15 +1,15 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/cms-kit.admin",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/codemirror": "~6.0.0-rc.2",
"@abp/jstree": "~6.0.0-rc.2",
"@abp/slugify": "~6.0.0-rc.2",
"@abp/tui-editor": "~6.0.0-rc.2",
"@abp/uppy": "~6.0.0-rc.2"
"@abp/codemirror": "~6.0.0-rc.3",
"@abp/jstree": "~6.0.0-rc.3",
"@abp/slugify": "~6.0.0-rc.3",
"@abp/tui-editor": "~6.0.0-rc.3",
"@abp/uppy": "~6.0.0-rc.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,12 +1,12 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/cms-kit.public",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/highlight.js": "~6.0.0-rc.2",
"@abp/star-rating-svg": "~6.0.0-rc.2"
"@abp/highlight.js": "~6.0.0-rc.3",
"@abp/star-rating-svg": "~6.0.0-rc.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,12 +1,12 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/cms-kit",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/cms-kit.admin": "~6.0.0-rc.2",
"@abp/cms-kit.public": "~6.0.0-rc.2"
"@abp/cms-kit.admin": "~6.0.0-rc.3",
"@abp/cms-kit.public": "~6.0.0-rc.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/codemirror",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"codemirror": "^5.65.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/core",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/utils": "~6.0.0-rc.2"
"@abp/utils": "~6.0.0-rc.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/cropperjs",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"cropperjs": "^1.5.12"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/datatables.net-bs4",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/datatables.net": "~6.0.0-rc.2",
"@abp/datatables.net": "~6.0.0-rc.3",
"datatables.net-bs4": "^1.11.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/datatables.net-bs5",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/datatables.net": "~6.0.0-rc.2",
"@abp/datatables.net": "~6.0.0-rc.3",
"datatables.net-bs5": "^1.11.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/datatables.net",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/jquery": "~6.0.0-rc.2",
"@abp/jquery": "~6.0.0-rc.3",
"datatables.net": "^1.11.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

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

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/flag-icon-css",
"publishConfig": {
"access": "public"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/font-awesome",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"@fortawesome/fontawesome-free": "^5.15.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/highlight.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"@highlightjs/cdn-assets": "~11.4.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/jquery-form",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/jquery": "~6.0.0-rc.2",
"@abp/jquery": "~6.0.0-rc.3",
"jquery-form": "^4.3.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/jquery-validation-unobtrusive",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/jquery-validation": "~6.0.0-rc.2",
"@abp/jquery-validation": "~6.0.0-rc.3",
"jquery-validation-unobtrusive": "^3.2.12"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/jquery-validation",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/jquery": "~6.0.0-rc.2",
"@abp/jquery": "~6.0.0-rc.3",
"jquery-validation": "^1.19.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/jquery",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"jquery": "~3.6.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/jstree",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/jquery": "~6.0.0-rc.2",
"@abp/jquery": "~6.0.0-rc.3",
"jstree": "^3.3.12"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/lodash",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"lodash": "^4.17.21"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/luxon",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"luxon": "^2.3.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/malihu-custom-scrollbar-plugin",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"malihu-custom-scrollbar-plugin": "^3.1.5"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/markdown-it",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"markdown-it": "^12.3.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/owl.carousel",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"owl.carousel": "^2.3.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/popper.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"@popperjs/core": "^2.11.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,12 +1,12 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/prismjs",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/clipboard": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.2",
"@abp/clipboard": "~6.0.0-rc.3",
"@abp/core": "~6.0.0-rc.3",
"prismjs": "^1.26.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/select2",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"select2": "^4.0.13"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/signalr",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"@microsoft/signalr": "~6.0.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/slugify",
"publishConfig": {
"access": "public"

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/star-rating-svg",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/jquery": "~6.0.0-rc.2",
"@abp/jquery": "~6.0.0-rc.3",
"star-rating-svg": "^3.5.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/sweetalert2",
"publishConfig": {
"access": "public"
@ -10,7 +10,7 @@
"directory": "npm/packs/sweetalert2"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"sweetalert2": "^11.3.6"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/timeago",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/jquery": "~6.0.0-rc.2",
"@abp/jquery": "~6.0.0-rc.3",
"timeago": "^1.6.7"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/toastr",
"repository": {
"type": "git",
@ -10,7 +10,7 @@
"access": "public"
},
"dependencies": {
"@abp/jquery": "~6.0.0-rc.2",
"@abp/jquery": "~6.0.0-rc.3",
"toastr": "^2.1.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,12 +1,12 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/tui-editor",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/jquery": "~6.0.0-rc.2",
"@abp/prismjs": "~6.0.0-rc.2"
"@abp/jquery": "~6.0.0-rc.3",
"@abp/prismjs": "~6.0.0-rc.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/uppy",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~6.0.0-rc.2",
"@abp/core": "~6.0.0-rc.3",
"uppy": "^1.16.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,6 +1,6 @@
{
"name": "@abp/utils",
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"scripts": {
"prepublishOnly": "yarn install --ignore-scripts && node prepublish.js",
"ng": "ng",

@ -1,11 +1,11 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/vee-validate",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/vue": "~6.0.0-rc.2",
"@abp/vue": "~6.0.0-rc.3",
"vee-validate": "~3.4.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,12 +1,12 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/virtual-file-explorer",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/clipboard": "~6.0.0-rc.2",
"@abp/prismjs": "~6.0.0-rc.2"
"@abp/clipboard": "~6.0.0-rc.3",
"@abp/prismjs": "~6.0.0-rc.3"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -1,5 +1,5 @@
{
"version": "6.0.0-rc.2",
"version": "6.0.0-rc.3",
"name": "@abp/vue",
"publishConfig": {
"access": "public"

@ -12,13 +12,13 @@
},
"private": true,
"dependencies": {
"@abp/ng.account": "~6.0.0-rc.2",
"@abp/ng.components": "~6.0.0-rc.2",
"@abp/ng.core": "~6.0.0-rc.2",
"@abp/ng.identity": "~6.0.0-rc.2",
"@abp/ng.setting-management": "~6.0.0-rc.2",
"@abp/ng.tenant-management": "~6.0.0-rc.2",
"@abp/ng.theme.shared": "~6.0.0-rc.2",
"@abp/ng.account": "~6.0.0-rc.3",
"@abp/ng.components": "~6.0.0-rc.3",
"@abp/ng.core": "~6.0.0-rc.3",
"@abp/ng.identity": "~6.0.0-rc.3",
"@abp/ng.setting-management": "~6.0.0-rc.3",
"@abp/ng.tenant-management": "~6.0.0-rc.3",
"@abp/ng.theme.shared": "~6.0.0-rc.3",
"@abp/ng.theme.lepton-x": "~1.0.0-rc.3",
"@angular/animations": "~13.1.1",
"@angular/common": "~13.1.1",
@ -35,7 +35,7 @@
"zone.js": "~0.11.4"
},
"devDependencies": {
"@abp/ng.schematics": "~6.0.0-rc.2",
"@abp/ng.schematics": "~6.0.0-rc.3",
"@angular-devkit/build-angular": "~13.1.2",
"@angular-eslint/builder": "~13.0.1",
"@angular-eslint/eslint-plugin": "~13.0.1",

@ -8,6 +8,7 @@ using MyCompanyName.MyProjectName.Localization;
using MyCompanyName.MyProjectName.Menus;
using OpenIddict.Validation.AspNetCore;
using Volo.Abp;
using Volo.Abp.Uow;
using Volo.Abp.Account;
using Volo.Abp.Account.Web;
using Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite;
@ -317,6 +318,13 @@ public class MyProjectNameModule : AbpModule
configurationContext.UseSqlServer();
});
});
//<TEMPLATE-REMOVE IF-NOT='dbms:SQLite'>
Configure<AbpUnitOfWorkDefaultOptions>(options =>
{
options.TransactionBehavior = UnitOfWorkTransactionBehavior.Disabled;
});
//</TEMPLATE-REMOVE>
}
public override void OnApplicationInitialization(ApplicationInitializationContext context)

@ -7,6 +7,7 @@ using MyCompanyName.MyProjectName.Data;
using MyCompanyName.MyProjectName.Localization;
using OpenIddict.Validation.AspNetCore;
using Volo.Abp;
using Volo.Abp.Uow;
using Volo.Abp.Account;
using Volo.Abp.Account.Web;
using Volo.Abp.AspNetCore.MultiTenancy;
@ -314,6 +315,13 @@ public class MyProjectNameModule : AbpModule
configurationContext.UseSqlServer();
});
});
//<TEMPLATE-REMOVE IF-NOT='dbms:SQLite'>
Configure<AbpUnitOfWorkDefaultOptions>(options =>
{
options.TransactionBehavior = UnitOfWorkTransactionBehavior.Disabled;
});
//</TEMPLATE-REMOVE>
}
public override void OnApplicationInitialization(ApplicationInitializationContext context)

@ -6,6 +6,7 @@ using MyCompanyName.MyProjectName.Localization;
using MyCompanyName.MyProjectName.Menus;
using OpenIddict.Validation.AspNetCore;
using Volo.Abp;
using Volo.Abp.Uow;
using Volo.Abp.Account;
using Volo.Abp.Account.Web;
using Volo.Abp.AspNetCore.Mvc;
@ -295,6 +296,13 @@ public class MyProjectNameModule : AbpModule
configurationContext.UseSqlServer();
});
});
//<TEMPLATE-REMOVE IF-NOT='dbms:SQLite'>
Configure<AbpUnitOfWorkDefaultOptions>(options =>
{
options.TransactionBehavior = UnitOfWorkTransactionBehavior.Disabled;
});
//</TEMPLATE-REMOVE>
}
public override void OnApplicationInitialization(ApplicationInitializationContext context)

@ -12,13 +12,13 @@
},
"private": true,
"dependencies": {
"@abp/ng.account": "~6.0.0-rc.2",
"@abp/ng.components": "~6.0.0-rc.2",
"@abp/ng.core": "~6.0.0-rc.2",
"@abp/ng.identity": "~6.0.0-rc.2",
"@abp/ng.setting-management": "~6.0.0-rc.2",
"@abp/ng.tenant-management": "~6.0.0-rc.2",
"@abp/ng.theme.shared": "~6.0.0-rc.2",
"@abp/ng.account": "~6.0.0-rc.3",
"@abp/ng.components": "~6.0.0-rc.3",
"@abp/ng.core": "~6.0.0-rc.3",
"@abp/ng.identity": "~6.0.0-rc.3",
"@abp/ng.setting-management": "~6.0.0-rc.3",
"@abp/ng.tenant-management": "~6.0.0-rc.3",
"@abp/ng.theme.shared": "~6.0.0-rc.3",
"@abp/ng.theme.lepton-x": "~1.0.0-rc.3",
"@angular/animations": "~13.3.3",
"@angular/common": "~13.3.3",
@ -35,7 +35,7 @@
"zone.js": "~0.11.4"
},
"devDependencies": {
"@abp/ng.schematics": "~6.0.0-rc.2",
"@abp/ng.schematics": "~6.0.0-rc.3",
"@angular-devkit/build-angular": "~13.3.3",
"@angular-eslint/builder": "~13.2.1",
"@angular-eslint/eslint-plugin": "~13.2.1",

@ -28,6 +28,7 @@ using Volo.Abp.Autofac;
using Volo.Abp.BackgroundJobs;
using Volo.Abp.Caching;
using Volo.Abp.Caching.StackExchangeRedis;
using Volo.Abp.DistributedLocking;
using Volo.Abp.Localization;
using Volo.Abp.Modularity;
using Volo.Abp.UI.Navigation.Urls;
@ -39,6 +40,7 @@ namespace MyCompanyName.MyProjectName;
[DependsOn(
typeof(AbpAutofacModule),
typeof(AbpCachingStackExchangeRedisModule),
typeof(AbpDistributedLockingModule),
typeof(AbpAccountWebOpenIddictModule),
typeof(AbpAccountApplicationModule),
typeof(AbpAccountHttpApiModule),

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

Loading…
Cancel
Save