@volosoft/abp.ng.theme.lepton-x 2.0.0-rc.4 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/account/account/account-layout.component.d.ts +1 -1
  2. package/account/account/components/auth-wrapper/auth-wrapper.component.d.ts +1 -1
  3. package/account/account/components/tenant-box/tenant-box.component.d.ts +1 -1
  4. package/esm2020/account/account/account-layout.component.mjs +3 -3
  5. package/esm2020/account/account/account-layout.module.mjs +4 -4
  6. package/esm2020/account/account/components/auth-wrapper/auth-wrapper.component.mjs +3 -3
  7. package/esm2020/account/account/components/tenant-box/tenant-box.component.mjs +3 -3
  8. package/esm2020/layouts/side-menu/layout/side-menu-application-layout.component.mjs +12 -8
  9. package/esm2020/layouts/side-menu/layout/side-menu-layout.module.mjs +4 -4
  10. package/esm2020/layouts/top-menu/layout/top-menu-application-layout.component.mjs +5 -5
  11. package/esm2020/layouts/top-menu/layout/top-menu-layout.module.mjs +4 -4
  12. package/esm2020/lib/components/abp-validation-error/abp-validation-error.component.mjs +3 -3
  13. package/esm2020/lib/components/abp-validation-error/abp-validation-error.module.mjs +4 -4
  14. package/esm2020/lib/components/http-error/http-error.component.mjs +3 -3
  15. package/esm2020/lib/components/http-error/http-error.module.mjs +4 -4
  16. package/esm2020/lib/enums/components.mjs +1 -1
  17. package/esm2020/lib/lepton-x.module.mjs +4 -4
  18. package/esm2020/lib/services/abp-auth.service.mjs +3 -3
  19. package/esm2020/lib/services/abp-settings.service.mjs +3 -3
  20. package/esm2020/lib/services/abp-toolbar.service.mjs +3 -3
  21. package/esm2020/lib/services/abp-translate.service.mjs +4 -4
  22. package/esm2020/lib/services/page-render-strategy.service.mjs +3 -3
  23. package/fesm2015/volosoft-abp.ng.theme.lepton-x-account.mjs +13 -13
  24. package/fesm2015/volosoft-abp.ng.theme.lepton-x-account.mjs.map +1 -1
  25. package/fesm2015/volosoft-abp.ng.theme.lepton-x-layouts.mjs +23 -19
  26. package/fesm2015/volosoft-abp.ng.theme.lepton-x-layouts.mjs.map +1 -1
  27. package/fesm2015/volosoft-abp.ng.theme.lepton-x.mjs +33 -33
  28. package/fesm2015/volosoft-abp.ng.theme.lepton-x.mjs.map +1 -1
  29. package/fesm2020/volosoft-abp.ng.theme.lepton-x-account.mjs +13 -13
  30. package/fesm2020/volosoft-abp.ng.theme.lepton-x-account.mjs.map +1 -1
  31. package/fesm2020/volosoft-abp.ng.theme.lepton-x-layouts.mjs +23 -19
  32. package/fesm2020/volosoft-abp.ng.theme.lepton-x-layouts.mjs.map +1 -1
  33. package/fesm2020/volosoft-abp.ng.theme.lepton-x.mjs +33 -33
  34. package/fesm2020/volosoft-abp.ng.theme.lepton-x.mjs.map +1 -1
  35. package/layouts/side-menu/layout/side-menu-application-layout.component.d.ts +6 -2
  36. package/layouts/top-menu/layout/top-menu-application-layout.component.d.ts +1 -1
  37. package/lib/components/abp-validation-error/abp-validation-error.component.d.ts +1 -1
  38. package/lib/components/http-error/http-error.component.d.ts +1 -1
  39. package/lib/enums/components.d.ts +0 -2
  40. package/package.json +8 -8
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
2
2
  export declare class AccountLayoutComponent {
3
3
  authWrapperKey: string;
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<AccountLayoutComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<AccountLayoutComponent, "abp-account-layout", never, {}, {}, never, never, false>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<AccountLayoutComponent, "abp-account-layout", never, {}, {}, never, never, false, never>;
6
6
  }
@@ -4,5 +4,5 @@ export declare class AuthWrapperComponent {
4
4
  service: AuthWrapperService;
5
5
  constructor(service: AuthWrapperService);
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<AuthWrapperComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<AuthWrapperComponent, "abp-auth-wrapper", never, {}, {}, never, ["*"], false>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AuthWrapperComponent, "abp-auth-wrapper", never, {}, {}, never, ["*"], false, never>;
8
8
  }
@@ -4,5 +4,5 @@ export declare class TenantBoxComponent {
4
4
  service: TenantBoxService;
5
5
  constructor(service: TenantBoxService);
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<TenantBoxComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<TenantBoxComponent, "abp-tenant-box", never, {}, {}, never, never, false>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<TenantBoxComponent, "abp-tenant-box", never, {}, {}, never, never, false, never>;
8
8
  }
@@ -10,9 +10,9 @@ export class AccountLayoutComponent {
10
10
  this.authWrapperKey = 'Account.AuthWrapper';
11
11
  }
12
12
  }
13
- AccountLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AccountLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
14
- AccountLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: AccountLayoutComponent, selector: "abp-account-layout", ngImport: i0, template: "<lpx-auth-layout>\r\n <abp-page-alert-container></abp-page-alert-container>\r\n <abp-auth-wrapper\r\n *abpReplaceableTemplate=\"{\r\n componentKey: authWrapperKey\r\n }\">\r\n <router-outlet></router-outlet>\r\n </abp-auth-wrapper>\r\n</lpx-auth-layout>\r\n", dependencies: [{ kind: "component", type: i1.AuthLayoutComponent, selector: "lpx-auth-layout" }, { kind: "component", type: i2.PageAlertContainerComponent, selector: "abp-page-alert-container" }, { kind: "directive", type: i3.RouterOutlet, selector: "router-outlet", outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: i4.ReplaceableTemplateDirective, selector: "[abpReplaceableTemplate]", inputs: ["abpReplaceableTemplate"] }, { kind: "component", type: i5.AuthWrapperComponent, selector: "abp-auth-wrapper" }] });
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AccountLayoutComponent, decorators: [{
13
+ AccountLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AccountLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
14
+ AccountLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", type: AccountLayoutComponent, selector: "abp-account-layout", ngImport: i0, template: "<lpx-auth-layout>\r\n <abp-page-alert-container></abp-page-alert-container>\r\n <abp-auth-wrapper\r\n *abpReplaceableTemplate=\"{\r\n componentKey: authWrapperKey\r\n }\">\r\n <router-outlet></router-outlet>\r\n </abp-auth-wrapper>\r\n</lpx-auth-layout>\r\n", dependencies: [{ kind: "component", type: i1.AuthLayoutComponent, selector: "lpx-auth-layout" }, { kind: "component", type: i2.PageAlertContainerComponent, selector: "abp-page-alert-container" }, { kind: "directive", type: i3.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: i4.ReplaceableTemplateDirective, selector: "[abpReplaceableTemplate]", inputs: ["abpReplaceableTemplate"] }, { kind: "component", type: i5.AuthWrapperComponent, selector: "abp-auth-wrapper" }] });
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AccountLayoutComponent, decorators: [{
16
16
  type: Component,
17
17
  args: [{ selector: 'abp-account-layout', template: "<lpx-auth-layout>\r\n <abp-page-alert-container></abp-page-alert-container>\r\n <abp-auth-wrapper\r\n *abpReplaceableTemplate=\"{\r\n componentKey: authWrapperKey\r\n }\">\r\n <router-outlet></router-outlet>\r\n </abp-auth-wrapper>\r\n</lpx-auth-layout>\r\n" }]
18
18
  }] });
@@ -25,8 +25,8 @@ export class AccountLayoutModule {
25
25
  };
26
26
  }
27
27
  }
28
- AccountLayoutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AccountLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
29
- AccountLayoutModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: AccountLayoutModule, declarations: [AuthWrapperComponent,
28
+ AccountLayoutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AccountLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
29
+ AccountLayoutModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.1", ngImport: i0, type: AccountLayoutModule, declarations: [AuthWrapperComponent,
30
30
  TenantBoxComponent,
31
31
  AccountLayoutComponent], imports: [LpxAuthLayoutModule,
32
32
  LpxContextMenuModule,
@@ -34,13 +34,13 @@ AccountLayoutModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", ver
34
34
  CoreModule,
35
35
  ThemeSharedModule,
36
36
  NgbDropdownModule] });
37
- AccountLayoutModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AccountLayoutModule, imports: [LpxAuthLayoutModule,
37
+ AccountLayoutModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AccountLayoutModule, imports: [LpxAuthLayoutModule,
38
38
  LpxContextMenuModule,
39
39
  PageAlertContainerModule,
40
40
  CoreModule,
41
41
  ThemeSharedModule,
42
42
  NgbDropdownModule] });
