@indice/ng-components 0.3.2-beta.50 → 0.3.2-beta.51
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/esm2022/lib/layouts/shell/shell-header/shell-header.component.mjs +6 -3
- package/esm2022/lib/layouts/shell/shell-layout/shell-layout.component.mjs +7 -5
- package/esm2022/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.mjs +6 -3
- package/esm2022/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.mjs +1 -1
- package/esm2022/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +4 -2
- package/fesm2022/indice-ng-components.mjs +20 -10
- package/fesm2022/indice-ng-components.mjs.map +1 -1
- package/lib/layouts/shell/shell-header/shell-header.component.d.ts +2 -1
- package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +2 -1
- package/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.d.ts +3 -2
- package/package.json +1 -1
|
@@ -18,6 +18,7 @@ export declare class ShellHeaderComponent implements OnInit, OnDestroy {
|
|
|
18
18
|
showAlerts: boolean | undefined;
|
|
19
19
|
showLangs: boolean | undefined;
|
|
20
20
|
border: boolean;
|
|
21
|
+
busy: boolean;
|
|
21
22
|
sectionLinks: Observable<NavLink[]>;
|
|
22
23
|
mobileMenuExpanded: boolean;
|
|
23
24
|
userMenuExpanded: boolean;
|
|
@@ -35,5 +36,5 @@ export declare class ShellHeaderComponent implements OnInit, OnDestroy {
|
|
|
35
36
|
signin(event: any | null | undefined): void;
|
|
36
37
|
private setCurrentUser;
|
|
37
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellHeaderComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": { "alias": "section-links"; "required": false; }; "profileMenuVisible": { "alias": "profile-menu"; "required": false; }; "showUserNameOnHeader": { "alias": "show-userName"; "required": false; }; "showAlerts": { "alias": "show-alerts"; "required": false; }; "showLangs": { "alias": "show-langs"; "required": false; }; "border": { "alias": "border"; "required": false; }; }, {}, never, never, false, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": { "alias": "section-links"; "required": false; }; "profileMenuVisible": { "alias": "profile-menu"; "required": false; }; "showUserNameOnHeader": { "alias": "show-userName"; "required": false; }; "showAlerts": { "alias": "show-alerts"; "required": false; }; "showLangs": { "alias": "show-langs"; "required": false; }; "border": { "alias": "border"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; }, {}, never, never, false, never>;
|
|
39
40
|
}
|
|
@@ -8,6 +8,7 @@ export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterVie
|
|
|
8
8
|
private _componentLoaderFactory;
|
|
9
9
|
private _config;
|
|
10
10
|
private _dynamicComponentHosts;
|
|
11
|
+
busy: boolean;
|
|
11
12
|
private _routerSub$;
|
|
12
13
|
constructor(_router: Router, _componentLoaderFactory: ComponentLoaderFactory, _config: IShellConfig | undefined);
|
|
13
14
|
sidebarFooterTemplate?: TemplateRef<any>;
|
|
@@ -22,5 +23,5 @@ export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterVie
|
|
|
22
23
|
ngOnDestroy(): void;
|
|
23
24
|
private loadCustomComponent;
|
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellLayoutComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, { "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, { "busy": { "alias": "busy"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
27
|
}
|
|
@@ -4,12 +4,13 @@ import { UserSettingsService } from '../../../services/user-settings.service';
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ShellSidebarLayoutComponent implements OnInit {
|
|
6
6
|
private _userSettings;
|
|
7
|
-
constructor(_userSettings: UserSettingsService);
|
|
8
7
|
config: IShellConfig | undefined;
|
|
9
8
|
sidebarFooterTemplate?: TemplateRef<any>;
|
|
9
|
+
busy: boolean;
|
|
10
|
+
constructor(_userSettings: UserSettingsService);
|
|
10
11
|
showMobileSidebar: boolean;
|
|
11
12
|
ngOnInit(): void;
|
|
12
13
|
toggleMobileSidebar(): void;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarLayoutComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarLayoutComponent, "lib-shell-sidebar-layout", never, { "config": { "alias": "config"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarLayoutComponent, "lib-shell-sidebar-layout", never, { "config": { "alias": "config"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
16
|
}
|