@indice/ng-components 0.2.172-beta.8 → 0.2.173-beta.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.
- package/_styles.scss +16 -8
- package/esm2020/lib/controls/kpi-tile/kpi-tile.component.mjs +3 -3
- package/esm2020/lib/controls/list-view/list-view.component.mjs +2 -2
- package/esm2020/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.mjs +3 -3
- package/esm2020/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +50 -7
- package/esm2020/lib/services/modal-service/modal-service.mjs +2 -1
- package/fesm2015/indice-ng-components.mjs +51 -10
- package/fesm2015/indice-ng-components.mjs.map +1 -1
- package/fesm2020/indice-ng-components.mjs +51 -10
- package/fesm2020/indice-ng-components.mjs.map +1 -1
- package/lib/controls/kpi-tile/kpi-tile.component.d.ts +1 -1
- package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +18 -4
- package/package.json +1 -1
|
@@ -11,5 +11,5 @@ export declare class KpiTileComponent implements OnInit {
|
|
|
11
11
|
ngOnInit(): void;
|
|
12
12
|
emitTileAction($event: any): boolean;
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<KpiTileComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KpiTileComponent, "lib-kpi-tile", never, { "title": "title"; "busy": "busy"; "kpi": "kpi"; "hideBtn": "hideBtn"; "actionText": "action-text"; }, { "tileAction": "tile-action"; }, never,
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KpiTileComponent, "lib-kpi-tile", never, { "title": "title"; "busy": "busy"; "kpi": "kpi"; "hideBtn": "hideBtn"; "actionText": "action-text"; }, { "tileAction": "tile-action"; }, never, ["*"], false>;
|
|
15
15
|
}
|
|
@@ -1,28 +1,42 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { Location } from '@angular/common';
|
|
3
|
-
import { HeaderMetaItem, ViewAction } from '../../../types';
|
|
3
|
+
import { HeaderMetaItem, MenuOption, ViewAction } from '../../../types';
|
|
4
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ModelViewLayoutComponent implements OnInit {
|
|
6
|
+
export declare class ModelViewLayoutComponent implements OnInit, OnDestroy {
|
|
6
7
|
private location;
|
|
8
|
+
private router;
|
|
9
|
+
private route;
|
|
7
10
|
showRightPaneSM: boolean;
|
|
8
11
|
title: string;
|
|
9
12
|
primary: {
|
|
10
13
|
text: string;
|
|
11
14
|
link: string;
|
|
15
|
+
icon?: string;
|
|
16
|
+
exact?: boolean;
|
|
12
17
|
}[] | null;
|
|
13
18
|
secondary: {
|
|
14
19
|
text: string;
|
|
15
20
|
link: string;
|
|
21
|
+
icon?: string;
|
|
22
|
+
exact?: boolean;
|
|
16
23
|
}[] | null;
|
|
17
24
|
metaItems: HeaderMetaItem[] | null;
|
|
18
25
|
icon: string | null;
|
|
19
26
|
busy: boolean;
|
|
20
27
|
actions: ViewAction[] | null;
|
|
21
|
-
|
|
28
|
+
private optionsLoaded;
|
|
29
|
+
private _options;
|
|
30
|
+
selectedTab: any;
|
|
31
|
+
private selectedTabSub$;
|
|
32
|
+
get tabsOptions(): MenuOption[];
|
|
33
|
+
constructor(location: Location, router: Router, route: ActivatedRoute);
|
|
22
34
|
ngOnInit(): void;
|
|
35
|
+
ngOnDestroy(): void;
|
|
23
36
|
onSidePaneActivated($event: any): void;
|
|
24
37
|
onSidePaneDeactivated($event: any): void;
|
|
25
38
|
closeSidePane(): void;
|
|
39
|
+
navigateLink(link: any): void;
|
|
26
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelViewLayoutComponent, never>;
|
|
27
41
|
static ɵcmp: i0.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": "title"; "primary": "primary-links"; "secondary": "secondary-links"; "metaItems": "meta-items"; "icon": "icon"; "busy": "busy"; "actions": "actions"; }, {}, never, ["*"], false>;
|
|
28
42
|
}
|