43
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AccountLayoutModule, decorators: [{
43
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AccountLayoutModule, decorators: [{
44
44
  type: NgModule,
45
45
  args: [{
46
46
  imports: [
@@ -11,9 +11,9 @@ export class AuthWrapperComponent {
11
11
  this.service = service;
12
12
  }
13
13
  }
14
- AuthWrapperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AuthWrapperComponent, deps: [{ token: i1.AuthWrapperService }], target: i0.ɵɵFactoryTarget.Component });
15
- AuthWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: AuthWrapperComponent, selector: "abp-auth-wrapper", providers: [AuthWrapperService], ngImport: i0, template: "<div class=\"card\">\r\n <div class=\"d-flex justify-content-between\">\r\n <h2>\r\n <strong>{{ service.pageLabel | abpLocalization }}</strong>\r\n </h2>\r\n <div class=\"dropdown\" ngbDropdown>\r\n <a\r\n *ngIf=\"service.defaultLanguage$ | async as defaultLang\"\r\n class=\"pointer\"\r\n role=\"button\"\r\n id=\"dropdownMenuLink\"\r\n ngbDropdownToggle\r\n [class.dropdown-toggle]=\"false\"\r\n >\r\n <i class=\"bi bi-globe me-1\"></i>\r\n <span class=\"ml-2\">{{ defaultLang.displayName }}</span>\r\n </a>\r\n <div\r\n ngbDropdownMenu\r\n class=\"dropdown-menu dropdown-menu-right\"\r\n *ngIf=\"(service.dropdownLanguages$ | async).length > 0\"\r\n >\r\n <a\r\n *ngFor=\"let lang of service.dropdownLanguages$ | async\"\r\n class=\"dropdown-item pointer\"\r\n (click)=\"service.onChangeLang(lang.cultureName)\"\r\n >\r\n {{ lang?.displayName }}</a\r\n >\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <ng-container\r\n *ngIf=\"\r\n (service.isMultiTenancyEnabled$ | async) && service.isTenantBoxVisible\r\n \"\r\n >\r\n <abp-tenant-box\r\n *abpReplaceableTemplate=\"{ componentKey: service.tenantBoxKey }\"\r\n ></abp-tenant-box>\r\n </ng-container>\r\n <div\r\n *ngIf=\"service.enableLocalLogin$ | async; else disableLocalLoginTemplate\"\r\n >\r\n <ng-content></ng-content>\r\n </div>\r\n <ng-template #disableLocalLoginTemplate>\r\n <div class=\"alert alert-warning\">\r\n <strong>{{ 'AbpAccount::InvalidLoginRequest' | abpLocalization }}</strong>\r\n {{\r\n 'AbpAccount::ThereAreNoLoginSchemesConfiguredForThisClient'\r\n | abpLocalization\r\n }}\r\n </div>\r\n </ng-template>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.ReplaceableTemplateDirective, selector: "[abpReplaceableTemplate]", inputs: ["abpReplaceableTemplate"] }, { kind: "directive", type: i4.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i4.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i4.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "component", type: i5.TenantBoxComponent, selector: "abp-tenant-box" }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i3.LocalizationPipe, name: "abpLocalization" }] });
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AuthWrapperComponent, decorators: [{
14
+ AuthWrapperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AuthWrapperComponent, deps: [{ token: i1.AuthWrapperService }], target: i0.ɵɵFactoryTarget.Component });
15
+ AuthWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", type: AuthWrapperComponent, selector: "abp-auth-wrapper", providers: [AuthWrapperService], ngImport: i0, template: "<div class=\"card\">\r\n <div class=\"d-flex justify-content-between\">\r\n <h2>\r\n <strong>{{ service.pageLabel | abpLocalization }}</strong>\r\n </h2>\r\n <div class=\"dropdown\" ngbDropdown>\r\n <a\r\n *ngIf=\"service.defaultLanguage$ | async as defaultLang\"\r\n class=\"pointer\"\r\n role=\"button\"\r\n id=\"dropdownMenuLink\"\r\n ngbDropdownToggle\r\n [class.dropdown-toggle]=\"false\"\r\n >\r\n <i class=\"bi bi-globe me-1\"></i>\r\n <span class=\"ml-2\">{{ defaultLang.displayName }}</span>\r\n </a>\r\n <div\r\n ngbDropdownMenu\r\n class=\"dropdown-menu dropdown-menu-right\"\r\n *ngIf=\"(service.dropdownLanguages$ | async).length > 0\"\r\n >\r\n <a\r\n *ngFor=\"let lang of service.dropdownLanguages$ | async\"\r\n class=\"dropdown-item pointer\"\r\n (click)=\"service.onChangeLang(lang.cultureName)\"\r\n >\r\n {{ lang?.displayName }}</a\r\n >\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <ng-container\r\n *ngIf=\"\r\n (service.isMultiTenancyEnabled$ | async) && service.isTenantBoxVisible\r\n \"\r\n >\r\n <abp-tenant-box\r\n *abpReplaceableTemplate=\"{ componentKey: service.tenantBoxKey }\"\r\n ></abp-tenant-box>\r\n </ng-container>\r\n <div\r\n *ngIf=\"service.enableLocalLogin$ | async; else disableLocalLoginTemplate\"\r\n >\r\n <ng-content></ng-content>\r\n </div>\r\n <ng-template #disableLocalLoginTemplate>\r\n <div class=\"alert alert-warning\">\r\n <strong>{{ 'AbpAccount::InvalidLoginRequest' | abpLocalization }}</strong>\r\n {{\r\n 'AbpAccount::ThereAreNoLoginSchemesConfiguredForThisClient'\r\n | abpLocalization\r\n }}\r\n </div>\r\n </ng-template>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.ReplaceableTemplateDirective, selector: "[abpReplaceableTemplate]", inputs: ["abpReplaceableTemplate"] }, { kind: "directive", type: i4.NgbDropdown, selector: "[ngbDropdown]", inputs: ["autoClose", "dropdownClass", "open", "placement", "container", "display"], outputs: ["openChange"], exportAs: ["ngbDropdown"] }, { kind: "directive", type: i4.NgbDropdownToggle, selector: "[ngbDropdownToggle]" }, { kind: "directive", type: i4.NgbDropdownMenu, selector: "[ngbDropdownMenu]" }, { kind: "component", type: i5.TenantBoxComponent, selector: "abp-tenant-box" }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i3.LocalizationPipe, name: "abpLocalization" }] });
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AuthWrapperComponent, decorators: [{
17
17
  type: Component,
18
18
  args: [{ selector: 'abp-auth-wrapper', providers: [AuthWrapperService], template: "<div class=\"card\">\r\n <div class=\"d-flex justify-content-between\">\r\n <h2>\r\n <strong>{{ service.pageLabel | abpLocalization }}</strong>\r\n </h2>\r\n <div class=\"dropdown\" ngbDropdown>\r\n <a\r\n *ngIf=\"service.defaultLanguage$ | async as defaultLang\"\r\n class=\"pointer\"\r\n role=\"button\"\r\n id=\"dropdownMenuLink\"\r\n ngbDropdownToggle\r\n [class.dropdown-toggle]=\"false\"\r\n >\r\n <i class=\"bi bi-globe me-1\"></i>\r\n <span class=\"ml-2\">{{ defaultLang.displayName }}</span>\r\n </a>\r\n <div\r\n ngbDropdownMenu\r\n class=\"dropdown-menu dropdown-menu-right\"\r\n *ngIf=\"(service.dropdownLanguages$ | async).length > 0\"\r\n >\r\n <a\r\n *ngFor=\"let lang of service.dropdownLanguages$ | async\"\r\n class=\"dropdown-item pointer\"\r\n (click)=\"service.onChangeLang(lang.cultureName)\"\r\n >\r\n {{ lang?.displayName }}</a\r\n >\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <ng-container\r\n *ngIf=\"\r\n (service.isMultiTenancyEnabled$ | async) && service.isTenantBoxVisible\r\n \"\r\n >\r\n <abp-tenant-box\r\n *abpReplaceableTemplate=\"{ componentKey: service.tenantBoxKey }\"\r\n ></abp-tenant-box>\r\n </ng-container>\r\n <div\r\n *ngIf=\"service.enableLocalLogin$ | async; else disableLocalLoginTemplate\"\r\n >\r\n <ng-content></ng-content>\r\n </div>\r\n <ng-template #disableLocalLoginTemplate>\r\n <div class=\"alert alert-warning\">\r\n <strong>{{ 'AbpAccount::InvalidLoginRequest' | abpLocalization }}</strong>\r\n {{\r\n 'AbpAccount::ThereAreNoLoginSchemesConfiguredForThisClient'\r\n | abpLocalization\r\n }}\r\n </div>\r\n </ng-template>\r\n</div>\r\n" }]
19
19
  }], ctorParameters: function () { return [{ type: i1.AuthWrapperService }]; } });
@@ -11,9 +11,9 @@ export class TenantBoxComponent {
11
11
  this.service = service;
12
12
  }
13
13
  }
14
- TenantBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: TenantBoxComponent, deps: [{ token: i1.TenantBoxService }], target: i0.ɵɵFactoryTarget.Component });
15
- TenantBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: TenantBoxComponent, selector: "abp-tenant-box", providers: [TenantBoxService], ngImport: i0, template: "<ng-container *ngIf=\"(service.currentTenant$ | async) || {} as currentTenant\">\r\n <div class=\"card-header bg-light mb-3\">\r\n <div class=\"tenant-switch-box\">\r\n <div class=\"row\">\r\n <div class=\"col pr-1 pb-2\">\r\n <h6 class=\"m0\">\r\n {{ 'AbpUiMultiTenancy::Tenant' | abpLocalization }}\r\n </h6>\r\n <i>{{\r\n currentTenant.name ||\r\n ('AbpUiMultiTenancy::NotSelected' | abpLocalization)\r\n }}</i>\r\n </div>\r\n\r\n <div class=\"col-auto pl-1\">\r\n <a\r\n id=\"abp-tenant-switch-link\"\r\n class=\"btn btn-sm btn-outline-primary float-end pointer\"\r\n (click)=\"service.onSwitch()\"\r\n href=\"javascript:void(0)\"\r\n >{{ 'AbpUiMultiTenancy::Switch' | abpLocalization }}</a\r\n >\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <abp-modal\r\n [(visible)]=\"service.isModalVisible\"\r\n [busy]=\"service.modalBusy\"\r\n size=\"md\"\r\n >\r\n <ng-template #abpHeader>\r\n <h5>Switch Tenant</h5>\r\n </ng-template>\r\n <ng-template #abpBody>\r\n <form (ngSubmit)=\"service.save()\">\r\n <div class=\"mt-2\">\r\n <div class=\"form-group\">\r\n <label for=\"name\">{{\r\n 'AbpUiMultiTenancy::Name' | abpLocalization\r\n }}</label>\r\n <input\r\n [(ngModel)]=\"service.name\"\r\n type=\"text\"\r\n id=\"name\"\r\n name=\"tenant\"\r\n class=\"form-control\"\r\n autofocus\r\n />\r\n </div>\r\n <p>{{ 'AbpUiMultiTenancy::SwitchTenantHint' | abpLocalization }}</p>\r\n </div>\r\n </form>\r\n </ng-template>\r\n <ng-template #abpFooter>\r\n <button abpClose type=\"button\" class=\"btn btn-secondary\">\r\n {{ 'AbpAccount::Cancel' | abpLocalization }}\r\n </button>\r\n <abp-button\r\n type=\"abp-button\"\r\n iconClass=\"fa fa-check\"\r\n (click)=\"service.save()\"\r\n [disabled]=\"currentTenant?.name === service.name\"\r\n >\r\n {{ 'AbpAccount::Save' | abpLocalization }}\r\n </abp-button>\r\n </ng-template>\r\n </abp-modal>\r\n</ng-container>\r\n", dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i4.AutofocusDirective, selector: "[autofocus]", inputs: ["autofocus"] }, { kind: "component", type: i5.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i5.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i5.ModalCloseDirective, selector: "[abpClose]" }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i4.LocalizationPipe, name: "abpLocalization" }] });
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: TenantBoxComponent, decorators: [{
14
+ TenantBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: TenantBoxComponent, deps: [{ token: i1.TenantBoxService }], target: i0.ɵɵFactoryTarget.Component });
15
+ TenantBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", type: TenantBoxComponent, selector: "abp-tenant-box", providers: [TenantBoxService], ngImport: i0, template: "<ng-container *ngIf=\"(service.currentTenant$ | async) || {} as currentTenant\">\r\n <div class=\"card-header bg-light mb-3\">\r\n <div class=\"tenant-switch-box\">\r\n <div class=\"row\">\r\n <div class=\"col pr-1 pb-2\">\r\n <h6 class=\"m0\">\r\n {{ 'AbpUiMultiTenancy::Tenant' | abpLocalization }}\r\n </h6>\r\n <i>{{\r\n currentTenant.name ||\r\n ('AbpUiMultiTenancy::NotSelected' | abpLocalization)\r\n }}</i>\r\n </div>\r\n\r\n <div class=\"col-auto pl-1\">\r\n <a\r\n id=\"abp-tenant-switch-link\"\r\n class=\"btn btn-sm btn-outline-primary float-end pointer\"\r\n (click)=\"service.onSwitch()\"\r\n href=\"javascript:void(0)\"\r\n >{{ 'AbpUiMultiTenancy::Switch' | abpLocalization }}</a\r\n >\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <abp-modal\r\n [(visible)]=\"service.isModalVisible\"\r\n [busy]=\"service.modalBusy\"\r\n size=\"md\"\r\n >\r\n <ng-template #abpHeader>\r\n <h5>Switch Tenant</h5>\r\n </ng-template>\r\n <ng-template #abpBody>\r\n <form (ngSubmit)=\"service.save()\">\r\n <div class=\"mt-2\">\r\n <div class=\"form-group\">\r\n <label for=\"name\">{{\r\n 'AbpUiMultiTenancy::Name' | abpLocalization\r\n }}</label>\r\n <input\r\n [(ngModel)]=\"service.name\"\r\n type=\"text\"\r\n id=\"name\"\r\n name=\"tenant\"\r\n class=\"form-control\"\r\n autofocus\r\n />\r\n </div>\r\n <p>{{ 'AbpUiMultiTenancy::SwitchTenantHint' | abpLocalization }}</p>\r\n </div>\r\n </form>\r\n </ng-template>\r\n <ng-template #abpFooter>\r\n <button abpClose type=\"button\" class=\"btn btn-secondary\">\r\n {{ 'AbpAccount::Cancel' | abpLocalization }}\r\n </button>\r\n <abp-button\r\n type=\"abp-button\"\r\n iconClass=\"fa fa-check\"\r\n (click)=\"service.save()\"\r\n [disabled]=\"currentTenant?.name === service.name\"\r\n >\r\n {{ 'AbpAccount::Save' | abpLocalization }}\r\n </abp-button>\r\n </ng-template>\r\n </abp-modal>\r\n</ng-container>\r\n", dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i4.AutofocusDirective, selector: "[autofocus]", inputs: ["autofocus"] }, { kind: "component", type: i5.ButtonComponent, selector: "abp-button", inputs: ["buttonId", "buttonClass", "buttonType", "formName", "iconClass", "loading", "disabled", "attributes"], outputs: ["click", "focus", "blur", "abpClick", "abpFocus", "abpBlur"] }, { kind: "component", type: i5.ModalComponent, selector: "abp-modal", inputs: ["visible", "busy", "options", "suppressUnsavedChangesWarning"], outputs: ["visibleChange", "init", "appear", "disappear"] }, { kind: "directive", type: i5.ModalCloseDirective, selector: "[abpClose]" }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i4.LocalizationPipe, name: "abpLocalization" }] });
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: TenantBoxComponent, decorators: [{
17
17
  type: Component,
18
18
  args: [{ selector: 'abp-tenant-box', providers: [TenantBoxService], template: "<ng-container *ngIf=\"(service.currentTenant$ | async) || {} as currentTenant\">\r\n <div class=\"card-header bg-light mb-3\">\r\n <div class=\"tenant-switch-box\">\r\n <div class=\"row\">\r\n <div class=\"col pr-1 pb-2\">\r\n <h6 class=\"m0\">\r\n {{ 'AbpUiMultiTenancy::Tenant' | abpLocalization }}\r\n </h6>\r\n <i>{{\r\n currentTenant.name ||\r\n ('AbpUiMultiTenancy::NotSelected' | abpLocalization)\r\n }}</i>\r\n </div>\r\n\r\n <div class=\"col-auto pl-1\">\r\n <a\r\n id=\"abp-tenant-switch-link\"\r\n class=\"btn btn-sm btn-outline-primary float-end pointer\"\r\n (click)=\"service.onSwitch()\"\r\n href=\"javascript:void(0)\"\r\n >{{ 'AbpUiMultiTenancy::Switch' | abpLocalization }}</a\r\n >\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <abp-modal\r\n [(visible)]=\"service.isModalVisible\"\r\n [busy]=\"service.modalBusy\"\r\n size=\"md\"\r\n >\r\n <ng-template #abpHeader>\r\n <h5>Switch Tenant</h5>\r\n </ng-template>\r\n <ng-template #abpBody>\r\n <form (ngSubmit)=\"service.save()\">\r\n <div class=\"mt-2\">\r\n <div class=\"form-group\">\r\n <label for=\"name\">{{\r\n 'AbpUiMultiTenancy::Name' | abpLocalization\r\n }}</label>\r\n <input\r\n [(ngModel)]=\"service.name\"\r\n type=\"text\"\r\n id=\"name\"\r\n name=\"tenant\"\r\n class=\"form-control\"\r\n autofocus\r\n />\r\n </div>\r\n <p>{{ 'AbpUiMultiTenancy::SwitchTenantHint' | abpLocalization }}</p>\r\n </div>\r\n </form>\r\n </ng-template>\r\n <ng-template #abpFooter>\r\n <button abpClose type=\"button\" class=\"btn btn-secondary\">\r\n {{ 'AbpAccount::Cancel' | abpLocalization }}\r\n </button>\r\n <abp-button\r\n type=\"abp-button\"\r\n iconClass=\"fa fa-check\"\r\n (click)=\"service.save()\"\r\n [disabled]=\"currentTenant?.name === service.name\"\r\n >\r\n {{ 'AbpAccount::Save' | abpLocalization }}\r\n </abp-button>\r\n </ng-template>\r\n </abp-modal>\r\n</ng-container>\r\n" }]
19
19
  }], ctorParameters: function () { return [{ type: i1.TenantBoxService }]; } });
