@messaia/cdk 13.3.0-rc14 → 13.3.0-rc15
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/layout/layout-nav/layout-nav.component.mjs +11 -8
- package/fesm2015/messaia-cdk.mjs +9 -6
- package/fesm2015/messaia-cdk.mjs.map +1 -1
- package/fesm2020/messaia-cdk.mjs +9 -6
- package/fesm2020/messaia-cdk.mjs.map +1 -1
- package/lib/layout/layout-nav/layout-nav.component.d.ts +4 -3
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { Router } from '@angular/router';
|
|
1
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class VdLayoutNavComponent {
|
|
4
4
|
private router;
|
|
5
|
+
protected route: ActivatedRoute;
|
|
5
6
|
/**
|
|
6
7
|
* toolbarTitle?: string
|
|
7
8
|
*
|
|
@@ -56,7 +57,7 @@ export declare class VdLayoutNavComponent {
|
|
|
56
57
|
* Constructor
|
|
57
58
|
* @param router
|
|
58
59
|
*/
|
|
59
|
-
constructor(router: Router);
|
|
60
|
+
constructor(router: Router, route: ActivatedRoute);
|
|
60
61
|
/**
|
|
61
62
|
* Handles click event on back navigation title
|
|
62
63
|
*/
|
|
@@ -65,6 +66,6 @@ export declare class VdLayoutNavComponent {
|
|
|
65
66
|
* Handles click event on navigation title
|
|
66
67
|
*/
|
|
67
68
|
handleNavigationClick(): void;
|
|
68
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<VdLayoutNavComponent, [{ optional: true; }]>;
|
|
69
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VdLayoutNavComponent, [{ optional: true; }, { optional: true; }]>;
|
|
69
70
|
static ɵcmp: i0.ɵɵComponentDeclaration<VdLayoutNavComponent, "vd-layout-nav", never, { "toolbarTitle": "toolbarTitle"; "icon": "icon"; "logo": "logo"; "color": "color"; "showToggle": "showToggle"; "backNavigationRoute": "backNavigationRoute"; "navigationRoute": "navigationRoute"; }, {}, never, ["[vd-menu-button]", "[vd-toolbar-content]", "[vd-toolbar-content-right]", "*", "vd-layout-footer"]>;
|
|
70
71
|
}
|