@indice/ng-components 0.3.2-beta.60 → 0.3.2-beta.63
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/controls/nav-links-list/nav-links-list.component.mjs +3 -3
- package/esm2022/lib/controls/side-pane/side-pane.component.mjs +5 -2
- package/esm2022/lib/layouts/shell/shell-layout/shell-layout.component.mjs +1 -1
- package/esm2022/lib/layouts/views/form-layout/form-layout.component.mjs +1 -1
- package/esm2022/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +3 -3
- package/esm2022/lib/types.mjs +9 -1
- package/fesm2022/indice-ng-components.mjs +19 -8
- package/fesm2022/indice-ng-components.mjs.map +1 -1
- package/lib/controls/side-pane/side-pane.component.d.ts +3 -1
- package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +2 -0
- package/lib/types.d.ts +6 -0
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SidePaneSize } from './../../types';
|
|
1
2
|
import { Router } from '@angular/router';
|
|
2
3
|
import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
@@ -7,6 +8,7 @@ export declare class SidePaneComponent implements OnInit, OnDestroy {
|
|
|
7
8
|
protected showPane: boolean;
|
|
8
9
|
sizeContainerStyle: string;
|
|
9
10
|
overlayStyle: string;
|
|
11
|
+
size: SidePaneSize | undefined;
|
|
10
12
|
onComplete: EventEmitter<boolean>;
|
|
11
13
|
onOpen: EventEmitter<any>;
|
|
12
14
|
onClose: EventEmitter<any>;
|
|
@@ -18,5 +20,5 @@ export declare class SidePaneComponent implements OnInit, OnDestroy {
|
|
|
18
20
|
show(): void;
|
|
19
21
|
hide(): void;
|
|
20
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidePaneComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": { "alias": "visible"; "required": false; }; }, { "onComplete": "onComplete"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, ["*"], false, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": { "alias": "visible"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "onComplete": "onComplete"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, ["*"], false, never>;
|
|
22
24
|
}
|
|
@@ -10,12 +10,14 @@ export declare class ModelViewLayoutComponent implements OnInit, OnDestroy {
|
|
|
10
10
|
showRightPaneSM: boolean;
|
|
11
11
|
title: string;
|
|
12
12
|
primary: {
|
|
13
|
+
type?: string;
|
|
13
14
|
text: string;
|
|
14
15
|
link: string;
|
|
15
16
|
icon?: string;
|
|
16
17
|
exact?: boolean;
|
|
17
18
|
}[] | null;
|
|
18
19
|
secondary: {
|
|
20
|
+
type?: string;
|
|
19
21
|
text: string;
|
|
20
22
|
link: string;
|
|
21
23
|
icon?: string;
|
package/lib/types.d.ts
CHANGED
|
@@ -46,6 +46,12 @@ export declare class NotificationNavLink extends NavLink {
|
|
|
46
46
|
creationDate?: Date | undefined;
|
|
47
47
|
constructor(text: string, path: string, isRead: boolean, creationDate?: Date | undefined);
|
|
48
48
|
}
|
|
49
|
+
export declare class NavLinkSeparator extends NavLink {
|
|
50
|
+
isRead: boolean;
|
|
51
|
+
creationDate?: Date | undefined;
|
|
52
|
+
constructor(text: string, path: string, isRead: boolean, creationDate?: Date | undefined);
|
|
53
|
+
type: string;
|
|
54
|
+
}
|
|
49
55
|
export declare class ViewAction {
|
|
50
56
|
type: string;
|
|
51
57
|
key: string | null;
|