@@ -7,19 +7,23 @@ import * as i4 from "@volosoft/ngx-lepton-x/layouts";
7
7
  import * as i5 from "@volo/ngx-lepton-x.core";
8
8
  export class SideMenuApplicationLayoutComponent {
9
9
  constructor() {
10
- this.toolbarKey = "Theme.NavbarComponent" /* eThemeLeptonXComponents.Navbar */;
11
- this.navbarKey = "Theme.Sidebar" /* eThemeLeptonXComponents.Sidebar */;
10
+ this.toolbarKey = "Theme.ToolbarComponent" /* eThemeLeptonXComponents.Toolbar */;
11
+ this.navbarKey = "Theme.NavbarComponent" /* eThemeLeptonXComponents.Navbar */;
12
12
  this.routesKey = "Theme.RoutesComponent" /* eThemeLeptonXComponents.Routes */;
13
- this.toolbarItemsKey = "Theme.NavItemsComponent" /* eThemeLeptonXComponents.NavItems */;
13
+ this.navItemsKey = "Theme.NavItemsComponent" /* eThemeLeptonXComponents.NavItems */;
14
14
  this.breadcrumbKey = "Theme.Breadcrumb" /* eThemeLeptonXComponents.Breadcrumb */;
15
15
  this.footerKey = "Theme.FooterComponent" /* eThemeLeptonXComponents.Footer */;
16
16
  this.settingsPanelKey = "Theme.SettingsComponent" /* eThemeLeptonXComponents.Settings */;
17
+ this.mobileNavbarKey = "Theme.NavbarMobileComponent" /* eThemeLeptonXComponents.NavbarMobile */;
18
+ this.pageAlertContainerKey = "Theme.PageAlertContainerComponent" /* eThemeLeptonXComponents.PageAlertContainer */;
19
+ this.logoKey = "Theme.LogoComponent" /* eThemeLeptonXComponents.Logo */;
20
+ this.currentUserImageKey = "Theme.CurrentUserImageComponent" /* eThemeLeptonXComponents.CurrentUserImage */;
17
21
  }
18
22
  }
19
- SideMenuApplicationLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SideMenuApplicationLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
20
- SideMenuApplicationLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: SideMenuApplicationLayoutComponent, selector: "abp-application-layout", ngImport: i0, template: "<lpx-layout>\r\n <abp-page-alert-container></abp-page-alert-container>\r\n\r\n <ng-template lpx-navbar-panel>\r\n <lpx-navbar\r\n *abpReplaceableTemplate=\"{\r\n componentKey: navbarKey\r\n }\"\r\n >\r\n <ng-template lpx-navbar-routes let-items>\r\n <lpx-navbar-routes\r\n *abpReplaceableTemplate=\"{\r\n componentKey: routesKey,\r\n inputs: {\r\n navbarItems: items\r\n }\r\n }\"\r\n [navbarItems]=\"items\"\r\n >\r\n </lpx-navbar-routes>\r\n </ng-template>\r\n </lpx-navbar>\r\n </ng-template>\r\n <router-outlet></router-outlet>\r\n <ng-template lpx-breadcrumb-panel>\r\n <lpx-breadcrumb\r\n *abpReplaceableTemplate=\"{\r\n componentKey: breadcrumbKey\r\n }\"\r\n >\r\n </lpx-breadcrumb>\r\n </ng-template>\r\n <ng-template lpx-toolbar-panel>\r\n <lpx-toolbar-container\r\n *abpReplaceableTemplate=\"{\r\n componentKey: toolbarKey\r\n }\"\r\n >\r\n </lpx-toolbar-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-footer-panel>\r\n <lpx-footer\r\n *abpReplaceableTemplate=\"{\r\n componentKey: footerKey\r\n }\"\r\n >\r\n </lpx-footer>\r\n </ng-template>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"settingsPanelKey\">\r\n <ng-template lpx-settings-panel>\r\n <ng-container\r\n *abpReplaceableTemplate=\"{\r\n componentKey: settingsPanelKey\r\n }\"\r\n ></ng-container>\r\n </ng-template>\r\n </ng-container>\r\n</lpx-layout>\r\n", dependencies: [{ kind: "directive", type: i1.IfReplaceableTemplateExistsDirective, selector: "[abpIfReplaceableTemplateExists]", inputs: ["abpIfReplaceableTemplateExists"] }, { kind: "component", type: i1.PageAlertContainerComponent, selector: "abp-page-alert-container" }, { kind: "directive", type: i2.RouterOutlet, selector: "router-outlet", outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: i3.ReplaceableTemplateDirective, selector: "[abpReplaceableTemplate]", inputs: ["abpReplaceableTemplate"] }, { kind: "component", type: i4.SideMenuLayoutComponent, selector: "lpx-layout" }, { kind: "component", type: i5.BreadcrumbComponent, selector: "lpx-breadcrumb" }, { kind: "component", type: i5.NavbarComponent, selector: "lpx-navbar" }, { kind: "component", type: i5.NavbarRoutesComponent, selector: "lpx-navbar-routes", inputs: ["navbarItems", "routerItem"], outputs: ["routeClick"] }, { kind: "directive", type: i5.NavbarRoutesDirective, selector: "[lpx-navbar-routes],[lpxNavbarRoutes]", exportAs: ["lpxNavbarRoutes"] }, { kind: "component", type: i4.ToolbarContainerComponent, selector: "lpx-toolbar-container" }, { kind: "directive", type: i5.BreadcrumbPanelDirective, selector: "ng-template[lpx-breadcrumb-panel]" }, { kind: "directive", type: i5.NavbarPanelDirective, selector: "ng-template[lpx-navbar-panel]" }, { kind: "directive", type: i5.FooterPanelDirective, selector: "ng-template[lpx-footer-panel]" }, { kind: "directive", type: i5.ToolbarPanelDirective, selector: "ng-template[lpx-toolbar-panel]" }, { kind: "directive", type: i5.SettingsPanelDirective, selector: "ng-template[lpx-settings-panel]" }, { kind: "component", type: i5.FooterComponent, selector: "lpx-footer" }], encapsulation: i0.ViewEncapsulation.None });
21
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SideMenuApplicationLayoutComponent, decorators: [{
23
+ SideMenuApplicationLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: SideMenuApplicationLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
24
+ SideMenuApplicationLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", type: SideMenuApplicationLayoutComponent, selector: "abp-application-layout", ngImport: i0, template: "<lpx-layout>\r\n <abp-page-alert-container\r\n *abpReplaceableTemplate=\"{ componentKey: pageAlertContainerKey }\"\r\n ></abp-page-alert-container>\r\n\r\n <ng-template lpx-navbar-panel>\r\n <lpx-navbar\r\n *abpReplaceableTemplate=\"{\r\n componentKey: navbarKey\r\n }\"\r\n >\r\n <ng-template lpx-navbar-routes let-items>\r\n <lpx-navbar-routes\r\n *abpReplaceableTemplate=\"{\r\n componentKey: routesKey,\r\n inputs: {\r\n navbarItems: items\r\n }\r\n }\"\r\n [navbarItems]=\"items\"\r\n >\r\n </lpx-navbar-routes>\r\n </ng-template>\r\n </lpx-navbar>\r\n </ng-template>\r\n <router-outlet></router-outlet>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"breadcrumbKey\">\r\n <ng-template lpx-breadcrumb-panel>\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: breadcrumbKey }\">\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"toolbarKey\">\r\n <ng-template lpx-toolbar-panel>\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: toolbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"logoKey\">\r\n <ng-template lpx-logo-panel>\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: logoKey }\">\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"navItemsKey\">\r\n <ng-template lpx-navitem-panel>\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: navItemsKey }\">\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"footerKey\">\r\n <ng-template lpx-footer-panel>\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: footerKey }\">\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"currentUserImageKey\">\r\n <ng-template lpx-current-user-image-panel>\r\n <ng-container\r\n *abpReplaceableTemplate=\"{ componentKey: currentUserImageKey }\"\r\n >\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"mobileNavbarKey\">\r\n <ng-template lpx-mobile-navbar-panel>\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: mobileNavbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"settingsPanelKey\">\r\n <ng-template lpx-settings-panel>\r\n <ng-container\r\n *abpReplaceableTemplate=\"{\r\n componentKey: settingsPanelKey\r\n }\"\r\n ></ng-container>\r\n </ng-template>\r\n </ng-container>\r\n</lpx-layout>\r\n", dependencies: [{ kind: "directive", type: i1.IfReplaceableTemplateExistsDirective, selector: "[abpIfReplaceableTemplateExists]", inputs: ["abpIfReplaceableTemplateExists"] }, { kind: "component", type: i1.PageAlertContainerComponent, selector: "abp-page-alert-container" }, { kind: "directive", type: i2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: i3.ReplaceableTemplateDirective, selector: "[abpReplaceableTemplate]", inputs: ["abpReplaceableTemplate"] }, { kind: "component", type: i4.SideMenuLayoutComponent, selector: "lpx-layout" }, { kind: "component", type: i5.NavbarComponent, selector: "lpx-navbar" }, { kind: "component", type: i5.NavbarRoutesComponent, selector: "lpx-navbar-routes", inputs: ["navbarItems", "routerItem"], outputs: ["routeClick"] }, { kind: "directive", type: i5.NavbarRoutesDirective, selector: "[lpx-navbar-routes],[lpxNavbarRoutes]", exportAs: ["lpxNavbarRoutes"] }, { kind: "directive", type: i5.BreadcrumbPanelDirective, selector: "ng-template[lpx-breadcrumb-panel]" }, { kind: "directive", type: i5.NavbarPanelDirective, selector: "ng-template[lpx-navbar-panel]" }, { kind: "directive", type: i5.FooterPanelDirective, selector: "ng-template[lpx-footer-panel]" }, { kind: "directive", type: i5.MobileNavbarPanelDirective, selector: "ng-template[lpx-mobile-navbar-panel]" }, { kind: "directive", type: i5.ToolbarPanelDirective, selector: "ng-template[lpx-toolbar-panel]" }, { kind: "directive", type: i5.SettingsPanelDirective, selector: "ng-template[lpx-settings-panel]" }, { kind: "directive", type: i5.NavitemPanelDirective, selector: "ng-template[lpx-navitem-panel]" }, { kind: "directive", type: i5.LogoPanelDirective, selector: "ng-template[lpx-logo-panel]" }, { kind: "directive", type: i5.CurrentUserImagePanelDirective, selector: "ng-template[lpx-current-user-image-panel]" }], encapsulation: i0.ViewEncapsulation.None });
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: SideMenuApplicationLayoutComponent, decorators: [{
22
26
  type: Component,
23
- args: [{ selector: 'abp-application-layout', encapsulation: ViewEncapsulation.None, template: "<lpx-layout>\r\n <abp-page-alert-container></abp-page-alert-container>\r\n\r\n <ng-template lpx-navbar-panel>\r\n <lpx-navbar\r\n *abpReplaceableTemplate=\"{\r\n componentKey: navbarKey\r\n }\"\r\n >\r\n <ng-template lpx-navbar-routes let-items>\r\n <lpx-navbar-routes\r\n *abpReplaceableTemplate=\"{\r\n componentKey: routesKey,\r\n inputs: {\r\n navbarItems: items\r\n }\r\n }\"\r\n [navbarItems]=\"items\"\r\n >\r\n </lpx-navbar-routes>\r\n </ng-template>\r\n </lpx-navbar>\r\n </ng-template>\r\n <router-outlet></router-outlet>\r\n <ng-template lpx-breadcrumb-panel>\r\n <lpx-breadcrumb\r\n *abpReplaceableTemplate=\"{\r\n componentKey: breadcrumbKey\r\n }\"\r\n >\r\n </lpx-breadcrumb>\r\n </ng-template>\r\n <ng-template lpx-toolbar-panel>\r\n <lpx-toolbar-container\r\n *abpReplaceableTemplate=\"{\r\n componentKey: toolbarKey\r\n }\"\r\n >\r\n </lpx-toolbar-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-footer-panel>\r\n <lpx-footer\r\n *abpReplaceableTemplate=\"{\r\n componentKey: footerKey\r\n }\"\r\n >\r\n </lpx-footer>\r\n </ng-template>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"settingsPanelKey\">\r\n <ng-template lpx-settings-panel>\r\n <ng-container\r\n *abpReplaceableTemplate=\"{\r\n componentKey: settingsPanelKey\r\n }\"\r\n ></ng-container>\r\n </ng-template>\r\n </ng-container>\r\n</lpx-layout>\r\n" }]
27
+ args: [{ selector: 'abp-application-layout', encapsulation: ViewEncapsulation.None, template: "<lpx-layout>\r\n <abp-page-alert-container\r\n *abpReplaceableTemplate=\"{ componentKey: pageAlertContainerKey }\"\r\n ></abp-page-alert-container>\r\n\r\n <ng-template lpx-navbar-panel>\r\n <lpx-navbar\r\n *abpReplaceableTemplate=\"{\r\n componentKey: navbarKey\r\n }\"\r\n >\r\n <ng-template lpx-navbar-routes let-items>\r\n <lpx-navbar-routes\r\n *abpReplaceableTemplate=\"{\r\n componentKey: routesKey,\r\n inputs: {\r\n navbarItems: items\r\n }\r\n }\"\r\n [navbarItems]=\"items\"\r\n >\r\n </lpx-navbar-routes>\r\n </ng-template>\r\n </lpx-navbar>\r\n </ng-template>\r\n <router-outlet></router-outlet>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"breadcrumbKey\">\r\n <ng-template lpx-breadcrumb-panel>\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: breadcrumbKey }\">\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"toolbarKey\">\r\n <ng-template lpx-toolbar-panel>\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: toolbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"logoKey\">\r\n <ng-template lpx-logo-panel>\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: logoKey }\">\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"navItemsKey\">\r\n <ng-template lpx-navitem-panel>\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: navItemsKey }\">\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"footerKey\">\r\n <ng-template lpx-footer-panel>\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: footerKey }\">\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"currentUserImageKey\">\r\n <ng-template lpx-current-user-image-panel>\r\n <ng-container\r\n *abpReplaceableTemplate=\"{ componentKey: currentUserImageKey }\"\r\n >\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"mobileNavbarKey\">\r\n <ng-template lpx-mobile-navbar-panel>\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: mobileNavbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n </ng-container>\r\n\r\n <ng-container *abpIfReplaceableTemplateExists=\"settingsPanelKey\">\r\n <ng-template lpx-settings-panel>\r\n <ng-container\r\n *abpReplaceableTemplate=\"{\r\n componentKey: settingsPanelKey\r\n }\"\r\n ></ng-container>\r\n </ng-template>\r\n </ng-container>\r\n</lpx-layout>\r\n" }]
24
28
  }] });
