@abp/ng.theme.basic 7.2.2 → 7.3.0-rc.1
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.
- package/{esm2020 → esm2022}/abp-ng.theme.basic.mjs +4 -4
- package/esm2022/lib/components/account-layout/account-layout.component.mjs +32 -0
- package/esm2022/lib/components/account-layout/auth-wrapper/auth-wrapper.component.mjs +20 -0
- package/esm2022/lib/components/account-layout/tenant-box/tenant-box.component.mjs +21 -0
- package/esm2022/lib/components/application-layout/application-layout.component.mjs +31 -0
- package/esm2022/lib/components/empty-layout/empty-layout.component.mjs +24 -0
- package/{esm2020 → esm2022}/lib/components/index.mjs +12 -12
- package/esm2022/lib/components/logo/logo.component.mjs +53 -0
- package/esm2022/lib/components/nav-items/current-user.component.mjs +40 -0
- package/esm2022/lib/components/nav-items/languages.component.mjs +108 -0
- package/{esm2020 → esm2022}/lib/components/nav-items/nav-items.component.mjs +20 -19
- package/esm2022/lib/components/page-alert-container/page-alert-container.component.mjs +19 -0
- package/esm2022/lib/components/routes/routes.component.mjs +38 -0
- package/esm2022/lib/components/validation-error/validation-error.component.mjs +45 -0
- package/{esm2020 → esm2022}/lib/constants/styles.mjs +1 -1
- package/{esm2020 → esm2022}/lib/enums/components.mjs +1 -1
- package/{esm2020 → esm2022}/lib/enums/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/enums/user-menu-items.mjs +1 -1
- package/{esm2020 → esm2022}/lib/handlers/index.mjs +1 -1
- package/esm2022/lib/handlers/lazy-style.handler.mjs +83 -0
- package/{esm2020 → esm2022}/lib/models/index.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/layout.mjs +1 -1
- package/{esm2020 → esm2022}/lib/providers/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/providers/nav-item.provider.mjs +28 -28
- package/{esm2020 → esm2022}/lib/providers/styles.provider.mjs +34 -34
- package/{esm2020 → esm2022}/lib/providers/user-menu.provider.mjs +40 -40
- package/esm2022/lib/services/layout.service.mjs +42 -0
- package/esm2022/lib/theme-basic.module.mjs +128 -0
- package/{esm2020 → esm2022}/lib/tokens/index.mjs +1 -1
- package/{esm2020 → esm2022}/lib/tokens/lazy-styles.token.mjs +2 -2
- package/{esm2020 → esm2022}/public-api.mjs +10 -10
- package/{esm2020 → esm2022}/testing/abp-ng.theme.basic-testing.mjs +4 -4
- package/esm2022/testing/lib/theme-basic-testing.module.mjs +39 -0
- package/{esm2020 → esm2022}/testing/public-api.mjs +1 -1
- package/{fesm2015 → fesm2022}/abp-ng.theme.basic-testing.mjs +34 -34
- package/{fesm2015 → fesm2022}/abp-ng.theme.basic-testing.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/abp-ng.theme.basic.mjs +520 -520
- package/{fesm2020 → fesm2022}/abp-ng.theme.basic.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/components/account-layout/account-layout.component.d.ts +13 -13
- package/lib/components/account-layout/auth-wrapper/auth-wrapper.component.d.ts +8 -8
- package/lib/components/account-layout/tenant-box/tenant-box.component.d.ts +8 -8
- package/lib/components/application-layout/application-layout.component.d.ts +12 -12
- package/lib/components/empty-layout/empty-layout.component.d.ts +7 -7
- package/lib/components/index.d.ts +12 -12
- package/lib/components/logo/logo.component.d.ts +9 -9
- package/lib/components/nav-items/current-user.component.d.ts +21 -21
- package/lib/components/nav-items/languages.component.d.ts +16 -16
- package/lib/components/nav-items/nav-items.component.d.ts +10 -10
- package/lib/components/page-alert-container/page-alert-container.component.d.ts +8 -8
- package/lib/components/routes/routes.component.d.ts +18 -18
- package/lib/components/validation-error/validation-error.component.d.ts +9 -9
- package/lib/constants/styles.d.ts +2 -2
- package/lib/enums/components.d.ts +10 -10
- package/lib/enums/index.d.ts +2 -2
- package/lib/enums/user-menu-items.d.ts +4 -4
- package/lib/handlers/index.d.ts +1 -1
- package/lib/handlers/lazy-style.handler.d.ts +23 -23
- package/lib/models/index.d.ts +1 -1
- package/lib/models/layout.d.ts +11 -11
- package/lib/providers/index.d.ts +3 -3
- package/lib/providers/nav-item.provider.d.ts +8 -8
- package/lib/providers/styles.provider.d.ts +8 -8
- package/lib/providers/user-menu.provider.d.ts +8 -8
- package/lib/services/layout.service.d.ts +18 -18
- package/lib/theme-basic.module.d.ts +32 -32
- package/lib/tokens/index.d.ts +1 -1
- package/lib/tokens/lazy-styles.token.d.ts +2 -2
- package/package.json +11 -19
- package/public-api.d.ts +7 -7
- package/testing/index.d.ts +5 -5
- package/testing/lib/theme-basic-testing.module.d.ts +9 -9
- package/testing/public-api.d.ts +1 -1
- package/esm2020/lib/components/account-layout/account-layout.component.mjs +0 -32
- package/esm2020/lib/components/account-layout/auth-wrapper/auth-wrapper.component.mjs +0 -19
- package/esm2020/lib/components/account-layout/tenant-box/tenant-box.component.mjs +0 -20
- package/esm2020/lib/components/application-layout/application-layout.component.mjs +0 -31
- package/esm2020/lib/components/empty-layout/empty-layout.component.mjs +0 -23
- package/esm2020/lib/components/logo/logo.component.mjs +0 -52
- package/esm2020/lib/components/nav-items/current-user.component.mjs +0 -39
- package/esm2020/lib/components/nav-items/languages.component.mjs +0 -107
- package/esm2020/lib/components/page-alert-container/page-alert-container.component.mjs +0 -18
- package/esm2020/lib/components/routes/routes.component.mjs +0 -37
- package/esm2020/lib/components/validation-error/validation-error.component.mjs +0 -44
- package/esm2020/lib/handlers/lazy-style.handler.mjs +0 -82
- package/esm2020/lib/services/layout.service.mjs +0 -41
- package/esm2020/lib/theme-basic.module.mjs +0 -126
- package/esm2020/testing/lib/theme-basic-testing.module.mjs +0 -38
- package/fesm2015/abp-ng.theme.basic.mjs +0 -834
- package/fesm2015/abp-ng.theme.basic.mjs.map +0 -1
- package/fesm2020/abp-ng.theme.basic-testing.mjs +0 -45
- package/fesm2020/abp-ng.theme.basic-testing.mjs.map +0 -1
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { ConfigStateService, LanguageInfo, SessionStateService } from '@abp/ng.core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class LanguagesComponent {
|
|
5
|
-
private sessionState;
|
|
6
|
-
private configState;
|
|
7
|
-
get smallScreen(): boolean;
|
|
8
|
-
languages$: Observable<LanguageInfo[]>;
|
|
9
|
-
get defaultLanguage$(): Observable<string>;
|
|
10
|
-
get dropdownLanguages$(): Observable<LanguageInfo[]>;
|
|
11
|
-
get selectedLangCulture(): string;
|
|
12
|
-
constructor(sessionState: SessionStateService, configState: ConfigStateService);
|
|
13
|
-
onChangeLang(cultureName: string): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LanguagesComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LanguagesComponent, "abp-languages", never, {}, {}, never, never, false, never>;
|
|
16
|
-
}
|
|
1
|
+
import { ConfigStateService, LanguageInfo, SessionStateService } from '@abp/ng.core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LanguagesComponent {
|
|
5
|
+
private sessionState;
|
|
6
|
+
private configState;
|
|
7
|
+
get smallScreen(): boolean;
|
|
8
|
+
languages$: Observable<LanguageInfo[]>;
|
|
9
|
+
get defaultLanguage$(): Observable<string>;
|
|
10
|
+
get dropdownLanguages$(): Observable<LanguageInfo[]>;
|
|
11
|
+
get selectedLangCulture(): string;
|
|
12
|
+
constructor(sessionState: SessionStateService, configState: ConfigStateService);
|
|
13
|
+
onChangeLang(cultureName: string): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LanguagesComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LanguagesComponent, "abp-languages", never, {}, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { NavItem, NavItemsService } from '@abp/ng.theme.shared';
|
|
2
|
-
import { TrackByFunction } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NavItemsComponent {
|
|
5
|
-
readonly navItems: NavItemsService;
|
|
6
|
-
trackByFn: TrackByFunction<NavItem>;
|
|
7
|
-
constructor(navItems: NavItemsService);
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NavItemsComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavItemsComponent, "abp-nav-items", never, {}, {}, never, never, false, never>;
|
|
10
|
-
}
|
|
1
|
+
import { NavItem, NavItemsService } from '@abp/ng.theme.shared';
|
|
2
|
+
import { TrackByFunction } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NavItemsComponent {
|
|
5
|
+
readonly navItems: NavItemsService;
|
|
6
|
+
trackByFn: TrackByFunction<NavItem>;
|
|
7
|
+
constructor(navItems: NavItemsService);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavItemsComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavItemsComponent, "abp-nav-items", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { PageAlertService } from '@abp/ng.theme.shared';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class PageAlertContainerComponent {
|
|
4
|
-
service: PageAlertService;
|
|
5
|
-
constructor(service: PageAlertService);
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PageAlertContainerComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageAlertContainerComponent, "abp-page-alert-container", never, {}, {}, never, never, false, never>;
|
|
8
|
-
}
|
|
1
|
+
import { PageAlertService } from '@abp/ng.theme.shared';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PageAlertContainerComponent {
|
|
4
|
+
service: PageAlertService;
|
|
5
|
+
constructor(service: PageAlertService);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageAlertContainerComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageAlertContainerComponent, "abp-page-alert-container", never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { ABP, RoutesService, TreeNode } from '@abp/ng.core';
|
|
2
|
-
import { ElementRef, QueryList, Renderer2, TrackByFunction } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class RoutesComponent {
|
|
5
|
-
readonly routesService: RoutesService;
|
|
6
|
-
protected renderer: Renderer2;
|
|
7
|
-
smallScreen?: boolean;
|
|
8
|
-
childrenContainers: QueryList<ElementRef<HTMLDivElement>>;
|
|
9
|
-
rootDropdownExpand: {
|
|
10
|
-
[key: string]: boolean;
|
|
11
|
-
};
|
|
12
|
-
trackByFn: TrackByFunction<TreeNode<ABP.Route>>;
|
|
13
|
-
constructor(routesService: RoutesService, renderer: Renderer2);
|
|
14
|
-
isDropdown(node: TreeNode<ABP.Route>): boolean;
|
|
15
|
-
closeDropdown(): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RoutesComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RoutesComponent, "abp-routes", never, { "smallScreen": "smallScreen"; }, {}, never, never, false, never>;
|
|
18
|
-
}
|
|
1
|
+
import { ABP, RoutesService, TreeNode } from '@abp/ng.core';
|
|
2
|
+
import { ElementRef, QueryList, Renderer2, TrackByFunction } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RoutesComponent {
|
|
5
|
+
readonly routesService: RoutesService;
|
|
6
|
+
protected renderer: Renderer2;
|
|
7
|
+
smallScreen?: boolean;
|
|
8
|
+
childrenContainers: QueryList<ElementRef<HTMLDivElement>>;
|
|
9
|
+
rootDropdownExpand: {
|
|
10
|
+
[key: string]: boolean;
|
|
11
|
+
};
|
|
12
|
+
trackByFn: TrackByFunction<TreeNode<ABP.Route>>;
|
|
13
|
+
constructor(routesService: RoutesService, renderer: Renderer2);
|
|
14
|
+
isDropdown(node: TreeNode<ABP.Route>): boolean;
|
|
15
|
+
closeDropdown(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RoutesComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RoutesComponent, "abp-routes", never, { "smallScreen": { "alias": "smallScreen"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Validation, ValidationErrorComponent as ErrorComponent } from '@ngx-validate/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ValidationErrorComponent extends ErrorComponent {
|
|
4
|
-
get abpErrors(): (Validation.Error & {
|
|
5
|
-
interpoliteParams?: string[];
|
|
6
|
-
})[];
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ValidationErrorComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ValidationErrorComponent, "abp-validation-error", never, {}, {}, never, never, false, never>;
|
|
9
|
-
}
|
|
1
|
+
import { Validation, ValidationErrorComponent as ErrorComponent } from '@ngx-validate/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ValidationErrorComponent extends ErrorComponent {
|
|
4
|
+
get abpErrors(): (Validation.Error & {
|
|
5
|
+
interpoliteParams?: string[];
|
|
6
|
+
})[];
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValidationErrorComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ValidationErrorComponent, "abp-validation-error", never, {}, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "\n.content-header-title {\n font-size: 24px;\n}\n.entry-row {\n margin-bottom: 15px;\n}\n#main-navbar-tools a.dropdown-toggle {\n text-decoration: none;\n color: #fff;\n}\n.navbar .dropdown-submenu {\n position: relative;\n}\n.navbar .dropdown-menu {\n margin: 0;\n padding: 0;\n}\n.navbar .dropdown-menu a {\n font-size: .9em;\n padding: 10px 15px;\n display: block;\n min-width: 210px;\n text-align: left;\n border-radius: 0.25rem;\n min-height: 44px;\n}\n[dir=rtl] .navbar .dropdown-menu a {\n text-align: right!important;\n}\n.navbar .dropdown-submenu a::after {\n transform: rotate(-90deg);\n position: absolute;\n right: 16px;\n top: 18px;\n}\n[dir=rtl] .navbar .dropdown-submenu a::after {\n transform: rotate(90deg);\n left: 16px;\n right: auto;\n top: 20px;\n}\n.navbar .dropdown-submenu .dropdown-menu {\n top: 0;\n left: 100%;\n}\n/* work around for rtl. Track https://github.com/ng-bootstrap/ng-bootstrap/issues/4100 issue */\n[dir=rtl] .navbar .dropdown-submenu .dropdown-menu {\n top: 0;\n right: 100%;\n}\n.card-header .btn {\n padding: 2px 6px;\n}\n.card-header h5 {\n margin: 0;\n}\n.container > .card {\n box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;\n}\n@media screen and (min-width: 992px) {\n .navbar .dropdown:hover > .dropdown-menu {\n display: block;\n }\n\n .navbar .dropdown-submenu:hover > .dropdown-menu {\n display: block;\n }\n}\n.input-validation-error {\n border-color: #dc3545;\n}\n.field-validation-error {\n font-size: 0.8em;\n}\n.ui-table .ui-table-tbody > tr.empty-row > div.empty-row-content {\n border: 1px solid #c8c8c8;\n }\n.abp-loading {\n background: rgba(0, 0, 0, 0.05);\n}\n.modal-backdrop {\nbackground-color: rgba(0, 0, 0, 0.6);\n}\n\n.confirmation .confirmation-backdrop {\n\t background: rgba(0, 0, 0, 0.7) !important;\n}\n .confirmation .confirmation-dialog {\n\t border: none;\n\t border-radius: 10px;\n\t background-color: #fff;\n\t box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.5);\n}\n .confirmation .confirmation-dialog .icon-container .icon {\n\t stroke: #fff;\n\t color: #fff;\n}\n .confirmation .confirmation-dialog .icon-container.info .icon {\n\t stroke: #2f96b4;\n\t color: #2f96b4;\n}\n .confirmation .confirmation-dialog .icon-container.success .icon {\n\t stroke: #51a351;\n\t color: #51a351;\n}\n .confirmation .confirmation-dialog .icon-container.warning .icon {\n\t stroke: #f89406;\n\t color: #f89406;\n}\n .confirmation .confirmation-dialog .icon-container.error .icon {\n\t stroke: #bd362f;\n\t color: #bd362f;\n}\n .confirmation .confirmation-dialog .content .title {\n\t color: #222;\n}\n .confirmation .confirmation-dialog .content .message {\n\t color: #777;\n}\n .confirmation .confirmation-dialog .footer {\n\t background: transparent;\n}\n .confirmation .confirmation-dialog .footer .confirmation-button {\n\t background-color: #eee;\n\t color: #777;\n}\n .confirmation .confirmation-dialog .footer .confirmation-button:hover, .confirmation .confirmation-dialog .footer .confirmation-button:focus, .confirmation .confirmation-dialog .footer .confirmation-button:active {\n\t background-color: #bbb;\n}\n .confirmation .confirmation-dialog .footer .confirmation-button--confirm {\n\t background-color: #2f96b4;\n\t color: #fff;\n}\n .confirmation .confirmation-dialog .footer .confirmation-button--confirm:hover {\n\t background-color: #2e819b;\n}\n.ui-table .pagination-wrapper {\n background-color: #f4f4f4;\n border: 1px solid #c8c8c8;\n}\n.bordered .datatable-body-row {\n border-top: 1px solid #eee;\n margin-top: -1px;\n}\n.breadcrumb {\n background-color: transparent;\n padding: 0.27rem;\n}\n";
|
|
2
|
-
export default _default;
|
|
1
|
+
declare const _default: "\n.content-header-title {\n font-size: 24px;\n}\n.entry-row {\n margin-bottom: 15px;\n}\n#main-navbar-tools a.dropdown-toggle {\n text-decoration: none;\n color: #fff;\n}\n.navbar .dropdown-submenu {\n position: relative;\n}\n.navbar .dropdown-menu {\n margin: 0;\n padding: 0;\n}\n.navbar .dropdown-menu a {\n font-size: .9em;\n padding: 10px 15px;\n display: block;\n min-width: 210px;\n text-align: left;\n border-radius: 0.25rem;\n min-height: 44px;\n}\n[dir=rtl] .navbar .dropdown-menu a {\n text-align: right!important;\n}\n.navbar .dropdown-submenu a::after {\n transform: rotate(-90deg);\n position: absolute;\n right: 16px;\n top: 18px;\n}\n[dir=rtl] .navbar .dropdown-submenu a::after {\n transform: rotate(90deg);\n left: 16px;\n right: auto;\n top: 20px;\n}\n.navbar .dropdown-submenu .dropdown-menu {\n top: 0;\n left: 100%;\n}\n/* work around for rtl. Track https://github.com/ng-bootstrap/ng-bootstrap/issues/4100 issue */\n[dir=rtl] .navbar .dropdown-submenu .dropdown-menu {\n top: 0;\n right: 100%;\n}\n.card-header .btn {\n padding: 2px 6px;\n}\n.card-header h5 {\n margin: 0;\n}\n.container > .card {\n box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;\n}\n@media screen and (min-width: 992px) {\n .navbar .dropdown:hover > .dropdown-menu {\n display: block;\n }\n\n .navbar .dropdown-submenu:hover > .dropdown-menu {\n display: block;\n }\n}\n.input-validation-error {\n border-color: #dc3545;\n}\n.field-validation-error {\n font-size: 0.8em;\n}\n.ui-table .ui-table-tbody > tr.empty-row > div.empty-row-content {\n border: 1px solid #c8c8c8;\n }\n.abp-loading {\n background: rgba(0, 0, 0, 0.05);\n}\n.modal-backdrop {\nbackground-color: rgba(0, 0, 0, 0.6);\n}\n\n.confirmation .confirmation-backdrop {\n\t background: rgba(0, 0, 0, 0.7) !important;\n}\n .confirmation .confirmation-dialog {\n\t border: none;\n\t border-radius: 10px;\n\t background-color: #fff;\n\t box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.5);\n}\n .confirmation .confirmation-dialog .icon-container .icon {\n\t stroke: #fff;\n\t color: #fff;\n}\n .confirmation .confirmation-dialog .icon-container.info .icon {\n\t stroke: #2f96b4;\n\t color: #2f96b4;\n}\n .confirmation .confirmation-dialog .icon-container.success .icon {\n\t stroke: #51a351;\n\t color: #51a351;\n}\n .confirmation .confirmation-dialog .icon-container.warning .icon {\n\t stroke: #f89406;\n\t color: #f89406;\n}\n .confirmation .confirmation-dialog .icon-container.error .icon {\n\t stroke: #bd362f;\n\t color: #bd362f;\n}\n .confirmation .confirmation-dialog .content .title {\n\t color: #222;\n}\n .confirmation .confirmation-dialog .content .message {\n\t color: #777;\n}\n .confirmation .confirmation-dialog .footer {\n\t background: transparent;\n}\n .confirmation .confirmation-dialog .footer .confirmation-button {\n\t background-color: #eee;\n\t color: #777;\n}\n .confirmation .confirmation-dialog .footer .confirmation-button:hover, .confirmation .confirmation-dialog .footer .confirmation-button:focus, .confirmation .confirmation-dialog .footer .confirmation-button:active {\n\t background-color: #bbb;\n}\n .confirmation .confirmation-dialog .footer .confirmation-button--confirm {\n\t background-color: #2f96b4;\n\t color: #fff;\n}\n .confirmation .confirmation-dialog .footer .confirmation-button--confirm:hover {\n\t background-color: #2e819b;\n}\n.ui-table .pagination-wrapper {\n background-color: #f4f4f4;\n border: 1px solid #c8c8c8;\n}\n.bordered .datatable-body-row {\n border-top: 1px solid #eee;\n margin-top: -1px;\n}\n.breadcrumb {\n background-color: transparent;\n padding: 0.27rem;\n}\n";
|
|
2
|
+
export default _default;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export declare const enum eThemeBasicComponents {
|
|
2
|
-
ApplicationLayout = "Theme.ApplicationLayoutComponent",
|
|
3
|
-
AccountLayout = "Theme.AccountLayoutComponent",
|
|
4
|
-
EmptyLayout = "Theme.EmptyLayoutComponent",
|
|
5
|
-
Logo = "Theme.LogoComponent",
|
|
6
|
-
Routes = "Theme.RoutesComponent",
|
|
7
|
-
NavItems = "Theme.NavItemsComponent",
|
|
8
|
-
CurrentUser = "Theme.CurrentUserComponent",
|
|
9
|
-
Languages = "Theme.LanguagesComponent"
|
|
10
|
-
}
|
|
1
|
+
export declare const enum eThemeBasicComponents {
|
|
2
|
+
ApplicationLayout = "Theme.ApplicationLayoutComponent",
|
|
3
|
+
AccountLayout = "Theme.AccountLayoutComponent",
|
|
4
|
+
EmptyLayout = "Theme.EmptyLayoutComponent",
|
|
5
|
+
Logo = "Theme.LogoComponent",
|
|
6
|
+
Routes = "Theme.RoutesComponent",
|
|
7
|
+
NavItems = "Theme.NavItemsComponent",
|
|
8
|
+
CurrentUser = "Theme.CurrentUserComponent",
|
|
9
|
+
Languages = "Theme.LanguagesComponent"
|
|
10
|
+
}
|
package/lib/enums/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './components';
|
|
2
|
-
export * from './user-menu-items';
|
|
1
|
+
export * from './components';
|
|
2
|
+
export * from './user-menu-items';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const enum eUserMenuItems {
|
|
2
|
-
MyAccount = "UserMenu.MyAccount",
|
|
3
|
-
Logout = "UserMenu.Logout"
|
|
4
|
-
}
|
|
1
|
+
export declare const enum eUserMenuItems {
|
|
2
|
+
MyAccount = "UserMenu.MyAccount",
|
|
3
|
+
Logout = "UserMenu.Logout"
|
|
4
|
+
}
|
package/lib/handlers/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './lazy-style.handler';
|
|
1
|
+
export * from './lazy-style.handler';
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { LocaleDirection } from '@abp/ng.theme.shared';
|
|
2
|
-
import { Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare const BOOTSTRAP = "bootstrap-{{dir}}.min.css";
|
|
5
|
-
export declare class LazyStyleHandler {
|
|
6
|
-
private lazyLoad;
|
|
7
|
-
private styles;
|
|
8
|
-
private _dir;
|
|
9
|
-
readonly loaded: Map<string, HTMLLinkElement>;
|
|
10
|
-
set dir(dir: LocaleDirection);
|
|
11
|
-
get dir(): LocaleDirection;
|
|
12
|
-
constructor(injector: Injector);
|
|
13
|
-
private getHrefFromLink;
|
|
14
|
-
private getLoadedBootstrap;
|
|
15
|
-
private listenToDirectionChanges;
|
|
16
|
-
private setLazyLoad;
|
|
17
|
-
private setStyles;
|
|
18
|
-
private switchCSS;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LazyStyleHandler, never>;
|
|
20
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LazyStyleHandler>;
|
|
21
|
-
}
|
|
22
|
-
export declare function createLazyStyleHref(style: string, dir: string): string;
|
|
23
|
-
export declare function initLazyStyleHandler(injector: Injector): () => LazyStyleHandler;
|
|
1
|
+
import { LocaleDirection } from '@abp/ng.theme.shared';
|
|
2
|
+
import { Injector } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const BOOTSTRAP = "bootstrap-{{dir}}.min.css";
|
|
5
|
+
export declare class LazyStyleHandler {
|
|
6
|
+
private lazyLoad;
|
|
7
|
+
private styles;
|
|
8
|
+
private _dir;
|
|
9
|
+
readonly loaded: Map<string, HTMLLinkElement>;
|
|
10
|
+
set dir(dir: LocaleDirection);
|
|
11
|
+
get dir(): LocaleDirection;
|
|
12
|
+
constructor(injector: Injector);
|
|
13
|
+
private getHrefFromLink;
|
|
14
|
+
private getLoadedBootstrap;
|
|
15
|
+
private listenToDirectionChanges;
|
|
16
|
+
private setLazyLoad;
|
|
17
|
+
private setStyles;
|
|
18
|
+
private switchCSS;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LazyStyleHandler, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LazyStyleHandler>;
|
|
21
|
+
}
|
|
22
|
+
export declare function createLazyStyleHref(style: string, dir: string): string;
|
|
23
|
+
export declare function initLazyStyleHandler(injector: Injector): () => LazyStyleHandler;
|
package/lib/models/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './layout';
|
|
1
|
+
export * from './layout';
|
package/lib/models/layout.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { TemplateRef } from '@angular/core';
|
|
2
|
-
export declare namespace Layout {
|
|
3
|
-
interface State {
|
|
4
|
-
navigationElements: NavigationElement[];
|
|
5
|
-
}
|
|
6
|
-
interface NavigationElement {
|
|
7
|
-
name: string;
|
|
8
|
-
element: TemplateRef<any>;
|
|
9
|
-
order?: number;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
export declare namespace Layout {
|
|
3
|
+
interface State {
|
|
4
|
+
navigationElements: NavigationElement[];
|
|
5
|
+
}
|
|
6
|
+
interface NavigationElement {
|
|
7
|
+
name: string;
|
|
8
|
+
element: TemplateRef<any>;
|
|
9
|
+
order?: number;
|
|
10
|
+
}
|
|
11
|
+
}
|
package/lib/providers/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './nav-item.provider';
|
|
2
|
-
export * from './styles.provider';
|
|
3
|
-
export * from './user-menu.provider';
|
|
1
|
+
export * from './nav-item.provider';
|
|
2
|
+
export * from './styles.provider';
|
|
3
|
+
export * from './user-menu.provider';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { NavItemsService } from '@abp/ng.theme.shared';
|
|
2
|
-
export declare const BASIC_THEME_NAV_ITEM_PROVIDERS: {
|
|
3
|
-
provide: import("@angular/core").InjectionToken<readonly (() => void | import("rxjs").Observable<unknown> | Promise<unknown>)[]>;
|
|
4
|
-
useFactory: typeof configureNavItems;
|
|
5
|
-
deps: (typeof NavItemsService)[];
|
|
6
|
-
multi: boolean;
|
|
7
|
-
}[];
|
|
8
|
-
export declare function configureNavItems(navItems: NavItemsService): () => void;
|
|
1
|
+
import { NavItemsService } from '@abp/ng.theme.shared';
|
|
2
|
+
export declare const BASIC_THEME_NAV_ITEM_PROVIDERS: {
|
|
3
|
+
provide: import("@angular/core").InjectionToken<readonly (() => void | import("rxjs").Observable<unknown> | Promise<unknown>)[]>;
|
|
4
|
+
useFactory: typeof configureNavItems;
|
|
5
|
+
deps: (typeof NavItemsService)[];
|
|
6
|
+
multi: boolean;
|
|
7
|
+
}[];
|
|
8
|
+
export declare function configureNavItems(navItems: NavItemsService): () => void;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { DomInsertionService, ReplaceableComponentsService } from '@abp/ng.core';
|
|
2
|
-
export declare const BASIC_THEME_STYLES_PROVIDERS: {
|
|
3
|
-
provide: import("@angular/core").InjectionToken<readonly (() => void | import("rxjs").Observable<unknown> | Promise<unknown>)[]>;
|
|
4
|
-
useFactory: typeof configureStyles;
|
|
5
|
-
deps: (typeof ReplaceableComponentsService | typeof DomInsertionService)[];
|
|
6
|
-
multi: boolean;
|
|
7
|
-
}[];
|
|
8
|
-
export declare function configureStyles(domInsertion: DomInsertionService, replaceableComponents: ReplaceableComponentsService): () => void;
|
|
1
|
+
import { DomInsertionService, ReplaceableComponentsService } from '@abp/ng.core';
|
|
2
|
+
export declare const BASIC_THEME_STYLES_PROVIDERS: {
|
|
3
|
+
provide: import("@angular/core").InjectionToken<readonly (() => void | import("rxjs").Observable<unknown> | Promise<unknown>)[]>;
|
|
4
|
+
useFactory: typeof configureStyles;
|
|
5
|
+
deps: (typeof ReplaceableComponentsService | typeof DomInsertionService)[];
|
|
6
|
+
multi: boolean;
|
|
7
|
+
}[];
|
|
8
|
+
export declare function configureStyles(domInsertion: DomInsertionService, replaceableComponents: ReplaceableComponentsService): () => void;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Injector } from '@angular/core';
|
|
2
|
-
export declare const BASIC_THEME_USER_MENU_PROVIDERS: {
|
|
3
|
-
provide: import("@angular/core").InjectionToken<readonly (() => void | import("rxjs").Observable<unknown> | Promise<unknown>)[]>;
|
|
4
|
-
useFactory: typeof configureUserMenu;
|
|
5
|
-
deps: (typeof Injector)[];
|
|
6
|
-
multi: boolean;
|
|
7
|
-
}[];
|
|
8
|
-
export declare function configureUserMenu(injector: Injector): () => void;
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
export declare const BASIC_THEME_USER_MENU_PROVIDERS: {
|
|
3
|
+
provide: import("@angular/core").InjectionToken<readonly (() => void | import("rxjs").Observable<unknown> | Promise<unknown>)[]>;
|
|
4
|
+
useFactory: typeof configureUserMenu;
|
|
5
|
+
deps: (typeof Injector)[];
|
|
6
|
+
multi: boolean;
|
|
7
|
+
}[];
|
|
8
|
+
export declare function configureUserMenu(injector: Injector): () => void;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { RouterEvents, SubscriptionService } from '@abp/ng.core';
|
|
2
|
-
import { ChangeDetectorRef } from '@angular/core';
|
|
3
|
-
import { eThemeBasicComponents } from '../enums';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class LayoutService {
|
|
6
|
-
private subscription;
|
|
7
|
-
private cdRef;
|
|
8
|
-
isCollapsed: boolean;
|
|
9
|
-
smallScreen: boolean;
|
|
10
|
-
logoComponentKey: eThemeBasicComponents;
|
|
11
|
-
routesComponentKey: eThemeBasicComponents;
|
|
12
|
-
navItemsComponentKey: eThemeBasicComponents;
|
|
13
|
-
constructor(subscription: SubscriptionService, cdRef: ChangeDetectorRef, routerEvents: RouterEvents);
|
|
14
|
-
private checkWindowWidth;
|
|
15
|
-
subscribeWindowSize(): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutService, never>;
|
|
17
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LayoutService>;
|
|
18
|
-
}
|
|
1
|
+
import { RouterEvents, SubscriptionService } from '@abp/ng.core';
|
|
2
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
3
|
+
import { eThemeBasicComponents } from '../enums';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LayoutService {
|
|
6
|
+
private subscription;
|
|
7
|
+
private cdRef;
|
|
8
|
+
isCollapsed: boolean;
|
|
9
|
+
smallScreen: boolean;
|
|
10
|
+
logoComponentKey: eThemeBasicComponents;
|
|
11
|
+
routesComponentKey: eThemeBasicComponents;
|
|
12
|
+
navItemsComponentKey: eThemeBasicComponents;
|
|
13
|
+
constructor(subscription: SubscriptionService, cdRef: ChangeDetectorRef, routerEvents: RouterEvents);
|
|
14
|
+
private checkWindowWidth;
|
|
15
|
+
subscribeWindowSize(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LayoutService>;
|
|
18
|
+
}
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
-
import { ApplicationLayoutComponent } from './components/application-layout/application-layout.component';
|
|
3
|
-
import { EmptyLayoutComponent } from './components/empty-layout/empty-layout.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
import * as i1 from "./components/application-layout/application-layout.component";
|
|
6
|
-
import * as i2 from "./components/account-layout/account-layout.component";
|
|
7
|
-
import * as i3 from "./components/empty-layout/empty-layout.component";
|
|
8
|
-
import * as i4 from "./components/validation-error/validation-error.component";
|
|
9
|
-
import * as i5 from "./components/logo/logo.component";
|
|
10
|
-
import * as i6 from "./components/nav-items/nav-items.component";
|
|
11
|
-
import * as i7 from "./components/routes/routes.component";
|
|
12
|
-
import * as i8 from "./components/nav-items/current-user.component";
|
|
13
|
-
import * as i9 from "./components/nav-items/languages.component";
|
|
14
|
-
import * as i10 from "./components/page-alert-container/page-alert-container.component";
|
|
15
|
-
import * as i11 from "./components/account-layout/tenant-box/tenant-box.component";
|
|
16
|
-
import * as i12 from "./components/account-layout/auth-wrapper/auth-wrapper.component";
|
|
17
|
-
import * as i13 from "@abp/ng.core";
|
|
18
|
-
import * as i14 from "@abp/ng.theme.shared";
|
|
19
|
-
import * as i15 from "@ng-bootstrap/ng-bootstrap";
|
|
20
|
-
import * as i16 from "@ngx-validate/core";
|
|
21
|
-
export declare const LAYOUTS: (typeof ApplicationLayoutComponent | typeof EmptyLayoutComponent)[];
|
|
22
|
-
export declare class BaseThemeBasicModule {
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseThemeBasicModule, never>;
|
|
24
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BaseThemeBasicModule, [typeof i1.ApplicationLayoutComponent, typeof i2.AccountLayoutComponent, typeof i3.EmptyLayoutComponent, typeof i4.ValidationErrorComponent, typeof i5.LogoComponent, typeof i6.NavItemsComponent, typeof i7.RoutesComponent, typeof i8.CurrentUserComponent, typeof i9.LanguagesComponent, typeof i10.PageAlertContainerComponent, typeof i11.TenantBoxComponent, typeof i12.AuthWrapperComponent], [typeof i13.CoreModule, typeof i14.ThemeSharedModule, typeof i15.NgbCollapseModule, typeof i15.NgbDropdownModule, typeof i16.NgxValidateCoreModule], [typeof i1.ApplicationLayoutComponent, typeof i2.AccountLayoutComponent, typeof i3.EmptyLayoutComponent, typeof i4.ValidationErrorComponent, typeof i5.LogoComponent, typeof i6.NavItemsComponent, typeof i7.RoutesComponent, typeof i8.CurrentUserComponent, typeof i9.LanguagesComponent, typeof i10.PageAlertContainerComponent]>;
|
|
25
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<BaseThemeBasicModule>;
|
|
26
|
-
}
|
|
27
|
-
export declare class ThemeBasicModule {
|
|
28
|
-
static forRoot(): ModuleWithProviders<ThemeBasicModule>;
|
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeBasicModule, never>;
|
|
30
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ThemeBasicModule, never, [typeof BaseThemeBasicModule], [typeof BaseThemeBasicModule]>;
|
|
31
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ThemeBasicModule>;
|
|
32
|
-
}
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import { ApplicationLayoutComponent } from './components/application-layout/application-layout.component';
|
|
3
|
+
import { EmptyLayoutComponent } from './components/empty-layout/empty-layout.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "./components/application-layout/application-layout.component";
|
|
6
|
+
import * as i2 from "./components/account-layout/account-layout.component";
|
|
7
|
+
import * as i3 from "./components/empty-layout/empty-layout.component";
|
|
8
|
+
import * as i4 from "./components/validation-error/validation-error.component";
|
|
9
|
+
import * as i5 from "./components/logo/logo.component";
|
|
10
|
+
import * as i6 from "./components/nav-items/nav-items.component";
|
|
11
|
+
import * as i7 from "./components/routes/routes.component";
|
|
12
|
+
import * as i8 from "./components/nav-items/current-user.component";
|
|
13
|
+
import * as i9 from "./components/nav-items/languages.component";
|
|
14
|
+
import * as i10 from "./components/page-alert-container/page-alert-container.component";
|
|
15
|
+
import * as i11 from "./components/account-layout/tenant-box/tenant-box.component";
|
|
16
|
+
import * as i12 from "./components/account-layout/auth-wrapper/auth-wrapper.component";
|
|
17
|
+
import * as i13 from "@abp/ng.core";
|
|
18
|
+
import * as i14 from "@abp/ng.theme.shared";
|
|
19
|
+
import * as i15 from "@ng-bootstrap/ng-bootstrap";
|
|
20
|
+
import * as i16 from "@ngx-validate/core";
|
|
21
|
+
export declare const LAYOUTS: (typeof ApplicationLayoutComponent | typeof EmptyLayoutComponent)[];
|
|
22
|
+
export declare class BaseThemeBasicModule {
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseThemeBasicModule, never>;
|
|
24
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BaseThemeBasicModule, [typeof i1.ApplicationLayoutComponent, typeof i2.AccountLayoutComponent, typeof i3.EmptyLayoutComponent, typeof i4.ValidationErrorComponent, typeof i5.LogoComponent, typeof i6.NavItemsComponent, typeof i7.RoutesComponent, typeof i8.CurrentUserComponent, typeof i9.LanguagesComponent, typeof i10.PageAlertContainerComponent, typeof i11.TenantBoxComponent, typeof i12.AuthWrapperComponent], [typeof i13.CoreModule, typeof i14.ThemeSharedModule, typeof i15.NgbCollapseModule, typeof i15.NgbDropdownModule, typeof i16.NgxValidateCoreModule], [typeof i1.ApplicationLayoutComponent, typeof i2.AccountLayoutComponent, typeof i3.EmptyLayoutComponent, typeof i4.ValidationErrorComponent, typeof i5.LogoComponent, typeof i6.NavItemsComponent, typeof i7.RoutesComponent, typeof i8.CurrentUserComponent, typeof i9.LanguagesComponent, typeof i10.PageAlertContainerComponent]>;
|
|
25
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BaseThemeBasicModule>;
|
|
26
|
+
}
|
|
27
|
+
export declare class ThemeBasicModule {
|
|
28
|
+
static forRoot(): ModuleWithProviders<ThemeBasicModule>;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeBasicModule, never>;
|
|
30
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ThemeBasicModule, never, [typeof BaseThemeBasicModule], [typeof BaseThemeBasicModule]>;
|
|
31
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ThemeBasicModule>;
|
|
32
|
+
}
|
package/lib/tokens/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './lazy-styles.token';
|
|
1
|
+
export * from './lazy-styles.token';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
|
-
export declare const LAZY_STYLES: InjectionToken<string[]>;
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
export declare const LAZY_STYLES: InjectionToken<string[]>;
|
package/package.json
CHANGED
|
@@ -1,24 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abp/ng.theme.basic",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0-rc.1",
|
|
4
4
|
"homepage": "https://abp.io",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/abpframework/abp.git"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@abp/ng.account.core": "~7.
|
|
11
|
-
"@abp/ng.theme.shared": "~7.
|
|
10
|
+
"@abp/ng.account.core": "~7.3.0-rc.1",
|
|
11
|
+
"@abp/ng.theme.shared": "~7.3.0-rc.1",
|
|
12
12
|
"tslib": "^2.0.0"
|
|
13
13
|
},
|
|
14
14
|
"publishConfig": {
|
|
15
15
|
"access": "public"
|
|
16
16
|
},
|
|
17
|
-
"module": "
|
|
18
|
-
"es2020": "fesm2020/abp-ng.theme.basic.mjs",
|
|
19
|
-
"esm2020": "esm2020/abp-ng.theme.basic.mjs",
|
|
20
|
-
"fesm2020": "fesm2020/abp-ng.theme.basic.mjs",
|
|
21
|
-
"fesm2015": "fesm2015/abp-ng.theme.basic.mjs",
|
|
17
|
+
"module": "fesm2022/abp-ng.theme.basic.mjs",
|
|
22
18
|
"typings": "index.d.ts",
|
|
23
19
|
"exports": {
|
|
24
20
|
"./package.json": {
|
|
@@ -26,23 +22,19 @@
|
|
|
26
22
|
},
|
|
27
23
|
".": {
|
|
28
24
|
"types": "./index.d.ts",
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"node": "./fesm2015/abp-ng.theme.basic.mjs",
|
|
33
|
-
"default": "./fesm2020/abp-ng.theme.basic.mjs"
|
|
25
|
+
"esm2022": "./esm2022/abp-ng.theme.basic.mjs",
|
|
26
|
+
"esm": "./esm2022/abp-ng.theme.basic.mjs",
|
|
27
|
+
"default": "./fesm2022/abp-ng.theme.basic.mjs"
|
|
34
28
|
},
|
|
35
29
|
"./testing": {
|
|
36
30
|
"types": "./testing/index.d.ts",
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"node": "./fesm2015/abp-ng.theme.basic-testing.mjs",
|
|
41
|
-
"default": "./fesm2020/abp-ng.theme.basic-testing.mjs"
|
|
31
|
+
"esm2022": "./esm2022/testing/abp-ng.theme.basic-testing.mjs",
|
|
32
|
+
"esm": "./esm2022/testing/abp-ng.theme.basic-testing.mjs",
|
|
33
|
+
"default": "./fesm2022/abp-ng.theme.basic-testing.mjs"
|
|
42
34
|
}
|
|
43
35
|
},
|
|
44
36
|
"sideEffects": false,
|
|
45
37
|
"peerDependencies": {
|
|
46
|
-
"@abp/ng.core": "7.
|
|
38
|
+
"@abp/ng.core": "7.3.0-rc.1"
|
|
47
39
|
}
|
|
48
40
|
}
|
package/public-api.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from './lib/components';
|
|
2
|
-
export * from './lib/enums';
|
|
3
|
-
export * from './lib/handlers';
|
|
4
|
-
export * from './lib/models';
|
|
5
|
-
export * from './lib/providers';
|
|
6
|
-
export * from './lib/theme-basic.module';
|
|
7
|
-
export * from './lib/tokens';
|
|
1
|
+
export * from './lib/components';
|
|
2
|
+
export * from './lib/enums';
|
|
3
|
+
export * from './lib/handlers';
|
|
4
|
+
export * from './lib/models';
|
|
5
|
+
export * from './lib/providers';
|
|
6
|
+
export * from './lib/theme-basic.module';
|
|
7
|
+
export * from './lib/tokens';
|
package/testing/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
/// <amd-module name="@abp/ng.theme.basic/testing" />
|
|
5
|
-
export * from './public-api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
/// <amd-module name="@abp/ng.theme.basic/testing" />
|
|
5
|
+
export * from './public-api';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@abp/ng.theme.basic";
|
|
4
|
-
export declare class ThemeBasicTestingModule {
|
|
5
|
-
static withConfig(): ModuleWithProviders<ThemeBasicTestingModule>;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeBasicTestingModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ThemeBasicTestingModule, never, [typeof i1.BaseThemeBasicModule], [typeof i1.BaseThemeBasicModule]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ThemeBasicTestingModule>;
|
|
9
|
-
}
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@abp/ng.theme.basic";
|
|
4
|
+
export declare class ThemeBasicTestingModule {
|
|
5
|
+
static withConfig(): ModuleWithProviders<ThemeBasicTestingModule>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeBasicTestingModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ThemeBasicTestingModule, never, [typeof i1.BaseThemeBasicModule], [typeof i1.BaseThemeBasicModule]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ThemeBasicTestingModule>;
|
|
9
|
+
}
|
package/testing/public-api.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './lib/theme-basic-testing.module';
|
|
1
|
+
export * from './lib/theme-basic-testing.module';
|