@messaia/cdk 13.3.2 → 13.3.3-rc01
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/lib/base/components/generic-form-base.component.mjs +5 -1
- package/esm2020/lib/layout/layout-nav/layout-nav.component.mjs +18 -7
- package/fesm2015/messaia-cdk.mjs +16 -2
- package/fesm2015/messaia-cdk.mjs.map +1 -1
- package/fesm2020/messaia-cdk.mjs +16 -2
- package/fesm2020/messaia-cdk.mjs.map +1 -1
- package/lib/layout/layout-nav/layout-nav.component.d.ts +15 -1
- package/package.json +1 -1
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { MenuItem } from '../../menu/models/menu-item';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
export declare class VdLayoutNavComponent {
|
|
4
6
|
private router;
|
|
@@ -9,6 +11,18 @@ export declare class VdLayoutNavComponent {
|
|
|
9
11
|
* Title set in toolbar.
|
|
10
12
|
*/
|
|
11
13
|
toolbarTitle: string;
|
|
14
|
+
/**
|
|
15
|
+
* editMode?: boolean
|
|
16
|
+
*/
|
|
17
|
+
editMode?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* menuItems: MenuItem[]
|
|
20
|
+
*/
|
|
21
|
+
menuItems: MenuItem[];
|
|
22
|
+
/**
|
|
23
|
+
* reload: EventEmitter<any>
|
|
24
|
+
*/
|
|
25
|
+
reload: EventEmitter<any>;
|
|
12
26
|
/**
|
|
13
27
|
* icon?: string
|
|
14
28
|
*
|
|
@@ -67,5 +81,5 @@ export declare class VdLayoutNavComponent {
|
|
|
67
81
|
*/
|
|
68
82
|
handleNavigationClick(): void;
|
|
69
83
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdLayoutNavComponent, [{ optional: true; }, { optional: true; }]>;
|
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VdLayoutNavComponent, "vd-layout-nav", never, { "toolbarTitle": "toolbarTitle"; "icon": "icon"; "logo": "logo"; "color": "color"; "hideToggle": "hideToggle"; "backNavigationRoute": "backNavigationRoute"; "navigationRoute": "navigationRoute"; }, {}, never, ["[vd-menu-button]", "[vd-toolbar-content]", "[vd-toolbar-content-right]", "*", "vd-layout-footer"]>;
|
|
84
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VdLayoutNavComponent, "vd-layout-nav", never, { "toolbarTitle": "toolbarTitle"; "editMode": "editMode"; "menuItems": "menuItems"; "icon": "icon"; "logo": "logo"; "color": "color"; "hideToggle": "hideToggle"; "backNavigationRoute": "backNavigationRoute"; "navigationRoute": "navigationRoute"; }, { "reload": "reload"; }, never, ["[vd-menu-button]", "[vd-toolbar-content]", "[vd-toolbar-content-right]", "*", "vd-layout-footer"]>;
|
|
71
85
|
}
|