25
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lkZS1tZW51LWFwcGxpY2F0aW9uLWxheW91dC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3ZvbG8tbGVwdG9uLXgvbGF5b3V0cy9zcmMvc2lkZS1tZW51L2xheW91dC9zaWRlLW1lbnUtYXBwbGljYXRpb24tbGF5b3V0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdm9sby1sZXB0b24teC9sYXlvdXRzL3NyYy9zaWRlLW1lbnUvbGF5b3V0L3NpZGUtbWVudS1hcHBsaWNhdGlvbi1sYXlvdXQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7OztBQVE3RCxNQUFNLE9BQU8sa0NBQWtDO0lBTC9DO1FBTUUsZUFBVSxnRUFBa0M7UUFDNUMsY0FBUyx5REFBbUM7UUFDNUMsY0FBUyxnRUFBa0M7UUFDM0Msb0JBQWUsb0VBQW9DO1FBQ25ELGtCQUFhLCtEQUFzQztRQUNuRCxjQUFTLGdFQUFrQztRQUMzQyxxQkFBZ0Isb0VBQW9DO0tBQ3JEOzsrSEFSWSxrQ0FBa0M7bUhBQWxDLGtDQUFrQyw4RENSL0MseWtEQTREQTsyRkRwRGEsa0NBQWtDO2tCQUw5QyxTQUFTOytCQUNFLHdCQUF3QixpQkFFbkIsaUJBQWlCLENBQUMsSUFBSSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgZVRoZW1lTGVwdG9uWENvbXBvbmVudHMgfSBmcm9tICdAdm9sb3NvZnQvYWJwLm5nLnRoZW1lLmxlcHRvbi14JztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYWJwLWFwcGxpY2F0aW9uLWxheW91dCcsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3NpZGUtbWVudS1hcHBsaWNhdGlvbi1sYXlvdXQuY29tcG9uZW50Lmh0bWwnLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBTaWRlTWVudUFwcGxpY2F0aW9uTGF5b3V0Q29tcG9uZW50IHtcclxuICB0b29sYmFyS2V5ID0gZVRoZW1lTGVwdG9uWENvbXBvbmVudHMuTmF2YmFyO1xyXG4gIG5hdmJhcktleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLlNpZGViYXI7XHJcbiAgcm91dGVzS2V5ID0gZVRoZW1lTGVwdG9uWENvbXBvbmVudHMuUm91dGVzO1xyXG4gIHRvb2xiYXJJdGVtc0tleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLk5hdkl0ZW1zO1xyXG4gIGJyZWFkY3J1bWJLZXkgPSBlVGhlbWVMZXB0b25YQ29tcG9uZW50cy5CcmVhZGNydW1iO1xyXG4gIGZvb3RlcktleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLkZvb3RlcjtcclxuICBzZXR0aW5nc1BhbmVsS2V5ID0gZVRoZW1lTGVwdG9uWENvbXBvbmVudHMuU2V0dGluZ3M7XHJcbn1cclxuIiwiPGxweC1sYXlvdXQ+XHJcbiAgPGFicC1wYWdlLWFsZXJ0LWNvbnRhaW5lcj48L2FicC1wYWdlLWFsZXJ0LWNvbnRhaW5lcj5cclxuXHJcbiAgPG5nLXRlbXBsYXRlIGxweC1uYXZiYXItcGFuZWw+XHJcbiAgICA8bHB4LW5hdmJhclxyXG4gICAgICAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cIntcclxuICAgICAgICBjb21wb25lbnRLZXk6IG5hdmJhcktleVxyXG4gICAgICB9XCJcclxuICAgID5cclxuICAgICAgPG5nLXRlbXBsYXRlIGxweC1uYXZiYXItcm91dGVzIGxldC1pdGVtcz5cclxuICAgICAgICA8bHB4LW5hdmJhci1yb3V0ZXNcclxuICAgICAgICAgICphYnBSZXBsYWNlYWJsZVRlbXBsYXRlPVwie1xyXG4gICAgICAgICAgICBjb21wb25lbnRLZXk6IHJvdXRlc0tleSxcclxuICAgICAgICAgICAgaW5wdXRzOiB7XHJcbiAgICAgICAgICAgICAgbmF2YmFySXRlbXM6IGl0ZW1zXHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgIH1cIlxyXG4gICAgICAgICAgW25hdmJhckl0ZW1zXT1cIml0ZW1zXCJcclxuICAgICAgICA+XHJcbiAgICAgICAgPC9scHgtbmF2YmFyLXJvdXRlcz5cclxuICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDwvbHB4LW5hdmJhcj5cclxuICA8L25nLXRlbXBsYXRlPlxyXG4gIDxyb3V0ZXItb3V0bGV0Pjwvcm91dGVyLW91dGxldD5cclxuICA8bmctdGVtcGxhdGUgbHB4LWJyZWFkY3J1bWItcGFuZWw+XHJcbiAgICA8bHB4LWJyZWFkY3J1bWJcclxuICAgICAgKmFicFJlcGxhY2VhYmxlVGVtcGxhdGU9XCJ7XHJcbiAgICAgICAgY29tcG9uZW50S2V5OiBicmVhZGNydW1iS2V5XHJcbiAgICAgIH1cIlxyXG4gICAgPlxyXG4gICAgPC9scHgtYnJlYWRjcnVtYj5cclxuICA8L25nLXRlbXBsYXRlPlxyXG4gIDxuZy10ZW1wbGF0ZSBscHgtdG9vbGJhci1wYW5lbD5cclxuICAgIDxscHgtdG9vbGJhci1jb250YWluZXJcclxuICAgICAgKmFicFJlcGxhY2VhYmxlVGVtcGxhdGU9XCJ7XHJcbiAgICAgICAgY29tcG9uZW50S2V5OiB0b29sYmFyS2V5XHJcbiAgICAgIH1cIlxyXG4gICAgPlxyXG4gICAgPC9scHgtdG9vbGJhci1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlIGxweC1mb290ZXItcGFuZWw+XHJcbiAgICA8bHB4LWZvb3RlclxyXG4gICAgICAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cIntcclxuICAgICAgICBjb21wb25lbnRLZXk6IGZvb3RlcktleVxyXG4gICAgICB9XCJcclxuICAgID5cclxuICAgIDwvbHB4LWZvb3Rlcj5cclxuICA8L25nLXRlbXBsYXRlPlxyXG5cclxuICA8bmctY29udGFpbmVyICphYnBJZlJlcGxhY2VhYmxlVGVtcGxhdGVFeGlzdHM9XCJzZXR0aW5nc1BhbmVsS2V5XCI+XHJcbiAgICA8bmctdGVtcGxhdGUgbHB4LXNldHRpbmdzLXBhbmVsPlxyXG4gICAgICA8bmctY29udGFpbmVyXHJcbiAgICAgICAgKmFicFJlcGxhY2VhYmxlVGVtcGxhdGU9XCJ7XHJcbiAgICAgICAgICBjb21wb25lbnRLZXk6IHNldHRpbmdzUGFuZWxLZXlcclxuICAgICAgICB9XCJcclxuICAgICAgPjwvbmctY29udGFpbmVyPlxyXG4gICAgPC9uZy10ZW1wbGF0ZT5cclxuICA8L25nLWNvbnRhaW5lcj5cclxuPC9scHgtbGF5b3V0PlxyXG4iXX0=
29
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2lkZS1tZW51LWFwcGxpY2F0aW9uLWxheW91dC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3ZvbG8tbGVwdG9uLXgvbGF5b3V0cy9zcmMvc2lkZS1tZW51L2xheW91dC9zaWRlLW1lbnUtYXBwbGljYXRpb24tbGF5b3V0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdm9sby1sZXB0b24teC9sYXlvdXRzL3NyYy9zaWRlLW1lbnUvbGF5b3V0L3NpZGUtbWVudS1hcHBsaWNhdGlvbi1sYXlvdXQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7OztBQVE3RCxNQUFNLE9BQU8sa0NBQWtDO0lBTC9DO1FBTUUsZUFBVSxrRUFBbUM7UUFDN0MsY0FBUyxnRUFBa0M7UUFDM0MsY0FBUyxnRUFBa0M7UUFDM0MsZ0JBQVcsb0VBQW9DO1FBQy9DLGtCQUFhLCtEQUFzQztRQUNuRCxjQUFTLGdFQUFrQztRQUMzQyxxQkFBZ0Isb0VBQW9DO1FBQ3BELG9CQUFlLDRFQUF3QztRQUN2RCwwQkFBcUIsd0ZBQThDO1FBQ25FLFlBQU8sNERBQWdDO1FBQ3ZDLHdCQUFtQixvRkFBNEM7S0FDaEU7OytIQVpZLGtDQUFrQzttSEFBbEMsa0NBQWtDLDhEQ1IvQywwNEZBd0ZBOzJGRGhGYSxrQ0FBa0M7a0JBTDlDLFNBQVM7K0JBQ0Usd0JBQXdCLGlCQUVuQixpQkFBaUIsQ0FBQyxJQUFJIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBlVGhlbWVMZXB0b25YQ29tcG9uZW50cyB9IGZyb20gJ0B2b2xvc29mdC9hYnAubmcudGhlbWUubGVwdG9uLXgnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhYnAtYXBwbGljYXRpb24tbGF5b3V0JyxcclxuICB0ZW1wbGF0ZVVybDogJy4vc2lkZS1tZW51LWFwcGxpY2F0aW9uLWxheW91dC5jb21wb25lbnQuaHRtbCcsXHJcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcclxufSlcclxuZXhwb3J0IGNsYXNzIFNpZGVNZW51QXBwbGljYXRpb25MYXlvdXRDb21wb25lbnQge1xyXG4gIHRvb2xiYXJLZXkgPSBlVGhlbWVMZXB0b25YQ29tcG9uZW50cy5Ub29sYmFyO1xyXG4gIG5hdmJhcktleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLk5hdmJhcjtcclxuICByb3V0ZXNLZXkgPSBlVGhlbWVMZXB0b25YQ29tcG9uZW50cy5Sb3V0ZXM7XHJcbiAgbmF2SXRlbXNLZXkgPSBlVGhlbWVMZXB0b25YQ29tcG9uZW50cy5OYXZJdGVtcztcclxuICBicmVhZGNydW1iS2V5ID0gZVRoZW1lTGVwdG9uWENvbXBvbmVudHMuQnJlYWRjcnVtYjtcclxuICBmb290ZXJLZXkgPSBlVGhlbWVMZXB0b25YQ29tcG9uZW50cy5Gb290ZXI7XHJcbiAgc2V0dGluZ3NQYW5lbEtleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLlNldHRpbmdzO1xyXG4gIG1vYmlsZU5hdmJhcktleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLk5hdmJhck1vYmlsZTtcclxuICBwYWdlQWxlcnRDb250YWluZXJLZXkgPSBlVGhlbWVMZXB0b25YQ29tcG9uZW50cy5QYWdlQWxlcnRDb250YWluZXI7XHJcbiAgbG9nb0tleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLkxvZ287XHJcbiAgY3VycmVudFVzZXJJbWFnZUtleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLkN1cnJlbnRVc2VySW1hZ2U7XHJcbn1cclxuIiwiPGxweC1sYXlvdXQ+XHJcbiAgPGFicC1wYWdlLWFsZXJ0LWNvbnRhaW5lclxyXG4gICAgKmFicFJlcGxhY2VhYmxlVGVtcGxhdGU9XCJ7IGNvbXBvbmVudEtleTogcGFnZUFsZXJ0Q29udGFpbmVyS2V5IH1cIlxyXG4gID48L2FicC1wYWdlLWFsZXJ0LWNvbnRhaW5lcj5cclxuXHJcbiAgPG5nLXRlbXBsYXRlIGxweC1uYXZiYXItcGFuZWw+XHJcbiAgICA8bHB4LW5hdmJhclxyXG4gICAgICAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cIntcclxuICAgICAgICBjb21wb25lbnRLZXk6IG5hdmJhcktleVxyXG4gICAgICB9XCJcclxuICAgID5cclxuICAgICAgPG5nLXRlbXBsYXRlIGxweC1uYXZiYXItcm91dGVzIGxldC1pdGVtcz5cclxuICAgICAgICA8bHB4LW5hdmJhci1yb3V0ZXNcclxuICAgICAgICAgICphYnBSZXBsYWNlYWJsZVRlbXBsYXRlPVwie1xyXG4gICAgICAgICAgICBjb21wb25lbnRLZXk6IHJvdXRlc0tleSxcclxuICAgICAgICAgICAgaW5wdXRzOiB7XHJcbiAgICAgICAgICAgICAgbmF2YmFySXRlbXM6IGl0ZW1zXHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICAgIH1cIlxyXG4gICAgICAgICAgW25hdmJhckl0ZW1zXT1cIml0ZW1zXCJcclxuICAgICAgICA+XHJcbiAgICAgICAgPC9scHgtbmF2YmFyLXJvdXRlcz5cclxuICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDwvbHB4LW5hdmJhcj5cclxuICA8L25nLXRlbXBsYXRlPlxyXG4gIDxyb3V0ZXItb3V0bGV0Pjwvcm91dGVyLW91dGxldD5cclxuXHJcbiAgPG5nLWNvbnRhaW5lciAqYWJwSWZSZXBsYWNlYWJsZVRlbXBsYXRlRXhpc3RzPVwiYnJlYWRjcnVtYktleVwiPlxyXG4gICAgPG5nLXRlbXBsYXRlIGxweC1icmVhZGNydW1iLXBhbmVsPlxyXG4gICAgICA8bmctY29udGFpbmVyICphYnBSZXBsYWNlYWJsZVRlbXBsYXRlPVwieyBjb21wb25lbnRLZXk6IGJyZWFkY3J1bWJLZXkgfVwiPlxyXG4gICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gIDxuZy1jb250YWluZXIgKmFicElmUmVwbGFjZWFibGVUZW1wbGF0ZUV4aXN0cz1cInRvb2xiYXJLZXlcIj5cclxuICAgIDxuZy10ZW1wbGF0ZSBscHgtdG9vbGJhci1wYW5lbD5cclxuICAgICAgPG5nLWNvbnRhaW5lciAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cInsgY29tcG9uZW50S2V5OiB0b29sYmFyS2V5IH1cIj5cclxuICAgICAgPC9uZy1jb250YWluZXI+XHJcbiAgICA8L25nLXRlbXBsYXRlPlxyXG4gIDwvbmctY29udGFpbmVyPlxyXG5cclxuICA8bmctY29udGFpbmVyICphYnBJZlJlcGxhY2VhYmxlVGVtcGxhdGVFeGlzdHM9XCJsb2dvS2V5XCI+XHJcbiAgICA8bmctdGVtcGxhdGUgbHB4LWxvZ28tcGFuZWw+XHJcbiAgICAgIDxuZy1jb250YWluZXIgKmFicFJlcGxhY2VhYmxlVGVtcGxhdGU9XCJ7IGNvbXBvbmVudEtleTogbG9nb0tleSB9XCI+XHJcbiAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgPC9uZy10ZW1wbGF0ZT5cclxuICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgPG5nLWNvbnRhaW5lciAqYWJwSWZSZXBsYWNlYWJsZVRlbXBsYXRlRXhpc3RzPVwibmF2SXRlbXNLZXlcIj5cclxuICAgIDxuZy10ZW1wbGF0ZSBscHgtbmF2aXRlbS1wYW5lbD5cclxuICAgICAgPG5nLWNvbnRhaW5lciAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cInsgY29tcG9uZW50S2V5OiBuYXZJdGVtc0tleSB9XCI+XHJcbiAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgPC9uZy10ZW1wbGF0ZT5cclxuICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgPG5nLWNvbnRhaW5lciAqYWJwSWZSZXBsYWNlYWJsZVRlbXBsYXRlRXhpc3RzPVwiZm9vdGVyS2V5XCI+XHJcbiAgICA8bmctdGVtcGxhdGUgbHB4LWZvb3Rlci1wYW5lbD5cclxuICAgICAgPG5nLWNvbnRhaW5lciAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cInsgY29tcG9uZW50S2V5OiBmb290ZXJLZXkgfVwiPlxyXG4gICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gIDxuZy1jb250YWluZXIgKmFicElmUmVwbGFjZWFibGVUZW1wbGF0ZUV4aXN0cz1cImN1cnJlbnRVc2VySW1hZ2VLZXlcIj5cclxuICAgIDxuZy10ZW1wbGF0ZSBscHgtY3VycmVudC11c2VyLWltYWdlLXBhbmVsPlxyXG4gICAgICA8bmctY29udGFpbmVyXHJcbiAgICAgICAgKmFicFJlcGxhY2VhYmxlVGVtcGxhdGU9XCJ7IGNvbXBvbmVudEtleTogY3VycmVudFVzZXJJbWFnZUtleSB9XCJcclxuICAgICAgPlxyXG4gICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gIDxuZy1jb250YWluZXIgKmFicElmUmVwbGFjZWFibGVUZW1wbGF0ZUV4aXN0cz1cIm1vYmlsZU5hdmJhcktleVwiPlxyXG4gICAgPG5nLXRlbXBsYXRlIGxweC1tb2JpbGUtbmF2YmFyLXBhbmVsPlxyXG4gICAgICA8bmctY29udGFpbmVyICphYnBSZXBsYWNlYWJsZVRlbXBsYXRlPVwieyBjb21wb25lbnRLZXk6IG1vYmlsZU5hdmJhcktleSB9XCI+XHJcbiAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgPC9uZy10ZW1wbGF0ZT5cclxuICA8L25nLWNvbnRhaW5lcj5cclxuXHJcbiAgPG5nLWNvbnRhaW5lciAqYWJwSWZSZXBsYWNlYWJsZVRlbXBsYXRlRXhpc3RzPVwic2V0dGluZ3NQYW5lbEtleVwiPlxyXG4gICAgPG5nLXRlbXBsYXRlIGxweC1zZXR0aW5ncy1wYW5lbD5cclxuICAgICAgPG5nLWNvbnRhaW5lclxyXG4gICAgICAgICphYnBSZXBsYWNlYWJsZVRlbXBsYXRlPVwie1xyXG4gICAgICAgICAgY29tcG9uZW50S2V5OiBzZXR0aW5nc1BhbmVsS2V5XHJcbiAgICAgICAgfVwiXHJcbiAgICAgID48L25nLWNvbnRhaW5lcj5cclxuICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgPC9uZy1jb250YWluZXI+XHJcbjwvbHB4LWxheW91dD5cclxuIl19
@@ -29,22 +29,22 @@ export class SideMenuLayoutModule {
29
29
  };
