Merge branch 'master' into dev

pull/4595/head
erolarkat 5 years ago
commit 051a13a0f6

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

@ -146,16 +146,6 @@ Find [styles configuration in angular.json](https://angular.io/guide/workspace-c
"build": {
"options": {
"styles": [
{
"input": "node_modules/@abp/ng.theme.shared/styles/bootstrap-rtl.min.css",
"inject": false,
"bundleName": "bootstrap-rtl.min"
},
{
"input": "node_modules/bootstrap/dist/css/bootstrap.min.css",
"inject": true,
"bundleName": "bootstrap-ltr.min"
},
{
"input": "node_modules/@fortawesome/fontawesome-free/css/all.min.css",
"inject": true,
@ -166,6 +156,16 @@ Find [styles configuration in angular.json](https://angular.io/guide/workspace-c
"inject": true,
"bundleName": "fontawesome-v4-shims.min"
},
{
"input": "node_modules/@abp/ng.theme.shared/styles/bootstrap-rtl.min.css",
"inject": false,
"bundleName": "bootstrap-rtl.min"
},
{
"input": "node_modules/bootstrap/dist/css/bootstrap.min.css",
"inject": true,
"bundleName": "bootstrap-ltr.min"
},
"apps/dev-app/src/styles.scss"
],
}
@ -174,6 +174,7 @@ Find [styles configuration in angular.json](https://angular.io/guide/workspace-c
}
}
}
```
#### Step 2. Clear Lazy Loaded Fontawesome in AppComponent

@ -237,9 +237,10 @@ Until v3, we had been using a custom component, `abp-table`, as the default tabl
As of ABP v3, we have switched to a battle-tested, well-executed data grid: [ngx-datatable](https://github.com/swimlane/ngx-datatable). All ABP modules will come with ngx-datatable already implemented in them. `ThemeSharedModule` already exports `NgxDatatableModule`. So, if you install the package by running `yarn add @swimlane/ngx-datatable` in your terminal, it will be available for use in all modules of your app.
For proper styling, you need to add the following in the styles section of your angular.json file:
For proper styling, you need to add the following in the styles section of your angular.json file (above all others):
```json
"styles": [
{
"input": "node_modules/@swimlane/ngx-datatable/index.css",
"inject": true,
@ -254,7 +255,9 @@ For proper styling, you need to add the following in the styles section of your
"input": "node_modules/@swimlane/ngx-datatable/themes/material.css",
"inject": true,
"bundleName": "ngx-datatable-material"
}
},
// other styles
]
```
Since `abp-table` is not dropped yet, modules previously built by ABP v2.x will not suddenly lose all their tables. Yet, they will look and feel different from built-in ABP v3 modules. Therefore, you will probably want to convert the tables in those modules to ngx-datatable. In order to decrease the amount of work required to convert an abp-table into ngx-datatable, we have modified the [ListService](./List-Service.md) to work well with ngx-datatable and [introduced](https://volosoft.com/blog/attribute-directives-to-avoid-repetition-in-angular-templates) two new directives: `NgxDatatableListDirective` and `NgxDatatableDefaultDirective`.
@ -355,6 +358,103 @@ Once you bind the injected `ListService` instance through `NgxDatatableListDirec
**Important Note:** The `abp-table` is not removed, but is deprecated and will be removed in the future. Please consider switching to ngx-datatable.
### Extensions System [COMMERCIAL]
The extensions system is open sourced now and is publicly available from `@abp/ng.theme.shared/extensions` package instead of `@volo/abp.commercial.ng.ui`. Also, according to the new structure of config packages, the configuration is given through `forLazy` static methods as described above.
#### What to Do When Migrating?
If you have never used the extensions system before, you do not have to do anything. If you have, then please check the documentation again to see what changed. Extension system itself works the same as before. The only changes are the package you import from and the static method and the module you pass your contributors to.
### Lepton Theme Logos [COMMERCIAL]
In ABP v2.x, Lepton had one light and one dark logo per color theme. We have realized we could make it work with only one light and one dark logo. So, we have changed how Lepton looks up logo images and now you just need to have a `logo-light.png` and a `logo-dark.png` in your project.
#### What to Do When Migrating?
If you have switched template logo PNGs before, the change is simple:
- Go to `/assets/images/logo` folder.
- Rename `theme1.png` as `logo-light.png` and `theme1-reverse.png` as `logo-dark.png`.
- Delete all other `theme*.png` files.
If you have replaced the logo component(s), the change is a little bit different, but still simple. The `LayoutStateService` has a two new members: `primaryLogoColor` and `secondaryLogoColor`. They have an observable stream of `'light'` and `'dark'` strings as value. You can consume their value in your custom logo component templates with the `async` pipe. Here is a complete example which covers both primary and secondary (account) layout logos.
```js
import { AddReplaceableComponent } from '@abp/ng.core';
import { CommonModule } from '@angular/common';
import { APP_INITIALIZER, Component, Injector, NgModule } from '@angular/core';
import { Store } from '@ngxs/store';
import { eAccountComponents } from '@volo/abp.ng.account';
import {
AccountLayoutComponent,
eThemeLeptonComponents,
LayoutStateService,
} from '@volo/abp.ng.theme.lepton';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
@Component({
template: `
<div class="account-brand p-4 text-center mb-1" *ngIf="isAccount; else link">
<ng-template [ngTemplateOutlet]="link"></ng-template>
</div>
<ng-template #link>
<a [style.background-image]="logoUrl | async" class="navbar-brand" routerLink="/"></a>
</ng-template>
`,
})
export class LogoComponent {
isAccount: boolean;
logoColor: Observable<'dark' | 'light'>;
get logoUrl() {
return this.logoColor.pipe(map(color => `url(/assets/images/logo/logo-${color}.png)`));
}
constructor(injector: Injector) {
const layout = injector.get(LayoutStateService);
this.isAccount = Boolean(injector.get(AccountLayoutComponent, false));
this.logoColor = this.isAccount ? layout.secondaryLogoColor : layout.primaryLogoColor;
}
}
@NgModule({
imports: [CommonModule],
declarations: [LogoComponent],
exports: [LogoComponent],
})
export class LogoModule {}
export const APP_LOGO_PROVIDER = [
{ provide: APP_INITIALIZER, useFactory: switchLogos, multi: true, deps: [Store] },
];
export function switchLogos(store: Store) {
return () => {
store.dispatch(
new AddReplaceableComponent({
component: LogoComponent,
key: eThemeLeptonComponents.Logo,
}),
);
store.dispatch(
new AddReplaceableComponent({
component: LogoComponent,
key: eAccountComponents.Logo,
}),
);
};
}
```
Just add `APP_LOGO_PROVIDER` to the providers of your root module (usually `AppModule`) and you will have a custom logo component adjusting to the theme colors.
### Deprecated Interfaces
Some interfaces have long been marked as deprecated and now they are removed.