30
30
  }
31
31
  }
32
- SideMenuLayoutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SideMenuLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
33
- SideMenuLayoutModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: SideMenuLayoutModule, declarations: [SideMenuApplicationLayoutComponent], imports: [LeptonXAbpCoreModule,
32
+ SideMenuLayoutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: SideMenuLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
33
+ SideMenuLayoutModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.1", ngImport: i0, type: SideMenuLayoutModule, declarations: [SideMenuApplicationLayoutComponent], imports: [LeptonXAbpCoreModule,
34
34
  CommonModule,
35
35
  CoreModule,
36
36
  LpxSideMenuLayoutModule,
37
37
  LpxBreadcrumbModule,
38
38
  PanelsModule,
39
39
  LpxFooterModule], exports: [SideMenuApplicationLayoutComponent] });
40
- SideMenuLayoutModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SideMenuLayoutModule, imports: [LeptonXAbpCoreModule,
40
+ SideMenuLayoutModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: SideMenuLayoutModule, imports: [LeptonXAbpCoreModule,
41
41
  CommonModule,
42
42
  CoreModule,
43
43
  LpxSideMenuLayoutModule,
44
44
  LpxBreadcrumbModule,
45
45
  PanelsModule,
46
46
  LpxFooterModule] });
47
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SideMenuLayoutModule, decorators: [{
47
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: SideMenuLayoutModule, decorators: [{
48
48
  type: NgModule,
49
49
  args: [{
50
50
  declarations: [SideMenuApplicationLayoutComponent],
@@ -18,10 +18,10 @@ export class TopMenuApplicationLayoutComponent {
18
18
  this.settingsKey = "Theme.SettingsComponent" /* eThemeLeptonXComponents.Settings */;
19
19
  }
20
20
  }
21
- TopMenuApplicationLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: TopMenuApplicationLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
22
- TopMenuApplicationLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: TopMenuApplicationLayoutComponent, selector: "abp-top-menu-application-layout", ngImport: i0, template: "<lpx-layout>\r\n <abp-page-alert-container\r\n *abpReplaceableTemplate=\"{ componentKey: pageAlertContainerKey }\"\r\n ></abp-page-alert-container>\r\n\r\n <router-outlet></router-outlet>\r\n\r\n <ng-template\r\n lpx-breadcrumb-panel\r\n *abpIfReplaceableTemplateExists=\"breadcrumbKey\"\r\n >\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: breadcrumbKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-navbar-panel *abpIfReplaceableTemplateExists=\"navbarKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: navbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template\r\n lpx-mobile-navbar-panel\r\n *abpIfReplaceableTemplateExists=\"mobileNavbarKey\"\r\n >\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: mobileNavbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-footer-panel *abpIfReplaceableTemplateExists=\"footerKey\">\r\n <lpx-footer\r\n *abpReplaceableTemplate=\"{\r\n componentKey: footerKey\r\n }\"\r\n >\r\n </lpx-footer>\r\n </ng-template>\r\n\r\n <ng-template lpx-toolbar-panel *abpIfReplaceableTemplateExists=\"toolbarKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: toolbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template\r\n lpx-top-navbar-panel\r\n *abpIfReplaceableTemplateExists=\"topNavbarKey\"\r\n >\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: topNavbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-settings-panel *abpIfReplaceableTemplateExists=\"settingsKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: settingsKey }\">\r\n </ng-container>\r\n </ng-template>\r\n</lpx-layout>\r\n", dependencies: [{ kind: "component", type: i1.TopMenuLayoutComponent, selector: "lpx-layout" }, { kind: "directive", type: i2.BreadcrumbPanelDirective, selector: "ng-template[lpx-breadcrumb-panel]" }, { kind: "directive", type: i2.NavbarPanelDirective, selector: "ng-template[lpx-navbar-panel]" }, { kind: "directive", type: i2.FooterPanelDirective, selector: "ng-template[lpx-footer-panel]" }, { kind: "directive", type: i2.MobileNavbarPanelDirective, selector: "ng-template[lpx-mobile-navbar-panel]" }, { kind: "directive", type: i2.ToolbarPanelDirective, selector: "ng-template[lpx-toolbar-panel]" }, { kind: "directive", type: i2.TopNavbarPanelDirective, selector: "ng-template[lpx-top-navbar-panel]" }, { kind: "directive", type: i2.SettingsPanelDirective, selector: "ng-template[lpx-settings-panel]" }, { kind: "component", type: i2.FooterComponent, selector: "lpx-footer" }, { kind: "directive", type: i3.IfReplaceableTemplateExistsDirective, selector: "[abpIfReplaceableTemplateExists]", inputs: ["abpIfReplaceableTemplateExists"] }, { kind: "component", type: i3.PageAlertContainerComponent, selector: "abp-page-alert-container" }, { kind: "directive", type: i4.RouterOutlet, selector: "router-outlet", outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: i5.ReplaceableTemplateDirective, selector: "[abpReplaceableTemplate]", inputs: ["abpReplaceableTemplate"] }] });
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: TopMenuApplicationLayoutComponent, decorators: [{
21
+ TopMenuApplicationLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: TopMenuApplicationLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
22
+ TopMenuApplicationLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", type: TopMenuApplicationLayoutComponent, selector: "abp-top-menu-application-layout", ngImport: i0, template: "<lpx-layout>\r\n <abp-page-alert-container\r\n *abpReplaceableTemplate=\"{ componentKey: pageAlertContainerKey }\"\r\n ></abp-page-alert-container>\r\n\r\n <router-outlet></router-outlet>\r\n\r\n <ng-template\r\n lpx-breadcrumb-panel\r\n *abpIfReplaceableTemplateExists=\"breadcrumbKey\"\r\n >\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: breadcrumbKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-navbar-panel *abpIfReplaceableTemplateExists=\"navbarKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: navbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template\r\n lpx-mobile-navbar-panel\r\n *abpIfReplaceableTemplateExists=\"mobileNavbarKey\"\r\n >\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: mobileNavbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-footer-panel *abpIfReplaceableTemplateExists=\"footerKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: footerKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-toolbar-panel *abpIfReplaceableTemplateExists=\"toolbarKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: toolbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template\r\n lpx-top-navbar-panel\r\n *abpIfReplaceableTemplateExists=\"topNavbarKey\"\r\n >\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: topNavbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-settings-panel *abpIfReplaceableTemplateExists=\"settingsKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: settingsKey }\">\r\n </ng-container>\r\n </ng-template>\r\n</lpx-layout>\r\n", dependencies: [{ kind: "component", type: i1.TopMenuLayoutComponent, selector: "lpx-layout" }, { kind: "directive", type: i2.BreadcrumbPanelDirective, selector: "ng-template[lpx-breadcrumb-panel]" }, { kind: "directive", type: i2.NavbarPanelDirective, selector: "ng-template[lpx-navbar-panel]" }, { kind: "directive", type: i2.FooterPanelDirective, selector: "ng-template[lpx-footer-panel]" }, { kind: "directive", type: i2.MobileNavbarPanelDirective, selector: "ng-template[lpx-mobile-navbar-panel]" }, { kind: "directive", type: i2.ToolbarPanelDirective, selector: "ng-template[lpx-toolbar-panel]" }, { kind: "directive", type: i2.TopNavbarPanelDirective, selector: "ng-template[lpx-top-navbar-panel]" }, { kind: "directive", type: i2.SettingsPanelDirective, selector: "ng-template[lpx-settings-panel]" }, { kind: "directive", type: i3.IfReplaceableTemplateExistsDirective, selector: "[abpIfReplaceableTemplateExists]", inputs: ["abpIfReplaceableTemplateExists"] }, { kind: "component", type: i3.PageAlertContainerComponent, selector: "abp-page-alert-container" }, { kind: "directive", type: i4.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: i5.ReplaceableTemplateDirective, selector: "[abpReplaceableTemplate]", inputs: ["abpReplaceableTemplate"] }] });
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: TopMenuApplicationLayoutComponent, decorators: [{
24
24
  type: Component,
25
- args: [{ selector: 'abp-top-menu-application-layout', template: "<lpx-layout>\r\n <abp-page-alert-container\r\n *abpReplaceableTemplate=\"{ componentKey: pageAlertContainerKey }\"\r\n ></abp-page-alert-container>\r\n\r\n <router-outlet></router-outlet>\r\n\r\n <ng-template\r\n lpx-breadcrumb-panel\r\n *abpIfReplaceableTemplateExists=\"breadcrumbKey\"\r\n >\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: breadcrumbKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-navbar-panel *abpIfReplaceableTemplateExists=\"navbarKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: navbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template\r\n lpx-mobile-navbar-panel\r\n *abpIfReplaceableTemplateExists=\"mobileNavbarKey\"\r\n >\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: mobileNavbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-footer-panel *abpIfReplaceableTemplateExists=\"footerKey\">\r\n <lpx-footer\r\n *abpReplaceableTemplate=\"{\r\n componentKey: footerKey\r\n }\"\r\n >\r\n </lpx-footer>\r\n </ng-template>\r\n\r\n <ng-template lpx-toolbar-panel *abpIfReplaceableTemplateExists=\"toolbarKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: toolbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template\r\n lpx-top-navbar-panel\r\n *abpIfReplaceableTemplateExists=\"topNavbarKey\"\r\n >\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: topNavbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-settings-panel *abpIfReplaceableTemplateExists=\"settingsKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: settingsKey }\">\r\n </ng-container>\r\n </ng-template>\r\n</lpx-layout>\r\n" }]
25
+ args: [{ selector: 'abp-top-menu-application-layout', template: "<lpx-layout>\r\n <abp-page-alert-container\r\n *abpReplaceableTemplate=\"{ componentKey: pageAlertContainerKey }\"\r\n ></abp-page-alert-container>\r\n\r\n <router-outlet></router-outlet>\r\n\r\n <ng-template\r\n lpx-breadcrumb-panel\r\n *abpIfReplaceableTemplateExists=\"breadcrumbKey\"\r\n >\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: breadcrumbKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-navbar-panel *abpIfReplaceableTemplateExists=\"navbarKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: navbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template\r\n lpx-mobile-navbar-panel\r\n *abpIfReplaceableTemplateExists=\"mobileNavbarKey\"\r\n >\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: mobileNavbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-footer-panel *abpIfReplaceableTemplateExists=\"footerKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: footerKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-toolbar-panel *abpIfReplaceableTemplateExists=\"toolbarKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: toolbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template\r\n lpx-top-navbar-panel\r\n *abpIfReplaceableTemplateExists=\"topNavbarKey\"\r\n >\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: topNavbarKey }\">\r\n </ng-container>\r\n </ng-template>\r\n\r\n <ng-template lpx-settings-panel *abpIfReplaceableTemplateExists=\"settingsKey\">\r\n <ng-container *abpReplaceableTemplate=\"{ componentKey: settingsKey }\">\r\n </ng-container>\r\n </ng-template>\r\n</lpx-layout>\r\n" }]
26
26
  }] });
27
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9wLW1lbnUtYXBwbGljYXRpb24tbGF5b3V0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdm9sby1sZXB0b24teC9sYXlvdXRzL3NyYy90b3AtbWVudS9sYXlvdXQvdG9wLW1lbnUtYXBwbGljYXRpb24tbGF5b3V0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdm9sby1sZXB0b24teC9sYXlvdXRzL3NyYy90b3AtbWVudS9sYXlvdXQvdG9wLW1lbnUtYXBwbGljYXRpb24tbGF5b3V0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7Ozs7QUFPMUMsTUFBTSxPQUFPLGlDQUFpQztJQUo5QztRQUtFLGNBQVMsZ0VBQWtDO1FBQzNDLGNBQVMsZ0VBQWtDO1FBQzNDLGVBQVUsa0VBQW1DO1FBQzdDLGlCQUFZLHNFQUFxQztRQUNqRCxrQkFBYSwrREFBc0M7UUFDbkQsY0FBUyxnRUFBa0M7UUFDM0Msb0JBQWUsNEVBQXdDO1FBQ3ZELDBCQUFxQix3RkFBOEM7UUFDbkUsZ0JBQVcsb0VBQW9DO0tBQ2hEOzs4SEFWWSxpQ0FBaUM7a0hBQWpDLGlDQUFpQyx1RUNQOUMsZ3hEQXVEQTsyRkRoRGEsaUNBQWlDO2tCQUo3QyxTQUFTOytCQUNFLGlDQUFpQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBlVGhlbWVMZXB0b25YQ29tcG9uZW50cyB9IGZyb20gJ0B2b2xvc29mdC9hYnAubmcudGhlbWUubGVwdG9uLXgnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhYnAtdG9wLW1lbnUtYXBwbGljYXRpb24tbGF5b3V0JyxcclxuICB0ZW1wbGF0ZVVybDogJy4vdG9wLW1lbnUtYXBwbGljYXRpb24tbGF5b3V0LmNvbXBvbmVudC5odG1sJyxcclxufSlcclxuZXhwb3J0IGNsYXNzIFRvcE1lbnVBcHBsaWNhdGlvbkxheW91dENvbXBvbmVudCB7XHJcbiAgbmF2YmFyS2V5ID0gZVRoZW1lTGVwdG9uWENvbXBvbmVudHMuTmF2YmFyO1xyXG4gIHJvdXRlc0tleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLlJvdXRlcztcclxuICB0b29sYmFyS2V5ID0gZVRoZW1lTGVwdG9uWENvbXBvbmVudHMuVG9vbGJhcjtcclxuICB0b3BOYXZiYXJLZXkgPSBlVGhlbWVMZXB0b25YQ29tcG9uZW50cy5Ub3BOYXZiYXI7XHJcbiAgYnJlYWRjcnVtYktleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLkJyZWFkY3J1bWI7XHJcbiAgZm9vdGVyS2V5ID0gZVRoZW1lTGVwdG9uWENvbXBvbmVudHMuRm9vdGVyO1xyXG4gIG1vYmlsZU5hdmJhcktleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLk5hdmJhck1vYmlsZTtcclxuICBwYWdlQWxlcnRDb250YWluZXJLZXkgPSBlVGhlbWVMZXB0b25YQ29tcG9uZW50cy5QYWdlQWxlcnRDb250YWluZXI7XHJcbiAgc2V0dGluZ3NLZXkgPSBlVGhlbWVMZXB0b25YQ29tcG9uZW50cy5TZXR0aW5ncztcclxufVxyXG4iLCI8bHB4LWxheW91dD5cclxuICA8YWJwLXBhZ2UtYWxlcnQtY29udGFpbmVyXHJcbiAgICAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cInsgY29tcG9uZW50S2V5OiBwYWdlQWxlcnRDb250YWluZXJLZXkgfVwiXHJcbiAgPjwvYWJwLXBhZ2UtYWxlcnQtY29udGFpbmVyPlxyXG5cclxuICA8cm91dGVyLW91dGxldD48L3JvdXRlci1vdXRsZXQ+XHJcblxyXG4gIDxuZy10ZW1wbGF0ZVxyXG4gICAgbHB4LWJyZWFkY3J1bWItcGFuZWxcclxuICAgICphYnBJZlJlcGxhY2VhYmxlVGVtcGxhdGVFeGlzdHM9XCJicmVhZGNydW1iS2V5XCJcclxuICA+XHJcbiAgICA8bmctY29udGFpbmVyICphYnBSZXBsYWNlYWJsZVRlbXBsYXRlPVwieyBjb21wb25lbnRLZXk6IGJyZWFkY3J1bWJLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlIGxweC1uYXZiYXItcGFuZWwgKmFicElmUmVwbGFjZWFibGVUZW1wbGF0ZUV4aXN0cz1cIm5hdmJhcktleVwiPlxyXG4gICAgPG5nLWNvbnRhaW5lciAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cInsgY29tcG9uZW50S2V5OiBuYXZiYXJLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlXHJcbiAgICBscHgtbW9iaWxlLW5hdmJhci1wYW5lbFxyXG4gICAgKmFicElmUmVwbGFjZWFibGVUZW1wbGF0ZUV4aXN0cz1cIm1vYmlsZU5hdmJhcktleVwiXHJcbiAgPlxyXG4gICAgPG5nLWNvbnRhaW5lciAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cInsgY29tcG9uZW50S2V5OiBtb2JpbGVOYXZiYXJLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlIGxweC1mb290ZXItcGFuZWwgKmFicElmUmVwbGFjZWFibGVUZW1wbGF0ZUV4aXN0cz1cImZvb3RlcktleVwiPlxyXG4gICAgPGxweC1mb290ZXJcclxuICAgICAgKmFicFJlcGxhY2VhYmxlVGVtcGxhdGU9XCJ7XHJcbiAgICAgICAgY29tcG9uZW50S2V5OiBmb290ZXJLZXlcclxuICAgICAgfVwiXHJcbiAgICA+XHJcbiAgICA8L2xweC1mb290ZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlIGxweC10b29sYmFyLXBhbmVsICphYnBJZlJlcGxhY2VhYmxlVGVtcGxhdGVFeGlzdHM9XCJ0b29sYmFyS2V5XCI+XHJcbiAgICA8bmctY29udGFpbmVyICphYnBSZXBsYWNlYWJsZVRlbXBsYXRlPVwieyBjb21wb25lbnRLZXk6IHRvb2xiYXJLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlXHJcbiAgICBscHgtdG9wLW5hdmJhci1wYW5lbFxyXG4gICAgKmFicElmUmVwbGFjZWFibGVUZW1wbGF0ZUV4aXN0cz1cInRvcE5hdmJhcktleVwiXHJcbiAgPlxyXG4gICAgPG5nLWNvbnRhaW5lciAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cInsgY29tcG9uZW50S2V5OiB0b3BOYXZiYXJLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlIGxweC1zZXR0aW5ncy1wYW5lbCAqYWJwSWZSZXBsYWNlYWJsZVRlbXBsYXRlRXhpc3RzPVwic2V0dGluZ3NLZXlcIj5cclxuICAgIDxuZy1jb250YWluZXIgKmFicFJlcGxhY2VhYmxlVGVtcGxhdGU9XCJ7IGNvbXBvbmVudEtleTogc2V0dGluZ3NLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuPC9scHgtbGF5b3V0PlxyXG4iXX0=
27
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9wLW1lbnUtYXBwbGljYXRpb24tbGF5b3V0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdm9sby1sZXB0b24teC9sYXlvdXRzL3NyYy90b3AtbWVudS9sYXlvdXQvdG9wLW1lbnUtYXBwbGljYXRpb24tbGF5b3V0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdm9sby1sZXB0b24teC9sYXlvdXRzL3NyYy90b3AtbWVudS9sYXlvdXQvdG9wLW1lbnUtYXBwbGljYXRpb24tbGF5b3V0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7Ozs7QUFPMUMsTUFBTSxPQUFPLGlDQUFpQztJQUo5QztRQUtFLGNBQVMsZ0VBQWtDO1FBQzNDLGNBQVMsZ0VBQWtDO1FBQzNDLGVBQVUsa0VBQW1DO1FBQzdDLGlCQUFZLHNFQUFxQztRQUNqRCxrQkFBYSwrREFBc0M7UUFDbkQsY0FBUyxnRUFBa0M7UUFDM0Msb0JBQWUsNEVBQXdDO1FBQ3ZELDBCQUFxQix3RkFBOEM7UUFDbkUsZ0JBQVcsb0VBQW9DO0tBQ2hEOzs4SEFWWSxpQ0FBaUM7a0hBQWpDLGlDQUFpQyx1RUNQOUMsK3VEQW1EQTsyRkQ1Q2EsaUNBQWlDO2tCQUo3QyxTQUFTOytCQUNFLGlDQUFpQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBlVGhlbWVMZXB0b25YQ29tcG9uZW50cyB9IGZyb20gJ0B2b2xvc29mdC9hYnAubmcudGhlbWUubGVwdG9uLXgnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhYnAtdG9wLW1lbnUtYXBwbGljYXRpb24tbGF5b3V0JyxcclxuICB0ZW1wbGF0ZVVybDogJy4vdG9wLW1lbnUtYXBwbGljYXRpb24tbGF5b3V0LmNvbXBvbmVudC5odG1sJyxcclxufSlcclxuZXhwb3J0IGNsYXNzIFRvcE1lbnVBcHBsaWNhdGlvbkxheW91dENvbXBvbmVudCB7XHJcbiAgbmF2YmFyS2V5ID0gZVRoZW1lTGVwdG9uWENvbXBvbmVudHMuTmF2YmFyO1xyXG4gIHJvdXRlc0tleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLlJvdXRlcztcclxuICB0b29sYmFyS2V5ID0gZVRoZW1lTGVwdG9uWENvbXBvbmVudHMuVG9vbGJhcjtcclxuICB0b3BOYXZiYXJLZXkgPSBlVGhlbWVMZXB0b25YQ29tcG9uZW50cy5Ub3BOYXZiYXI7XHJcbiAgYnJlYWRjcnVtYktleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLkJyZWFkY3J1bWI7XHJcbiAgZm9vdGVyS2V5ID0gZVRoZW1lTGVwdG9uWENvbXBvbmVudHMuRm9vdGVyO1xyXG4gIG1vYmlsZU5hdmJhcktleSA9IGVUaGVtZUxlcHRvblhDb21wb25lbnRzLk5hdmJhck1vYmlsZTtcclxuICBwYWdlQWxlcnRDb250YWluZXJLZXkgPSBlVGhlbWVMZXB0b25YQ29tcG9uZW50cy5QYWdlQWxlcnRDb250YWluZXI7XHJcbiAgc2V0dGluZ3NLZXkgPSBlVGhlbWVMZXB0b25YQ29tcG9uZW50cy5TZXR0aW5ncztcclxufVxyXG4iLCI8bHB4LWxheW91dD5cclxuICA8YWJwLXBhZ2UtYWxlcnQtY29udGFpbmVyXHJcbiAgICAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cInsgY29tcG9uZW50S2V5OiBwYWdlQWxlcnRDb250YWluZXJLZXkgfVwiXHJcbiAgPjwvYWJwLXBhZ2UtYWxlcnQtY29udGFpbmVyPlxyXG5cclxuICA8cm91dGVyLW91dGxldD48L3JvdXRlci1vdXRsZXQ+XHJcblxyXG4gIDxuZy10ZW1wbGF0ZVxyXG4gICAgbHB4LWJyZWFkY3J1bWItcGFuZWxcclxuICAgICphYnBJZlJlcGxhY2VhYmxlVGVtcGxhdGVFeGlzdHM9XCJicmVhZGNydW1iS2V5XCJcclxuICA+XHJcbiAgICA8bmctY29udGFpbmVyICphYnBSZXBsYWNlYWJsZVRlbXBsYXRlPVwieyBjb21wb25lbnRLZXk6IGJyZWFkY3J1bWJLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlIGxweC1uYXZiYXItcGFuZWwgKmFicElmUmVwbGFjZWFibGVUZW1wbGF0ZUV4aXN0cz1cIm5hdmJhcktleVwiPlxyXG4gICAgPG5nLWNvbnRhaW5lciAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cInsgY29tcG9uZW50S2V5OiBuYXZiYXJLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlXHJcbiAgICBscHgtbW9iaWxlLW5hdmJhci1wYW5lbFxyXG4gICAgKmFicElmUmVwbGFjZWFibGVUZW1wbGF0ZUV4aXN0cz1cIm1vYmlsZU5hdmJhcktleVwiXHJcbiAgPlxyXG4gICAgPG5nLWNvbnRhaW5lciAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cInsgY29tcG9uZW50S2V5OiBtb2JpbGVOYXZiYXJLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlIGxweC1mb290ZXItcGFuZWwgKmFicElmUmVwbGFjZWFibGVUZW1wbGF0ZUV4aXN0cz1cImZvb3RlcktleVwiPlxyXG4gICAgPG5nLWNvbnRhaW5lciAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cInsgY29tcG9uZW50S2V5OiBmb290ZXJLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlIGxweC10b29sYmFyLXBhbmVsICphYnBJZlJlcGxhY2VhYmxlVGVtcGxhdGVFeGlzdHM9XCJ0b29sYmFyS2V5XCI+XHJcbiAgICA8bmctY29udGFpbmVyICphYnBSZXBsYWNlYWJsZVRlbXBsYXRlPVwieyBjb21wb25lbnRLZXk6IHRvb2xiYXJLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlXHJcbiAgICBscHgtdG9wLW5hdmJhci1wYW5lbFxyXG4gICAgKmFicElmUmVwbGFjZWFibGVUZW1wbGF0ZUV4aXN0cz1cInRvcE5hdmJhcktleVwiXHJcbiAgPlxyXG4gICAgPG5nLWNvbnRhaW5lciAqYWJwUmVwbGFjZWFibGVUZW1wbGF0ZT1cInsgY29tcG9uZW50S2V5OiB0b3BOYXZiYXJLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuXHJcbiAgPG5nLXRlbXBsYXRlIGxweC1zZXR0aW5ncy1wYW5lbCAqYWJwSWZSZXBsYWNlYWJsZVRlbXBsYXRlRXhpc3RzPVwic2V0dGluZ3NLZXlcIj5cclxuICAgIDxuZy1jb250YWluZXIgKmFicFJlcGxhY2VhYmxlVGVtcGxhdGU9XCJ7IGNvbXBvbmVudEtleTogc2V0dGluZ3NLZXkgfVwiPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgPC9uZy10ZW1wbGF0ZT5cclxuPC9scHgtbGF5b3V0PlxyXG4iXX0=
@@ -30,8 +30,8 @@ export class TopMenuLayoutModule {
30
30
  };
31
31
  }
32
32
  }
33
- TopMenuLayoutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: TopMenuLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
34
- TopMenuLayoutModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: TopMenuLayoutModule, declarations: [TopMenuApplicationLayoutComponent], imports: [CommonModule,
33
+ TopMenuLayoutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: TopMenuLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
34
+ TopMenuLayoutModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.1", ngImport: i0, type: TopMenuLayoutModule, declarations: [TopMenuApplicationLayoutComponent], imports: [CommonModule,
35
35
  LpxTopMenuLayoutModule,
36
36
  LeptonXAbpCoreModule,
37
37
  LpxBreadcrumbModule,
@@ -40,7 +40,7 @@ TopMenuLayoutModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", ver
40
40
  CoreModule,
41
41
  PageAlertContainerModule,
42
42
  RouterOutlet] });
43
- TopMenuLayoutModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: TopMenuLayoutModule, imports: [CommonModule,
43
+ TopMenuLayoutModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: TopMenuLayoutModule, imports: [CommonModule,
44
44
  LpxTopMenuLayoutModule,
45
45
  LeptonXAbpCoreModule,
46
46
  LpxBreadcrumbModule,
@@ -48,7 +48,7 @@ TopMenuLayoutModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", ver
48
48
  LpxNavbarModule,
49
49
  CoreModule,
50
50
  PageAlertContainerModule] });