@ -32,7 +32,7 @@ A variable named `apiName` (available as of v2.4) is defined in each service. `a
The `providedIn` property of the services is defined as `'root'`. Therefore no need to add a service as a provider to a module. You can use a service by injecting it into a constructor as shown below:
```js
import { AbpApplicationConfigurationService } from '../app/shared/services';
import { AbpApplicationConfigurationService } from '../abp/applicationconfiguration/services';
//...
export class HomeComponent{
@ -48,14 +48,14 @@ The Angular compiler removes the services that have not been injected anywhere f
### Models
The generated models match the DTOs in the back-end. Each model is generated as a class under the `src/app/*/shared/models` folder.
The generated models match the DTOs in the back-end. Each model is generated as a class under the `src/app/*/models` folder.
There are a few [base classes](https://github.com/abpframework/abp/blob/dev/npm/ng-packs/packages/core/src/lib/models/dtos.ts) in the `@abp/ng.core` package. Some models extend these classes.
A class instance can be created as shown below:
```js
import { IdentityRoleCreateDto } from '../identity/shared/models';
import { IdentityRoleCreateDto } from '../identity/role/models'
//...
const instance = new IdentityRoleCreateDto({name: 'Role 1', isDefault: false, isPublic: true})
```

Binary file not shown.

Before

Width:  |  Height:  |  Size: 235 KiB

After

Width:  |  Height:  |  Size: 63 KiB

@ -237,7 +237,7 @@ namespace Volo.Abp.Cli.ProjectModification
_fileVersionStorage[package.Name] = newVersionWithPrefix;
return $"~{newVersionWithPrefix}";
return newVersionWithPrefix;
}
protected virtual List<JProperty> GetAbpPackagesFromPackageJson(JObject fileObject)

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

@ -1,5 +1,5 @@
{
"version": "3.0.0",
"version": "3.0.1",
"packages": [
"packages/*"
],

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

@ -1,6 +1,6 @@
{
"name": "@abp/ng.core",
"version": "3.0.0",
"version": "3.0.1",
"homepage": "https://abp.io",
"repository": {
"type": "git",

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -1,5 +1,5 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/core",
"publishConfig": {
"access": "public"

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

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

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

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

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

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

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

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

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

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

@ -1,11 +1,11 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/jstree",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/jquery": "~3.0.0",
"@abp/jquery": "~3.0.1",
"jstree": "^3.3.9"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/lodash",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.0",
"@abp/core": "~3.0.1",
"lodash": "^4.17.15"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,5 +1,5 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/luxon",
"publishConfig": {
"access": "public"

@ -1,11 +1,11 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/malihu-custom-scrollbar-plugin",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.0",
"@abp/core": "~3.0.1",
"malihu-custom-scrollbar-plugin": "^3.1.5"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/markdown-it",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.0",
"@abp/core": "~3.0.1",
"markdown-it": "^11.0.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

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

@ -1,11 +1,11 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/popper.js",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.0",
"@abp/core": "~3.0.1",
"popper.js": "^1.16.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,12 +1,12 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/prismjs",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/clipboard": "~3.0.0",
"@abp/core": "~3.0.0",
"@abp/clipboard": "~3.0.1",
"@abp/core": "~3.0.1",
"prismjs": "^1.20.0"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/select2",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.0",
"@abp/core": "~3.0.1",
"select2": "^4.0.13"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/signalr",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.0",
"@abp/core": "~3.0.1",
"@microsoft/signalr": "~3.1.5"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/sweetalert",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.0",
"@abp/core": "~3.0.1",
"sweetalert": "^2.1.2"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/timeago",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/jquery": "~3.0.0",
"@abp/jquery": "~3.0.1",
"timeago": "^1.6.7"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/toastr",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/jquery": "~3.0.0",
"@abp/jquery": "~3.0.1",
"toastr": "^2.1.4"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,14 +1,14 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/tui-editor",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/codemirror": "~3.0.0",
"@abp/highlight.js": "~3.0.0",
"@abp/jquery": "~3.0.0",
"@abp/markdown-it": "~3.0.0",
"@abp/codemirror": "~3.0.1",
"@abp/highlight.js": "~3.0.1",
"@abp/jquery": "~3.0.1",
"@abp/markdown-it": "~3.0.1",
"tui-editor": "^1.4.10"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,11 +1,11 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/uppy",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/core": "~3.0.0",
"@abp/core": "~3.0.1",
"uppy": "^1.16.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"

@ -1,6 +1,6 @@
{
"name": "@abp/utils",
"version": "3.0.0",
"version": "3.0.1",
"scripts": {
"prepublish": "yarn install --ignore-scripts && node prepublish.js",
"ng": "ng",

@ -1,12 +1,12 @@
{
"version": "3.0.0",
"version": "3.0.1",
"name": "@abp/virtual-file-explorer",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@abp/clipboard": "~3.0.0",
"@abp/prismjs": "~3.0.0"
"@abp/clipboard": "~3.0.1",
"@abp/prismjs": "~3.0.1"
},
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
}

@ -12,11 +12,11 @@
},
"private": true,
"dependencies": {
"@abp/ng.account": "~3.0.0",
"@abp/ng.identity": "~3.0.0",
"@abp/ng.setting-management": "~3.0.0",
"@abp/ng.tenant-management": "~3.0.0",
"@abp/ng.theme.basic": "~3.0.0",
"@abp/ng.account": "~3.0.1",
"@abp/ng.identity": "~3.0.1",
"@abp/ng.setting-management": "~3.0.1",
"@abp/ng.tenant-management": "~3.0.1",
"@abp/ng.theme.basic": "~3.0.1",
"@angular/animations": "~10.0.1",
"@angular/common": "~10.0.1",
"@angular/compiler": "~10.0.1",

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

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.0.tgz#5e6e5a223ffeca4a3860e9534865a8bab972d06e"
integrity sha512-wiPgQ5N1ahmmLe+Jf3UC/ZJMwAZ3uWgx89Ogd+MfdM7QaULHyxBNVE7JzzyRnEuMBuncpiNDIPH3xuNq99N98g==
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.1.tgz#21674211c5ffe3c32ab2eac3a45b92fe5aeac7e5"
integrity sha512-ejMfcqz0pdtPmW11NvnvRCSlWftrIaXK5SwIteIlm/vZ1ABAYOjH4Z4ucJCbv4VioyQRFKLqLwyCT3JdHdA5iQ==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.0"
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.1"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.0.tgz#25d75b7416beff4180613d601d3b27e4f191b936"
integrity sha512-BxPPkhpLeTkHVem10MD3TDddxL62TLRp/dpWtIee1rJ55aBrRhd7gj93VlN8uN2XOuZD+yHluhgAjpZYT+51DQ==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.0"
"@abp/bootstrap" "~3.0.0"
"@abp/bootstrap-datepicker" "~3.0.0"
"@abp/datatables.net-bs4" "~3.0.0"
"@abp/font-awesome" "~3.0.0"
"@abp/jquery-form" "~3.0.0"
"@abp/jquery-validation-unobtrusive" "~3.0.0"
"@abp/lodash" "~3.0.0"
"@abp/luxon" "~3.0.0"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.0"
"@abp/select2" "~3.0.0"
"@abp/sweetalert" "~3.0.0"
"@abp/timeago" "~3.0.0"
"@abp/toastr" "~3.0.0"
"@abp/aspnetcore.mvc.ui@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.0.tgz#738bb23a74fce192e394e4b110a85611c5e39afd"
integrity sha512-hHTjhNi31P5WT+0iMKgZuU9CyxA1ymxAFtaZZO6QBBln5JZqS2hOyfRrSPXm4snKG6Bhq7UxBX0BkNkoKCgIcQ==
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.1.tgz#dcfacf80bd276ac05f57a804c4e260c8281b30fd"
integrity sha512-TtkQDlThicD4fsMhp+dWB27HvY4Qg+1sIgU4zn/XOcUzeWoivmsFHv3oJV9uL+M8/78R537gcQRmEfRZReqjQA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.1"
"@abp/bootstrap" "~3.0.1"
"@abp/bootstrap-datepicker" "~3.0.1"
"@abp/datatables.net-bs4" "~3.0.1"
"@abp/font-awesome" "~3.0.1"
"@abp/jquery-form" "~3.0.1"
"@abp/jquery-validation-unobtrusive" "~3.0.1"
"@abp/lodash" "~3.0.1"
"@abp/luxon" "~3.0.1"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.1"
"@abp/select2" "~3.0.1"
"@abp/sweetalert" "~3.0.1"
"@abp/timeago" "~3.0.1"
"@abp/toastr" "~3.0.1"
"@abp/aspnetcore.mvc.ui@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.1.tgz#692c43132204c5a90f789ac4c2ee645ea3a81a1b"
integrity sha512-TcbPD7F0cMU32EkRxheyXD8iZVREiIpfRyh74TZApkPT9N4HhizvOqymOM1qPkcDjyWm4Ggdk+P8u+hwCMDijg==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,138 +41,138 @@
path "^0.12.7"
rimraf "^3.0.2"
"@abp/bootstrap-datepicker@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.0.tgz#6f60a45485aa1d522c8093627980797071325236"
integrity sha512-zfRRCHKEzaas1+0mzCAKkyCGoH9+4UYzcKT5GmWICktONSs81rEDH4QWg9XSvGzei3IghUzH4HM8XhI1qkfcJg==
"@abp/bootstrap-datepicker@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.1.tgz#595a88102f7173136b418634c1a276e67bab09ca"
integrity sha512-Pee5Q0lzYkm7qhVfDT/nZTRisZnwvS+FUwqGOkmq/WDgB9LwjgIww8EyzQEWanLfkrsROALTg529rJPfWdXPNQ==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.0.tgz#09b43961f7232cc53cb8fc60b9cd18387579ff77"
integrity sha512-J/ULYhUE48INqrOS+rdo1dek2lrscSkUKTQprpHrlYViM6oJvFCnA6eGaRyTM7ForYk8Jvy3FPuQQ5hRZZVDpw==
"@abp/bootstrap@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.1.tgz#d478f5bf773e7e25065918adc93eae37f773e4b6"
integrity sha512-TYNRM+nE8OaVYeUgtGtO41RSqJkBXMv7XRiYDG4FZf4vnSCR/E0pc8Hp7WUki6rO83WVWJeBAntmh3U48G+pOA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
bootstrap "^4.5.0"
bootstrap-v4-rtl "4.4.1-2"
"@abp/core@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.0.tgz#644643eecc5a6b6af0573bab9d8a9d6f872c8b40"
integrity sha512-FkYAK/r2BmufcWJw5Wl01psFuGKekTvg9/M/A19/l8GCYsZV+bmAFP1AMcUO5Cfr5h5ua6FsJ30mNIFcOX5kQA==
"@abp/core@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.1.tgz#ac3f55d8fe4100a1c318b4e8d48e77376206f521"
integrity sha512-2pBiSoJGP0nRIb1avJ4lMNQUqoPmR3DCNrvmBkYMHgiv8BS2Qc9qxf8iW3NQ3tymxDH8QO/TGaej24tpbhZQUQ==
dependencies:
"@abp/utils" "~2.9.0"
"@abp/datatables.net-bs4@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.0.tgz#da0c6c5f07e09aeb0dbb0258339761724bbae315"
integrity sha512-LTIe7cG/if8lESIl761tgc/STyU1lCsJfkZnmsUOiuU5MB71DhSjUrKRg3+w/tVuw9LQwZ2IF5y7DTAaBJGcZw==
"@abp/datatables.net-bs4@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.1.tgz#9a7617f2fe42bf876613fe8b5012a7901444586d"
integrity sha512-DyqK8+H7Vo+AuLJsZ6tdh/yN5JfQxUqCAk2gPbv6OqJp1tw6EbbSzPW7wVyRfy3dEHDTENBivkJQH2+G3ba2aQ==
dependencies:
"@abp/datatables.net" "~3.0.0"
"@abp/datatables.net" "~3.0.1"
datatables.net-bs4 "^1.10.21"
"@abp/datatables.net@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.0.tgz#9b124345e19462e7f19cc46961d5d9354f55837d"
integrity sha512-XP0UmzPd1sKCAx4EHDjtnKLx/xjQzLXHp/3fzArHcWiPlNhzJvCwSRuo6Wsxc+TXAg/bGfSRl5cWtJ6L3d3Lbw==
"@abp/datatables.net@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.1.tgz#4556bba2f9a337ec4580416e31963ea0c9e10e29"
integrity sha512-5MBTxVdrui65dq7hKgSsxmcg1xm+IJk0MMpXKlw7DdfqmxXcpOcVFSmVV5xg9vYrc8iK1i5+5hOfQDZeEzRzPw==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
datatables.net "^1.10.21"
"@abp/font-awesome@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.0.tgz#1f86b54e0d0985bb8ca6d75c2b2c5bf29c4775a0"
integrity sha512-z0s4ELIwiPs8owB2O+FltDwcsZZLpVHUMTF0SCUUD2ec/MlOE6BzdLQBIEq/FL2VJu/GfttAJojyrjHO2CwEGg==
"@abp/font-awesome@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.1.tgz#81c79a917d6f77894033b2eacbff033f9da467c5"
integrity sha512-DSgsiQ29OQwS8hgZ+0Xxbqax01vVEcXJvIisrurdkSuW728GHV/PZpWUl/CnHsJxTnUWO//eLRogXkNYsTqoRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
"@fortawesome/fontawesome-free" "^5.13.0"
"@abp/jquery-form@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.0.tgz#ddd86a810c8ffb8f5981fb1aca60504af1cc6365"
integrity sha512-F6dGzrfjeSKw/7IjJ/hYpJh1hqhURwbvk29+QhomQKyztV7t4WPa8PIbiQ0yaC2cCDnauRRsCijDpxGXFjgxcA==
"@abp/jquery-form@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.1.tgz#932934267b518ab012412808d60e262e9c4eaf95"
integrity sha512-ked53XkkWPHIrOpQpR6LgkpdW2EG/4FZKhVqpf9KgVyExbqEtc4+8NV9dplXfFJOA4HpfHEnOHttqqq3dmnbsg==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.0.tgz#3d35bb72de7ed89a7b5829fc91bec1a2006f9f2e"
integrity sha512-JSVbRMT5yPbWpxwVNc6lHMsmFGaiOAocvTLGvDonTlUMqflE6K3CFyJt+ddgFPXNSOEeYlfpxL3WGP1p7sXdDQ==
"@abp/jquery-validation-unobtrusive@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.1.tgz#de911356a66b426e1a783a60e50aea4ab8000342"
integrity sha512-ANpqIehI9YPRRJCj4cTcLRBsKjVZsmOBjZBF1K4Dfa0n2DEVtPqPrmHzkpLvxxbdw6P9JFCdOvGZeSYxqPfbgQ==
dependencies:
"@abp/jquery-validation" "~3.0.0"
"@abp/jquery-validation" "~3.0.1"
jquery-validation-unobtrusive "^3.2.11"
"@abp/jquery-validation@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.0.tgz#c386254384efd756ea75ed11e8208c2a6ed7f86a"
integrity sha512-wNfNW8+Nct0GtKALRy5ysdCKGlPXyCugF24MKsKpGne9HkJLNrW390BxNLdJahA1jGHmcwjkhAHv++PpY1kifg==
"@abp/jquery-validation@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.1.tgz#21292bb4a750c9dff7bf451cf6aaceb9d3720b05"
integrity sha512-QIleJ4Hcj7doNnD3qTN1WySJIbMmb3K/FLrin/n1rISoJfrF3da0Snjz7hMv+BQVQK/5OJAJ08rcw6EmaGNwMA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-validation "^1.19.2"
"@abp/jquery@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.0.tgz#9e7da443e4069d315e655febe250514f50634704"
integrity sha512-SbbFegvDfJs8IWPdc94ok+usMg4Ow9G6zBx6RcEwP3cbfDr6Aq/GyzkPhxdV3ro9XSwQUTlwNKx7XpYSCeiJjQ==
"@abp/jquery@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.1.tgz#2530d960c0bab43430df81df705063fba0a78520"
integrity sha512-M2MGyGlm4QzE17TGavjCNsZKHuRrfYg8zBz6eur5Z2Qepf8+pXTE4B59kPoNIzRT+MBpquR+N/VdH+vW1Jp8kQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
jquery "~3.5.1"
"@abp/lodash@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.0.tgz#2f0257a75e17d94c6f042f78171f92b781b59401"
integrity sha512-+Z0l8VGNN0zdwuT0B3R+HGR54H3/dySJFfIoe7C/+rpFA6dbC8kX6SceJmeLjZbhQG/kiLvKVikE1BsdamfTSQ==
"@abp/lodash@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.1.tgz#01c1c1717f0bb98d3077d0e531cb3e2c60576b80"
integrity sha512-GKUVvj5Z7kUfd2Gc9nKroduJEH9ZOKlkpIFt23KpbTGv2bT0NrmA7xJuOxK3h+5dKTAovQSR6rtVA13hDBFRGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
lodash "^4.17.15"
"@abp/luxon@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.0.tgz#b366746c24d8688313caf21f3833326b6a4d82f6"
integrity sha512-L9j6QeqNfY4bngj6Vs8HCKkIzC6hfCioe4bTxKH7Oaav0t4Lr0xiqt3+mGDSTL+/f8evHUal9COCSLSEDWTX0Q==
"@abp/luxon@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.1.tgz#5b8e15896f0c5b33f5da05c9db51cfd17bd366a8"
integrity sha512-6mo0wR3mblAgZGSqJJH2oAjmg8/2vdCWaZBsR1iJGsyafFn+D0XWBOxqB+tASnqGNuyIRJAOKB1gs17l7OvzQg==
dependencies:
luxon "^1.24.1"
"@abp/malihu-custom-scrollbar-plugin@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.0.tgz#7183e0601936d4d96358e802bc9815f7c07fa80e"
integrity sha512-KUOYU6KDV4HyZyAhHD9IdE7MLQq9eaRk4NulS3ObjbQ72+JyzTRoUPBBoZIWOOytzQGX64FINcDrCcjJWEncOw==
"@abp/malihu-custom-scrollbar-plugin@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.1.tgz#9a0ae71fbe78ff70698f4cb6724ad8d98ce6ff1a"
integrity sha512-0KsHUZC5TygzoorXdX1I8rJPntAEV4wHSD2pfZhdguTkb1/rAkggDH47drqkiUze6meBRp9OVCpHT8UZD8ZpGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.0.tgz#7ad07d6b0e55ac19cd087455630a52c15f1aaac6"
integrity sha512-M2RTCY1CS1nQECM6LrjyXbkEkHLXpQtxIEA0PW74P9QqknNfUci8YkM0caUA6w6TfdKnXFVWVAy2aQ+phQgm6Q==
"@abp/select2@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.1.tgz#3015f9103c94c56f6646d30ba785629931cf3cad"
integrity sha512-PDmGw+0gannJxAc+ERMR/KM51gZ3ykAkAlvqw25UFAfN3kAGcqu0Ue9bmQ8m4EMyDLA3g6/ZFge3mkBuX2ogRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
select2 "^4.0.13"
"@abp/sweetalert@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.0.tgz#a5e6d56ad3f2528d115a62f22e6c7051c257d223"
integrity sha512-Nz0R+8OHABUXishJb25TTopuUaZNU4nerKAF9FTUFmAYrQzpaIf4sMWEUVNCXD6rajPcNCwMql+EV78bEkKKJw==
"@abp/sweetalert@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.1.tgz#4cd04d224b2d556eb354b5a229afa8265798aa0b"
integrity sha512-pGgJiqr+zTovbREIBGlRk2q33/obvbWJxev8VQTFugQEckUHvIUVrXyzVhOLdlMJnWN1ZN4S+l1E1uNhe4+MPA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
sweetalert "^2.1.2"
"@abp/timeago@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.0.tgz#6dbe6708be5f805d2b48da25385d9197de0d3b26"
integrity sha512-R1h8EbQHVrcBNJYMGSiA0woCNBxP/G6KCurqSENLbRM52W7g0Ky6UtNVDWn4PQ6Af1jgtJDVMfbNP5WqNKgmNw==
"@abp/timeago@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.1.tgz#6e30e8d2c2e52766e110f74f5ecfce6673964efe"
integrity sha512-7HfxjfJ7vQQcoI6oulB2gjyNuA3vVMPSep0qSmSAZuIYhm/Im/h87qG1i16dxLea4MVaFjnRqKwaNCVvlrxSNA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
timeago "^1.6.7"
"@abp/toastr@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.0.tgz#21f966e9c108ffb01961000bbac7f50bbb45d29d"
integrity sha512-zL/VIaLdWOzsTH+8cjD3uDkUWVy45eqTzJzfO+3H7d8xCKoQSPNfFt1zuWB0Ws3FVWTd5YcRR0Qngl1fF1yrJw==
"@abp/toastr@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.1.tgz#b3c9eefc09ac94cb3e672e3cd04ade24d8d2b7ce"
integrity sha512-FqM0bjXDusAyJEemTwRd45NiAXx7R6RA583sjBBigLB8xAXx898Yiy2zQT+2vDGhAc0WuX1gcYnNVfR1KexjVQ==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
toastr "^2.1.4"
"@abp/utils@~2.9.0":

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

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.0.tgz#5e6e5a223ffeca4a3860e9534865a8bab972d06e"
integrity sha512-wiPgQ5N1ahmmLe+Jf3UC/ZJMwAZ3uWgx89Ogd+MfdM7QaULHyxBNVE7JzzyRnEuMBuncpiNDIPH3xuNq99N98g==
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.1.tgz#21674211c5ffe3c32ab2eac3a45b92fe5aeac7e5"
integrity sha512-ejMfcqz0pdtPmW11NvnvRCSlWftrIaXK5SwIteIlm/vZ1ABAYOjH4Z4ucJCbv4VioyQRFKLqLwyCT3JdHdA5iQ==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.0"
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.1"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.0.tgz#25d75b7416beff4180613d601d3b27e4f191b936"
integrity sha512-BxPPkhpLeTkHVem10MD3TDddxL62TLRp/dpWtIee1rJ55aBrRhd7gj93VlN8uN2XOuZD+yHluhgAjpZYT+51DQ==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.0"
"@abp/bootstrap" "~3.0.0"
"@abp/bootstrap-datepicker" "~3.0.0"
"@abp/datatables.net-bs4" "~3.0.0"
"@abp/font-awesome" "~3.0.0"
"@abp/jquery-form" "~3.0.0"
"@abp/jquery-validation-unobtrusive" "~3.0.0"
"@abp/lodash" "~3.0.0"
"@abp/luxon" "~3.0.0"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.0"
"@abp/select2" "~3.0.0"
"@abp/sweetalert" "~3.0.0"
"@abp/timeago" "~3.0.0"
"@abp/toastr" "~3.0.0"
"@abp/aspnetcore.mvc.ui@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.0.tgz#738bb23a74fce192e394e4b110a85611c5e39afd"
integrity sha512-hHTjhNi31P5WT+0iMKgZuU9CyxA1ymxAFtaZZO6QBBln5JZqS2hOyfRrSPXm4snKG6Bhq7UxBX0BkNkoKCgIcQ==
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.1.tgz#dcfacf80bd276ac05f57a804c4e260c8281b30fd"
integrity sha512-TtkQDlThicD4fsMhp+dWB27HvY4Qg+1sIgU4zn/XOcUzeWoivmsFHv3oJV9uL+M8/78R537gcQRmEfRZReqjQA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.1"
"@abp/bootstrap" "~3.0.1"
"@abp/bootstrap-datepicker" "~3.0.1"
"@abp/datatables.net-bs4" "~3.0.1"
"@abp/font-awesome" "~3.0.1"
"@abp/jquery-form" "~3.0.1"
"@abp/jquery-validation-unobtrusive" "~3.0.1"
"@abp/lodash" "~3.0.1"
"@abp/luxon" "~3.0.1"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.1"
"@abp/select2" "~3.0.1"
"@abp/sweetalert" "~3.0.1"
"@abp/timeago" "~3.0.1"
"@abp/toastr" "~3.0.1"
"@abp/aspnetcore.mvc.ui@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.1.tgz#692c43132204c5a90f789ac4c2ee645ea3a81a1b"
integrity sha512-TcbPD7F0cMU32EkRxheyXD8iZVREiIpfRyh74TZApkPT9N4HhizvOqymOM1qPkcDjyWm4Ggdk+P8u+hwCMDijg==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,138 +41,138 @@
path "^0.12.7"
rimraf "^3.0.2"
"@abp/bootstrap-datepicker@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.0.tgz#6f60a45485aa1d522c8093627980797071325236"
integrity sha512-zfRRCHKEzaas1+0mzCAKkyCGoH9+4UYzcKT5GmWICktONSs81rEDH4QWg9XSvGzei3IghUzH4HM8XhI1qkfcJg==
"@abp/bootstrap-datepicker@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.1.tgz#595a88102f7173136b418634c1a276e67bab09ca"
integrity sha512-Pee5Q0lzYkm7qhVfDT/nZTRisZnwvS+FUwqGOkmq/WDgB9LwjgIww8EyzQEWanLfkrsROALTg529rJPfWdXPNQ==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.0.tgz#09b43961f7232cc53cb8fc60b9cd18387579ff77"
integrity sha512-J/ULYhUE48INqrOS+rdo1dek2lrscSkUKTQprpHrlYViM6oJvFCnA6eGaRyTM7ForYk8Jvy3FPuQQ5hRZZVDpw==
"@abp/bootstrap@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.1.tgz#d478f5bf773e7e25065918adc93eae37f773e4b6"
integrity sha512-TYNRM+nE8OaVYeUgtGtO41RSqJkBXMv7XRiYDG4FZf4vnSCR/E0pc8Hp7WUki6rO83WVWJeBAntmh3U48G+pOA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
bootstrap "^4.5.0"
bootstrap-v4-rtl "4.4.1-2"
"@abp/core@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.0.tgz#644643eecc5a6b6af0573bab9d8a9d6f872c8b40"
integrity sha512-FkYAK/r2BmufcWJw5Wl01psFuGKekTvg9/M/A19/l8GCYsZV+bmAFP1AMcUO5Cfr5h5ua6FsJ30mNIFcOX5kQA==
"@abp/core@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.1.tgz#ac3f55d8fe4100a1c318b4e8d48e77376206f521"
integrity sha512-2pBiSoJGP0nRIb1avJ4lMNQUqoPmR3DCNrvmBkYMHgiv8BS2Qc9qxf8iW3NQ3tymxDH8QO/TGaej24tpbhZQUQ==
dependencies:
"@abp/utils" "~2.9.0"
"@abp/datatables.net-bs4@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.0.tgz#da0c6c5f07e09aeb0dbb0258339761724bbae315"
integrity sha512-LTIe7cG/if8lESIl761tgc/STyU1lCsJfkZnmsUOiuU5MB71DhSjUrKRg3+w/tVuw9LQwZ2IF5y7DTAaBJGcZw==
"@abp/datatables.net-bs4@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.1.tgz#9a7617f2fe42bf876613fe8b5012a7901444586d"
integrity sha512-DyqK8+H7Vo+AuLJsZ6tdh/yN5JfQxUqCAk2gPbv6OqJp1tw6EbbSzPW7wVyRfy3dEHDTENBivkJQH2+G3ba2aQ==
dependencies:
"@abp/datatables.net" "~3.0.0"
"@abp/datatables.net" "~3.0.1"
datatables.net-bs4 "^1.10.21"
"@abp/datatables.net@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.0.tgz#9b124345e19462e7f19cc46961d5d9354f55837d"
integrity sha512-XP0UmzPd1sKCAx4EHDjtnKLx/xjQzLXHp/3fzArHcWiPlNhzJvCwSRuo6Wsxc+TXAg/bGfSRl5cWtJ6L3d3Lbw==
"@abp/datatables.net@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.1.tgz#4556bba2f9a337ec4580416e31963ea0c9e10e29"
integrity sha512-5MBTxVdrui65dq7hKgSsxmcg1xm+IJk0MMpXKlw7DdfqmxXcpOcVFSmVV5xg9vYrc8iK1i5+5hOfQDZeEzRzPw==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
datatables.net "^1.10.21"
"@abp/font-awesome@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.0.tgz#1f86b54e0d0985bb8ca6d75c2b2c5bf29c4775a0"
integrity sha512-z0s4ELIwiPs8owB2O+FltDwcsZZLpVHUMTF0SCUUD2ec/MlOE6BzdLQBIEq/FL2VJu/GfttAJojyrjHO2CwEGg==
"@abp/font-awesome@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.1.tgz#81c79a917d6f77894033b2eacbff033f9da467c5"
integrity sha512-DSgsiQ29OQwS8hgZ+0Xxbqax01vVEcXJvIisrurdkSuW728GHV/PZpWUl/CnHsJxTnUWO//eLRogXkNYsTqoRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
"@fortawesome/fontawesome-free" "^5.13.0"
"@abp/jquery-form@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.0.tgz#ddd86a810c8ffb8f5981fb1aca60504af1cc6365"
integrity sha512-F6dGzrfjeSKw/7IjJ/hYpJh1hqhURwbvk29+QhomQKyztV7t4WPa8PIbiQ0yaC2cCDnauRRsCijDpxGXFjgxcA==
"@abp/jquery-form@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.1.tgz#932934267b518ab012412808d60e262e9c4eaf95"
integrity sha512-ked53XkkWPHIrOpQpR6LgkpdW2EG/4FZKhVqpf9KgVyExbqEtc4+8NV9dplXfFJOA4HpfHEnOHttqqq3dmnbsg==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.0.tgz#3d35bb72de7ed89a7b5829fc91bec1a2006f9f2e"
integrity sha512-JSVbRMT5yPbWpxwVNc6lHMsmFGaiOAocvTLGvDonTlUMqflE6K3CFyJt+ddgFPXNSOEeYlfpxL3WGP1p7sXdDQ==
"@abp/jquery-validation-unobtrusive@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.1.tgz#de911356a66b426e1a783a60e50aea4ab8000342"
integrity sha512-ANpqIehI9YPRRJCj4cTcLRBsKjVZsmOBjZBF1K4Dfa0n2DEVtPqPrmHzkpLvxxbdw6P9JFCdOvGZeSYxqPfbgQ==
dependencies:
"@abp/jquery-validation" "~3.0.0"
"@abp/jquery-validation" "~3.0.1"
jquery-validation-unobtrusive "^3.2.11"
"@abp/jquery-validation@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.0.tgz#c386254384efd756ea75ed11e8208c2a6ed7f86a"
integrity sha512-wNfNW8+Nct0GtKALRy5ysdCKGlPXyCugF24MKsKpGne9HkJLNrW390BxNLdJahA1jGHmcwjkhAHv++PpY1kifg==
"@abp/jquery-validation@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.1.tgz#21292bb4a750c9dff7bf451cf6aaceb9d3720b05"
integrity sha512-QIleJ4Hcj7doNnD3qTN1WySJIbMmb3K/FLrin/n1rISoJfrF3da0Snjz7hMv+BQVQK/5OJAJ08rcw6EmaGNwMA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-validation "^1.19.2"
"@abp/jquery@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.0.tgz#9e7da443e4069d315e655febe250514f50634704"
integrity sha512-SbbFegvDfJs8IWPdc94ok+usMg4Ow9G6zBx6RcEwP3cbfDr6Aq/GyzkPhxdV3ro9XSwQUTlwNKx7XpYSCeiJjQ==
"@abp/jquery@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.1.tgz#2530d960c0bab43430df81df705063fba0a78520"
integrity sha512-M2MGyGlm4QzE17TGavjCNsZKHuRrfYg8zBz6eur5Z2Qepf8+pXTE4B59kPoNIzRT+MBpquR+N/VdH+vW1Jp8kQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
jquery "~3.5.1"
"@abp/lodash@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.0.tgz#2f0257a75e17d94c6f042f78171f92b781b59401"
integrity sha512-+Z0l8VGNN0zdwuT0B3R+HGR54H3/dySJFfIoe7C/+rpFA6dbC8kX6SceJmeLjZbhQG/kiLvKVikE1BsdamfTSQ==
"@abp/lodash@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.1.tgz#01c1c1717f0bb98d3077d0e531cb3e2c60576b80"
integrity sha512-GKUVvj5Z7kUfd2Gc9nKroduJEH9ZOKlkpIFt23KpbTGv2bT0NrmA7xJuOxK3h+5dKTAovQSR6rtVA13hDBFRGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
lodash "^4.17.15"
"@abp/luxon@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.0.tgz#b366746c24d8688313caf21f3833326b6a4d82f6"
integrity sha512-L9j6QeqNfY4bngj6Vs8HCKkIzC6hfCioe4bTxKH7Oaav0t4Lr0xiqt3+mGDSTL+/f8evHUal9COCSLSEDWTX0Q==
"@abp/luxon@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.1.tgz#5b8e15896f0c5b33f5da05c9db51cfd17bd366a8"
integrity sha512-6mo0wR3mblAgZGSqJJH2oAjmg8/2vdCWaZBsR1iJGsyafFn+D0XWBOxqB+tASnqGNuyIRJAOKB1gs17l7OvzQg==
dependencies:
luxon "^1.24.1"
"@abp/malihu-custom-scrollbar-plugin@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.0.tgz#7183e0601936d4d96358e802bc9815f7c07fa80e"
integrity sha512-KUOYU6KDV4HyZyAhHD9IdE7MLQq9eaRk4NulS3ObjbQ72+JyzTRoUPBBoZIWOOytzQGX64FINcDrCcjJWEncOw==
"@abp/malihu-custom-scrollbar-plugin@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.1.tgz#9a0ae71fbe78ff70698f4cb6724ad8d98ce6ff1a"
integrity sha512-0KsHUZC5TygzoorXdX1I8rJPntAEV4wHSD2pfZhdguTkb1/rAkggDH47drqkiUze6meBRp9OVCpHT8UZD8ZpGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.0.tgz#7ad07d6b0e55ac19cd087455630a52c15f1aaac6"
integrity sha512-M2RTCY1CS1nQECM6LrjyXbkEkHLXpQtxIEA0PW74P9QqknNfUci8YkM0caUA6w6TfdKnXFVWVAy2aQ+phQgm6Q==
"@abp/select2@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.1.tgz#3015f9103c94c56f6646d30ba785629931cf3cad"
integrity sha512-PDmGw+0gannJxAc+ERMR/KM51gZ3ykAkAlvqw25UFAfN3kAGcqu0Ue9bmQ8m4EMyDLA3g6/ZFge3mkBuX2ogRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
select2 "^4.0.13"
"@abp/sweetalert@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.0.tgz#a5e6d56ad3f2528d115a62f22e6c7051c257d223"
integrity sha512-Nz0R+8OHABUXishJb25TTopuUaZNU4nerKAF9FTUFmAYrQzpaIf4sMWEUVNCXD6rajPcNCwMql+EV78bEkKKJw==
"@abp/sweetalert@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.1.tgz#4cd04d224b2d556eb354b5a229afa8265798aa0b"
integrity sha512-pGgJiqr+zTovbREIBGlRk2q33/obvbWJxev8VQTFugQEckUHvIUVrXyzVhOLdlMJnWN1ZN4S+l1E1uNhe4+MPA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
sweetalert "^2.1.2"
"@abp/timeago@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.0.tgz#6dbe6708be5f805d2b48da25385d9197de0d3b26"
integrity sha512-R1h8EbQHVrcBNJYMGSiA0woCNBxP/G6KCurqSENLbRM52W7g0Ky6UtNVDWn4PQ6Af1jgtJDVMfbNP5WqNKgmNw==
"@abp/timeago@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.1.tgz#6e30e8d2c2e52766e110f74f5ecfce6673964efe"
integrity sha512-7HfxjfJ7vQQcoI6oulB2gjyNuA3vVMPSep0qSmSAZuIYhm/Im/h87qG1i16dxLea4MVaFjnRqKwaNCVvlrxSNA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
timeago "^1.6.7"
"@abp/toastr@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.0.tgz#21f966e9c108ffb01961000bbac7f50bbb45d29d"
integrity sha512-zL/VIaLdWOzsTH+8cjD3uDkUWVy45eqTzJzfO+3H7d8xCKoQSPNfFt1zuWB0Ws3FVWTd5YcRR0Qngl1fF1yrJw==
"@abp/toastr@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.1.tgz#b3c9eefc09ac94cb3e672e3cd04ade24d8d2b7ce"
integrity sha512-FqM0bjXDusAyJEemTwRd45NiAXx7R6RA583sjBBigLB8xAXx898Yiy2zQT+2vDGhAc0WuX1gcYnNVfR1KexjVQ==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
toastr "^2.1.4"
"@abp/utils@~2.9.0":

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

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.0.tgz#5e6e5a223ffeca4a3860e9534865a8bab972d06e"
integrity sha512-wiPgQ5N1ahmmLe+Jf3UC/ZJMwAZ3uWgx89Ogd+MfdM7QaULHyxBNVE7JzzyRnEuMBuncpiNDIPH3xuNq99N98g==
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.1.tgz#21674211c5ffe3c32ab2eac3a45b92fe5aeac7e5"
integrity sha512-ejMfcqz0pdtPmW11NvnvRCSlWftrIaXK5SwIteIlm/vZ1ABAYOjH4Z4ucJCbv4VioyQRFKLqLwyCT3JdHdA5iQ==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.0"
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.1"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.0.tgz#25d75b7416beff4180613d601d3b27e4f191b936"
integrity sha512-BxPPkhpLeTkHVem10MD3TDddxL62TLRp/dpWtIee1rJ55aBrRhd7gj93VlN8uN2XOuZD+yHluhgAjpZYT+51DQ==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.0"
"@abp/bootstrap" "~3.0.0"
"@abp/bootstrap-datepicker" "~3.0.0"
"@abp/datatables.net-bs4" "~3.0.0"
"@abp/font-awesome" "~3.0.0"
"@abp/jquery-form" "~3.0.0"
"@abp/jquery-validation-unobtrusive" "~3.0.0"
"@abp/lodash" "~3.0.0"
"@abp/luxon" "~3.0.0"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.0"
"@abp/select2" "~3.0.0"
"@abp/sweetalert" "~3.0.0"
"@abp/timeago" "~3.0.0"
"@abp/toastr" "~3.0.0"
"@abp/aspnetcore.mvc.ui@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.0.tgz#738bb23a74fce192e394e4b110a85611c5e39afd"
integrity sha512-hHTjhNi31P5WT+0iMKgZuU9CyxA1ymxAFtaZZO6QBBln5JZqS2hOyfRrSPXm4snKG6Bhq7UxBX0BkNkoKCgIcQ==
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.1.tgz#dcfacf80bd276ac05f57a804c4e260c8281b30fd"
integrity sha512-TtkQDlThicD4fsMhp+dWB27HvY4Qg+1sIgU4zn/XOcUzeWoivmsFHv3oJV9uL+M8/78R537gcQRmEfRZReqjQA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.1"
"@abp/bootstrap" "~3.0.1"
"@abp/bootstrap-datepicker" "~3.0.1"
"@abp/datatables.net-bs4" "~3.0.1"
"@abp/font-awesome" "~3.0.1"
"@abp/jquery-form" "~3.0.1"
"@abp/jquery-validation-unobtrusive" "~3.0.1"
"@abp/lodash" "~3.0.1"
"@abp/luxon" "~3.0.1"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.1"
"@abp/select2" "~3.0.1"
"@abp/sweetalert" "~3.0.1"
"@abp/timeago" "~3.0.1"
"@abp/toastr" "~3.0.1"
"@abp/aspnetcore.mvc.ui@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.1.tgz#692c43132204c5a90f789ac4c2ee645ea3a81a1b"
integrity sha512-TcbPD7F0cMU32EkRxheyXD8iZVREiIpfRyh74TZApkPT9N4HhizvOqymOM1qPkcDjyWm4Ggdk+P8u+hwCMDijg==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,138 +41,138 @@
path "^0.12.7"
rimraf "^3.0.2"
"@abp/bootstrap-datepicker@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.0.tgz#6f60a45485aa1d522c8093627980797071325236"
integrity sha512-zfRRCHKEzaas1+0mzCAKkyCGoH9+4UYzcKT5GmWICktONSs81rEDH4QWg9XSvGzei3IghUzH4HM8XhI1qkfcJg==
"@abp/bootstrap-datepicker@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.1.tgz#595a88102f7173136b418634c1a276e67bab09ca"
integrity sha512-Pee5Q0lzYkm7qhVfDT/nZTRisZnwvS+FUwqGOkmq/WDgB9LwjgIww8EyzQEWanLfkrsROALTg529rJPfWdXPNQ==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.0.tgz#09b43961f7232cc53cb8fc60b9cd18387579ff77"
integrity sha512-J/ULYhUE48INqrOS+rdo1dek2lrscSkUKTQprpHrlYViM6oJvFCnA6eGaRyTM7ForYk8Jvy3FPuQQ5hRZZVDpw==
"@abp/bootstrap@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.1.tgz#d478f5bf773e7e25065918adc93eae37f773e4b6"
integrity sha512-TYNRM+nE8OaVYeUgtGtO41RSqJkBXMv7XRiYDG4FZf4vnSCR/E0pc8Hp7WUki6rO83WVWJeBAntmh3U48G+pOA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
bootstrap "^4.5.0"
bootstrap-v4-rtl "4.4.1-2"
"@abp/core@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.0.tgz#644643eecc5a6b6af0573bab9d8a9d6f872c8b40"
integrity sha512-FkYAK/r2BmufcWJw5Wl01psFuGKekTvg9/M/A19/l8GCYsZV+bmAFP1AMcUO5Cfr5h5ua6FsJ30mNIFcOX5kQA==
"@abp/core@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.1.tgz#ac3f55d8fe4100a1c318b4e8d48e77376206f521"
integrity sha512-2pBiSoJGP0nRIb1avJ4lMNQUqoPmR3DCNrvmBkYMHgiv8BS2Qc9qxf8iW3NQ3tymxDH8QO/TGaej24tpbhZQUQ==
dependencies:
"@abp/utils" "~2.9.0"
"@abp/datatables.net-bs4@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.0.tgz#da0c6c5f07e09aeb0dbb0258339761724bbae315"
integrity sha512-LTIe7cG/if8lESIl761tgc/STyU1lCsJfkZnmsUOiuU5MB71DhSjUrKRg3+w/tVuw9LQwZ2IF5y7DTAaBJGcZw==
"@abp/datatables.net-bs4@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.1.tgz#9a7617f2fe42bf876613fe8b5012a7901444586d"
integrity sha512-DyqK8+H7Vo+AuLJsZ6tdh/yN5JfQxUqCAk2gPbv6OqJp1tw6EbbSzPW7wVyRfy3dEHDTENBivkJQH2+G3ba2aQ==
dependencies:
"@abp/datatables.net" "~3.0.0"
"@abp/datatables.net" "~3.0.1"
datatables.net-bs4 "^1.10.21"
"@abp/datatables.net@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.0.tgz#9b124345e19462e7f19cc46961d5d9354f55837d"
integrity sha512-XP0UmzPd1sKCAx4EHDjtnKLx/xjQzLXHp/3fzArHcWiPlNhzJvCwSRuo6Wsxc+TXAg/bGfSRl5cWtJ6L3d3Lbw==
"@abp/datatables.net@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.1.tgz#4556bba2f9a337ec4580416e31963ea0c9e10e29"
integrity sha512-5MBTxVdrui65dq7hKgSsxmcg1xm+IJk0MMpXKlw7DdfqmxXcpOcVFSmVV5xg9vYrc8iK1i5+5hOfQDZeEzRzPw==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
datatables.net "^1.10.21"
"@abp/font-awesome@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.0.tgz#1f86b54e0d0985bb8ca6d75c2b2c5bf29c4775a0"
integrity sha512-z0s4ELIwiPs8owB2O+FltDwcsZZLpVHUMTF0SCUUD2ec/MlOE6BzdLQBIEq/FL2VJu/GfttAJojyrjHO2CwEGg==
"@abp/font-awesome@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.1.tgz#81c79a917d6f77894033b2eacbff033f9da467c5"
integrity sha512-DSgsiQ29OQwS8hgZ+0Xxbqax01vVEcXJvIisrurdkSuW728GHV/PZpWUl/CnHsJxTnUWO//eLRogXkNYsTqoRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
"@fortawesome/fontawesome-free" "^5.13.0"
"@abp/jquery-form@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.0.tgz#ddd86a810c8ffb8f5981fb1aca60504af1cc6365"
integrity sha512-F6dGzrfjeSKw/7IjJ/hYpJh1hqhURwbvk29+QhomQKyztV7t4WPa8PIbiQ0yaC2cCDnauRRsCijDpxGXFjgxcA==
"@abp/jquery-form@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.1.tgz#932934267b518ab012412808d60e262e9c4eaf95"
integrity sha512-ked53XkkWPHIrOpQpR6LgkpdW2EG/4FZKhVqpf9KgVyExbqEtc4+8NV9dplXfFJOA4HpfHEnOHttqqq3dmnbsg==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.0.tgz#3d35bb72de7ed89a7b5829fc91bec1a2006f9f2e"
integrity sha512-JSVbRMT5yPbWpxwVNc6lHMsmFGaiOAocvTLGvDonTlUMqflE6K3CFyJt+ddgFPXNSOEeYlfpxL3WGP1p7sXdDQ==
"@abp/jquery-validation-unobtrusive@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.1.tgz#de911356a66b426e1a783a60e50aea4ab8000342"
integrity sha512-ANpqIehI9YPRRJCj4cTcLRBsKjVZsmOBjZBF1K4Dfa0n2DEVtPqPrmHzkpLvxxbdw6P9JFCdOvGZeSYxqPfbgQ==
dependencies:
"@abp/jquery-validation" "~3.0.0"
"@abp/jquery-validation" "~3.0.1"
jquery-validation-unobtrusive "^3.2.11"
"@abp/jquery-validation@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.0.tgz#c386254384efd756ea75ed11e8208c2a6ed7f86a"
integrity sha512-wNfNW8+Nct0GtKALRy5ysdCKGlPXyCugF24MKsKpGne9HkJLNrW390BxNLdJahA1jGHmcwjkhAHv++PpY1kifg==
"@abp/jquery-validation@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.1.tgz#21292bb4a750c9dff7bf451cf6aaceb9d3720b05"
integrity sha512-QIleJ4Hcj7doNnD3qTN1WySJIbMmb3K/FLrin/n1rISoJfrF3da0Snjz7hMv+BQVQK/5OJAJ08rcw6EmaGNwMA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-validation "^1.19.2"
"@abp/jquery@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.0.tgz#9e7da443e4069d315e655febe250514f50634704"
integrity sha512-SbbFegvDfJs8IWPdc94ok+usMg4Ow9G6zBx6RcEwP3cbfDr6Aq/GyzkPhxdV3ro9XSwQUTlwNKx7XpYSCeiJjQ==
"@abp/jquery@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.1.tgz#2530d960c0bab43430df81df705063fba0a78520"
integrity sha512-M2MGyGlm4QzE17TGavjCNsZKHuRrfYg8zBz6eur5Z2Qepf8+pXTE4B59kPoNIzRT+MBpquR+N/VdH+vW1Jp8kQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
jquery "~3.5.1"
"@abp/lodash@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.0.tgz#2f0257a75e17d94c6f042f78171f92b781b59401"
integrity sha512-+Z0l8VGNN0zdwuT0B3R+HGR54H3/dySJFfIoe7C/+rpFA6dbC8kX6SceJmeLjZbhQG/kiLvKVikE1BsdamfTSQ==
"@abp/lodash@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.1.tgz#01c1c1717f0bb98d3077d0e531cb3e2c60576b80"
integrity sha512-GKUVvj5Z7kUfd2Gc9nKroduJEH9ZOKlkpIFt23KpbTGv2bT0NrmA7xJuOxK3h+5dKTAovQSR6rtVA13hDBFRGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
lodash "^4.17.15"
"@abp/luxon@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.0.tgz#b366746c24d8688313caf21f3833326b6a4d82f6"
integrity sha512-L9j6QeqNfY4bngj6Vs8HCKkIzC6hfCioe4bTxKH7Oaav0t4Lr0xiqt3+mGDSTL+/f8evHUal9COCSLSEDWTX0Q==
"@abp/luxon@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.1.tgz#5b8e15896f0c5b33f5da05c9db51cfd17bd366a8"
integrity sha512-6mo0wR3mblAgZGSqJJH2oAjmg8/2vdCWaZBsR1iJGsyafFn+D0XWBOxqB+tASnqGNuyIRJAOKB1gs17l7OvzQg==
dependencies:
luxon "^1.24.1"
"@abp/malihu-custom-scrollbar-plugin@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.0.tgz#7183e0601936d4d96358e802bc9815f7c07fa80e"
integrity sha512-KUOYU6KDV4HyZyAhHD9IdE7MLQq9eaRk4NulS3ObjbQ72+JyzTRoUPBBoZIWOOytzQGX64FINcDrCcjJWEncOw==
"@abp/malihu-custom-scrollbar-plugin@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.1.tgz#9a0ae71fbe78ff70698f4cb6724ad8d98ce6ff1a"
integrity sha512-0KsHUZC5TygzoorXdX1I8rJPntAEV4wHSD2pfZhdguTkb1/rAkggDH47drqkiUze6meBRp9OVCpHT8UZD8ZpGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.0.tgz#7ad07d6b0e55ac19cd087455630a52c15f1aaac6"
integrity sha512-M2RTCY1CS1nQECM6LrjyXbkEkHLXpQtxIEA0PW74P9QqknNfUci8YkM0caUA6w6TfdKnXFVWVAy2aQ+phQgm6Q==
"@abp/select2@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.1.tgz#3015f9103c94c56f6646d30ba785629931cf3cad"
integrity sha512-PDmGw+0gannJxAc+ERMR/KM51gZ3ykAkAlvqw25UFAfN3kAGcqu0Ue9bmQ8m4EMyDLA3g6/ZFge3mkBuX2ogRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
select2 "^4.0.13"
"@abp/sweetalert@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.0.tgz#a5e6d56ad3f2528d115a62f22e6c7051c257d223"
integrity sha512-Nz0R+8OHABUXishJb25TTopuUaZNU4nerKAF9FTUFmAYrQzpaIf4sMWEUVNCXD6rajPcNCwMql+EV78bEkKKJw==
"@abp/sweetalert@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.1.tgz#4cd04d224b2d556eb354b5a229afa8265798aa0b"
integrity sha512-pGgJiqr+zTovbREIBGlRk2q33/obvbWJxev8VQTFugQEckUHvIUVrXyzVhOLdlMJnWN1ZN4S+l1E1uNhe4+MPA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
sweetalert "^2.1.2"
"@abp/timeago@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.0.tgz#6dbe6708be5f805d2b48da25385d9197de0d3b26"
integrity sha512-R1h8EbQHVrcBNJYMGSiA0woCNBxP/G6KCurqSENLbRM52W7g0Ky6UtNVDWn4PQ6Af1jgtJDVMfbNP5WqNKgmNw==
"@abp/timeago@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.1.tgz#6e30e8d2c2e52766e110f74f5ecfce6673964efe"
integrity sha512-7HfxjfJ7vQQcoI6oulB2gjyNuA3vVMPSep0qSmSAZuIYhm/Im/h87qG1i16dxLea4MVaFjnRqKwaNCVvlrxSNA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
timeago "^1.6.7"
"@abp/toastr@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.0.tgz#21f966e9c108ffb01961000bbac7f50bbb45d29d"
integrity sha512-zL/VIaLdWOzsTH+8cjD3uDkUWVy45eqTzJzfO+3H7d8xCKoQSPNfFt1zuWB0Ws3FVWTd5YcRR0Qngl1fF1yrJw==
"@abp/toastr@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.1.tgz#b3c9eefc09ac94cb3e672e3cd04ade24d8d2b7ce"
integrity sha512-FqM0bjXDusAyJEemTwRd45NiAXx7R6RA583sjBBigLB8xAXx898Yiy2zQT+2vDGhAc0WuX1gcYnNVfR1KexjVQ==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
toastr "^2.1.4"
"@abp/utils@~2.9.0":

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

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.0.tgz#5e6e5a223ffeca4a3860e9534865a8bab972d06e"
integrity sha512-wiPgQ5N1ahmmLe+Jf3UC/ZJMwAZ3uWgx89Ogd+MfdM7QaULHyxBNVE7JzzyRnEuMBuncpiNDIPH3xuNq99N98g==
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.1.tgz#21674211c5ffe3c32ab2eac3a45b92fe5aeac7e5"
integrity sha512-ejMfcqz0pdtPmW11NvnvRCSlWftrIaXK5SwIteIlm/vZ1ABAYOjH4Z4ucJCbv4VioyQRFKLqLwyCT3JdHdA5iQ==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.0"
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.1"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.0.tgz#25d75b7416beff4180613d601d3b27e4f191b936"
integrity sha512-BxPPkhpLeTkHVem10MD3TDddxL62TLRp/dpWtIee1rJ55aBrRhd7gj93VlN8uN2XOuZD+yHluhgAjpZYT+51DQ==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.0"
"@abp/bootstrap" "~3.0.0"
"@abp/bootstrap-datepicker" "~3.0.0"
"@abp/datatables.net-bs4" "~3.0.0"
"@abp/font-awesome" "~3.0.0"
"@abp/jquery-form" "~3.0.0"
"@abp/jquery-validation-unobtrusive" "~3.0.0"
"@abp/lodash" "~3.0.0"
"@abp/luxon" "~3.0.0"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.0"
"@abp/select2" "~3.0.0"
"@abp/sweetalert" "~3.0.0"
"@abp/timeago" "~3.0.0"
"@abp/toastr" "~3.0.0"
"@abp/aspnetcore.mvc.ui@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.0.tgz#738bb23a74fce192e394e4b110a85611c5e39afd"
integrity sha512-hHTjhNi31P5WT+0iMKgZuU9CyxA1ymxAFtaZZO6QBBln5JZqS2hOyfRrSPXm4snKG6Bhq7UxBX0BkNkoKCgIcQ==
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.1.tgz#dcfacf80bd276ac05f57a804c4e260c8281b30fd"
integrity sha512-TtkQDlThicD4fsMhp+dWB27HvY4Qg+1sIgU4zn/XOcUzeWoivmsFHv3oJV9uL+M8/78R537gcQRmEfRZReqjQA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.1"
"@abp/bootstrap" "~3.0.1"
"@abp/bootstrap-datepicker" "~3.0.1"
"@abp/datatables.net-bs4" "~3.0.1"
"@abp/font-awesome" "~3.0.1"
"@abp/jquery-form" "~3.0.1"
"@abp/jquery-validation-unobtrusive" "~3.0.1"
"@abp/lodash" "~3.0.1"
"@abp/luxon" "~3.0.1"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.1"
"@abp/select2" "~3.0.1"
"@abp/sweetalert" "~3.0.1"
"@abp/timeago" "~3.0.1"
"@abp/toastr" "~3.0.1"
"@abp/aspnetcore.mvc.ui@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.1.tgz#692c43132204c5a90f789ac4c2ee645ea3a81a1b"
integrity sha512-TcbPD7F0cMU32EkRxheyXD8iZVREiIpfRyh74TZApkPT9N4HhizvOqymOM1qPkcDjyWm4Ggdk+P8u+hwCMDijg==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,138 +41,138 @@
path "^0.12.7"
rimraf "^3.0.2"
"@abp/bootstrap-datepicker@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.0.tgz#6f60a45485aa1d522c8093627980797071325236"
integrity sha512-zfRRCHKEzaas1+0mzCAKkyCGoH9+4UYzcKT5GmWICktONSs81rEDH4QWg9XSvGzei3IghUzH4HM8XhI1qkfcJg==
"@abp/bootstrap-datepicker@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.1.tgz#595a88102f7173136b418634c1a276e67bab09ca"
integrity sha512-Pee5Q0lzYkm7qhVfDT/nZTRisZnwvS+FUwqGOkmq/WDgB9LwjgIww8EyzQEWanLfkrsROALTg529rJPfWdXPNQ==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.0.tgz#09b43961f7232cc53cb8fc60b9cd18387579ff77"
integrity sha512-J/ULYhUE48INqrOS+rdo1dek2lrscSkUKTQprpHrlYViM6oJvFCnA6eGaRyTM7ForYk8Jvy3FPuQQ5hRZZVDpw==
"@abp/bootstrap@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.1.tgz#d478f5bf773e7e25065918adc93eae37f773e4b6"
integrity sha512-TYNRM+nE8OaVYeUgtGtO41RSqJkBXMv7XRiYDG4FZf4vnSCR/E0pc8Hp7WUki6rO83WVWJeBAntmh3U48G+pOA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
bootstrap "^4.5.0"
bootstrap-v4-rtl "4.4.1-2"
"@abp/core@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.0.tgz#644643eecc5a6b6af0573bab9d8a9d6f872c8b40"
integrity sha512-FkYAK/r2BmufcWJw5Wl01psFuGKekTvg9/M/A19/l8GCYsZV+bmAFP1AMcUO5Cfr5h5ua6FsJ30mNIFcOX5kQA==
"@abp/core@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.1.tgz#ac3f55d8fe4100a1c318b4e8d48e77376206f521"
integrity sha512-2pBiSoJGP0nRIb1avJ4lMNQUqoPmR3DCNrvmBkYMHgiv8BS2Qc9qxf8iW3NQ3tymxDH8QO/TGaej24tpbhZQUQ==
dependencies:
"@abp/utils" "~2.9.0"
"@abp/datatables.net-bs4@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.0.tgz#da0c6c5f07e09aeb0dbb0258339761724bbae315"
integrity sha512-LTIe7cG/if8lESIl761tgc/STyU1lCsJfkZnmsUOiuU5MB71DhSjUrKRg3+w/tVuw9LQwZ2IF5y7DTAaBJGcZw==
"@abp/datatables.net-bs4@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.1.tgz#9a7617f2fe42bf876613fe8b5012a7901444586d"
integrity sha512-DyqK8+H7Vo+AuLJsZ6tdh/yN5JfQxUqCAk2gPbv6OqJp1tw6EbbSzPW7wVyRfy3dEHDTENBivkJQH2+G3ba2aQ==
dependencies:
"@abp/datatables.net" "~3.0.0"
"@abp/datatables.net" "~3.0.1"
datatables.net-bs4 "^1.10.21"
"@abp/datatables.net@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.0.tgz#9b124345e19462e7f19cc46961d5d9354f55837d"
integrity sha512-XP0UmzPd1sKCAx4EHDjtnKLx/xjQzLXHp/3fzArHcWiPlNhzJvCwSRuo6Wsxc+TXAg/bGfSRl5cWtJ6L3d3Lbw==
"@abp/datatables.net@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.1.tgz#4556bba2f9a337ec4580416e31963ea0c9e10e29"
integrity sha512-5MBTxVdrui65dq7hKgSsxmcg1xm+IJk0MMpXKlw7DdfqmxXcpOcVFSmVV5xg9vYrc8iK1i5+5hOfQDZeEzRzPw==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
datatables.net "^1.10.21"
"@abp/font-awesome@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.0.tgz#1f86b54e0d0985bb8ca6d75c2b2c5bf29c4775a0"
integrity sha512-z0s4ELIwiPs8owB2O+FltDwcsZZLpVHUMTF0SCUUD2ec/MlOE6BzdLQBIEq/FL2VJu/GfttAJojyrjHO2CwEGg==
"@abp/font-awesome@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.1.tgz#81c79a917d6f77894033b2eacbff033f9da467c5"
integrity sha512-DSgsiQ29OQwS8hgZ+0Xxbqax01vVEcXJvIisrurdkSuW728GHV/PZpWUl/CnHsJxTnUWO//eLRogXkNYsTqoRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
"@fortawesome/fontawesome-free" "^5.13.0"
"@abp/jquery-form@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.0.tgz#ddd86a810c8ffb8f5981fb1aca60504af1cc6365"
integrity sha512-F6dGzrfjeSKw/7IjJ/hYpJh1hqhURwbvk29+QhomQKyztV7t4WPa8PIbiQ0yaC2cCDnauRRsCijDpxGXFjgxcA==
"@abp/jquery-form@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.1.tgz#932934267b518ab012412808d60e262e9c4eaf95"
integrity sha512-ked53XkkWPHIrOpQpR6LgkpdW2EG/4FZKhVqpf9KgVyExbqEtc4+8NV9dplXfFJOA4HpfHEnOHttqqq3dmnbsg==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.0.tgz#3d35bb72de7ed89a7b5829fc91bec1a2006f9f2e"
integrity sha512-JSVbRMT5yPbWpxwVNc6lHMsmFGaiOAocvTLGvDonTlUMqflE6K3CFyJt+ddgFPXNSOEeYlfpxL3WGP1p7sXdDQ==
"@abp/jquery-validation-unobtrusive@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.1.tgz#de911356a66b426e1a783a60e50aea4ab8000342"
integrity sha512-ANpqIehI9YPRRJCj4cTcLRBsKjVZsmOBjZBF1K4Dfa0n2DEVtPqPrmHzkpLvxxbdw6P9JFCdOvGZeSYxqPfbgQ==
dependencies:
"@abp/jquery-validation" "~3.0.0"
"@abp/jquery-validation" "~3.0.1"
jquery-validation-unobtrusive "^3.2.11"
"@abp/jquery-validation@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.0.tgz#c386254384efd756ea75ed11e8208c2a6ed7f86a"
integrity sha512-wNfNW8+Nct0GtKALRy5ysdCKGlPXyCugF24MKsKpGne9HkJLNrW390BxNLdJahA1jGHmcwjkhAHv++PpY1kifg==
"@abp/jquery-validation@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.1.tgz#21292bb4a750c9dff7bf451cf6aaceb9d3720b05"
integrity sha512-QIleJ4Hcj7doNnD3qTN1WySJIbMmb3K/FLrin/n1rISoJfrF3da0Snjz7hMv+BQVQK/5OJAJ08rcw6EmaGNwMA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-validation "^1.19.2"
"@abp/jquery@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.0.tgz#9e7da443e4069d315e655febe250514f50634704"
integrity sha512-SbbFegvDfJs8IWPdc94ok+usMg4Ow9G6zBx6RcEwP3cbfDr6Aq/GyzkPhxdV3ro9XSwQUTlwNKx7XpYSCeiJjQ==
"@abp/jquery@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.1.tgz#2530d960c0bab43430df81df705063fba0a78520"
integrity sha512-M2MGyGlm4QzE17TGavjCNsZKHuRrfYg8zBz6eur5Z2Qepf8+pXTE4B59kPoNIzRT+MBpquR+N/VdH+vW1Jp8kQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
jquery "~3.5.1"
"@abp/lodash@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.0.tgz#2f0257a75e17d94c6f042f78171f92b781b59401"
integrity sha512-+Z0l8VGNN0zdwuT0B3R+HGR54H3/dySJFfIoe7C/+rpFA6dbC8kX6SceJmeLjZbhQG/kiLvKVikE1BsdamfTSQ==
"@abp/lodash@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.1.tgz#01c1c1717f0bb98d3077d0e531cb3e2c60576b80"
integrity sha512-GKUVvj5Z7kUfd2Gc9nKroduJEH9ZOKlkpIFt23KpbTGv2bT0NrmA7xJuOxK3h+5dKTAovQSR6rtVA13hDBFRGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
lodash "^4.17.15"
"@abp/luxon@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.0.tgz#b366746c24d8688313caf21f3833326b6a4d82f6"
integrity sha512-L9j6QeqNfY4bngj6Vs8HCKkIzC6hfCioe4bTxKH7Oaav0t4Lr0xiqt3+mGDSTL+/f8evHUal9COCSLSEDWTX0Q==
"@abp/luxon@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.1.tgz#5b8e15896f0c5b33f5da05c9db51cfd17bd366a8"
integrity sha512-6mo0wR3mblAgZGSqJJH2oAjmg8/2vdCWaZBsR1iJGsyafFn+D0XWBOxqB+tASnqGNuyIRJAOKB1gs17l7OvzQg==
dependencies:
luxon "^1.24.1"
"@abp/malihu-custom-scrollbar-plugin@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.0.tgz#7183e0601936d4d96358e802bc9815f7c07fa80e"
integrity sha512-KUOYU6KDV4HyZyAhHD9IdE7MLQq9eaRk4NulS3ObjbQ72+JyzTRoUPBBoZIWOOytzQGX64FINcDrCcjJWEncOw==
"@abp/malihu-custom-scrollbar-plugin@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.1.tgz#9a0ae71fbe78ff70698f4cb6724ad8d98ce6ff1a"
integrity sha512-0KsHUZC5TygzoorXdX1I8rJPntAEV4wHSD2pfZhdguTkb1/rAkggDH47drqkiUze6meBRp9OVCpHT8UZD8ZpGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.0.tgz#7ad07d6b0e55ac19cd087455630a52c15f1aaac6"
integrity sha512-M2RTCY1CS1nQECM6LrjyXbkEkHLXpQtxIEA0PW74P9QqknNfUci8YkM0caUA6w6TfdKnXFVWVAy2aQ+phQgm6Q==
"@abp/select2@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.1.tgz#3015f9103c94c56f6646d30ba785629931cf3cad"
integrity sha512-PDmGw+0gannJxAc+ERMR/KM51gZ3ykAkAlvqw25UFAfN3kAGcqu0Ue9bmQ8m4EMyDLA3g6/ZFge3mkBuX2ogRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
select2 "^4.0.13"
"@abp/sweetalert@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.0.tgz#a5e6d56ad3f2528d115a62f22e6c7051c257d223"
integrity sha512-Nz0R+8OHABUXishJb25TTopuUaZNU4nerKAF9FTUFmAYrQzpaIf4sMWEUVNCXD6rajPcNCwMql+EV78bEkKKJw==
"@abp/sweetalert@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.1.tgz#4cd04d224b2d556eb354b5a229afa8265798aa0b"
integrity sha512-pGgJiqr+zTovbREIBGlRk2q33/obvbWJxev8VQTFugQEckUHvIUVrXyzVhOLdlMJnWN1ZN4S+l1E1uNhe4+MPA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
sweetalert "^2.1.2"
"@abp/timeago@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.0.tgz#6dbe6708be5f805d2b48da25385d9197de0d3b26"
integrity sha512-R1h8EbQHVrcBNJYMGSiA0woCNBxP/G6KCurqSENLbRM52W7g0Ky6UtNVDWn4PQ6Af1jgtJDVMfbNP5WqNKgmNw==
"@abp/timeago@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.1.tgz#6e30e8d2c2e52766e110f74f5ecfce6673964efe"
integrity sha512-7HfxjfJ7vQQcoI6oulB2gjyNuA3vVMPSep0qSmSAZuIYhm/Im/h87qG1i16dxLea4MVaFjnRqKwaNCVvlrxSNA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
timeago "^1.6.7"
"@abp/toastr@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.0.tgz#21f966e9c108ffb01961000bbac7f50bbb45d29d"
integrity sha512-zL/VIaLdWOzsTH+8cjD3uDkUWVy45eqTzJzfO+3H7d8xCKoQSPNfFt1zuWB0Ws3FVWTd5YcRR0Qngl1fF1yrJw==
"@abp/toastr@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.1.tgz#b3c9eefc09ac94cb3e672e3cd04ade24d8d2b7ce"
integrity sha512-FqM0bjXDusAyJEemTwRd45NiAXx7R6RA583sjBBigLB8xAXx898Yiy2zQT+2vDGhAc0WuX1gcYnNVfR1KexjVQ==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
toastr "^2.1.4"
"@abp/utils@~2.9.0":

@ -15,11 +15,11 @@
},
"private": true,
"dependencies": {
"@abp/ng.account": "~3.0.0",
"@abp/ng.identity": "~3.0.0",
"@abp/ng.setting-management": "~3.0.0",
"@abp/ng.tenant-management": "~3.0.0",
"@abp/ng.theme.basic": "~3.0.0",
"@abp/ng.account": "~3.0.1",
"@abp/ng.identity": "~3.0.1",
"@abp/ng.setting-management": "~3.0.1",
"@abp/ng.tenant-management": "~3.0.1",
"@abp/ng.theme.basic": "~3.0.1",
"@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": ">=3.0.0",
"@abp/ng.theme.shared": ">=3.0.0"
"@abp/ng.core": ">=3.0.1",
"@abp/ng.theme.shared": ">=3.0.1"
},
"dependencies": {
"tslib": "^2.0.0"

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

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.0.tgz#5e6e5a223ffeca4a3860e9534865a8bab972d06e"
integrity sha512-wiPgQ5N1ahmmLe+Jf3UC/ZJMwAZ3uWgx89Ogd+MfdM7QaULHyxBNVE7JzzyRnEuMBuncpiNDIPH3xuNq99N98g==
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.1.tgz#21674211c5ffe3c32ab2eac3a45b92fe5aeac7e5"
integrity sha512-ejMfcqz0pdtPmW11NvnvRCSlWftrIaXK5SwIteIlm/vZ1ABAYOjH4Z4ucJCbv4VioyQRFKLqLwyCT3JdHdA5iQ==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.0"
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.1"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.0.tgz#25d75b7416beff4180613d601d3b27e4f191b936"
integrity sha512-BxPPkhpLeTkHVem10MD3TDddxL62TLRp/dpWtIee1rJ55aBrRhd7gj93VlN8uN2XOuZD+yHluhgAjpZYT+51DQ==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.0"
"@abp/bootstrap" "~3.0.0"
"@abp/bootstrap-datepicker" "~3.0.0"
"@abp/datatables.net-bs4" "~3.0.0"
"@abp/font-awesome" "~3.0.0"
"@abp/jquery-form" "~3.0.0"
"@abp/jquery-validation-unobtrusive" "~3.0.0"
"@abp/lodash" "~3.0.0"
"@abp/luxon" "~3.0.0"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.0"
"@abp/select2" "~3.0.0"
"@abp/sweetalert" "~3.0.0"
"@abp/timeago" "~3.0.0"
"@abp/toastr" "~3.0.0"
"@abp/aspnetcore.mvc.ui@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.0.tgz#738bb23a74fce192e394e4b110a85611c5e39afd"
integrity sha512-hHTjhNi31P5WT+0iMKgZuU9CyxA1ymxAFtaZZO6QBBln5JZqS2hOyfRrSPXm4snKG6Bhq7UxBX0BkNkoKCgIcQ==
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.1.tgz#dcfacf80bd276ac05f57a804c4e260c8281b30fd"
integrity sha512-TtkQDlThicD4fsMhp+dWB27HvY4Qg+1sIgU4zn/XOcUzeWoivmsFHv3oJV9uL+M8/78R537gcQRmEfRZReqjQA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.1"
"@abp/bootstrap" "~3.0.1"
"@abp/bootstrap-datepicker" "~3.0.1"
"@abp/datatables.net-bs4" "~3.0.1"
"@abp/font-awesome" "~3.0.1"
"@abp/jquery-form" "~3.0.1"
"@abp/jquery-validation-unobtrusive" "~3.0.1"
"@abp/lodash" "~3.0.1"
"@abp/luxon" "~3.0.1"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.1"
"@abp/select2" "~3.0.1"
"@abp/sweetalert" "~3.0.1"
"@abp/timeago" "~3.0.1"
"@abp/toastr" "~3.0.1"
"@abp/aspnetcore.mvc.ui@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.1.tgz#692c43132204c5a90f789ac4c2ee645ea3a81a1b"
integrity sha512-TcbPD7F0cMU32EkRxheyXD8iZVREiIpfRyh74TZApkPT9N4HhizvOqymOM1qPkcDjyWm4Ggdk+P8u+hwCMDijg==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,138 +41,138 @@
path "^0.12.7"
rimraf "^3.0.2"
"@abp/bootstrap-datepicker@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.0.tgz#6f60a45485aa1d522c8093627980797071325236"
integrity sha512-zfRRCHKEzaas1+0mzCAKkyCGoH9+4UYzcKT5GmWICktONSs81rEDH4QWg9XSvGzei3IghUzH4HM8XhI1qkfcJg==
"@abp/bootstrap-datepicker@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.1.tgz#595a88102f7173136b418634c1a276e67bab09ca"
integrity sha512-Pee5Q0lzYkm7qhVfDT/nZTRisZnwvS+FUwqGOkmq/WDgB9LwjgIww8EyzQEWanLfkrsROALTg529rJPfWdXPNQ==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.0.tgz#09b43961f7232cc53cb8fc60b9cd18387579ff77"
integrity sha512-J/ULYhUE48INqrOS+rdo1dek2lrscSkUKTQprpHrlYViM6oJvFCnA6eGaRyTM7ForYk8Jvy3FPuQQ5hRZZVDpw==
"@abp/bootstrap@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.1.tgz#d478f5bf773e7e25065918adc93eae37f773e4b6"
integrity sha512-TYNRM+nE8OaVYeUgtGtO41RSqJkBXMv7XRiYDG4FZf4vnSCR/E0pc8Hp7WUki6rO83WVWJeBAntmh3U48G+pOA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
bootstrap "^4.5.0"
bootstrap-v4-rtl "4.4.1-2"
"@abp/core@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.0.tgz#644643eecc5a6b6af0573bab9d8a9d6f872c8b40"
integrity sha512-FkYAK/r2BmufcWJw5Wl01psFuGKekTvg9/M/A19/l8GCYsZV+bmAFP1AMcUO5Cfr5h5ua6FsJ30mNIFcOX5kQA==
"@abp/core@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.1.tgz#ac3f55d8fe4100a1c318b4e8d48e77376206f521"
integrity sha512-2pBiSoJGP0nRIb1avJ4lMNQUqoPmR3DCNrvmBkYMHgiv8BS2Qc9qxf8iW3NQ3tymxDH8QO/TGaej24tpbhZQUQ==
dependencies:
"@abp/utils" "~2.9.0"
"@abp/datatables.net-bs4@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.0.tgz#da0c6c5f07e09aeb0dbb0258339761724bbae315"
integrity sha512-LTIe7cG/if8lESIl761tgc/STyU1lCsJfkZnmsUOiuU5MB71DhSjUrKRg3+w/tVuw9LQwZ2IF5y7DTAaBJGcZw==
"@abp/datatables.net-bs4@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.1.tgz#9a7617f2fe42bf876613fe8b5012a7901444586d"
integrity sha512-DyqK8+H7Vo+AuLJsZ6tdh/yN5JfQxUqCAk2gPbv6OqJp1tw6EbbSzPW7wVyRfy3dEHDTENBivkJQH2+G3ba2aQ==
dependencies:
"@abp/datatables.net" "~3.0.0"
"@abp/datatables.net" "~3.0.1"
datatables.net-bs4 "^1.10.21"
"@abp/datatables.net@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.0.tgz#9b124345e19462e7f19cc46961d5d9354f55837d"
integrity sha512-XP0UmzPd1sKCAx4EHDjtnKLx/xjQzLXHp/3fzArHcWiPlNhzJvCwSRuo6Wsxc+TXAg/bGfSRl5cWtJ6L3d3Lbw==
"@abp/datatables.net@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.1.tgz#4556bba2f9a337ec4580416e31963ea0c9e10e29"
integrity sha512-5MBTxVdrui65dq7hKgSsxmcg1xm+IJk0MMpXKlw7DdfqmxXcpOcVFSmVV5xg9vYrc8iK1i5+5hOfQDZeEzRzPw==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
datatables.net "^1.10.21"
"@abp/font-awesome@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.0.tgz#1f86b54e0d0985bb8ca6d75c2b2c5bf29c4775a0"
integrity sha512-z0s4ELIwiPs8owB2O+FltDwcsZZLpVHUMTF0SCUUD2ec/MlOE6BzdLQBIEq/FL2VJu/GfttAJojyrjHO2CwEGg==
"@abp/font-awesome@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.1.tgz#81c79a917d6f77894033b2eacbff033f9da467c5"
integrity sha512-DSgsiQ29OQwS8hgZ+0Xxbqax01vVEcXJvIisrurdkSuW728GHV/PZpWUl/CnHsJxTnUWO//eLRogXkNYsTqoRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
"@fortawesome/fontawesome-free" "^5.13.0"
"@abp/jquery-form@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.0.tgz#ddd86a810c8ffb8f5981fb1aca60504af1cc6365"
integrity sha512-F6dGzrfjeSKw/7IjJ/hYpJh1hqhURwbvk29+QhomQKyztV7t4WPa8PIbiQ0yaC2cCDnauRRsCijDpxGXFjgxcA==
"@abp/jquery-form@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.1.tgz#932934267b518ab012412808d60e262e9c4eaf95"
integrity sha512-ked53XkkWPHIrOpQpR6LgkpdW2EG/4FZKhVqpf9KgVyExbqEtc4+8NV9dplXfFJOA4HpfHEnOHttqqq3dmnbsg==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.0.tgz#3d35bb72de7ed89a7b5829fc91bec1a2006f9f2e"
integrity sha512-JSVbRMT5yPbWpxwVNc6lHMsmFGaiOAocvTLGvDonTlUMqflE6K3CFyJt+ddgFPXNSOEeYlfpxL3WGP1p7sXdDQ==
"@abp/jquery-validation-unobtrusive@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.1.tgz#de911356a66b426e1a783a60e50aea4ab8000342"
integrity sha512-ANpqIehI9YPRRJCj4cTcLRBsKjVZsmOBjZBF1K4Dfa0n2DEVtPqPrmHzkpLvxxbdw6P9JFCdOvGZeSYxqPfbgQ==
dependencies:
"@abp/jquery-validation" "~3.0.0"
"@abp/jquery-validation" "~3.0.1"
jquery-validation-unobtrusive "^3.2.11"
"@abp/jquery-validation@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.0.tgz#c386254384efd756ea75ed11e8208c2a6ed7f86a"
integrity sha512-wNfNW8+Nct0GtKALRy5ysdCKGlPXyCugF24MKsKpGne9HkJLNrW390BxNLdJahA1jGHmcwjkhAHv++PpY1kifg==
"@abp/jquery-validation@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.1.tgz#21292bb4a750c9dff7bf451cf6aaceb9d3720b05"
integrity sha512-QIleJ4Hcj7doNnD3qTN1WySJIbMmb3K/FLrin/n1rISoJfrF3da0Snjz7hMv+BQVQK/5OJAJ08rcw6EmaGNwMA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-validation "^1.19.2"
"@abp/jquery@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.0.tgz#9e7da443e4069d315e655febe250514f50634704"
integrity sha512-SbbFegvDfJs8IWPdc94ok+usMg4Ow9G6zBx6RcEwP3cbfDr6Aq/GyzkPhxdV3ro9XSwQUTlwNKx7XpYSCeiJjQ==
"@abp/jquery@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.1.tgz#2530d960c0bab43430df81df705063fba0a78520"
integrity sha512-M2MGyGlm4QzE17TGavjCNsZKHuRrfYg8zBz6eur5Z2Qepf8+pXTE4B59kPoNIzRT+MBpquR+N/VdH+vW1Jp8kQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
jquery "~3.5.1"
"@abp/lodash@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.0.tgz#2f0257a75e17d94c6f042f78171f92b781b59401"
integrity sha512-+Z0l8VGNN0zdwuT0B3R+HGR54H3/dySJFfIoe7C/+rpFA6dbC8kX6SceJmeLjZbhQG/kiLvKVikE1BsdamfTSQ==
"@abp/lodash@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.1.tgz#01c1c1717f0bb98d3077d0e531cb3e2c60576b80"
integrity sha512-GKUVvj5Z7kUfd2Gc9nKroduJEH9ZOKlkpIFt23KpbTGv2bT0NrmA7xJuOxK3h+5dKTAovQSR6rtVA13hDBFRGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
lodash "^4.17.15"
"@abp/luxon@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.0.tgz#b366746c24d8688313caf21f3833326b6a4d82f6"
integrity sha512-L9j6QeqNfY4bngj6Vs8HCKkIzC6hfCioe4bTxKH7Oaav0t4Lr0xiqt3+mGDSTL+/f8evHUal9COCSLSEDWTX0Q==
"@abp/luxon@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.1.tgz#5b8e15896f0c5b33f5da05c9db51cfd17bd366a8"
integrity sha512-6mo0wR3mblAgZGSqJJH2oAjmg8/2vdCWaZBsR1iJGsyafFn+D0XWBOxqB+tASnqGNuyIRJAOKB1gs17l7OvzQg==
dependencies:
luxon "^1.24.1"
"@abp/malihu-custom-scrollbar-plugin@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.0.tgz#7183e0601936d4d96358e802bc9815f7c07fa80e"
integrity sha512-KUOYU6KDV4HyZyAhHD9IdE7MLQq9eaRk4NulS3ObjbQ72+JyzTRoUPBBoZIWOOytzQGX64FINcDrCcjJWEncOw==
"@abp/malihu-custom-scrollbar-plugin@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.1.tgz#9a0ae71fbe78ff70698f4cb6724ad8d98ce6ff1a"
integrity sha512-0KsHUZC5TygzoorXdX1I8rJPntAEV4wHSD2pfZhdguTkb1/rAkggDH47drqkiUze6meBRp9OVCpHT8UZD8ZpGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.0.tgz#7ad07d6b0e55ac19cd087455630a52c15f1aaac6"
integrity sha512-M2RTCY1CS1nQECM6LrjyXbkEkHLXpQtxIEA0PW74P9QqknNfUci8YkM0caUA6w6TfdKnXFVWVAy2aQ+phQgm6Q==
"@abp/select2@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.1.tgz#3015f9103c94c56f6646d30ba785629931cf3cad"
integrity sha512-PDmGw+0gannJxAc+ERMR/KM51gZ3ykAkAlvqw25UFAfN3kAGcqu0Ue9bmQ8m4EMyDLA3g6/ZFge3mkBuX2ogRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
select2 "^4.0.13"
"@abp/sweetalert@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.0.tgz#a5e6d56ad3f2528d115a62f22e6c7051c257d223"
integrity sha512-Nz0R+8OHABUXishJb25TTopuUaZNU4nerKAF9FTUFmAYrQzpaIf4sMWEUVNCXD6rajPcNCwMql+EV78bEkKKJw==
"@abp/sweetalert@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.1.tgz#4cd04d224b2d556eb354b5a229afa8265798aa0b"
integrity sha512-pGgJiqr+zTovbREIBGlRk2q33/obvbWJxev8VQTFugQEckUHvIUVrXyzVhOLdlMJnWN1ZN4S+l1E1uNhe4+MPA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
sweetalert "^2.1.2"
"@abp/timeago@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.0.tgz#6dbe6708be5f805d2b48da25385d9197de0d3b26"
integrity sha512-R1h8EbQHVrcBNJYMGSiA0woCNBxP/G6KCurqSENLbRM52W7g0Ky6UtNVDWn4PQ6Af1jgtJDVMfbNP5WqNKgmNw==
"@abp/timeago@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.1.tgz#6e30e8d2c2e52766e110f74f5ecfce6673964efe"
integrity sha512-7HfxjfJ7vQQcoI6oulB2gjyNuA3vVMPSep0qSmSAZuIYhm/Im/h87qG1i16dxLea4MVaFjnRqKwaNCVvlrxSNA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
timeago "^1.6.7"
"@abp/toastr@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.0.tgz#21f966e9c108ffb01961000bbac7f50bbb45d29d"
integrity sha512-zL/VIaLdWOzsTH+8cjD3uDkUWVy45eqTzJzfO+3H7d8xCKoQSPNfFt1zuWB0Ws3FVWTd5YcRR0Qngl1fF1yrJw==
"@abp/toastr@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.1.tgz#b3c9eefc09ac94cb3e672e3cd04ade24d8d2b7ce"
integrity sha512-FqM0bjXDusAyJEemTwRd45NiAXx7R6RA583sjBBigLB8xAXx898Yiy2zQT+2vDGhAc0WuX1gcYnNVfR1KexjVQ==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
toastr "^2.1.4"
"@abp/utils@~2.9.0":

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

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.0.tgz#5e6e5a223ffeca4a3860e9534865a8bab972d06e"
integrity sha512-wiPgQ5N1ahmmLe+Jf3UC/ZJMwAZ3uWgx89Ogd+MfdM7QaULHyxBNVE7JzzyRnEuMBuncpiNDIPH3xuNq99N98g==
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.1.tgz#21674211c5ffe3c32ab2eac3a45b92fe5aeac7e5"
integrity sha512-ejMfcqz0pdtPmW11NvnvRCSlWftrIaXK5SwIteIlm/vZ1ABAYOjH4Z4ucJCbv4VioyQRFKLqLwyCT3JdHdA5iQ==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.0"
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.1"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.0.tgz#25d75b7416beff4180613d601d3b27e4f191b936"
integrity sha512-BxPPkhpLeTkHVem10MD3TDddxL62TLRp/dpWtIee1rJ55aBrRhd7gj93VlN8uN2XOuZD+yHluhgAjpZYT+51DQ==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.0"
"@abp/bootstrap" "~3.0.0"
"@abp/bootstrap-datepicker" "~3.0.0"
"@abp/datatables.net-bs4" "~3.0.0"
"@abp/font-awesome" "~3.0.0"
"@abp/jquery-form" "~3.0.0"
"@abp/jquery-validation-unobtrusive" "~3.0.0"
"@abp/lodash" "~3.0.0"
"@abp/luxon" "~3.0.0"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.0"
"@abp/select2" "~3.0.0"
"@abp/sweetalert" "~3.0.0"
"@abp/timeago" "~3.0.0"
"@abp/toastr" "~3.0.0"
"@abp/aspnetcore.mvc.ui@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.0.tgz#738bb23a74fce192e394e4b110a85611c5e39afd"
integrity sha512-hHTjhNi31P5WT+0iMKgZuU9CyxA1ymxAFtaZZO6QBBln5JZqS2hOyfRrSPXm4snKG6Bhq7UxBX0BkNkoKCgIcQ==
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.1.tgz#dcfacf80bd276ac05f57a804c4e260c8281b30fd"
integrity sha512-TtkQDlThicD4fsMhp+dWB27HvY4Qg+1sIgU4zn/XOcUzeWoivmsFHv3oJV9uL+M8/78R537gcQRmEfRZReqjQA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.1"
"@abp/bootstrap" "~3.0.1"
"@abp/bootstrap-datepicker" "~3.0.1"
"@abp/datatables.net-bs4" "~3.0.1"
"@abp/font-awesome" "~3.0.1"
"@abp/jquery-form" "~3.0.1"
"@abp/jquery-validation-unobtrusive" "~3.0.1"
"@abp/lodash" "~3.0.1"
"@abp/luxon" "~3.0.1"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.1"
"@abp/select2" "~3.0.1"
"@abp/sweetalert" "~3.0.1"
"@abp/timeago" "~3.0.1"
"@abp/toastr" "~3.0.1"
"@abp/aspnetcore.mvc.ui@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.1.tgz#692c43132204c5a90f789ac4c2ee645ea3a81a1b"
integrity sha512-TcbPD7F0cMU32EkRxheyXD8iZVREiIpfRyh74TZApkPT9N4HhizvOqymOM1qPkcDjyWm4Ggdk+P8u+hwCMDijg==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,138 +41,138 @@
path "^0.12.7"
rimraf "^3.0.2"
"@abp/bootstrap-datepicker@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.0.tgz#6f60a45485aa1d522c8093627980797071325236"
integrity sha512-zfRRCHKEzaas1+0mzCAKkyCGoH9+4UYzcKT5GmWICktONSs81rEDH4QWg9XSvGzei3IghUzH4HM8XhI1qkfcJg==
"@abp/bootstrap-datepicker@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.1.tgz#595a88102f7173136b418634c1a276e67bab09ca"
integrity sha512-Pee5Q0lzYkm7qhVfDT/nZTRisZnwvS+FUwqGOkmq/WDgB9LwjgIww8EyzQEWanLfkrsROALTg529rJPfWdXPNQ==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.0.tgz#09b43961f7232cc53cb8fc60b9cd18387579ff77"
integrity sha512-J/ULYhUE48INqrOS+rdo1dek2lrscSkUKTQprpHrlYViM6oJvFCnA6eGaRyTM7ForYk8Jvy3FPuQQ5hRZZVDpw==
"@abp/bootstrap@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.1.tgz#d478f5bf773e7e25065918adc93eae37f773e4b6"
integrity sha512-TYNRM+nE8OaVYeUgtGtO41RSqJkBXMv7XRiYDG4FZf4vnSCR/E0pc8Hp7WUki6rO83WVWJeBAntmh3U48G+pOA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
bootstrap "^4.5.0"
bootstrap-v4-rtl "4.4.1-2"
"@abp/core@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.0.tgz#644643eecc5a6b6af0573bab9d8a9d6f872c8b40"
integrity sha512-FkYAK/r2BmufcWJw5Wl01psFuGKekTvg9/M/A19/l8GCYsZV+bmAFP1AMcUO5Cfr5h5ua6FsJ30mNIFcOX5kQA==
"@abp/core@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.1.tgz#ac3f55d8fe4100a1c318b4e8d48e77376206f521"
integrity sha512-2pBiSoJGP0nRIb1avJ4lMNQUqoPmR3DCNrvmBkYMHgiv8BS2Qc9qxf8iW3NQ3tymxDH8QO/TGaej24tpbhZQUQ==
dependencies:
"@abp/utils" "~2.9.0"
"@abp/datatables.net-bs4@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.0.tgz#da0c6c5f07e09aeb0dbb0258339761724bbae315"
integrity sha512-LTIe7cG/if8lESIl761tgc/STyU1lCsJfkZnmsUOiuU5MB71DhSjUrKRg3+w/tVuw9LQwZ2IF5y7DTAaBJGcZw==
"@abp/datatables.net-bs4@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.1.tgz#9a7617f2fe42bf876613fe8b5012a7901444586d"
integrity sha512-DyqK8+H7Vo+AuLJsZ6tdh/yN5JfQxUqCAk2gPbv6OqJp1tw6EbbSzPW7wVyRfy3dEHDTENBivkJQH2+G3ba2aQ==
dependencies:
"@abp/datatables.net" "~3.0.0"
"@abp/datatables.net" "~3.0.1"
datatables.net-bs4 "^1.10.21"
"@abp/datatables.net@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.0.tgz#9b124345e19462e7f19cc46961d5d9354f55837d"
integrity sha512-XP0UmzPd1sKCAx4EHDjtnKLx/xjQzLXHp/3fzArHcWiPlNhzJvCwSRuo6Wsxc+TXAg/bGfSRl5cWtJ6L3d3Lbw==
"@abp/datatables.net@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.1.tgz#4556bba2f9a337ec4580416e31963ea0c9e10e29"
integrity sha512-5MBTxVdrui65dq7hKgSsxmcg1xm+IJk0MMpXKlw7DdfqmxXcpOcVFSmVV5xg9vYrc8iK1i5+5hOfQDZeEzRzPw==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
datatables.net "^1.10.21"
"@abp/font-awesome@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.0.tgz#1f86b54e0d0985bb8ca6d75c2b2c5bf29c4775a0"
integrity sha512-z0s4ELIwiPs8owB2O+FltDwcsZZLpVHUMTF0SCUUD2ec/MlOE6BzdLQBIEq/FL2VJu/GfttAJojyrjHO2CwEGg==
"@abp/font-awesome@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.1.tgz#81c79a917d6f77894033b2eacbff033f9da467c5"
integrity sha512-DSgsiQ29OQwS8hgZ+0Xxbqax01vVEcXJvIisrurdkSuW728GHV/PZpWUl/CnHsJxTnUWO//eLRogXkNYsTqoRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
"@fortawesome/fontawesome-free" "^5.13.0"
"@abp/jquery-form@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.0.tgz#ddd86a810c8ffb8f5981fb1aca60504af1cc6365"
integrity sha512-F6dGzrfjeSKw/7IjJ/hYpJh1hqhURwbvk29+QhomQKyztV7t4WPa8PIbiQ0yaC2cCDnauRRsCijDpxGXFjgxcA==
"@abp/jquery-form@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.1.tgz#932934267b518ab012412808d60e262e9c4eaf95"
integrity sha512-ked53XkkWPHIrOpQpR6LgkpdW2EG/4FZKhVqpf9KgVyExbqEtc4+8NV9dplXfFJOA4HpfHEnOHttqqq3dmnbsg==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.0.tgz#3d35bb72de7ed89a7b5829fc91bec1a2006f9f2e"
integrity sha512-JSVbRMT5yPbWpxwVNc6lHMsmFGaiOAocvTLGvDonTlUMqflE6K3CFyJt+ddgFPXNSOEeYlfpxL3WGP1p7sXdDQ==
"@abp/jquery-validation-unobtrusive@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.1.tgz#de911356a66b426e1a783a60e50aea4ab8000342"
integrity sha512-ANpqIehI9YPRRJCj4cTcLRBsKjVZsmOBjZBF1K4Dfa0n2DEVtPqPrmHzkpLvxxbdw6P9JFCdOvGZeSYxqPfbgQ==
dependencies:
"@abp/jquery-validation" "~3.0.0"
"@abp/jquery-validation" "~3.0.1"
jquery-validation-unobtrusive "^3.2.11"
"@abp/jquery-validation@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.0.tgz#c386254384efd756ea75ed11e8208c2a6ed7f86a"
integrity sha512-wNfNW8+Nct0GtKALRy5ysdCKGlPXyCugF24MKsKpGne9HkJLNrW390BxNLdJahA1jGHmcwjkhAHv++PpY1kifg==
"@abp/jquery-validation@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.1.tgz#21292bb4a750c9dff7bf451cf6aaceb9d3720b05"
integrity sha512-QIleJ4Hcj7doNnD3qTN1WySJIbMmb3K/FLrin/n1rISoJfrF3da0Snjz7hMv+BQVQK/5OJAJ08rcw6EmaGNwMA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-validation "^1.19.2"
"@abp/jquery@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.0.tgz#9e7da443e4069d315e655febe250514f50634704"
integrity sha512-SbbFegvDfJs8IWPdc94ok+usMg4Ow9G6zBx6RcEwP3cbfDr6Aq/GyzkPhxdV3ro9XSwQUTlwNKx7XpYSCeiJjQ==
"@abp/jquery@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.1.tgz#2530d960c0bab43430df81df705063fba0a78520"
integrity sha512-M2MGyGlm4QzE17TGavjCNsZKHuRrfYg8zBz6eur5Z2Qepf8+pXTE4B59kPoNIzRT+MBpquR+N/VdH+vW1Jp8kQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
jquery "~3.5.1"
"@abp/lodash@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.0.tgz#2f0257a75e17d94c6f042f78171f92b781b59401"
integrity sha512-+Z0l8VGNN0zdwuT0B3R+HGR54H3/dySJFfIoe7C/+rpFA6dbC8kX6SceJmeLjZbhQG/kiLvKVikE1BsdamfTSQ==
"@abp/lodash@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.1.tgz#01c1c1717f0bb98d3077d0e531cb3e2c60576b80"
integrity sha512-GKUVvj5Z7kUfd2Gc9nKroduJEH9ZOKlkpIFt23KpbTGv2bT0NrmA7xJuOxK3h+5dKTAovQSR6rtVA13hDBFRGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
lodash "^4.17.15"
"@abp/luxon@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.0.tgz#b366746c24d8688313caf21f3833326b6a4d82f6"
integrity sha512-L9j6QeqNfY4bngj6Vs8HCKkIzC6hfCioe4bTxKH7Oaav0t4Lr0xiqt3+mGDSTL+/f8evHUal9COCSLSEDWTX0Q==
"@abp/luxon@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.1.tgz#5b8e15896f0c5b33f5da05c9db51cfd17bd366a8"
integrity sha512-6mo0wR3mblAgZGSqJJH2oAjmg8/2vdCWaZBsR1iJGsyafFn+D0XWBOxqB+tASnqGNuyIRJAOKB1gs17l7OvzQg==
dependencies:
luxon "^1.24.1"
"@abp/malihu-custom-scrollbar-plugin@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.0.tgz#7183e0601936d4d96358e802bc9815f7c07fa80e"
integrity sha512-KUOYU6KDV4HyZyAhHD9IdE7MLQq9eaRk4NulS3ObjbQ72+JyzTRoUPBBoZIWOOytzQGX64FINcDrCcjJWEncOw==
"@abp/malihu-custom-scrollbar-plugin@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.1.tgz#9a0ae71fbe78ff70698f4cb6724ad8d98ce6ff1a"
integrity sha512-0KsHUZC5TygzoorXdX1I8rJPntAEV4wHSD2pfZhdguTkb1/rAkggDH47drqkiUze6meBRp9OVCpHT8UZD8ZpGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.0.tgz#7ad07d6b0e55ac19cd087455630a52c15f1aaac6"
integrity sha512-M2RTCY1CS1nQECM6LrjyXbkEkHLXpQtxIEA0PW74P9QqknNfUci8YkM0caUA6w6TfdKnXFVWVAy2aQ+phQgm6Q==
"@abp/select2@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.1.tgz#3015f9103c94c56f6646d30ba785629931cf3cad"
integrity sha512-PDmGw+0gannJxAc+ERMR/KM51gZ3ykAkAlvqw25UFAfN3kAGcqu0Ue9bmQ8m4EMyDLA3g6/ZFge3mkBuX2ogRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
select2 "^4.0.13"
"@abp/sweetalert@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.0.tgz#a5e6d56ad3f2528d115a62f22e6c7051c257d223"
integrity sha512-Nz0R+8OHABUXishJb25TTopuUaZNU4nerKAF9FTUFmAYrQzpaIf4sMWEUVNCXD6rajPcNCwMql+EV78bEkKKJw==
"@abp/sweetalert@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.1.tgz#4cd04d224b2d556eb354b5a229afa8265798aa0b"
integrity sha512-pGgJiqr+zTovbREIBGlRk2q33/obvbWJxev8VQTFugQEckUHvIUVrXyzVhOLdlMJnWN1ZN4S+l1E1uNhe4+MPA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
sweetalert "^2.1.2"
"@abp/timeago@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.0.tgz#6dbe6708be5f805d2b48da25385d9197de0d3b26"
integrity sha512-R1h8EbQHVrcBNJYMGSiA0woCNBxP/G6KCurqSENLbRM52W7g0Ky6UtNVDWn4PQ6Af1jgtJDVMfbNP5WqNKgmNw==
"@abp/timeago@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.1.tgz#6e30e8d2c2e52766e110f74f5ecfce6673964efe"
integrity sha512-7HfxjfJ7vQQcoI6oulB2gjyNuA3vVMPSep0qSmSAZuIYhm/Im/h87qG1i16dxLea4MVaFjnRqKwaNCVvlrxSNA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
timeago "^1.6.7"
"@abp/toastr@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.0.tgz#21f966e9c108ffb01961000bbac7f50bbb45d29d"
integrity sha512-zL/VIaLdWOzsTH+8cjD3uDkUWVy45eqTzJzfO+3H7d8xCKoQSPNfFt1zuWB0Ws3FVWTd5YcRR0Qngl1fF1yrJw==
"@abp/toastr@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.1.tgz#b3c9eefc09ac94cb3e672e3cd04ade24d8d2b7ce"
integrity sha512-FqM0bjXDusAyJEemTwRd45NiAXx7R6RA583sjBBigLB8xAXx898Yiy2zQT+2vDGhAc0WuX1gcYnNVfR1KexjVQ==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
toastr "^2.1.4"
"@abp/utils@~2.9.0":

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

@ -2,37 +2,37 @@
# yarn lockfile v1
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.0.tgz#5e6e5a223ffeca4a3860e9534865a8bab972d06e"
integrity sha512-wiPgQ5N1ahmmLe+Jf3UC/ZJMwAZ3uWgx89Ogd+MfdM7QaULHyxBNVE7JzzyRnEuMBuncpiNDIPH3xuNq99N98g==
"@abp/aspnetcore.mvc.ui.theme.basic@^3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.basic/-/aspnetcore.mvc.ui.theme.basic-3.0.1.tgz#21674211c5ffe3c32ab2eac3a45b92fe5aeac7e5"
integrity sha512-ejMfcqz0pdtPmW11NvnvRCSlWftrIaXK5SwIteIlm/vZ1ABAYOjH4Z4ucJCbv4VioyQRFKLqLwyCT3JdHdA5iQ==
dependencies:
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.0"
"@abp/aspnetcore.mvc.ui.theme.shared" "~3.0.1"
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.0.tgz#25d75b7416beff4180613d601d3b27e4f191b936"
integrity sha512-BxPPkhpLeTkHVem10MD3TDddxL62TLRp/dpWtIee1rJ55aBrRhd7gj93VlN8uN2XOuZD+yHluhgAjpZYT+51DQ==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.0"
"@abp/bootstrap" "~3.0.0"
"@abp/bootstrap-datepicker" "~3.0.0"
"@abp/datatables.net-bs4" "~3.0.0"
"@abp/font-awesome" "~3.0.0"
"@abp/jquery-form" "~3.0.0"
"@abp/jquery-validation-unobtrusive" "~3.0.0"
"@abp/lodash" "~3.0.0"
"@abp/luxon" "~3.0.0"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.0"
"@abp/select2" "~3.0.0"
"@abp/sweetalert" "~3.0.0"
"@abp/timeago" "~3.0.0"
"@abp/toastr" "~3.0.0"
"@abp/aspnetcore.mvc.ui@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.0.tgz#738bb23a74fce192e394e4b110a85611c5e39afd"
integrity sha512-hHTjhNi31P5WT+0iMKgZuU9CyxA1ymxAFtaZZO6QBBln5JZqS2hOyfRrSPXm4snKG6Bhq7UxBX0BkNkoKCgIcQ==
"@abp/aspnetcore.mvc.ui.theme.shared@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui.theme.shared/-/aspnetcore.mvc.ui.theme.shared-3.0.1.tgz#dcfacf80bd276ac05f57a804c4e260c8281b30fd"
integrity sha512-TtkQDlThicD4fsMhp+dWB27HvY4Qg+1sIgU4zn/XOcUzeWoivmsFHv3oJV9uL+M8/78R537gcQRmEfRZReqjQA==
dependencies:
"@abp/aspnetcore.mvc.ui" "~3.0.1"
"@abp/bootstrap" "~3.0.1"
"@abp/bootstrap-datepicker" "~3.0.1"
"@abp/datatables.net-bs4" "~3.0.1"
"@abp/font-awesome" "~3.0.1"
"@abp/jquery-form" "~3.0.1"
"@abp/jquery-validation-unobtrusive" "~3.0.1"
"@abp/lodash" "~3.0.1"
"@abp/luxon" "~3.0.1"
"@abp/malihu-custom-scrollbar-plugin" "~3.0.1"
"@abp/select2" "~3.0.1"
"@abp/sweetalert" "~3.0.1"
"@abp/timeago" "~3.0.1"
"@abp/toastr" "~3.0.1"
"@abp/aspnetcore.mvc.ui@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/aspnetcore.mvc.ui/-/aspnetcore.mvc.ui-3.0.1.tgz#692c43132204c5a90f789ac4c2ee645ea3a81a1b"
integrity sha512-TcbPD7F0cMU32EkRxheyXD8iZVREiIpfRyh74TZApkPT9N4HhizvOqymOM1qPkcDjyWm4Ggdk+P8u+hwCMDijg==
dependencies:
ansi-colors "^4.1.1"
extend-object "^1.0.0"
@ -41,138 +41,138 @@
path "^0.12.7"
rimraf "^3.0.2"
"@abp/bootstrap-datepicker@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.0.tgz#6f60a45485aa1d522c8093627980797071325236"
integrity sha512-zfRRCHKEzaas1+0mzCAKkyCGoH9+4UYzcKT5GmWICktONSs81rEDH4QWg9XSvGzei3IghUzH4HM8XhI1qkfcJg==
"@abp/bootstrap-datepicker@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap-datepicker/-/bootstrap-datepicker-3.0.1.tgz#595a88102f7173136b418634c1a276e67bab09ca"
integrity sha512-Pee5Q0lzYkm7qhVfDT/nZTRisZnwvS+FUwqGOkmq/WDgB9LwjgIww8EyzQEWanLfkrsROALTg529rJPfWdXPNQ==
dependencies:
bootstrap-datepicker "^1.9.0"
"@abp/bootstrap@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.0.tgz#09b43961f7232cc53cb8fc60b9cd18387579ff77"
integrity sha512-J/ULYhUE48INqrOS+rdo1dek2lrscSkUKTQprpHrlYViM6oJvFCnA6eGaRyTM7ForYk8Jvy3FPuQQ5hRZZVDpw==
"@abp/bootstrap@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/bootstrap/-/bootstrap-3.0.1.tgz#d478f5bf773e7e25065918adc93eae37f773e4b6"
integrity sha512-TYNRM+nE8OaVYeUgtGtO41RSqJkBXMv7XRiYDG4FZf4vnSCR/E0pc8Hp7WUki6rO83WVWJeBAntmh3U48G+pOA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
bootstrap "^4.5.0"
bootstrap-v4-rtl "4.4.1-2"
"@abp/core@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.0.tgz#644643eecc5a6b6af0573bab9d8a9d6f872c8b40"
integrity sha512-FkYAK/r2BmufcWJw5Wl01psFuGKekTvg9/M/A19/l8GCYsZV+bmAFP1AMcUO5Cfr5h5ua6FsJ30mNIFcOX5kQA==
"@abp/core@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/core/-/core-3.0.1.tgz#ac3f55d8fe4100a1c318b4e8d48e77376206f521"
integrity sha512-2pBiSoJGP0nRIb1avJ4lMNQUqoPmR3DCNrvmBkYMHgiv8BS2Qc9qxf8iW3NQ3tymxDH8QO/TGaej24tpbhZQUQ==
dependencies:
"@abp/utils" "~2.9.0"
"@abp/datatables.net-bs4@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.0.tgz#da0c6c5f07e09aeb0dbb0258339761724bbae315"
integrity sha512-LTIe7cG/if8lESIl761tgc/STyU1lCsJfkZnmsUOiuU5MB71DhSjUrKRg3+w/tVuw9LQwZ2IF5y7DTAaBJGcZw==
"@abp/datatables.net-bs4@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net-bs4/-/datatables.net-bs4-3.0.1.tgz#9a7617f2fe42bf876613fe8b5012a7901444586d"
integrity sha512-DyqK8+H7Vo+AuLJsZ6tdh/yN5JfQxUqCAk2gPbv6OqJp1tw6EbbSzPW7wVyRfy3dEHDTENBivkJQH2+G3ba2aQ==
dependencies:
"@abp/datatables.net" "~3.0.0"
"@abp/datatables.net" "~3.0.1"
datatables.net-bs4 "^1.10.21"
"@abp/datatables.net@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.0.tgz#9b124345e19462e7f19cc46961d5d9354f55837d"
integrity sha512-XP0UmzPd1sKCAx4EHDjtnKLx/xjQzLXHp/3fzArHcWiPlNhzJvCwSRuo6Wsxc+TXAg/bGfSRl5cWtJ6L3d3Lbw==
"@abp/datatables.net@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/datatables.net/-/datatables.net-3.0.1.tgz#4556bba2f9a337ec4580416e31963ea0c9e10e29"
integrity sha512-5MBTxVdrui65dq7hKgSsxmcg1xm+IJk0MMpXKlw7DdfqmxXcpOcVFSmVV5xg9vYrc8iK1i5+5hOfQDZeEzRzPw==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
datatables.net "^1.10.21"
"@abp/font-awesome@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.0.tgz#1f86b54e0d0985bb8ca6d75c2b2c5bf29c4775a0"
integrity sha512-z0s4ELIwiPs8owB2O+FltDwcsZZLpVHUMTF0SCUUD2ec/MlOE6BzdLQBIEq/FL2VJu/GfttAJojyrjHO2CwEGg==
"@abp/font-awesome@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/font-awesome/-/font-awesome-3.0.1.tgz#81c79a917d6f77894033b2eacbff033f9da467c5"
integrity sha512-DSgsiQ29OQwS8hgZ+0Xxbqax01vVEcXJvIisrurdkSuW728GHV/PZpWUl/CnHsJxTnUWO//eLRogXkNYsTqoRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
"@fortawesome/fontawesome-free" "^5.13.0"
"@abp/jquery-form@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.0.tgz#ddd86a810c8ffb8f5981fb1aca60504af1cc6365"
integrity sha512-F6dGzrfjeSKw/7IjJ/hYpJh1hqhURwbvk29+QhomQKyztV7t4WPa8PIbiQ0yaC2cCDnauRRsCijDpxGXFjgxcA==
"@abp/jquery-form@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-form/-/jquery-form-3.0.1.tgz#932934267b518ab012412808d60e262e9c4eaf95"
integrity sha512-ked53XkkWPHIrOpQpR6LgkpdW2EG/4FZKhVqpf9KgVyExbqEtc4+8NV9dplXfFJOA4HpfHEnOHttqqq3dmnbsg==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-form "^4.3.0"
"@abp/jquery-validation-unobtrusive@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.0.tgz#3d35bb72de7ed89a7b5829fc91bec1a2006f9f2e"
integrity sha512-JSVbRMT5yPbWpxwVNc6lHMsmFGaiOAocvTLGvDonTlUMqflE6K3CFyJt+ddgFPXNSOEeYlfpxL3WGP1p7sXdDQ==
"@abp/jquery-validation-unobtrusive@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation-unobtrusive/-/jquery-validation-unobtrusive-3.0.1.tgz#de911356a66b426e1a783a60e50aea4ab8000342"
integrity sha512-ANpqIehI9YPRRJCj4cTcLRBsKjVZsmOBjZBF1K4Dfa0n2DEVtPqPrmHzkpLvxxbdw6P9JFCdOvGZeSYxqPfbgQ==
dependencies:
"@abp/jquery-validation" "~3.0.0"
"@abp/jquery-validation" "~3.0.1"
jquery-validation-unobtrusive "^3.2.11"
"@abp/jquery-validation@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.0.tgz#c386254384efd756ea75ed11e8208c2a6ed7f86a"
integrity sha512-wNfNW8+Nct0GtKALRy5ysdCKGlPXyCugF24MKsKpGne9HkJLNrW390BxNLdJahA1jGHmcwjkhAHv++PpY1kifg==
"@abp/jquery-validation@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery-validation/-/jquery-validation-3.0.1.tgz#21292bb4a750c9dff7bf451cf6aaceb9d3720b05"
integrity sha512-QIleJ4Hcj7doNnD3qTN1WySJIbMmb3K/FLrin/n1rISoJfrF3da0Snjz7hMv+BQVQK/5OJAJ08rcw6EmaGNwMA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
jquery-validation "^1.19.2"
"@abp/jquery@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.0.tgz#9e7da443e4069d315e655febe250514f50634704"
integrity sha512-SbbFegvDfJs8IWPdc94ok+usMg4Ow9G6zBx6RcEwP3cbfDr6Aq/GyzkPhxdV3ro9XSwQUTlwNKx7XpYSCeiJjQ==
"@abp/jquery@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/jquery/-/jquery-3.0.1.tgz#2530d960c0bab43430df81df705063fba0a78520"
integrity sha512-M2MGyGlm4QzE17TGavjCNsZKHuRrfYg8zBz6eur5Z2Qepf8+pXTE4B59kPoNIzRT+MBpquR+N/VdH+vW1Jp8kQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
jquery "~3.5.1"
"@abp/lodash@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.0.tgz#2f0257a75e17d94c6f042f78171f92b781b59401"
integrity sha512-+Z0l8VGNN0zdwuT0B3R+HGR54H3/dySJFfIoe7C/+rpFA6dbC8kX6SceJmeLjZbhQG/kiLvKVikE1BsdamfTSQ==
"@abp/lodash@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/lodash/-/lodash-3.0.1.tgz#01c1c1717f0bb98d3077d0e531cb3e2c60576b80"
integrity sha512-GKUVvj5Z7kUfd2Gc9nKroduJEH9ZOKlkpIFt23KpbTGv2bT0NrmA7xJuOxK3h+5dKTAovQSR6rtVA13hDBFRGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
lodash "^4.17.15"
"@abp/luxon@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.0.tgz#b366746c24d8688313caf21f3833326b6a4d82f6"
integrity sha512-L9j6QeqNfY4bngj6Vs8HCKkIzC6hfCioe4bTxKH7Oaav0t4Lr0xiqt3+mGDSTL+/f8evHUal9COCSLSEDWTX0Q==
"@abp/luxon@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/luxon/-/luxon-3.0.1.tgz#5b8e15896f0c5b33f5da05c9db51cfd17bd366a8"
integrity sha512-6mo0wR3mblAgZGSqJJH2oAjmg8/2vdCWaZBsR1iJGsyafFn+D0XWBOxqB+tASnqGNuyIRJAOKB1gs17l7OvzQg==
dependencies:
luxon "^1.24.1"
"@abp/malihu-custom-scrollbar-plugin@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.0.tgz#7183e0601936d4d96358e802bc9815f7c07fa80e"
integrity sha512-KUOYU6KDV4HyZyAhHD9IdE7MLQq9eaRk4NulS3ObjbQ72+JyzTRoUPBBoZIWOOytzQGX64FINcDrCcjJWEncOw==
"@abp/malihu-custom-scrollbar-plugin@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/malihu-custom-scrollbar-plugin/-/malihu-custom-scrollbar-plugin-3.0.1.tgz#9a0ae71fbe78ff70698f4cb6724ad8d98ce6ff1a"
integrity sha512-0KsHUZC5TygzoorXdX1I8rJPntAEV4wHSD2pfZhdguTkb1/rAkggDH47drqkiUze6meBRp9OVCpHT8UZD8ZpGw==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
malihu-custom-scrollbar-plugin "^3.1.5"
"@abp/select2@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.0.tgz#7ad07d6b0e55ac19cd087455630a52c15f1aaac6"
integrity sha512-M2RTCY1CS1nQECM6LrjyXbkEkHLXpQtxIEA0PW74P9QqknNfUci8YkM0caUA6w6TfdKnXFVWVAy2aQ+phQgm6Q==
"@abp/select2@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/select2/-/select2-3.0.1.tgz#3015f9103c94c56f6646d30ba785629931cf3cad"
integrity sha512-PDmGw+0gannJxAc+ERMR/KM51gZ3ykAkAlvqw25UFAfN3kAGcqu0Ue9bmQ8m4EMyDLA3g6/ZFge3mkBuX2ogRQ==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
select2 "^4.0.13"
"@abp/sweetalert@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.0.tgz#a5e6d56ad3f2528d115a62f22e6c7051c257d223"
integrity sha512-Nz0R+8OHABUXishJb25TTopuUaZNU4nerKAF9FTUFmAYrQzpaIf4sMWEUVNCXD6rajPcNCwMql+EV78bEkKKJw==
"@abp/sweetalert@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/sweetalert/-/sweetalert-3.0.1.tgz#4cd04d224b2d556eb354b5a229afa8265798aa0b"
integrity sha512-pGgJiqr+zTovbREIBGlRk2q33/obvbWJxev8VQTFugQEckUHvIUVrXyzVhOLdlMJnWN1ZN4S+l1E1uNhe4+MPA==
dependencies:
"@abp/core" "~3.0.0"
"@abp/core" "~3.0.1"
sweetalert "^2.1.2"
"@abp/timeago@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.0.tgz#6dbe6708be5f805d2b48da25385d9197de0d3b26"
integrity sha512-R1h8EbQHVrcBNJYMGSiA0woCNBxP/G6KCurqSENLbRM52W7g0Ky6UtNVDWn4PQ6Af1jgtJDVMfbNP5WqNKgmNw==
"@abp/timeago@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/timeago/-/timeago-3.0.1.tgz#6e30e8d2c2e52766e110f74f5ecfce6673964efe"
integrity sha512-7HfxjfJ7vQQcoI6oulB2gjyNuA3vVMPSep0qSmSAZuIYhm/Im/h87qG1i16dxLea4MVaFjnRqKwaNCVvlrxSNA==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
timeago "^1.6.7"
"@abp/toastr@~3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.0.tgz#21f966e9c108ffb01961000bbac7f50bbb45d29d"
integrity sha512-zL/VIaLdWOzsTH+8cjD3uDkUWVy45eqTzJzfO+3H7d8xCKoQSPNfFt1zuWB0Ws3FVWTd5YcRR0Qngl1fF1yrJw==
"@abp/toastr@~3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@abp/toastr/-/toastr-3.0.1.tgz#b3c9eefc09ac94cb3e672e3cd04ade24d8d2b7ce"
integrity sha512-FqM0bjXDusAyJEemTwRd45NiAXx7R6RA583sjBBigLB8xAXx898Yiy2zQT+2vDGhAc0WuX1gcYnNVfR1KexjVQ==
dependencies:
"@abp/jquery" "~3.0.0"
"@abp/jquery" "~3.0.1"
toastr "^2.1.4"
"@abp/utils@~2.9.0":

Loading…
Cancel
Save