51
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: TopMenuLayoutModule, decorators: [{
51
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: TopMenuLayoutModule, decorators: [{
52
52
  type: NgModule,
53
53
  args: [{
54
54
  declarations: [TopMenuApplicationLayoutComponent],
@@ -24,15 +24,15 @@ export class AbpValidationErrorComponent extends ValidationErrorComponent {
24
24
  });
25
25
  }
26
26
  }
27
- AbpValidationErrorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpValidationErrorComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
28
- AbpValidationErrorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: AbpValidationErrorComponent, selector: "abp-validation-error", usesInheritance: true, ngImport: i0, template: `
27
+ AbpValidationErrorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpValidationErrorComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
28
+ AbpValidationErrorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", type: AbpValidationErrorComponent, selector: "abp-validation-error", usesInheritance: true, ngImport: i0, template: `
29
29
  <span class="text-danger" data-valmsg-for="Role.Name" data-valmsg-replace="true"
30
30
  ><span *ngFor="let error of abpErrors; trackBy: trackByFn">
31
31
  {{ error.message | abpLocalization: error.interpoliteParams }}</span
32
32
  ></span
33
33
  >
34
34
  `, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
35
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpValidationErrorComponent, decorators: [{
35
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpValidationErrorComponent, decorators: [{
36
36
  type: Component,
37
37
  args: [{
38
38
  selector: 'abp-validation-error',
@@ -25,10 +25,10 @@ export class AbpValidationErrorModule {
25
25
  };
26
26
  }
27
27
  }
28
- AbpValidationErrorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpValidationErrorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
29
- AbpValidationErrorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: AbpValidationErrorModule, declarations: [AbpValidationErrorComponent], imports: [CommonModule, CoreModule, NgxValidateCoreModule], exports: [AbpValidationErrorComponent, NgxValidateCoreModule] });
30
- AbpValidationErrorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpValidationErrorModule, imports: [CommonModule, CoreModule, NgxValidateCoreModule, NgxValidateCoreModule] });
31
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpValidationErrorModule, decorators: [{
28
+ AbpValidationErrorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpValidationErrorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
29
+ AbpValidationErrorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.1", ngImport: i0, type: AbpValidationErrorModule, declarations: [AbpValidationErrorComponent], imports: [CommonModule, CoreModule, NgxValidateCoreModule], exports: [AbpValidationErrorComponent, NgxValidateCoreModule] });
30
+ AbpValidationErrorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpValidationErrorModule, imports: [CommonModule, CoreModule, NgxValidateCoreModule, NgxValidateCoreModule] });
31
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpValidationErrorModule, decorators: [{
32
32
  type: NgModule,
33
33
  args: [{
34
34
  declarations: [AbpValidationErrorComponent],
@@ -35,9 +35,9 @@ export class HttpErrorComponent {
35
35
  }
36
36
  }
37
37
  }
38
- HttpErrorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: HttpErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
39
- HttpErrorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.0", type: HttpErrorComponent, selector: "abp-http-error", ngImport: i0, template: "<div class=\"error-page-container\">\r\n <div class=\"row\">\r\n <div class=\"col col-auto\">\r\n <div class=\"status-icon\">\r\n <i class=\"fa fa-frown-o text-danger\" aria-hidden=\"true\"></i>\r\n <span></span>\r\n </div>\r\n </div>\r\n <div class=\"col\">\r\n <div class=\"status-content\">\r\n <h1>{{ errorStatus }}</h1>\r\n <h2 class=\"text-danger mb-0\">\r\n {{ errorStatusText | abpLocalization\r\n }}<small class=\"text-muted\">{{\r\n errorDetail | abpLocalization\r\n }}</small>\r\n </h2>\r\n <p class=\"mt-3 mb-4\"></p>\r\n <a (click)=\"destroy$.next()\" routerLink=\"/\" class=\"btn btn-primary\">{{\r\n 'AbpUi::GoHomePage' | abpLocalization\r\n }}</a>\r\n <a\r\n href=\"javascript:void(0)\"\r\n class=\"mt-4 mb-1 d-block\"\r\n (click)=\"destroy$.next()\"\r\n ><i class=\"fa fa-long-arrow-left me-1\"></i\r\n >{{ 'AbpUi::GoBack' | abpLocalization }}</a\r\n >\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] });
40
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: HttpErrorComponent, decorators: [{
38
+ HttpErrorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: HttpErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
39
+ HttpErrorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.1", type: HttpErrorComponent, selector: "abp-http-error", ngImport: i0, template: "<div class=\"error-page-container\">\r\n <div class=\"row\">\r\n <div class=\"col col-auto\">\r\n <div class=\"status-icon\">\r\n <i class=\"fa fa-frown-o text-danger\" aria-hidden=\"true\"></i>\r\n <span></span>\r\n </div>\r\n </div>\r\n <div class=\"col\">\r\n <div class=\"status-content\">\r\n <h1>{{ errorStatus }}</h1>\r\n <h2 class=\"text-danger mb-0\">\r\n {{ errorStatusText | abpLocalization\r\n }}<small class=\"text-muted\">{{\r\n errorDetail | abpLocalization\r\n }}</small>\r\n </h2>\r\n <p class=\"mt-3 mb-4\"></p>\r\n <a (click)=\"destroy$.next()\" routerLink=\"/\" class=\"btn btn-primary\">{{\r\n 'AbpUi::GoHomePage' | abpLocalization\r\n }}</a>\r\n <a\r\n href=\"javascript:void(0)\"\r\n class=\"mt-4 mb-1 d-block\"\r\n (click)=\"destroy$.next()\"\r\n ><i class=\"fa fa-long-arrow-left me-1\"></i\r\n >{{ 'AbpUi::GoBack' | abpLocalization }}</a\r\n >\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] });
40
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: HttpErrorComponent, decorators: [{
41
41
  type: Component,
42
42
  args: [{ selector: 'abp-http-error', template: "<div class=\"error-page-container\">\r\n <div class=\"row\">\r\n <div class=\"col col-auto\">\r\n <div class=\"status-icon\">\r\n <i class=\"fa fa-frown-o text-danger\" aria-hidden=\"true\"></i>\r\n <span></span>\r\n </div>\r\n </div>\r\n <div class=\"col\">\r\n <div class=\"status-content\">\r\n <h1>{{ errorStatus }}</h1>\r\n <h2 class=\"text-danger mb-0\">\r\n {{ errorStatusText | abpLocalization\r\n }}<small class=\"text-muted\">{{\r\n errorDetail | abpLocalization\r\n }}</small>\r\n </h2>\r\n <p class=\"mt-3 mb-4\"></p>\r\n <a (click)=\"destroy$.next()\" routerLink=\"/\" class=\"btn btn-primary\">{{\r\n 'AbpUi::GoHomePage' | abpLocalization\r\n }}</a>\r\n <a\r\n href=\"javascript:void(0)\"\r\n class=\"mt-4 mb-1 d-block\"\r\n (click)=\"destroy$.next()\"\r\n ><i class=\"fa fa-long-arrow-left me-1\"></i\r\n >{{ 'AbpUi::GoBack' | abpLocalization }}</a\r\n >\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n" }]
43
43
  }] });
@@ -11,10 +11,10 @@ export class HttpErrorModule {
11
11
  };
12
12
  }
13
13
  }
14
- HttpErrorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: HttpErrorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
15
- HttpErrorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: HttpErrorModule, declarations: [HttpErrorComponent], imports: [CoreModule, CommonModule], exports: [HttpErrorComponent] });
16
- HttpErrorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: HttpErrorModule, imports: [CoreModule, CommonModule] });
17
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: HttpErrorModule, decorators: [{
14
+ HttpErrorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: HttpErrorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
15
+ HttpErrorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.1", ngImport: i0, type: HttpErrorModule, declarations: [HttpErrorComponent], imports: [CoreModule, CommonModule], exports: [HttpErrorComponent] });
16
+ HttpErrorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: HttpErrorModule, imports: [CoreModule, CommonModule] });
17
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: HttpErrorModule, decorators: [{
18
18
  type: NgModule,
19
19
  args: [{
20
20
  declarations: [HttpErrorComponent],
@@ -1,2 +1,2 @@
1
1
  export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tcG9uZW50cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdm9sby1sZXB0b24teC9zcmMvbGliL2VudW1zL2NvbXBvbmVudHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIi8vIFRPRE86IGNvbmZpZ3VyZSBmb3IgbGVwdG9uIG5leHRcclxuZXhwb3J0IGNvbnN0IGVudW0gZVRoZW1lTGVwdG9uWENvbXBvbmVudHMge1xyXG4gIEFjY291bnRMYXlvdXQgPSAnVGhlbWUuQWNjb3VudExheW91dENvbXBvbmVudCcsXHJcbiAgQXBwbGljYXRpb25MYXlvdXQgPSAnVGhlbWUuQXBwbGljYXRpb25MYXlvdXRDb21wb25lbnQnLFxyXG4gIEFwcGxpY2F0aW9uTGF5b3V0SGVhZGVyID0gJ1RoZW1lLkFwcGxpY2F0aW9uTGF5b3V0SGVhZGVyQ29tcG9uZW50JyxcclxuICBGb290ZXIgPSAnVGhlbWUuRm9vdGVyQ29tcG9uZW50JyxcclxuICBDdXJyZW50VXNlciA9ICdUaGVtZS5DdXJyZW50VXNlckNvbXBvbmVudCcsXHJcbiAgQ3VycmVudFVzZXJJbWFnZSA9ICdUaGVtZS5DdXJyZW50VXNlckltYWdlQ29tcG9uZW50JyxcclxuICBFbXB0eUxheW91dCA9ICdUaGVtZS5FbXB0eUxheW91dENvbXBvbmVudCcsXHJcbiAgRnVsbFNjcmVlbiA9ICdUaGVtZS5GdWxsU2NyZWVuQ29tcG9uZW50JyxcclxuICBMYW5ndWFnZXMgPSAnVGhlbWUuTGFuZ3VhZ2VzQ29tcG9uZW50JyxcclxuICBMb2dvID0gJ1RoZW1lLkxvZ29Db21wb25lbnQnLFxyXG4gIFJvdXRlcyA9ICdUaGVtZS5Sb3V0ZXNDb21wb25lbnQnLFxyXG4gIE5hdmJhciA9ICdUaGVtZS5OYXZiYXJDb21wb25lbnQnLFxyXG4gIE5hdmJhck1vYmlsZSA9ICdUaGVtZS5OYXZiYXJNb2JpbGVDb21wb25lbnQnLFxyXG4gIE5hdkl0ZW1zID0gJ1RoZW1lLk5hdkl0ZW1zQ29tcG9uZW50JyxcclxuICBTaWRlYmFyID0gJ1RoZW1lLlNpZGViYXInLFxyXG4gIEJyZWFkY3J1bWIgPSAnVGhlbWUuQnJlYWRjcnVtYicsXHJcbiAgUGFnZUFsZXJ0Q29udGFpbmVyID0gJ1RoZW1lLlBhZ2VBbGVydENvbnRhaW5lckNvbXBvbmVudCcsXHJcbiAgVG9vbGJhciA9ICdUaGVtZS5Ub29sYmFyQ29tcG9uZW50JyxcclxuICBUb3BOYXZiYXIgPSAnVGhlbWUuVG9wTmF2YmFyQ29tcG9uZW50JyxcclxuICBTZXR0aW5ncyA9ICdUaGVtZS5TZXR0aW5nc0NvbXBvbmVudCcsXHJcbn1cclxuIl19
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tcG9uZW50cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdm9sby1sZXB0b24teC9zcmMvbGliL2VudW1zL2NvbXBvbmVudHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIi8vIFRPRE86IGNvbmZpZ3VyZSBmb3IgbGVwdG9uIG5leHRcclxuZXhwb3J0IGNvbnN0IGVudW0gZVRoZW1lTGVwdG9uWENvbXBvbmVudHMge1xyXG4gIEFjY291bnRMYXlvdXQgPSAnVGhlbWUuQWNjb3VudExheW91dENvbXBvbmVudCcsXHJcbiAgQXBwbGljYXRpb25MYXlvdXQgPSAnVGhlbWUuQXBwbGljYXRpb25MYXlvdXRDb21wb25lbnQnLFxyXG4gIEZvb3RlciA9ICdUaGVtZS5Gb290ZXJDb21wb25lbnQnLFxyXG4gIEN1cnJlbnRVc2VyID0gJ1RoZW1lLkN1cnJlbnRVc2VyQ29tcG9uZW50JyxcclxuICBDdXJyZW50VXNlckltYWdlID0gJ1RoZW1lLkN1cnJlbnRVc2VySW1hZ2VDb21wb25lbnQnLFxyXG4gIEVtcHR5TGF5b3V0ID0gJ1RoZW1lLkVtcHR5TGF5b3V0Q29tcG9uZW50JyxcclxuICBMYW5ndWFnZXMgPSAnVGhlbWUuTGFuZ3VhZ2VzQ29tcG9uZW50JyxcclxuICBMb2dvID0gJ1RoZW1lLkxvZ29Db21wb25lbnQnLFxyXG4gIFJvdXRlcyA9ICdUaGVtZS5Sb3V0ZXNDb21wb25lbnQnLFxyXG4gIE5hdmJhciA9ICdUaGVtZS5OYXZiYXJDb21wb25lbnQnLFxyXG4gIE5hdmJhck1vYmlsZSA9ICdUaGVtZS5OYXZiYXJNb2JpbGVDb21wb25lbnQnLFxyXG4gIE5hdkl0ZW1zID0gJ1RoZW1lLk5hdkl0ZW1zQ29tcG9uZW50JyxcclxuICBTaWRlYmFyID0gJ1RoZW1lLlNpZGViYXInLFxyXG4gIEJyZWFkY3J1bWIgPSAnVGhlbWUuQnJlYWRjcnVtYicsXHJcbiAgUGFnZUFsZXJ0Q29udGFpbmVyID0gJ1RoZW1lLlBhZ2VBbGVydENvbnRhaW5lckNvbXBvbmVudCcsXHJcbiAgVG9vbGJhciA9ICdUaGVtZS5Ub29sYmFyQ29tcG9uZW50JyxcclxuICBUb3BOYXZiYXIgPSAnVGhlbWUuVG9wTmF2YmFyQ29tcG9uZW50JyxcclxuICBTZXR0aW5ncyA9ICdUaGVtZS5TZXR0aW5nc0NvbXBvbmVudCcsXHJcbn1cclxuIl19
@@ -32,10 +32,10 @@ export class ThemeLeptonXModule {
32
32
  };
33
33
  }
34
34
  }
35
- ThemeLeptonXModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ThemeLeptonXModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
36
- ThemeLeptonXModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.0", ngImport: i0, type: ThemeLeptonXModule, imports: [HttpErrorModule], exports: [HttpErrorModule] });
37
- ThemeLeptonXModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ThemeLeptonXModule, imports: [HttpErrorModule, HttpErrorModule] });
38
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: ThemeLeptonXModule, decorators: [{
35
+ ThemeLeptonXModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: ThemeLeptonXModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
36
+ ThemeLeptonXModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.1", ngImport: i0, type: ThemeLeptonXModule, imports: [HttpErrorModule], exports: [HttpErrorModule] });
37
+ ThemeLeptonXModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: ThemeLeptonXModule, imports: [HttpErrorModule, HttpErrorModule] });
38
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: ThemeLeptonXModule, decorators: [{
39
39
  type: NgModule,
40
40
  args: [{
41
41
  imports: [HttpErrorModule],
@@ -15,9 +15,9 @@ export class AbpAuthService {
15
15
  this.authService.navigateToLogin();
16
16
  }
17
17
  }
18
- AbpAuthService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpAuthService, deps: [{ token: i1.UserProfileService }, { token: i2.AuthService }], target: i0.ɵɵFactoryTarget.Injectable });
19
- AbpAuthService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpAuthService });
20
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpAuthService, decorators: [{
18
+ AbpAuthService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpAuthService, deps: [{ token: i1.UserProfileService }, { token: i2.AuthService }], target: i0.ɵɵFactoryTarget.Injectable });
19
+ AbpAuthService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpAuthService });
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpAuthService, decorators: [{
21
21
  type: Injectable
22
22
  }], ctorParameters: function () { return [{ type: i1.UserProfileService }, { type: i2.AuthService }]; } });
23
23
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWJwLWF1dGguc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdm9sby1sZXB0b24teC9zcmMvbGliL3NlcnZpY2VzL2FicC1hdXRoLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBQWUsa0JBQWtCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUMxRSxPQUFPLEVBQUUsR0FBRyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDckMsT0FBTyxFQUFFLFdBQVcsSUFBSSxlQUFlLEVBQUUsTUFBTSxjQUFjLENBQUM7Ozs7QUFHOUQsTUFBTSxPQUFPLGNBQWM7SUFDekIsWUFDVSxrQkFBc0MsRUFDdEMsV0FBNEI7UUFENUIsdUJBQWtCLEdBQWxCLGtCQUFrQixDQUFvQjtRQUN0QyxnQkFBVyxHQUFYLFdBQVcsQ0FBaUI7UUFHdEMsa0JBQWEsR0FBRyxJQUFJLENBQUMsa0JBQWtCLENBQUMsS0FBSyxDQUFDLElBQUksQ0FDaEQsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQyxJQUFJLElBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FDdkMsQ0FBQztJQUpDLENBQUM7SUFNSixlQUFlO1FBQ2IsSUFBSSxDQUFDLFdBQVcsQ0FBQyxlQUFlLEVBQUUsQ0FBQztJQUNyQyxDQUFDOzsyR0FaVSxjQUFjOytHQUFkLGNBQWM7MkZBQWQsY0FBYztrQkFEMUIsVUFBVSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgQXV0aFNlcnZpY2UsIFVzZXJQcm9maWxlU2VydmljZSB9IGZyb20gJ0B2b2xvL25neC1sZXB0b24teC5jb3JlJztcclxuaW1wb3J0IHsgbWFwIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xyXG5pbXBvcnQgeyBBdXRoU2VydmljZSBhcyBBdXRoQ29yZVNlcnZpY2UgfSBmcm9tICdAYWJwL25nLmNvcmUnO1xyXG5cclxuQEluamVjdGFibGUoKVxyXG5leHBvcnQgY2xhc3MgQWJwQXV0aFNlcnZpY2UgaW1wbGVtZW50cyBBdXRoU2VydmljZSB7XHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwcml2YXRlIHVzZXJQcm9maWxlU2VydmljZTogVXNlclByb2ZpbGVTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBhdXRoU2VydmljZTogQXV0aENvcmVTZXJ2aWNlXHJcbiAgKSB7fVxyXG5cclxuICBpc1VzZXJFeGlzdHMkID0gdGhpcy51c2VyUHJvZmlsZVNlcnZpY2UudXNlciQucGlwZShcclxuICAgIG1hcCgodXNlcikgPT4gdXNlciAmJiAhIXVzZXIudXNlck5hbWUpXHJcbiAgKTtcclxuXHJcbiAgbmF2aWdhdGVUb0xvZ2luKCk6IHZvaWQge1xyXG4gICAgdGhpcy5hdXRoU2VydmljZS5uYXZpZ2F0ZVRvTG9naW4oKTtcclxuICB9XHJcbn1cclxuIl19
@@ -97,9 +97,9 @@ export class AbpSettingsService {
97
97
  });
98
98
  }
99
99
  }
100
- AbpSettingsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpSettingsService, deps: [{ token: i1.SessionStateService }, { token: i1.ConfigStateService }, { token: i2.LanguageService }, { token: i1.AuthService }, { token: i2.UserProfileService }, { token: PROFILE_PICTURE }, { token: NAVIGATE_TO_MANAGE_PROFILE }, { token: NAVIGATE_TO_MY_SECURITY_LOGS }, { token: OPEN_MY_LINK_USERS_MODAL, optional: true }, { token: i1.LocalizationService }, { token: i3.UserMenuService }], target: i0.ɵɵFactoryTarget.Injectable });
101
- AbpSettingsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpSettingsService, providedIn: 'root' });
102
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpSettingsService, decorators: [{
100
+ AbpSettingsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpSettingsService, deps: [{ token: i1.SessionStateService }, { token: i1.ConfigStateService }, { token: i2.LanguageService }, { token: i1.AuthService }, { token: i2.UserProfileService }, { token: PROFILE_PICTURE }, { token: NAVIGATE_TO_MANAGE_PROFILE }, { token: NAVIGATE_TO_MY_SECURITY_LOGS }, { token: OPEN_MY_LINK_USERS_MODAL, optional: true }, { token: i1.LocalizationService }, { token: i3.UserMenuService }], target: i0.ɵɵFactoryTarget.Injectable });
101
+ AbpSettingsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpSettingsService, providedIn: 'root' });
102
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpSettingsService, decorators: [{
103
103
  type: Injectable,
104
104
  args: [{ providedIn: 'root' }]
105
105
  }], ctorParameters: function () { return [{ type: i1.SessionStateService }, { type: i1.ConfigStateService }, { type: i2.LanguageService }, { type: i1.AuthService }, { type: i2.UserProfileService }, { type: i4.BehaviorSubject, decorators: [{
@@ -21,9 +21,9 @@ export class AbpToolbarService {
21
21
  });
22
22
  }
23
23
  }
24
- AbpToolbarService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpToolbarService, deps: [{ token: i1.ToolbarService }, { token: i2.NavItemsService }, { token: i3.PermissionService }], target: i0.ɵɵFactoryTarget.Injectable });
25
- AbpToolbarService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpToolbarService, providedIn: 'root' });
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: AbpToolbarService, decorators: [{
24
+ AbpToolbarService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpToolbarService, deps: [{ token: i1.ToolbarService }, { token: i2.NavItemsService }, { token: i3.PermissionService }], target: i0.ɵɵFactoryTarget.Injectable });
25
+ AbpToolbarService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpToolbarService, providedIn: 'root' });
26
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImport: i0, type: AbpToolbarService, decorators: [{
27
27
  type: Injectable,
28
28
  args: [{
29
29
  providedIn: 'root',