@alauda/ui 5.7.7-beta.8 → 5.7.7-beta.9
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/alauda-ui.metadata.json +1 -1
- package/bundles/alauda-ui.umd.js +270 -90
- package/bundles/alauda-ui.umd.js.map +1 -1
- package/bundles/alauda-ui.umd.min.js +1 -1
- package/bundles/alauda-ui.umd.min.js.map +1 -1
- package/esm2015/alauda-ui.ngsummary.json +1 -1
- package/esm2015/icon/icons.js +2 -2
- package/esm2015/icon/icons.ngsummary.json +1 -1
- package/esm2015/nav-menu/nav-item/nav-item.component.js +76 -0
- package/esm2015/nav-menu/nav-item/nav-item.component.ngfactory.js +17 -0
- package/esm2015/nav-menu/nav-item/nav-item.component.ngsummary.json +1 -0
- package/esm2015/nav-menu/nav-item-group/nav-item-group.component.js +32 -0
- package/esm2015/nav-menu/nav-item-group/nav-item-group.component.ngfactory.js +16 -0
- package/esm2015/nav-menu/nav-item-group/nav-item-group.component.ngsummary.json +1 -0
- package/esm2015/nav-menu/nav-item-li/nav-item-li.component.js +13 -34
- package/esm2015/nav-menu/nav-item-li/nav-item-li.component.ngfactory.js +14 -32
- package/esm2015/nav-menu/nav-item-li/nav-item-li.component.ngsummary.json +1 -1
- package/esm2015/nav-menu/nav-item-li/nav-item-li.component.scss.ngstyle.js +1 -1
- package/esm2015/nav-menu/nav-item-ul/nav-item-ul.component.js +4 -4
- package/esm2015/nav-menu/nav-item-ul/nav-item-ul.component.ngfactory.js +2 -2
- package/esm2015/nav-menu/nav-item-ul/nav-item-ul.component.scss.ngstyle.js +1 -1
- package/esm2015/nav-menu/nav-menu.component.js +38 -40
- package/esm2015/nav-menu/nav-menu.component.ngfactory.js +5 -5
- package/esm2015/nav-menu/nav-menu.component.ngsummary.json +1 -1
- package/esm2015/nav-menu/nav-menu.component.scss.ngstyle.js +1 -1
- package/esm2015/nav-menu/nav-menu.module.js +21 -3
- package/esm2015/nav-menu/nav-menu.module.ngfactory.js +1 -1
- package/esm2015/nav-menu/nav-menu.module.ngsummary.json +1 -1
- package/esm2015/nav-menu/nav-menu.types.js +1 -1
- package/esm2015/nav-menu/platform-nav/platform-nav.component.js +56 -0
- package/esm2015/nav-menu/platform-nav/platform-nav.component.ngfactory.js +65 -0
- package/esm2015/nav-menu/platform-nav/platform-nav.component.ngsummary.json +1 -0
- package/esm2015/nav-menu/platform-nav/platform-nav.component.scss.ngstyle.js +9 -0
- package/esm2015/nav-menu/platform-nav.module.js +15 -0
- package/esm2015/nav-menu/platform-nav.module.ngfactory.js +24 -0
- package/esm2015/nav-menu/platform-nav.module.ngsummary.json +1 -0
- package/esm2015/nav-menu/public-api.js +5 -1
- package/esm2015/nav-menu/public-api.ngsummary.json +1 -1
- package/esm2015/page/page.component.js +1 -1
- package/esm2015/page/page.component.scss.ngstyle.js +1 -1
- package/esm2015/public-api.ngsummary.json +1 -1
- package/fesm2015/alauda-ui.js +238 -78
- package/fesm2015/alauda-ui.js.map +1 -1
- package/icon/icons.d.ts +1 -1
- package/nav-menu/nav-item/nav-item.component.d.ts +24 -0
- package/nav-menu/nav-item/nav-item.component.ngfactory.d.ts +1 -0
- package/nav-menu/nav-item-group/nav-item-group.component.d.ts +10 -0
- package/nav-menu/nav-item-group/nav-item-group.component.ngfactory.d.ts +1 -0
- package/nav-menu/nav-item-li/nav-item-li.component.d.ts +4 -10
- package/nav-menu/nav-item-ul/nav-item-ul.component.d.ts +7 -6
- package/nav-menu/nav-menu.component.d.ts +14 -13
- package/nav-menu/nav-menu.types.d.ts +2 -3
- package/nav-menu/platform-nav/platform-nav.component.d.ts +20 -0
- package/nav-menu/platform-nav/platform-nav.component.ngfactory.d.ts +1 -0
- package/nav-menu/platform-nav/platform-nav.component.scss.ngstyle.d.ts +1 -0
- package/nav-menu/platform-nav.module.d.ts +2 -0
- package/nav-menu/platform-nav.module.ngfactory.d.ts +3 -0
- package/nav-menu/public-api.d.ts +4 -0
- package/package.json +1 -1
- package/theme/_var.scss +21 -1
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, ViewEncapsulation, } from '@angular/core';
|
|
2
|
+
export class PlatformNavComponent {
|
|
3
|
+
constructor() {
|
|
4
|
+
this.mainPanelCollapsed = false;
|
|
5
|
+
this.secondaryPanelCollapsed = false;
|
|
6
|
+
this.hideMainPanelToggle = false;
|
|
7
|
+
this.hideSecondaryPanelToggle = false;
|
|
8
|
+
this.theme = 'dark';
|
|
9
|
+
this.mainPanelCollapsedChange = new EventEmitter();
|
|
10
|
+
this.secondaryPanelCollapsedChange = new EventEmitter();
|
|
11
|
+
this.activatedKeyChange = new EventEmitter();
|
|
12
|
+
this.activatedItemChange = new EventEmitter();
|
|
13
|
+
}
|
|
14
|
+
handleActivatedKeyChange(key) {
|
|
15
|
+
this.activatedKeyChange.emit(key);
|
|
16
|
+
this.activatedItemChange.emit(this.findActivatedItem(key));
|
|
17
|
+
}
|
|
18
|
+
trackByKey(_, item) {
|
|
19
|
+
return item.key;
|
|
20
|
+
}
|
|
21
|
+
findActivatedItem(key) {
|
|
22
|
+
const items = this.items ||
|
|
23
|
+
this.groups.reduce((prevValue, currValue) => [...prevValue, ...currValue.items], []);
|
|
24
|
+
return this.flatItems(items).find(item => item.key === key);
|
|
25
|
+
}
|
|
26
|
+
flatItems(items) {
|
|
27
|
+
return items.reduce((prevValue, currValue) => currValue.children
|
|
28
|
+
? [...prevValue, ...this.flatItems(currValue.children)]
|
|
29
|
+
: [...prevValue, currValue], []);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
PlatformNavComponent.decorators = [
|
|
33
|
+
{ type: Component, args: [{
|
|
34
|
+
selector: 'aui-platform-nav',
|
|
35
|
+
template: "<aui-nav-menu\n class=\"aui-platform-nav\"\n [activatedKey]=\"activatedKey\"\n [mainPanelCollapsed]=\"mainPanelCollapsed\"\n [secondaryPanelCollapsed]=\"secondaryPanelCollapsed\"\n [hideMainPanelToggle]=\"hideMainPanelToggle\"\n [hideSecondaryPanelToggle]=\"hideSecondaryPanelToggle\"\n [theme]=\"theme\"\n (activatedKeyChange)=\"handleActivatedKeyChange($event)\"\n (mainPanelCollapsedChange)=\"mainPanelCollapsedChange.emit($event)\"\n (secondaryPanelCollapsedChange)=\"secondaryPanelCollapsedChange.emit($event)\"\n>\n <ng-container *ngIf=\"items\">\n <aui-nav-item\n *ngFor=\"let item of items; trackBy: trackByKey\"\n [key]=\"item.key\"\n [divider]=\"item.divider\"\n >\n <aui-icon *auiNavItemIcon [icon]=\"item.icon\"></aui-icon>\n <div *auiNavItemContent class=\"aui-platform-nav__item\">\n <div class=\"aui-platform-nav__label\">{{ item.label }}</div>\n <div *ngIf=\"item.stage\" class=\"aui-platform-nav__stage\">\n {{ item.stage }}\n </div>\n </div>\n\n <ng-container *ngIf=\"item.children\">\n <aui-nav-item\n *ngFor=\"let item of item.children; trackBy: trackByKey\"\n [key]=\"item.key\"\n [divider]=\"item.divider\"\n >\n <div *auiNavItemContent class=\"aui-platform-nav__item\">\n <div class=\"aui-platform-nav__label\">{{ item.label }}</div>\n <div *ngIf=\"item.stage\" class=\"aui-platform-nav__stage\">\n {{ item.stage }}\n </div>\n </div>\n\n <ng-container *ngIf=\"item.children\">\n <aui-nav-item\n *ngFor=\"let item of item.children; trackBy: trackByKey\"\n [key]=\"item.key\"\n [divider]=\"item.divider\"\n >\n <div *auiNavItemContent class=\"aui-platform-nav__item\">\n <div class=\"aui-platform-nav__label\">{{ item.label }}</div>\n <div *ngIf=\"item.stage\" class=\"aui-platform-nav__stage\">\n {{ item.stage }}\n </div>\n </div>\n </aui-nav-item>\n </ng-container>\n </aui-nav-item>\n </ng-container>\n </aui-nav-item>\n </ng-container>\n\n <ng-container *ngIf=\"groups\">\n <aui-nav-item-group *ngFor=\"let group of groups\">\n <ng-template *ngIf=\"group.title\" auiNavItemGroupTitle>\n {{ group.title }}\n </ng-template>\n <aui-nav-item\n *ngFor=\"let item of group.items; trackBy: trackByKey\"\n [key]=\"item.key\"\n [divider]=\"item.divider\"\n >\n <aui-icon *auiNavItemIcon [icon]=\"item.icon\"></aui-icon>\n <div *auiNavItemContent class=\"aui-platform-nav__item\">\n <div class=\"aui-platform-nav__label\">{{ item.label }}</div>\n <div *ngIf=\"item.stage\" class=\"aui-platform-nav__stage\">\n {{ item.stage }}\n </div>\n </div>\n\n <ng-container *ngIf=\"item.children\">\n <aui-nav-item\n *ngFor=\"let item of item.children; trackBy: trackByKey\"\n [key]=\"item.key\"\n [divider]=\"item.divider\"\n >\n <div *auiNavItemContent class=\"aui-platform-nav__item\">\n <div class=\"aui-platform-nav__label\">{{ item.label }}</div>\n <div *ngIf=\"item.stage\" class=\"aui-platform-nav__stage\">\n {{ item.stage }}\n </div>\n </div>\n\n <ng-container *ngIf=\"item.children\">\n <aui-nav-item\n *ngFor=\"let item of item.children; trackBy: trackByKey\"\n [key]=\"item.key\"\n [divider]=\"item.divider\"\n >\n <div *auiNavItemContent class=\"aui-platform-nav__item\">\n <div class=\"aui-platform-nav__label\">{{ item.label }}</div>\n <div *ngIf=\"item.stage\" class=\"aui-platform-nav__stage\">\n {{ item.stage }}\n </div>\n </div>\n </aui-nav-item>\n </ng-container>\n </aui-nav-item>\n </ng-container>\n </aui-nav-item>\n </aui-nav-item-group>\n </ng-container>\n</aui-nav-menu>\n",
|
|
36
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
37
|
+
encapsulation: ViewEncapsulation.None,
|
|
38
|
+
preserveWhitespaces: false,
|
|
39
|
+
styles: [".aui-platform-nav__item{display:flex;justify-content:space-between;align-items:center;width:100%}.aui-platform-nav__stage{margin-left:4px;color:#ffdf00}.aui-nav-item-tooltip .aui-platform-nav__stage,.aui-platform-nav__stage{font-family:Calibri;font-size:12px;font-weight:700;font-style:italic;transform:scale(.8333)}.aui-nav-item-tooltip .aui-platform-nav__stage{display:inline-block;padding:0 4.8px;border-radius:7.2px;line-height:14.4px;color:#333;background-color:#ffdf00}"]
|
|
40
|
+
},] }
|
|
41
|
+
];
|
|
42
|
+
PlatformNavComponent.propDecorators = {
|
|
43
|
+
items: [{ type: Input }],
|
|
44
|
+
groups: [{ type: Input }],
|
|
45
|
+
mainPanelCollapsed: [{ type: Input }],
|
|
46
|
+
secondaryPanelCollapsed: [{ type: Input }],
|
|
47
|
+
hideMainPanelToggle: [{ type: Input }],
|
|
48
|
+
hideSecondaryPanelToggle: [{ type: Input }],
|
|
49
|
+
activatedKey: [{ type: Input }],
|
|
50
|
+
theme: [{ type: Input }],
|
|
51
|
+
mainPanelCollapsedChange: [{ type: Output }],
|
|
52
|
+
secondaryPanelCollapsedChange: [{ type: Output }],
|
|
53
|
+
activatedKeyChange: [{ type: Output }],
|
|
54
|
+
activatedItemChange: [{ type: Output }]
|
|
55
|
+
};
|
|
56
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGxhdGZvcm0tbmF2LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9uYXYtbWVudS9wbGF0Zm9ybS1uYXYvcGxhdGZvcm0tbmF2LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxZQUFZLEVBQ1osS0FBSyxFQUNMLE1BQU0sRUFDTixpQkFBaUIsR0FDbEIsTUFBTSxlQUFlLENBQUM7QUFZdkIsTUFBTSxPQUFPLG9CQUFvQjtJQVJqQztRQVdXLHVCQUFrQixHQUFHLEtBQUssQ0FBQztRQUMzQiw0QkFBdUIsR0FBRyxLQUFLLENBQUM7UUFDaEMsd0JBQW1CLEdBQUcsS0FBSyxDQUFDO1FBQzVCLDZCQUF3QixHQUFHLEtBQUssQ0FBQztRQUVqQyxVQUFLLEdBQUcsTUFBTSxDQUFDO1FBRWQsNkJBQXdCLEdBQUcsSUFBSSxZQUFZLEVBQVcsQ0FBQztRQUN2RCxrQ0FBNkIsR0FBRyxJQUFJLFlBQVksRUFBVyxDQUFDO1FBQzVELHVCQUFrQixHQUFHLElBQUksWUFBWSxFQUFjLENBQUM7UUFDcEQsd0JBQW1CLEdBQUcsSUFBSSxZQUFZLEVBQWlCLENBQUM7SUE4QnBFLENBQUM7SUE1QkMsd0JBQXdCLENBQUMsR0FBZTtRQUN0QyxJQUFJLENBQUMsa0JBQWtCLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDO1FBQ2xDLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUM7SUFDN0QsQ0FBQztJQUVELFVBQVUsQ0FBQyxDQUFTLEVBQUUsSUFBbUI7UUFDdkMsT0FBTyxJQUFJLENBQUMsR0FBRyxDQUFDO0lBQ2xCLENBQUM7SUFFTyxpQkFBaUIsQ0FBQyxHQUFlO1FBQ3ZDLE1BQU0sS0FBSyxHQUNULElBQUksQ0FBQyxLQUFLO1lBQ1YsSUFBSSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQ2hCLENBQUMsU0FBUyxFQUFFLFNBQVMsRUFBRSxFQUFFLENBQUMsQ0FBQyxHQUFHLFNBQVMsRUFBRSxHQUFHLFNBQVMsQ0FBQyxLQUFLLENBQUMsRUFDNUQsRUFBRSxDQUNILENBQUM7UUFDSixPQUFPLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLEdBQUcsS0FBSyxHQUFHLENBQUMsQ0FBQztJQUM5RCxDQUFDO0lBRU8sU0FBUyxDQUFDLEtBQXNCO1FBQ3RDLE9BQU8sS0FBSyxDQUFDLE1BQU0sQ0FDakIsQ0FBQyxTQUFTLEVBQUUsU0FBUyxFQUFFLEVBQUUsQ0FDdkIsU0FBUyxDQUFDLFFBQVE7WUFDaEIsQ0FBQyxDQUFDLENBQUMsR0FBRyxTQUFTLEVBQUUsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLFNBQVMsQ0FBQyxRQUFRLENBQUMsQ0FBQztZQUN2RCxDQUFDLENBQUMsQ0FBQyxHQUFHLFNBQVMsRUFBRSxTQUFTLENBQUMsRUFDL0IsRUFBRSxDQUNILENBQUM7SUFDSixDQUFDOzs7WUFsREYsU0FBUyxTQUFDO2dCQUNULFFBQVEsRUFBRSxrQkFBa0I7Z0JBQzVCLGtySUFBNEM7Z0JBRTVDLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO2dCQUMvQyxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtnQkFDckMsbUJBQW1CLEVBQUUsS0FBSzs7YUFDM0I7OztvQkFFRSxLQUFLO3FCQUNMLEtBQUs7aUNBQ0wsS0FBSztzQ0FDTCxLQUFLO2tDQUNMLEtBQUs7dUNBQ0wsS0FBSzsyQkFDTCxLQUFLO29CQUNMLEtBQUs7dUNBRUwsTUFBTTs0Q0FDTixNQUFNO2lDQUNOLE1BQU07a0NBQ04sTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE91dHB1dCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBOYXZHcm91cENvbmZpZywgTmF2SXRlbUNvbmZpZywgTmF2SXRlbUtleSB9IGZyb20gJy4uL25hdi1tZW51LnR5cGVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXVpLXBsYXRmb3JtLW5hdicsXG4gIHRlbXBsYXRlVXJsOiAnLi9wbGF0Zm9ybS1uYXYuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9wbGF0Zm9ybS1uYXYuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIHByZXNlcnZlV2hpdGVzcGFjZXM6IGZhbHNlLFxufSlcbmV4cG9ydCBjbGFzcyBQbGF0Zm9ybU5hdkNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIGl0ZW1zOiBOYXZJdGVtQ29uZmlnW107XG4gIEBJbnB1dCgpIGdyb3VwczogTmF2R3JvdXBDb25maWdbXTtcbiAgQElucHV0KCkgbWFpblBhbmVsQ29sbGFwc2VkID0gZmFsc2U7XG4gIEBJbnB1dCgpIHNlY29uZGFyeVBhbmVsQ29sbGFwc2VkID0gZmFsc2U7XG4gIEBJbnB1dCgpIGhpZGVNYWluUGFuZWxUb2dnbGUgPSBmYWxzZTtcbiAgQElucHV0KCkgaGlkZVNlY29uZGFyeVBhbmVsVG9nZ2xlID0gZmFsc2U7XG4gIEBJbnB1dCgpIGFjdGl2YXRlZEtleTogTmF2SXRlbUtleTtcbiAgQElucHV0KCkgdGhlbWUgPSAnZGFyayc7XG5cbiAgQE91dHB1dCgpIG1haW5QYW5lbENvbGxhcHNlZENoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcbiAgQE91dHB1dCgpIHNlY29uZGFyeVBhbmVsQ29sbGFwc2VkQ2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcjxib29sZWFuPigpO1xuICBAT3V0cHV0KCkgYWN0aXZhdGVkS2V5Q2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcjxOYXZJdGVtS2V5PigpO1xuICBAT3V0cHV0KCkgYWN0aXZhdGVkSXRlbUNoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8TmF2SXRlbUNvbmZpZz4oKTtcblxuICBoYW5kbGVBY3RpdmF0ZWRLZXlDaGFuZ2Uoa2V5OiBOYXZJdGVtS2V5KSB7XG4gICAgdGhpcy5hY3RpdmF0ZWRLZXlDaGFuZ2UuZW1pdChrZXkpO1xuICAgIHRoaXMuYWN0aXZhdGVkSXRlbUNoYW5nZS5lbWl0KHRoaXMuZmluZEFjdGl2YXRlZEl0ZW0oa2V5KSk7XG4gIH1cblxuICB0cmFja0J5S2V5KF86IG51bWJlciwgaXRlbTogTmF2SXRlbUNvbmZpZykge1xuICAgIHJldHVybiBpdGVtLmtleTtcbiAgfVxuXG4gIHByaXZhdGUgZmluZEFjdGl2YXRlZEl0ZW0oa2V5OiBOYXZJdGVtS2V5KSB7XG4gICAgY29uc3QgaXRlbXMgPVxuICAgICAgdGhpcy5pdGVtcyB8fFxuICAgICAgdGhpcy5ncm91cHMucmVkdWNlPE5hdkl0ZW1Db25maWdbXT4oXG4gICAgICAgIChwcmV2VmFsdWUsIGN1cnJWYWx1ZSkgPT4gWy4uLnByZXZWYWx1ZSwgLi4uY3VyclZhbHVlLml0ZW1zXSxcbiAgICAgICAgW10sXG4gICAgICApO1xuICAgIHJldHVybiB0aGlzLmZsYXRJdGVtcyhpdGVtcykuZmluZChpdGVtID0+IGl0ZW0ua2V5ID09PSBrZXkpO1xuICB9XG5cbiAgcHJpdmF0ZSBmbGF0SXRlbXMoaXRlbXM6IE5hdkl0ZW1Db25maWdbXSk6IE5hdkl0ZW1Db25maWdbXSB7XG4gICAgcmV0dXJuIGl0ZW1zLnJlZHVjZTxOYXZJdGVtQ29uZmlnW10+KFxuICAgICAgKHByZXZWYWx1ZSwgY3VyclZhbHVlKSA9PlxuICAgICAgICBjdXJyVmFsdWUuY2hpbGRyZW5cbiAgICAgICAgICA/IFsuLi5wcmV2VmFsdWUsIC4uLnRoaXMuZmxhdEl0ZW1zKGN1cnJWYWx1ZS5jaGlsZHJlbildXG4gICAgICAgICAgOiBbLi4ucHJldlZhbHVlLCBjdXJyVmFsdWVdLFxuICAgICAgW10sXG4gICAgKTtcbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview This file was generated by the Angular template compiler. Do not edit.
|
|
3
|
+
*
|
|
4
|
+
* @suppress {suspiciousCode,uselessCode,missingProperties,missingOverride,checkTypes,extraRequire}
|
|
5
|
+
* tslint:disable
|
|
6
|
+
*/
|
|
7
|
+
import * as i0 from "./platform-nav.component.scss.ngstyle";
|
|
8
|
+
import * as i1 from "@angular/core";
|
|
9
|
+
import * as i2 from "../../icon/icon.component.ngfactory";
|
|
10
|
+
import * as i3 from "../../icon/icon.component";
|
|
11
|
+
import * as i4 from "../../icon/icon-register.service";
|
|
12
|
+
import * as i5 from "@angular/common";
|
|
13
|
+
import * as i6 from "../nav-item/nav-item.component.ngfactory";
|
|
14
|
+
import * as i7 from "../nav-item/nav-item.component";
|
|
15
|
+
import * as i8 from "../nav-item-group/nav-item-group.component";
|
|
16
|
+
import * as i9 from "../nav-item-group/nav-item-group.component.ngfactory";
|
|
17
|
+
import * as i10 from "../nav-menu.component.ngfactory";
|
|
18
|
+
import * as i11 from "../nav-menu.component";
|
|
19
|
+
import * as i12 from "./platform-nav.component";
|
|
20
|
+
var styles_PlatformNavComponent = [i0.styles];
|
|
21
|
+
var RenderType_PlatformNavComponent = i1.ɵcrt({ encapsulation: 2, styles: styles_PlatformNavComponent, data: {} });
|
|
22
|
+
export { RenderType_PlatformNavComponent as RenderType_PlatformNavComponent };
|
|
23
|
+
function View_PlatformNavComponent_3(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 1, "aui-icon", [], null, null, null, i2.View_IconComponent_0, i2.RenderType_IconComponent)), i1.ɵdid(1, 49152, null, 0, i3.IconComponent, [i4.IconRegisterService], { icon: [0, "icon"] }, null)], function (_ck, _v) { var currVal_0 = _v.parent.context.$implicit.icon; _ck(_v, 1, 0, currVal_0); }, null); }
|
|
24
|
+
function View_PlatformNavComponent_5(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 1, "div", [["class", "aui-platform-nav__stage"]], null, null, null, null, null)), (_l()(), i1.ɵted(1, null, [" ", " "]))], null, function (_ck, _v) { var currVal_0 = _v.parent.parent.context.$implicit.stage; _ck(_v, 1, 0, currVal_0); }); }
|
|
25
|
+
function View_PlatformNavComponent_4(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 4, "div", [["class", "aui-platform-nav__item"]], null, null, null, null, null)), (_l()(), i1.ɵeld(1, 0, null, null, 1, "div", [["class", "aui-platform-nav__label"]], null, null, null, null, null)), (_l()(), i1.ɵted(2, null, ["", ""])), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_5)), i1.ɵdid(4, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var currVal_1 = _v.parent.context.$implicit.stage; _ck(_v, 4, 0, currVal_1); }, function (_ck, _v) { var currVal_0 = _v.parent.context.$implicit.label; _ck(_v, 2, 0, currVal_0); }); }
|
|
26
|
+
function View_PlatformNavComponent_9(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 1, "div", [["class", "aui-platform-nav__stage"]], null, null, null, null, null)), (_l()(), i1.ɵted(1, null, [" ", " "]))], null, function (_ck, _v) { var currVal_0 = _v.parent.parent.context.$implicit.stage; _ck(_v, 1, 0, currVal_0); }); }
|
|
27
|
+
function View_PlatformNavComponent_8(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 4, "div", [["class", "aui-platform-nav__item"]], null, null, null, null, null)), (_l()(), i1.ɵeld(1, 0, null, null, 1, "div", [["class", "aui-platform-nav__label"]], null, null, null, null, null)), (_l()(), i1.ɵted(2, null, ["", ""])), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_9)), i1.ɵdid(4, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var currVal_1 = _v.parent.context.$implicit.stage; _ck(_v, 4, 0, currVal_1); }, function (_ck, _v) { var currVal_0 = _v.parent.context.$implicit.label; _ck(_v, 2, 0, currVal_0); }); }
|
|
28
|
+
function View_PlatformNavComponent_13(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 1, "div", [["class", "aui-platform-nav__stage"]], null, null, null, null, null)), (_l()(), i1.ɵted(1, null, [" ", " "]))], null, function (_ck, _v) { var currVal_0 = _v.parent.parent.context.$implicit.stage; _ck(_v, 1, 0, currVal_0); }); }
|
|
29
|
+
function View_PlatformNavComponent_12(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 4, "div", [["class", "aui-platform-nav__item"]], null, null, null, null, null)), (_l()(), i1.ɵeld(1, 0, null, null, 1, "div", [["class", "aui-platform-nav__label"]], null, null, null, null, null)), (_l()(), i1.ɵted(2, null, ["", ""])), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_13)), i1.ɵdid(4, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var currVal_1 = _v.parent.context.$implicit.stage; _ck(_v, 4, 0, currVal_1); }, function (_ck, _v) { var currVal_0 = _v.parent.context.$implicit.label; _ck(_v, 2, 0, currVal_0); }); }
|
|
30
|
+
function View_PlatformNavComponent_11(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 6, "aui-nav-item", [], null, null, null, i6.View_NavItemComponent_0, i6.RenderType_NavItemComponent)), i1.ɵdid(1, 49152, [[10, 4], [7, 4], [3, 4]], 3, i7.NavItemComponent, [[3, i7.NavItemComponent], [2, i8.NavItemGroupComponent]], { key: [0, "key"], divider: [1, "divider"] }, null), i1.ɵqud(603979776, 10, { _subItems: 1 }), i1.ɵqud(335544320, 11, { icon: 0 }), i1.ɵqud(335544320, 12, { content: 0 }), (_l()(), i1.ɵand(0, null, null, 1, null, View_PlatformNavComponent_12)), i1.ɵdid(6, 16384, [[12, 4], [9, 4], [6, 4]], 0, i7.NavItemContentDirective, [i1.TemplateRef], null, null)], function (_ck, _v) { var currVal_0 = _v.context.$implicit.key; var currVal_1 = _v.context.$implicit.divider; _ck(_v, 1, 0, currVal_0, currVal_1); }, null); }
|
|
31
|
+
function View_PlatformNavComponent_10(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 2, null, null, null, null, null, null, null)), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_11)), i1.ɵdid(2, 278528, null, 0, i5.NgForOf, [i1.ViewContainerRef, i1.TemplateRef, i1.IterableDiffers], { ngForOf: [0, "ngForOf"], ngForTrackBy: [1, "ngForTrackBy"] }, null), (_l()(), i1.ɵand(0, null, null, 0))], function (_ck, _v) { var _co = _v.component; var currVal_0 = _v.parent.context.$implicit.children; var currVal_1 = _co.trackByKey; _ck(_v, 2, 0, currVal_0, currVal_1); }, null); }
|
|
32
|
+
function View_PlatformNavComponent_7(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 8, "aui-nav-item", [], null, null, null, i6.View_NavItemComponent_0, i6.RenderType_NavItemComponent)), i1.ɵdid(1, 49152, [[7, 4], [4, 4], [3, 4]], 3, i7.NavItemComponent, [[3, i7.NavItemComponent], [2, i8.NavItemGroupComponent]], { key: [0, "key"], divider: [1, "divider"] }, null), i1.ɵqud(603979776, 7, { _subItems: 1 }), i1.ɵqud(335544320, 8, { icon: 0 }), i1.ɵqud(335544320, 9, { content: 0 }), (_l()(), i1.ɵand(0, null, null, 1, null, View_PlatformNavComponent_8)), i1.ɵdid(6, 16384, [[9, 4], [6, 4]], 0, i7.NavItemContentDirective, [i1.TemplateRef], null, null), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_10)), i1.ɵdid(8, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var currVal_0 = _v.context.$implicit.key; var currVal_1 = _v.context.$implicit.divider; _ck(_v, 1, 0, currVal_0, currVal_1); var currVal_2 = _v.context.$implicit.children; _ck(_v, 8, 0, currVal_2); }, null); }
|
|
33
|
+
function View_PlatformNavComponent_6(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 2, null, null, null, null, null, null, null)), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_7)), i1.ɵdid(2, 278528, null, 0, i5.NgForOf, [i1.ViewContainerRef, i1.TemplateRef, i1.IterableDiffers], { ngForOf: [0, "ngForOf"], ngForTrackBy: [1, "ngForTrackBy"] }, null), (_l()(), i1.ɵand(0, null, null, 0))], function (_ck, _v) { var _co = _v.component; var currVal_0 = _v.parent.context.$implicit.children; var currVal_1 = _co.trackByKey; _ck(_v, 2, 0, currVal_0, currVal_1); }, null); }
|
|
34
|
+
function View_PlatformNavComponent_2(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 10, "aui-nav-item", [], null, null, null, i6.View_NavItemComponent_0, i6.RenderType_NavItemComponent)), i1.ɵdid(1, 49152, [[4, 4], [1, 4], [3, 4]], 3, i7.NavItemComponent, [[3, i7.NavItemComponent], [2, i8.NavItemGroupComponent]], { key: [0, "key"], divider: [1, "divider"] }, null), i1.ɵqud(603979776, 4, { _subItems: 1 }), i1.ɵqud(335544320, 5, { icon: 0 }), i1.ɵqud(335544320, 6, { content: 0 }), (_l()(), i1.ɵand(0, null, null, 1, null, View_PlatformNavComponent_3)), i1.ɵdid(6, 16384, [[5, 4]], 0, i7.NavItemIconDirective, [i1.TemplateRef], null, null), (_l()(), i1.ɵand(0, null, null, 1, null, View_PlatformNavComponent_4)), i1.ɵdid(8, 16384, [[6, 4]], 0, i7.NavItemContentDirective, [i1.TemplateRef], null, null), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_6)), i1.ɵdid(10, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var currVal_0 = _v.context.$implicit.key; var currVal_1 = _v.context.$implicit.divider; _ck(_v, 1, 0, currVal_0, currVal_1); var currVal_2 = _v.context.$implicit.children; _ck(_v, 10, 0, currVal_2); }, null); }
|
|
35
|
+
function View_PlatformNavComponent_1(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 2, null, null, null, null, null, null, null)), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_2)), i1.ɵdid(2, 278528, null, 0, i5.NgForOf, [i1.ViewContainerRef, i1.TemplateRef, i1.IterableDiffers], { ngForOf: [0, "ngForOf"], ngForTrackBy: [1, "ngForTrackBy"] }, null), (_l()(), i1.ɵand(0, null, null, 0))], function (_ck, _v) { var _co = _v.component; var currVal_0 = _co.items; var currVal_1 = _co.trackByKey; _ck(_v, 2, 0, currVal_0, currVal_1); }, null); }
|
|
36
|
+
function View_PlatformNavComponent_17(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵted(0, null, [" ", " "]))], null, function (_ck, _v) { var currVal_0 = _v.parent.parent.context.$implicit.title; _ck(_v, 0, 0, currVal_0); }); }
|
|
37
|
+
function View_PlatformNavComponent_16(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵand(0, null, null, 1, null, View_PlatformNavComponent_17)), i1.ɵdid(1, 16384, [[13, 4]], 0, i8.NavItemGroupTitleDirective, [i1.TemplateRef], null, null)], null, null); }
|
|
38
|
+
function View_PlatformNavComponent_19(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 1, "aui-icon", [], null, null, null, i2.View_IconComponent_0, i2.RenderType_IconComponent)), i1.ɵdid(1, 49152, null, 0, i3.IconComponent, [i4.IconRegisterService], { icon: [0, "icon"] }, null)], function (_ck, _v) { var currVal_0 = _v.parent.context.$implicit.icon; _ck(_v, 1, 0, currVal_0); }, null); }
|
|
39
|
+
function View_PlatformNavComponent_21(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 1, "div", [["class", "aui-platform-nav__stage"]], null, null, null, null, null)), (_l()(), i1.ɵted(1, null, [" ", " "]))], null, function (_ck, _v) { var currVal_0 = _v.parent.parent.context.$implicit.stage; _ck(_v, 1, 0, currVal_0); }); }
|
|
40
|
+
function View_PlatformNavComponent_20(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 4, "div", [["class", "aui-platform-nav__item"]], null, null, null, null, null)), (_l()(), i1.ɵeld(1, 0, null, null, 1, "div", [["class", "aui-platform-nav__label"]], null, null, null, null, null)), (_l()(), i1.ɵted(2, null, ["", ""])), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_21)), i1.ɵdid(4, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var currVal_1 = _v.parent.context.$implicit.stage; _ck(_v, 4, 0, currVal_1); }, function (_ck, _v) { var currVal_0 = _v.parent.context.$implicit.label; _ck(_v, 2, 0, currVal_0); }); }
|
|
41
|
+
function View_PlatformNavComponent_25(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 1, "div", [["class", "aui-platform-nav__stage"]], null, null, null, null, null)), (_l()(), i1.ɵted(1, null, [" ", " "]))], null, function (_ck, _v) { var currVal_0 = _v.parent.parent.context.$implicit.stage; _ck(_v, 1, 0, currVal_0); }); }
|
|
42
|
+
function View_PlatformNavComponent_24(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 4, "div", [["class", "aui-platform-nav__item"]], null, null, null, null, null)), (_l()(), i1.ɵeld(1, 0, null, null, 1, "div", [["class", "aui-platform-nav__label"]], null, null, null, null, null)), (_l()(), i1.ɵted(2, null, ["", ""])), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_25)), i1.ɵdid(4, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var currVal_1 = _v.parent.context.$implicit.stage; _ck(_v, 4, 0, currVal_1); }, function (_ck, _v) { var currVal_0 = _v.parent.context.$implicit.label; _ck(_v, 2, 0, currVal_0); }); }
|
|
43
|
+
function View_PlatformNavComponent_29(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 1, "div", [["class", "aui-platform-nav__stage"]], null, null, null, null, null)), (_l()(), i1.ɵted(1, null, [" ", " "]))], null, function (_ck, _v) { var currVal_0 = _v.parent.parent.context.$implicit.stage; _ck(_v, 1, 0, currVal_0); }); }
|
|
44
|
+
function View_PlatformNavComponent_28(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 4, "div", [["class", "aui-platform-nav__item"]], null, null, null, null, null)), (_l()(), i1.ɵeld(1, 0, null, null, 1, "div", [["class", "aui-platform-nav__label"]], null, null, null, null, null)), (_l()(), i1.ɵted(2, null, ["", ""])), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_29)), i1.ɵdid(4, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var currVal_1 = _v.parent.context.$implicit.stage; _ck(_v, 4, 0, currVal_1); }, function (_ck, _v) { var currVal_0 = _v.parent.context.$implicit.label; _ck(_v, 2, 0, currVal_0); }); }
|
|
45
|
+
function View_PlatformNavComponent_27(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 6, "aui-nav-item", [], null, null, null, i6.View_NavItemComponent_0, i6.RenderType_NavItemComponent)), i1.ɵdid(1, 49152, [[21, 4], [18, 4], [3, 4]], 3, i7.NavItemComponent, [[3, i7.NavItemComponent], [2, i8.NavItemGroupComponent]], { key: [0, "key"], divider: [1, "divider"] }, null), i1.ɵqud(603979776, 21, { _subItems: 1 }), i1.ɵqud(335544320, 22, { icon: 0 }), i1.ɵqud(335544320, 23, { content: 0 }), (_l()(), i1.ɵand(0, null, null, 1, null, View_PlatformNavComponent_28)), i1.ɵdid(6, 16384, [[23, 4], [20, 4], [17, 4]], 0, i7.NavItemContentDirective, [i1.TemplateRef], null, null)], function (_ck, _v) { var currVal_0 = _v.context.$implicit.key; var currVal_1 = _v.context.$implicit.divider; _ck(_v, 1, 0, currVal_0, currVal_1); }, null); }
|
|
46
|
+
function View_PlatformNavComponent_26(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 2, null, null, null, null, null, null, null)), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_27)), i1.ɵdid(2, 278528, null, 0, i5.NgForOf, [i1.ViewContainerRef, i1.TemplateRef, i1.IterableDiffers], { ngForOf: [0, "ngForOf"], ngForTrackBy: [1, "ngForTrackBy"] }, null), (_l()(), i1.ɵand(0, null, null, 0))], function (_ck, _v) { var _co = _v.component; var currVal_0 = _v.parent.context.$implicit.children; var currVal_1 = _co.trackByKey; _ck(_v, 2, 0, currVal_0, currVal_1); }, null); }
|
|
47
|
+
function View_PlatformNavComponent_23(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 8, "aui-nav-item", [], null, null, null, i6.View_NavItemComponent_0, i6.RenderType_NavItemComponent)), i1.ɵdid(1, 49152, [[18, 4], [15, 4], [3, 4]], 3, i7.NavItemComponent, [[3, i7.NavItemComponent], [2, i8.NavItemGroupComponent]], { key: [0, "key"], divider: [1, "divider"] }, null), i1.ɵqud(603979776, 18, { _subItems: 1 }), i1.ɵqud(335544320, 19, { icon: 0 }), i1.ɵqud(335544320, 20, { content: 0 }), (_l()(), i1.ɵand(0, null, null, 1, null, View_PlatformNavComponent_24)), i1.ɵdid(6, 16384, [[20, 4], [17, 4]], 0, i7.NavItemContentDirective, [i1.TemplateRef], null, null), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_26)), i1.ɵdid(8, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var currVal_0 = _v.context.$implicit.key; var currVal_1 = _v.context.$implicit.divider; _ck(_v, 1, 0, currVal_0, currVal_1); var currVal_2 = _v.context.$implicit.children; _ck(_v, 8, 0, currVal_2); }, null); }
|
|
48
|
+
function View_PlatformNavComponent_22(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 2, null, null, null, null, null, null, null)), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_23)), i1.ɵdid(2, 278528, null, 0, i5.NgForOf, [i1.ViewContainerRef, i1.TemplateRef, i1.IterableDiffers], { ngForOf: [0, "ngForOf"], ngForTrackBy: [1, "ngForTrackBy"] }, null), (_l()(), i1.ɵand(0, null, null, 0))], function (_ck, _v) { var _co = _v.component; var currVal_0 = _v.parent.context.$implicit.children; var currVal_1 = _co.trackByKey; _ck(_v, 2, 0, currVal_0, currVal_1); }, null); }
|
|
49
|
+
function View_PlatformNavComponent_18(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 10, "aui-nav-item", [], null, null, null, i6.View_NavItemComponent_0, i6.RenderType_NavItemComponent)), i1.ɵdid(1, 49152, [[15, 4], [14, 4], [3, 4]], 3, i7.NavItemComponent, [[3, i7.NavItemComponent], [2, i8.NavItemGroupComponent]], { key: [0, "key"], divider: [1, "divider"] }, null), i1.ɵqud(603979776, 15, { _subItems: 1 }), i1.ɵqud(335544320, 16, { icon: 0 }), i1.ɵqud(335544320, 17, { content: 0 }), (_l()(), i1.ɵand(0, null, null, 1, null, View_PlatformNavComponent_19)), i1.ɵdid(6, 16384, [[16, 4]], 0, i7.NavItemIconDirective, [i1.TemplateRef], null, null), (_l()(), i1.ɵand(0, null, null, 1, null, View_PlatformNavComponent_20)), i1.ɵdid(8, 16384, [[17, 4]], 0, i7.NavItemContentDirective, [i1.TemplateRef], null, null), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_22)), i1.ɵdid(10, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var currVal_0 = _v.context.$implicit.key; var currVal_1 = _v.context.$implicit.divider; _ck(_v, 1, 0, currVal_0, currVal_1); var currVal_2 = _v.context.$implicit.children; _ck(_v, 10, 0, currVal_2); }, null); }
|
|
50
|
+
function View_PlatformNavComponent_15(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 7, "aui-nav-item-group", [], null, null, null, i9.View_NavItemGroupComponent_0, i9.RenderType_NavItemGroupComponent)), i1.ɵdid(1, 49152, [[2, 4]], 2, i8.NavItemGroupComponent, [], null, null), i1.ɵqud(603979776, 13, { title: 0 }), i1.ɵqud(603979776, 14, { items: 1 }), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_16)), i1.ɵdid(5, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_18)), i1.ɵdid(7, 278528, null, 0, i5.NgForOf, [i1.ViewContainerRef, i1.TemplateRef, i1.IterableDiffers], { ngForOf: [0, "ngForOf"], ngForTrackBy: [1, "ngForTrackBy"] }, null)], function (_ck, _v) { var _co = _v.component; var currVal_0 = _v.context.$implicit.title; _ck(_v, 5, 0, currVal_0); var currVal_1 = _v.context.$implicit.items; var currVal_2 = _co.trackByKey; _ck(_v, 7, 0, currVal_1, currVal_2); }, null); }
|
|
51
|
+
function View_PlatformNavComponent_14(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 2, null, null, null, null, null, null, null)), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_15)), i1.ɵdid(2, 278528, null, 0, i5.NgForOf, [i1.ViewContainerRef, i1.TemplateRef, i1.IterableDiffers], { ngForOf: [0, "ngForOf"] }, null), (_l()(), i1.ɵand(0, null, null, 0))], function (_ck, _v) { var _co = _v.component; var currVal_0 = _co.groups; _ck(_v, 2, 0, currVal_0); }, null); }
|
|
52
|
+
export function View_PlatformNavComponent_0(_l) { return i1.ɵvid(2, [(_l()(), i1.ɵeld(0, 0, null, null, 8, "aui-nav-menu", [["class", "aui-platform-nav"]], null, [[null, "activatedKeyChange"], [null, "mainPanelCollapsedChange"], [null, "secondaryPanelCollapsedChange"]], function (_v, en, $event) { var ad = true; var _co = _v.component; if (("activatedKeyChange" === en)) {
|
|
53
|
+
var pd_0 = (_co.handleActivatedKeyChange($event) !== false);
|
|
54
|
+
ad = (pd_0 && ad);
|
|
55
|
+
} if (("mainPanelCollapsedChange" === en)) {
|
|
56
|
+
var pd_1 = (_co.mainPanelCollapsedChange.emit($event) !== false);
|
|
57
|
+
ad = (pd_1 && ad);
|
|
58
|
+
} if (("secondaryPanelCollapsedChange" === en)) {
|
|
59
|
+
var pd_2 = (_co.secondaryPanelCollapsedChange.emit($event) !== false);
|
|
60
|
+
ad = (pd_2 && ad);
|
|
61
|
+
} return ad; }, i10.View_NavMenuComponent_0, i10.RenderType_NavMenuComponent)), i1.ɵdid(1, 1097728, null, 3, i11.NavMenuComponent, [], { activatedKey: [0, "activatedKey"], mainPanelCollapsed: [1, "mainPanelCollapsed"], secondaryPanelCollapsed: [2, "secondaryPanelCollapsed"], hideMainPanelToggle: [3, "hideMainPanelToggle"], hideSecondaryPanelToggle: [4, "hideSecondaryPanelToggle"], theme: [5, "theme"] }, { activatedKeyChange: "activatedKeyChange", mainPanelCollapsedChange: "mainPanelCollapsedChange", secondaryPanelCollapsedChange: "secondaryPanelCollapsedChange" }), i1.ɵqud(603979776, 1, { items: 1 }), i1.ɵqud(603979776, 2, { groups: 1 }), i1.ɵqud(603979776, 3, { flatItems: 1 }), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_1)), i1.ɵdid(6, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null), (_l()(), i1.ɵand(16777216, null, null, 1, null, View_PlatformNavComponent_14)), i1.ɵdid(8, 16384, null, 0, i5.NgIf, [i1.ViewContainerRef, i1.TemplateRef], { ngIf: [0, "ngIf"] }, null)], function (_ck, _v) { var _co = _v.component; var currVal_0 = _co.activatedKey; var currVal_1 = _co.mainPanelCollapsed; var currVal_2 = _co.secondaryPanelCollapsed; var currVal_3 = _co.hideMainPanelToggle; var currVal_4 = _co.hideSecondaryPanelToggle; var currVal_5 = _co.theme; _ck(_v, 1, 0, currVal_0, currVal_1, currVal_2, currVal_3, currVal_4, currVal_5); var currVal_6 = _co.items; _ck(_v, 6, 0, currVal_6); var currVal_7 = _co.groups; _ck(_v, 8, 0, currVal_7); }, null); }
|
|
62
|
+
export function View_PlatformNavComponent_Host_0(_l) { return i1.ɵvid(0, [(_l()(), i1.ɵeld(0, 0, null, null, 1, "aui-platform-nav", [], null, null, null, View_PlatformNavComponent_0, RenderType_PlatformNavComponent)), i1.ɵdid(1, 49152, null, 0, i12.PlatformNavComponent, [], null, null)], null, null); }
|
|
63
|
+
var PlatformNavComponentNgFactory = i1.ɵccf("aui-platform-nav", i12.PlatformNavComponent, View_PlatformNavComponent_Host_0, { items: "items", groups: "groups", mainPanelCollapsed: "mainPanelCollapsed", secondaryPanelCollapsed: "secondaryPanelCollapsed", hideMainPanelToggle: "hideMainPanelToggle", hideSecondaryPanelToggle: "hideSecondaryPanelToggle", activatedKey: "activatedKey", theme: "theme" }, { mainPanelCollapsedChange: "mainPanelCollapsedChange", secondaryPanelCollapsedChange: "secondaryPanelCollapsedChange", activatedKeyChange: "activatedKeyChange", activatedItemChange: "activatedItemChange" }, []);
|
|
64
|
+
export { PlatformNavComponentNgFactory as PlatformNavComponentNgFactory };
|
|
65
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGxhdGZvcm0tbmF2LmNvbXBvbmVudC5uZ2ZhY3RvcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbmF2LW1lbnUvcGxhdGZvcm0tbmF2L3BsYXRmb3JtLW5hdi5jb21wb25lbnQubmdmYWN0b3J5LnRzIiwiLi4vLi4vLi4vLi4vc3JjL25hdi1tZW51L3BsYXRmb3JtLW5hdi9wbGF0Zm9ybS1uYXYuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OzsrRENrQk0saU9BQXdELHlCQUE5QixrQkFBa0IsZ0NBQTVDLFlBQXdELEVBQTlCLFNBQWtCOytEQUcxQyxnSEFFTSxLQUZrRCxvSkFFeEQ7K0RBSkYsK0dBS00sS0FKSixnSEFBMkQsS0FBdEIsZ0NBQWdCLE1BQ3JELG9MQUVNLHlCQUZELGtCQUFrQixpQ0FBdkIsWUFFTSxFQUZELFNBQWtCLDJCQURjLDBFQUFnQjsrREFjakQsZ0hBRU0sS0FGa0Qsb0pBRXhEOytEQUpGLCtHQUtNLEtBSkosZ0hBQTJELEtBQXRCLGdDQUFnQixNQUNyRCxvTEFFTSx5QkFGRCxrQkFBa0IsaUNBQXZCLFlBRU0sRUFGRCxTQUFrQiwyQkFEYywwRUFBZ0I7Z0VBY2pELGdIQUVNLEtBRmtELG9KQUV4RDtnRUFKRiwrR0FLTSxLQUpKLGdIQUEyRCxLQUF0QixnQ0FBZ0IsTUFDckQscUxBRU0seUJBRkQsa0JBQWtCLGlDQUF2QixZQUVNLEVBRkQsU0FBa0IsMkJBRGMsMEVBQWdCO2dFQU56RCxnYkFXZSxNQU5iLGdMQUtNLHlCQVJOLGtCQUFnQix3QkFDaEIsa0JBQXdCLDRCQUgxQixZQVdlLEVBVGIsU0FBZ0IsRUFDaEIsU0FBd0I7Z0VBSjVCLDZFQWFlLEtBWmIsc1BBV2Usc0ZBVmIseUVBQXVELGFBRHpELFlBV2UsRUFWYixvQkFBdUQ7K0RBZDdELDRhQTBCZSxNQXJCYixzS0FLTSxJQUVOLHFMQWFlLHlCQXZCZixrQkFBZ0Isd0JBQ2hCLGtCQUF3Qiw0QkFIMUIsWUEwQmUsRUF4QmIsU0FBZ0IsRUFDaEIsU0FBd0IsR0FTVixrQkFBcUIsNkJBQW5DLFlBYWUsRUFiRCxTQUFxQjsrREFidkMsNkVBNEJlLEtBM0JiLHFQQTBCZSxzRkF6QmIseUVBQXVELGFBRHpELFlBMEJlLEVBekJiLG9CQUF1RDsrREFmN0QsNmFBMENlLE1BckNiLDJKQUF3RCxJQUN4RCw4SkFLTSxJQUVOLHFMQTRCZSx5QkF2Q2Ysa0JBQWdCLHdCQUNoQixrQkFBd0IsNEJBSDFCLFlBMENlLEVBeENiLFNBQWdCLEVBQ2hCLFNBQXdCLEdBVVYsa0JBQXFCLDZCQUFuQyxhQTRCZSxFQTVCRCxTQUFxQjsrREFkdkMsNkVBNENlLEtBM0NiLHFQQTBDZSxzRkF6Q2IsOENBQStDLGFBRGpELFlBMENlLEVBekNiLG9CQUErQztnRUE4Q08sb0pBRXREO2dFQUZBLG1LQUVjO2dFQU1aLGlPQUF3RCx5QkFBOUIsa0JBQWtCLGdDQUE1QyxZQUF3RCxFQUE5QixTQUFrQjtnRUFHMUMsZ0hBRU0sS0FGa0Qsb0pBRXhEO2dFQUpGLCtHQUtNLEtBSkosZ0hBQTJELEtBQXRCLGdDQUFnQixNQUNyRCxxTEFFTSx5QkFGRCxrQkFBa0IsaUNBQXZCLFlBRU0sRUFGRCxTQUFrQiwyQkFEYywwRUFBZ0I7Z0VBY2pELGdIQUVNLEtBRmtELG9KQUV4RDtnRUFKRiwrR0FLTSxLQUpKLGdIQUEyRCxLQUF0QixnQ0FBZ0IsTUFDckQscUxBRU0seUJBRkQsa0JBQWtCLGlDQUF2QixZQUVNLEVBRkQsU0FBa0IsMkJBRGMsMEVBQWdCO2dFQWNqRCxnSEFFTSxLQUZrRCxvSkFFeEQ7Z0VBSkYsK0dBS00sS0FKSixnSEFBMkQsS0FBdEIsZ0NBQWdCLE1BQ3JELHFMQUVNLHlCQUZELGtCQUFrQixpQ0FBdkIsWUFFTSxFQUZELFNBQWtCLDJCQURjLDBFQUFnQjtnRUFOekQsaWJBV2UsTUFOYixrTEFLTSx5QkFSTixrQkFBZ0Isd0JBQ2hCLGtCQUF3Qiw0QkFIMUIsWUFXZSxFQVRiLFNBQWdCLEVBQ2hCLFNBQXdCO2dFQUo1Qiw2RUFhZSxLQVpiLHNQQVdlLHNGQVZiLHlFQUF1RCxhQUR6RCxZQVdlLEVBVmIsb0JBQXVEO2dFQWQ3RCxpYkEwQmUsTUFyQmIseUtBS00sSUFFTixxTEFhZSx5QkF2QmYsa0JBQWdCLHdCQUNoQixrQkFBd0IsNEJBSDFCLFlBMEJlLEVBeEJiLFNBQWdCLEVBQ2hCLFNBQXdCLEdBU1Ysa0JBQXFCLDZCQUFuQyxZQWFlLEVBYkQsU0FBcUI7Z0VBYnZDLDZFQTRCZSxLQTNCYixzUEEwQmUsc0ZBekJiLHlFQUF1RCxhQUR6RCxZQTBCZSxFQXpCYixvQkFBdUQ7Z0VBZjdELGtiQTBDZSxNQXJDYiw2SkFBd0QsSUFDeEQsZ0tBS00sSUFFTixzTEE0QmUseUJBdkNmLGtCQUFnQix3QkFDaEIsa0JBQXdCLDRCQUgxQixZQTBDZSxFQXhDYixTQUFnQixFQUNoQixTQUF3QixHQVVWLGtCQUFxQiw2QkFBbkMsYUE0QmUsRUE1QkQsU0FBcUI7Z0VBakJ2QywwU0ErQ3FCLE1BOUNuQixxTEFFYyxJQUNkLHNQQTBDZSxpREE3Q0Ysa0JBQW1CLDBCQUFoQyxZQUVjLEVBRkQsU0FBbUIsR0FJOUIsK0RBQXFELGFBRHZELFlBMENlLEVBekNiLG9CQUFxRDtnRUFOM0QsNkVBaURlLEtBaERiLG1OQStDcUIsc0ZBL0NELG1CQUE0QixTQUFoRCxZQStDcUIsRUEvQ0QsU0FBNEI7c0VBM0RwRCxnUUE0R2UsWUFwR2I7O3dCQUF1RDtNQUN2RDs7d0JBQWtFO01BQ2xFOzt3QkFBNEU7TUFWOUUseXFCQTRHZSxNQWhHYixvTEE0Q2UsSUFFZixxTEFpRGUsaURBekdmLG1CQUE2QixlQUM3QixtQkFBeUMscUJBQ3pDLG1CQUFtRCwwQkFDbkQsbUJBQTJDLHNCQUMzQyxtQkFBcUQsMkJBQ3JELG1CQUFlLFFBUGpCLFlBNEdlLEVBMUdiLFNBQTZCLEVBQzdCLFNBQXlDLEVBQ3pDLFNBQW1ELEVBQ25ELFNBQTJDLEVBQzNDLFNBQXFELEVBQ3JELFNBQWUsR0FLRCxtQkFBYSxRQUEzQixZQTRDZSxFQTVDRCxTQUFhLEdBOENiLG1CQUFjLFNBQTVCLFlBaURlLEVBakRELFNBQWMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iLCI8YXVpLW5hdi1tZW51XG4gIGNsYXNzPVwiYXVpLXBsYXRmb3JtLW5hdlwiXG4gIFthY3RpdmF0ZWRLZXldPVwiYWN0aXZhdGVkS2V5XCJcbiAgW21haW5QYW5lbENvbGxhcHNlZF09XCJtYWluUGFuZWxDb2xsYXBzZWRcIlxuICBbc2Vjb25kYXJ5UGFuZWxDb2xsYXBzZWRdPVwic2Vjb25kYXJ5UGFuZWxDb2xsYXBzZWRcIlxuICBbaGlkZU1haW5QYW5lbFRvZ2dsZV09XCJoaWRlTWFpblBhbmVsVG9nZ2xlXCJcbiAgW2hpZGVTZWNvbmRhcnlQYW5lbFRvZ2dsZV09XCJoaWRlU2Vjb25kYXJ5UGFuZWxUb2dnbGVcIlxuICBbdGhlbWVdPVwidGhlbWVcIlxuICAoYWN0aXZhdGVkS2V5Q2hhbmdlKT1cImhhbmRsZUFjdGl2YXRlZEtleUNoYW5nZSgkZXZlbnQpXCJcbiAgKG1haW5QYW5lbENvbGxhcHNlZENoYW5nZSk9XCJtYWluUGFuZWxDb2xsYXBzZWRDaGFuZ2UuZW1pdCgkZXZlbnQpXCJcbiAgKHNlY29uZGFyeVBhbmVsQ29sbGFwc2VkQ2hhbmdlKT1cInNlY29uZGFyeVBhbmVsQ29sbGFwc2VkQ2hhbmdlLmVtaXQoJGV2ZW50KVwiXG4+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtc1wiPlxuICAgIDxhdWktbmF2LWl0ZW1cbiAgICAgICpuZ0Zvcj1cImxldCBpdGVtIG9mIGl0ZW1zOyB0cmFja0J5OiB0cmFja0J5S2V5XCJcbiAgICAgIFtrZXldPVwiaXRlbS5rZXlcIlxuICAgICAgW2RpdmlkZXJdPVwiaXRlbS5kaXZpZGVyXCJcbiAgICA+XG4gICAgICA8YXVpLWljb24gKmF1aU5hdkl0ZW1JY29uIFtpY29uXT1cIml0ZW0uaWNvblwiPjwvYXVpLWljb24+XG4gICAgICA8ZGl2ICphdWlOYXZJdGVtQ29udGVudCBjbGFzcz1cImF1aS1wbGF0Zm9ybS1uYXZfX2l0ZW1cIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImF1aS1wbGF0Zm9ybS1uYXZfX2xhYmVsXCI+e3sgaXRlbS5sYWJlbCB9fTwvZGl2PlxuICAgICAgICA8ZGl2ICpuZ0lmPVwiaXRlbS5zdGFnZVwiIGNsYXNzPVwiYXVpLXBsYXRmb3JtLW5hdl9fc3RhZ2VcIj5cbiAgICAgICAgICB7eyBpdGVtLnN0YWdlIH19XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9kaXY+XG5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtLmNoaWxkcmVuXCI+XG4gICAgICAgIDxhdWktbmF2LWl0ZW1cbiAgICAgICAgICAqbmdGb3I9XCJsZXQgaXRlbSBvZiBpdGVtLmNoaWxkcmVuOyB0cmFja0J5OiB0cmFja0J5S2V5XCJcbiAgICAgICAgICBba2V5XT1cIml0ZW0ua2V5XCJcbiAgICAgICAgICBbZGl2aWRlcl09XCJpdGVtLmRpdmlkZXJcIlxuICAgICAgICA+XG4gICAgICAgICAgPGRpdiAqYXVpTmF2SXRlbUNvbnRlbnQgY2xhc3M9XCJhdWktcGxhdGZvcm0tbmF2X19pdGVtXCI+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYXVpLXBsYXRmb3JtLW5hdl9fbGFiZWxcIj57eyBpdGVtLmxhYmVsIH19PC9kaXY+XG4gICAgICAgICAgICA8ZGl2ICpuZ0lmPVwiaXRlbS5zdGFnZVwiIGNsYXNzPVwiYXVpLXBsYXRmb3JtLW5hdl9fc3RhZ2VcIj5cbiAgICAgICAgICAgICAge3sgaXRlbS5zdGFnZSB9fVxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC9kaXY+XG5cbiAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXRlbS5jaGlsZHJlblwiPlxuICAgICAgICAgICAgPGF1aS1uYXYtaXRlbVxuICAgICAgICAgICAgICAqbmdGb3I9XCJsZXQgaXRlbSBvZiBpdGVtLmNoaWxkcmVuOyB0cmFja0J5OiB0cmFja0J5S2V5XCJcbiAgICAgICAgICAgICAgW2tleV09XCJpdGVtLmtleVwiXG4gICAgICAgICAgICAgIFtkaXZpZGVyXT1cIml0ZW0uZGl2aWRlclwiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgIDxkaXYgKmF1aU5hdkl0ZW1Db250ZW50IGNsYXNzPVwiYXVpLXBsYXRmb3JtLW5hdl9faXRlbVwiPlxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJhdWktcGxhdGZvcm0tbmF2X19sYWJlbFwiPnt7IGl0ZW0ubGFiZWwgfX08L2Rpdj5cbiAgICAgICAgICAgICAgICA8ZGl2ICpuZ0lmPVwiaXRlbS5zdGFnZVwiIGNsYXNzPVwiYXVpLXBsYXRmb3JtLW5hdl9fc3RhZ2VcIj5cbiAgICAgICAgICAgICAgICAgIHt7IGl0ZW0uc3RhZ2UgfX1cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8L2F1aS1uYXYtaXRlbT5cbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgPC9hdWktbmF2LWl0ZW0+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8L2F1aS1uYXYtaXRlbT5cbiAgPC9uZy1jb250YWluZXI+XG5cbiAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImdyb3Vwc1wiPlxuICAgIDxhdWktbmF2LWl0ZW0tZ3JvdXAgKm5nRm9yPVwibGV0IGdyb3VwIG9mIGdyb3Vwc1wiPlxuICAgICAgPG5nLXRlbXBsYXRlICpuZ0lmPVwiZ3JvdXAudGl0bGVcIiBhdWlOYXZJdGVtR3JvdXBUaXRsZT5cbiAgICAgICAge3sgZ3JvdXAudGl0bGUgfX1cbiAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICA8YXVpLW5hdi1pdGVtXG4gICAgICAgICpuZ0Zvcj1cImxldCBpdGVtIG9mIGdyb3VwLml0ZW1zOyB0cmFja0J5OiB0cmFja0J5S2V5XCJcbiAgICAgICAgW2tleV09XCJpdGVtLmtleVwiXG4gICAgICAgIFtkaXZpZGVyXT1cIml0ZW0uZGl2aWRlclwiXG4gICAgICA+XG4gICAgICAgIDxhdWktaWNvbiAqYXVpTmF2SXRlbUljb24gW2ljb25dPVwiaXRlbS5pY29uXCI+PC9hdWktaWNvbj5cbiAgICAgICAgPGRpdiAqYXVpTmF2SXRlbUNvbnRlbnQgY2xhc3M9XCJhdWktcGxhdGZvcm0tbmF2X19pdGVtXCI+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cImF1aS1wbGF0Zm9ybS1uYXZfX2xhYmVsXCI+e3sgaXRlbS5sYWJlbCB9fTwvZGl2PlxuICAgICAgICAgIDxkaXYgKm5nSWY9XCJpdGVtLnN0YWdlXCIgY2xhc3M9XCJhdWktcGxhdGZvcm0tbmF2X19zdGFnZVwiPlxuICAgICAgICAgICAge3sgaXRlbS5zdGFnZSB9fVxuICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cblxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXRlbS5jaGlsZHJlblwiPlxuICAgICAgICAgIDxhdWktbmF2LWl0ZW1cbiAgICAgICAgICAgICpuZ0Zvcj1cImxldCBpdGVtIG9mIGl0ZW0uY2hpbGRyZW47IHRyYWNrQnk6IHRyYWNrQnlLZXlcIlxuICAgICAgICAgICAgW2tleV09XCJpdGVtLmtleVwiXG4gICAgICAgICAgICBbZGl2aWRlcl09XCJpdGVtLmRpdmlkZXJcIlxuICAgICAgICAgID5cbiAgICAgICAgICAgIDxkaXYgKmF1aU5hdkl0ZW1Db250ZW50IGNsYXNzPVwiYXVpLXBsYXRmb3JtLW5hdl9faXRlbVwiPlxuICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYXVpLXBsYXRmb3JtLW5hdl9fbGFiZWxcIj57eyBpdGVtLmxhYmVsIH19PC9kaXY+XG4gICAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJpdGVtLnN0YWdlXCIgY2xhc3M9XCJhdWktcGxhdGZvcm0tbmF2X19zdGFnZVwiPlxuICAgICAgICAgICAgICAgIHt7IGl0ZW0uc3RhZ2UgfX1cbiAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8L2Rpdj5cblxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIml0ZW0uY2hpbGRyZW5cIj5cbiAgICAgICAgICAgICAgPGF1aS1uYXYtaXRlbVxuICAgICAgICAgICAgICAgICpuZ0Zvcj1cImxldCBpdGVtIG9mIGl0ZW0uY2hpbGRyZW47IHRyYWNrQnk6IHRyYWNrQnlLZXlcIlxuICAgICAgICAgICAgICAgIFtrZXldPVwiaXRlbS5rZXlcIlxuICAgICAgICAgICAgICAgIFtkaXZpZGVyXT1cIml0ZW0uZGl2aWRlclwiXG4gICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICA8ZGl2ICphdWlOYXZJdGVtQ29udGVudCBjbGFzcz1cImF1aS1wbGF0Zm9ybS1uYXZfX2l0ZW1cIj5cbiAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJhdWktcGxhdGZvcm0tbmF2X19sYWJlbFwiPnt7IGl0ZW0ubGFiZWwgfX08L2Rpdj5cbiAgICAgICAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJpdGVtLnN0YWdlXCIgY2xhc3M9XCJhdWktcGxhdGZvcm0tbmF2X19zdGFnZVwiPlxuICAgICAgICAgICAgICAgICAgICB7eyBpdGVtLnN0YWdlIH19XG4gICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgPC9hdWktbmF2LWl0ZW0+XG4gICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICA8L2F1aS1uYXYtaXRlbT5cbiAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICA8L2F1aS1uYXYtaXRlbT5cbiAgICA8L2F1aS1uYXYtaXRlbS1ncm91cD5cbiAgPC9uZy1jb250YWluZXI+XG48L2F1aS1uYXYtbWVudT5cbiJdfQ==
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","members":{"items":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"groups":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"mainPanelCollapsed":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"secondaryPanelCollapsed":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"hideMainPanelToggle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"hideSecondaryPanelToggle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"activatedKey":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"theme":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":1,"members":[]}}]}],"mainPanelCollapsedChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"secondaryPanelCollapsedChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"activatedKeyChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"activatedItemChange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbol":2,"members":[]}}]}],"handleActivatedKeyChange":[{"__symbolic":"method"}],"trackByKey":[{"__symbolic":"method"}],"findActivatedItem":[{"__symbolic":"method"}],"flatItems":[{"__symbolic":"method"}]}},"type":{"summaryKind":1,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[],"lifecycleHooks":[]},"isComponent":true,"selector":"aui-platform-nav","exportAs":null,"inputs":{"items":"items","groups":"groups","mainPanelCollapsed":"mainPanelCollapsed","secondaryPanelCollapsed":"secondaryPanelCollapsed","hideMainPanelToggle":"hideMainPanelToggle","hideSecondaryPanelToggle":"hideSecondaryPanelToggle","activatedKey":"activatedKey","theme":"theme"},"outputs":{"mainPanelCollapsedChange":"mainPanelCollapsedChange","secondaryPanelCollapsedChange":"secondaryPanelCollapsedChange","activatedKeyChange":"activatedKeyChange","activatedItemChange":"activatedItemChange"},"hostListeners":{},"hostProperties":{},"hostAttributes":{},"providers":[],"viewProviders":[],"queries":[],"guards":{},"viewQueries":[],"entryComponents":[],"changeDetection":0,"template":{"ngContentSelectors":[],"encapsulation":2,"styles":[],"animations":[]},"componentViewType":{"__symbol":3,"members":[]},"rendererType":{"__symbol":4,"members":[]},"componentFactory":{"__symbol":5,"members":[]}}}],"symbols":[{"__symbol":0,"name":"PlatformNavComponent","filePath":"./platform-nav.component"},{"__symbol":1,"name":"Input","filePath":"@angular/core"},{"__symbol":2,"name":"Output","filePath":"@angular/core"},{"__symbol":3,"name":"View_PlatformNavComponent_0","filePath":"./platform-nav.component.ngfactory"},{"__symbol":4,"name":"RenderType_PlatformNavComponent","filePath":"./platform-nav.component.ngfactory"},{"__symbol":5,"name":"PlatformNavComponentNgFactory","filePath":"./platform-nav.component.ngfactory"}]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview This file was generated by the Angular template compiler. Do not edit.
|
|
3
|
+
*
|
|
4
|
+
* @suppress {suspiciousCode,uselessCode,missingProperties,missingOverride,checkTypes,extraRequire}
|
|
5
|
+
* tslint:disable
|
|
6
|
+
*/
|
|
7
|
+
var styles = [".aui-platform-nav__item{display:flex;justify-content:space-between;align-items:center;width:100%}.aui-platform-nav__stage{margin-left:4px;color:#ffdf00}.aui-nav-item-tooltip .aui-platform-nav__stage,.aui-platform-nav__stage{font-family:Calibri;font-size:12px;font-weight:700;font-style:italic;transform:scale(.8333)}.aui-nav-item-tooltip .aui-platform-nav__stage{display:inline-block;padding:0 4.8px;border-radius:7.2px;line-height:14.4px;color:#333;background-color:#ffdf00}"];
|
|
8
|
+
export { styles as styles };
|
|
9
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGxhdGZvcm0tbmF2LmNvbXBvbmVudC5zY3NzLm5nc3R5bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvbmF2LW1lbnUvcGxhdGZvcm0tbmF2L3BsYXRmb3JtLW5hdi5jb21wb25lbnQuc2Nzcy5uZ3N0eWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iXX0=
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { IconModule } from '../icon/public-api';
|
|
4
|
+
import { NavMenuModule } from './nav-menu.module';
|
|
5
|
+
import { PlatformNavComponent } from './platform-nav/platform-nav.component';
|
|
6
|
+
export class PlatformNavModule {
|
|
7
|
+
}
|
|
8
|
+
PlatformNavModule.decorators = [
|
|
9
|
+
{ type: NgModule, args: [{
|
|
10
|
+
imports: [CommonModule, NavMenuModule, IconModule],
|
|
11
|
+
declarations: [PlatformNavComponent],
|
|
12
|
+
exports: [PlatformNavComponent],
|
|
13
|
+
},] }
|
|
14
|
+
];
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGxhdGZvcm0tbmF2Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9uYXYtbWVudS9wbGF0Zm9ybS1uYXYubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXpDLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUVoRCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDbEQsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sdUNBQXVDLENBQUM7QUFPN0UsTUFBTSxPQUFPLGlCQUFpQjs7O1lBTDdCLFFBQVEsU0FBQztnQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsYUFBYSxFQUFFLFVBQVUsQ0FBQztnQkFDbEQsWUFBWSxFQUFFLENBQUMsb0JBQW9CLENBQUM7Z0JBQ3BDLE9BQU8sRUFBRSxDQUFDLG9CQUFvQixDQUFDO2FBQ2hDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEljb25Nb2R1bGUgfSBmcm9tICcuLi9pY29uL3B1YmxpYy1hcGknO1xuXG5pbXBvcnQgeyBOYXZNZW51TW9kdWxlIH0gZnJvbSAnLi9uYXYtbWVudS5tb2R1bGUnO1xuaW1wb3J0IHsgUGxhdGZvcm1OYXZDb21wb25lbnQgfSBmcm9tICcuL3BsYXRmb3JtLW5hdi9wbGF0Zm9ybS1uYXYuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgTmF2TWVudU1vZHVsZSwgSWNvbk1vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW1BsYXRmb3JtTmF2Q29tcG9uZW50XSxcbiAgZXhwb3J0czogW1BsYXRmb3JtTmF2Q29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgUGxhdGZvcm1OYXZNb2R1bGUge31cbiJdfQ==
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview This file was generated by the Angular template compiler. Do not edit.
|
|
3
|
+
*
|
|
4
|
+
* @suppress {suspiciousCode,uselessCode,missingProperties,missingOverride,checkTypes,extraRequire}
|
|
5
|
+
* tslint:disable
|
|
6
|
+
*/
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "./platform-nav.module";
|
|
9
|
+
import * as i2 from "../tooltip/tooltip.component.ngfactory";
|
|
10
|
+
import * as i3 from "@angular/common";
|
|
11
|
+
import * as i4 from "../icon/icon-register.service";
|
|
12
|
+
import * as i5 from "@angular/common/http";
|
|
13
|
+
import * as i6 from "@angular/cdk/overlay";
|
|
14
|
+
import * as i7 from "@angular/cdk/bidi";
|
|
15
|
+
import * as i8 from "../tooltip/tooltip-intl";
|
|
16
|
+
import * as i9 from "@angular/cdk/platform";
|
|
17
|
+
import * as i10 from "@angular/cdk/scrolling";
|
|
18
|
+
import * as i11 from "../icon/icon.module";
|
|
19
|
+
import * as i12 from "@angular/cdk/portal";
|
|
20
|
+
import * as i13 from "../tooltip/tooltip.module";
|
|
21
|
+
import * as i14 from "./nav-menu.module";
|
|
22
|
+
var PlatformNavModuleNgFactory = i0.ɵcmf(i1.PlatformNavModule, [], function (_l) { return i0.ɵmod([i0.ɵmpd(512, i0.ComponentFactoryResolver, i0.ɵCodegenComponentFactoryResolver, [[8, [i2.TooltipComponentNgFactory]], [3, i0.ComponentFactoryResolver], i0.NgModuleRef]), i0.ɵmpd(4608, i3.NgLocalization, i3.NgLocaleLocalization, [i0.LOCALE_ID]), i0.ɵmpd(5120, i4.IconRegisterService, i4.ICON_REGISTER_PROVIDER_FACTORY, [[3, i4.IconRegisterService], [2, i3.DOCUMENT], [2, i5.HttpClient]]), i0.ɵmpd(4608, i6.Overlay, i6.Overlay, [i6.ScrollStrategyOptions, i6.OverlayContainer, i0.ComponentFactoryResolver, i6.OverlayPositionBuilder, i6.OverlayKeyboardDispatcher, i0.Injector, i0.NgZone, i3.DOCUMENT, i7.Directionality, i3.Location, i6.OverlayOutsideClickDispatcher]), i0.ɵmpd(5120, i6.ɵangular_material_src_cdk_overlay_overlay_a, i6.ɵangular_material_src_cdk_overlay_overlay_b, [i6.Overlay]), i0.ɵmpd(5120, i8.TooltipCopyIntl, i8.TOOLTIP_COPY_INTL_PROVIDER_FACTORY, [[3, i8.TooltipCopyIntl]]), i0.ɵmpd(1073742336, i3.CommonModule, i3.CommonModule, []), i0.ɵmpd(1073742336, i7.BidiModule, i7.BidiModule, []), i0.ɵmpd(1073742336, i9.PlatformModule, i9.PlatformModule, []), i0.ɵmpd(1073742336, i10.CdkScrollableModule, i10.CdkScrollableModule, []), i0.ɵmpd(1073742336, i10.ScrollingModule, i10.ScrollingModule, []), i0.ɵmpd(1073742336, i11.IconModule, i11.IconModule, []), i0.ɵmpd(1073742336, i12.PortalModule, i12.PortalModule, []), i0.ɵmpd(1073742336, i6.OverlayModule, i6.OverlayModule, []), i0.ɵmpd(1073742336, i13.TooltipModule, i13.TooltipModule, []), i0.ɵmpd(1073742336, i14.NavMenuModule, i14.NavMenuModule, []), i0.ɵmpd(1073742336, i1.PlatformNavModule, i1.PlatformNavModule, [])]); });
|
|
23
|
+
export { PlatformNavModuleNgFactory as PlatformNavModuleNgFactory };
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGxhdGZvcm0tbmF2Lm1vZHVsZS5uZ2ZhY3RvcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvbmF2LW1lbnUvcGxhdGZvcm0tbmF2Lm1vZHVsZS5uZ2ZhY3RvcnkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCAqIGFzIGkwIGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0ICogYXMgaTEgZnJvbSAnLi9wbGF0Zm9ybS1uYXYubW9kdWxlJztcbmltcG9ydCAqIGFzIGkyIGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgKiBhcyBpMyBmcm9tICcuL25hdi1tZW51LmNvbXBvbmVudCc7XG5pbXBvcnQgKiBhcyBpNCBmcm9tICcuL25hdi1pdGVtLWdyb3VwL25hdi1pdGVtLWdyb3VwLmNvbXBvbmVudCc7XG5pbXBvcnQgKiBhcyBpNSBmcm9tICcuL25hdi1pdGVtL25hdi1pdGVtLmNvbXBvbmVudCc7XG5pbXBvcnQgKiBhcyBpNiBmcm9tICcuLi9pY29uL2ljb24uY29tcG9uZW50JztcbmltcG9ydCAqIGFzIGk3IGZyb20gJy4vcGxhdGZvcm0tbmF2L3BsYXRmb3JtLW5hdi5jb21wb25lbnQnO1xuaW1wb3J0ICogYXMgaTggZnJvbSAnLi9uYXYtbWVudS5tb2R1bGUnO1xuaW1wb3J0ICogYXMgaTkgZnJvbSAnLi4vaWNvbi9pY29uLm1vZHVsZSc7XG5leHBvcnQgY29uc3QgUGxhdGZvcm1OYXZNb2R1bGVOZ0ZhY3Rvcnk6aTAuTmdNb2R1bGVGYWN0b3J5PGkxLlBsYXRmb3JtTmF2TW9kdWxlPiA9IChudWxsIGFzIGFueSk7XG52YXIgX2RlY2wwXzA6aTIuTmdDbGFzcyA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xOmkyLk5nQ29tcG9uZW50T3V0bGV0ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzI6aTIuTmdGb3JPZjxhbnksYW55PiA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8zOmkyLk5nSWY8YW55PiA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF80OmkyLk5nVGVtcGxhdGVPdXRsZXQgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNTppMi5OZ1N0eWxlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzY6aTIuTmdTd2l0Y2ggPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfNzppMi5OZ1N3aXRjaENhc2UgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfODppMi5OZ1N3aXRjaERlZmF1bHQgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfOTppMi5OZ1BsdXJhbCA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xMDppMi5OZ1BsdXJhbENhc2UgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTE6aTMuTmF2TWVudUNvbXBvbmVudCA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xMjppNC5OYXZJdGVtR3JvdXBDb21wb25lbnQgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMTM6aTUuTmF2SXRlbUNvbXBvbmVudCA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xNDppNS5OYXZJdGVtSWNvbkRpcmVjdGl2ZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xNTppNS5OYXZJdGVtQ29udGVudERpcmVjdGl2ZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xNjppNC5OYXZJdGVtR3JvdXBUaXRsZURpcmVjdGl2ZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8xNzppNi5JY29uQ29tcG9uZW50ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzE4Omk3LlBsYXRmb3JtTmF2Q29tcG9uZW50ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzE5OmkyLkFzeW5jUGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8yMDppMi5VcHBlckNhc2VQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzIxOmkyLkxvd2VyQ2FzZVBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjI6aTIuSnNvblBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjM6aTIuU2xpY2VQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzI0OmkyLkRlY2ltYWxQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzI1OmkyLlBlcmNlbnRQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzI2OmkyLlRpdGxlQ2FzZVBpcGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMjc6aTIuQ3VycmVuY3lQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzI4OmkyLkRhdGVQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzI5OmkyLkkxOG5QbHVyYWxQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzMwOmkyLkkxOG5TZWxlY3RQaXBlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzMxOmkyLktleVZhbHVlUGlwZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8zMjppMi5Db21tb25Nb2R1bGUgPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMzM6aTguTmF2TWVudU1vZHVsZSA9ICg8YW55PihudWxsIGFzIGFueSkpO1xudmFyIF9kZWNsMF8zNDppOS5JY29uTW9kdWxlID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG52YXIgX2RlY2wwXzM1OmkwLlRlbXBsYXRlUmVmPGFueT4gPSAoPGFueT4obnVsbCBhcyBhbnkpKTtcbnZhciBfZGVjbDBfMzY6aTAuRWxlbWVudFJlZjxhbnk+ID0gKDxhbnk+KG51bGwgYXMgYW55KSk7XG5mdW5jdGlvbiBfVmlld19QbGF0Zm9ybU5hdkNvbXBvbmVudF9Ib3N0XzFfMCgpOnZvaWQge1xuICB2YXIgX2FueTphbnkgPSAobnVsbCBhcyBhbnkpO1xufVxuZnVuY3Rpb24gX1ZpZXdfUGxhdGZvcm1OYXZDb21wb25lbnRfMV8wKCk6dm9pZCB7XG4gIHZhciBfYW55OmFueSA9IChudWxsIGFzIGFueSk7XG4gIGNvbnN0IGN1cnJWYWxfMDphbnkgPSBfZGVjbDBfMTguYWN0aXZhdGVkS2V5O1xuICBjdXJyVmFsXzA7XG4gIGNvbnN0IGN1cnJWYWxfMTphbnkgPSBfZGVjbDBfMTgubWFpblBhbmVsQ29sbGFwc2VkO1xuICBjdXJyVmFsXzE7XG4gIGNvbnN0IGN1cnJWYWxfMjphbnkgPSBfZGVjbDBfMTguc2Vjb25kYXJ5UGFuZWxDb2xsYXBzZWQ7XG4gIGN1cnJWYWxfMjtcbiAgY29uc3QgY3VyclZhbF8zOmFueSA9IF9kZWNsMF8xOC5oaWRlTWFpblBhbmVsVG9nZ2xlO1xuICBjdXJyVmFsXzM7XG4gIGNvbnN0IGN1cnJWYWxfNDphbnkgPSBfZGVjbDBfMTguaGlkZVNlY29uZGFyeVBhbmVsVG9nZ2xlO1xuICBjdXJyVmFsXzQ7XG4gIGNvbnN0IGN1cnJWYWxfNTphbnkgPSBfZGVjbDBfMTgudGhlbWU7XG4gIGN1cnJWYWxfNTtcbiAgY29uc3QgY3VyclZhbF82OmFueSA9IF9kZWNsMF8xOC5pdGVtcztcbiAgY3VyclZhbF82O1xuICBjb25zdCBjdXJyVmFsXzc6YW55ID0gX2RlY2wwXzE4Lmdyb3VwcztcbiAgY3VyclZhbF83O1xuICBjb25zdCBwZF84OmFueSA9ICgoPGFueT5fZGVjbDBfMTguaGFuZGxlQWN0aXZhdGVkS2V5Q2hhbmdlKF9hbnkpKSAhPT0gZmFsc2UpO1xuICBjb25zdCBwZF85OmFueSA9ICgoPGFueT5fZGVjbDBfMTgubWFpblBhbmVsQ29sbGFwc2VkQ2hhbmdlLmVtaXQoX2FueSkpICE9PSBmYWxzZSk7XG4gIGNvbnN0IHBkXzEwOmFueSA9ICgoPGFueT5fZGVjbDBfMTguc2Vjb25kYXJ5UGFuZWxDb2xsYXBzZWRDaGFuZ2UuZW1pdChfYW55KSkgIT09IGZhbHNlKTtcbn1cbiJdfQ==
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class"},"type":{"summaryKind":2,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[],"lifecycleHooks":[]},"entryComponents":[{"componentType":{"__symbol":1,"members":[]},"componentFactory":{"__symbol":2,"members":[]}}],"providers":[{"provider":{"token":{"identifier":{"reference":{"__symbol":3,"members":[]}}},"useClass":{"reference":{"__symbol":4,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":5,"members":[]}}}}],"lifecycleHooks":[]},"useFactory":null,"deps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":5,"members":[]}}}}],"multi":false},"module":{"reference":{"__symbol":6,"members":[]},"diDeps":[],"lifecycleHooks":[]}},{"provider":{"token":{"identifier":{"reference":{"__symbol":7,"members":[]}}},"useClass":null,"useFactory":{"reference":{"__symbol":8,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":true,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":7,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":9,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":10,"members":[]}}}}]},"deps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":true,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":7,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":9,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":10,"members":[]}}}}],"multi":false},"module":{"reference":{"__symbol":11,"members":[]},"diDeps":[],"lifecycleHooks":[]}},{"provider":{"token":{"identifier":{"reference":{"__symbol":12,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":13,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":14,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":15,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":16,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":17,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":18,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":19,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":9,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":20,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":21,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":22,"members":[]}}}}],"lifecycleHooks":[]}},"useClass":{"reference":{"__symbol":12,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":13,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":14,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":15,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":16,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":17,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":18,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":19,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":9,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":20,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":21,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":22,"members":[]}}}}],"lifecycleHooks":[]},"useFactory":null,"deps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":13,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":14,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":15,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":16,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":17,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":18,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":19,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":9,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":20,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":21,"members":[]}}}},{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":22,"members":[]}}}}],"multi":false},"module":{"reference":{"__symbol":23,"members":[]},"diDeps":[],"lifecycleHooks":[]}},{"provider":{"token":{"identifier":{"reference":{"__symbol":24,"members":[]}}},"useClass":null,"useFactory":{"reference":{"__symbol":25,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":12,"members":[]}}}}]},"deps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":false,"isOptional":false,"token":{"identifier":{"reference":{"__symbol":12,"members":[]}}}}],"multi":false},"module":{"reference":{"__symbol":23,"members":[]},"diDeps":[],"lifecycleHooks":[]}},{"provider":{"token":{"identifier":{"reference":{"__symbol":26,"members":[]}}},"useClass":null,"useFactory":{"reference":{"__symbol":27,"members":[]},"diDeps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":true,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":26,"members":[]}}}}]},"deps":[{"isAttribute":false,"isHost":false,"isSelf":false,"isSkipSelf":true,"isOptional":true,"token":{"identifier":{"reference":{"__symbol":26,"members":[]}}}}],"multi":false},"module":{"reference":{"__symbol":28,"members":[]},"diDeps":[],"lifecycleHooks":[]}}],"modules":[{"reference":{"__symbol":6,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":29,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":30,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":31,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":32,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":11,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":33,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":23,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":28,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":34,"members":[]},"diDeps":[],"lifecycleHooks":[]},{"reference":{"__symbol":0,"members":[]},"diDeps":[],"lifecycleHooks":[]}],"exportedDirectives":[{"reference":{"__symbol":35,"members":[]}}],"exportedPipes":[]}}],"symbols":[{"__symbol":0,"name":"PlatformNavModule","filePath":"./platform-nav.module"},{"__symbol":1,"name":"TooltipComponent","filePath":"../tooltip/tooltip.component"},{"__symbol":2,"name":"TooltipComponentNgFactory","filePath":"../tooltip/tooltip.component.ngfactory"},{"__symbol":3,"name":"NgLocalization","filePath":"@angular/common"},{"__symbol":4,"name":"NgLocaleLocalization","filePath":"@angular/common"},{"__symbol":5,"name":"LOCALE_ID","filePath":"@angular/core"},{"__symbol":6,"name":"CommonModule","filePath":"@angular/common"},{"__symbol":7,"name":"IconRegisterService","filePath":"../icon/icon-register.service"},{"__symbol":8,"name":"ICON_REGISTER_PROVIDER_FACTORY","filePath":"../icon/icon-register.service"},{"__symbol":9,"name":"DOCUMENT","filePath":"@angular/common"},{"__symbol":10,"name":"HttpClient","filePath":"@angular/common/http/http"},{"__symbol":11,"name":"IconModule","filePath":"../icon/icon.module"},{"__symbol":12,"name":"Overlay","filePath":"@angular/cdk/overlay/index"},{"__symbol":13,"name":"ScrollStrategyOptions","filePath":"@angular/cdk/overlay/index"},{"__symbol":14,"name":"OverlayContainer","filePath":"@angular/cdk/overlay/index"},{"__symbol":15,"name":"ComponentFactoryResolver","filePath":"@angular/core"},{"__symbol":16,"name":"OverlayPositionBuilder","filePath":"@angular/cdk/overlay/index"},{"__symbol":17,"name":"OverlayKeyboardDispatcher","filePath":"@angular/cdk/overlay/index"},{"__symbol":18,"name":"Injector","filePath":"@angular/core"},{"__symbol":19,"name":"NgZone","filePath":"@angular/core"},{"__symbol":20,"name":"Directionality","filePath":"@angular/cdk/bidi/index"},{"__symbol":21,"name":"Location","filePath":"@angular/common"},{"__symbol":22,"name":"OverlayOutsideClickDispatcher","filePath":"@angular/cdk/overlay/index"},{"__symbol":23,"name":"OverlayModule","filePath":"@angular/cdk/overlay/index"},{"__symbol":24,"name":"ɵangular_material_src_cdk_overlay_overlay_a","filePath":"@angular/cdk/overlay/index"},{"__symbol":25,"name":"ɵangular_material_src_cdk_overlay_overlay_b","filePath":"@angular/cdk/overlay/index"},{"__symbol":26,"name":"TooltipCopyIntl","filePath":"../tooltip/tooltip-intl"},{"__symbol":27,"name":"TOOLTIP_COPY_INTL_PROVIDER_FACTORY","filePath":"../tooltip/tooltip-intl"},{"__symbol":28,"name":"TooltipModule","filePath":"../tooltip/tooltip.module"},{"__symbol":29,"name":"BidiModule","filePath":"@angular/cdk/bidi/index"},{"__symbol":30,"name":"PlatformModule","filePath":"@angular/cdk/platform/index"},{"__symbol":31,"name":"CdkScrollableModule","filePath":"@angular/cdk/scrolling/index"},{"__symbol":32,"name":"ScrollingModule","filePath":"@angular/cdk/scrolling/index"},{"__symbol":33,"name":"PortalModule","filePath":"@angular/cdk/portal/index"},{"__symbol":34,"name":"NavMenuModule","filePath":"./nav-menu.module"},{"__symbol":35,"name":"PlatformNavComponent","filePath":"./platform-nav/platform-nav.component"}]}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
export * from './nav-menu.module';
|
|
2
2
|
export * from './nav-menu.component';
|
|
3
|
+
export * from './nav-item-group/nav-item-group.component';
|
|
4
|
+
export * from './nav-item/nav-item.component';
|
|
3
5
|
export * from './nav-menu.types';
|
|
4
|
-
|
|
6
|
+
export * from './platform-nav/platform-nav.component';
|
|
7
|
+
export * from './platform-nav.module';
|
|
8
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9uYXYtbWVudS9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLDJDQUEyQyxDQUFDO0FBQzFELGNBQWMsK0JBQStCLENBQUM7QUFDOUMsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsdUJBQXVCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL25hdi1tZW51Lm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL25hdi1tZW51LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL25hdi1pdGVtLWdyb3VwL25hdi1pdGVtLWdyb3VwLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL25hdi1pdGVtL25hdi1pdGVtLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL25hdi1tZW51LnR5cGVzJztcbmV4cG9ydCAqIGZyb20gJy4vcGxhdGZvcm0tbmF2L3BsYXRmb3JtLW5hdi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9wbGF0Zm9ybS1uYXYubW9kdWxlJztcbiJdfQ==
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbol":1,"members":[]}},{"symbol":{"__symbol":2,"members":[]},"metadata":{"__symbol":3,"members":[]}},{"symbol":{"__symbol":4,"members":[]},"metadata":{"__symbol":5,"members":[]}},{"symbol":{"__symbol":6,"members":[]},"metadata":{"__symbol":7,"members":[]}},{"symbol":{"__symbol":8,"members":[]},"metadata":{"__symbol":9,"members":[]}}],"symbols":[{"__symbol":0,"name":"NavMenuModule","filePath":"./public-api"},{"__symbol":1,"name":"NavMenuModule","filePath":"./nav-menu.module"},{"__symbol":2,"name":"NavMenuComponent","filePath":"./public-api"},{"__symbol":3,"name":"NavMenuComponent","filePath":"./nav-menu.component"},{"__symbol":4,"name":"
|
|
1
|
+
{"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbol":1,"members":[]}},{"symbol":{"__symbol":2,"members":[]},"metadata":{"__symbol":3,"members":[]}},{"symbol":{"__symbol":4,"members":[]},"metadata":{"__symbol":5,"members":[]}},{"symbol":{"__symbol":6,"members":[]},"metadata":{"__symbol":7,"members":[]}},{"symbol":{"__symbol":8,"members":[]},"metadata":{"__symbol":9,"members":[]}},{"symbol":{"__symbol":10,"members":[]},"metadata":{"__symbol":11,"members":[]}},{"symbol":{"__symbol":12,"members":[]},"metadata":{"__symbol":13,"members":[]}},{"symbol":{"__symbol":14,"members":[]},"metadata":{"__symbol":15,"members":[]}},{"symbol":{"__symbol":16,"members":[]},"metadata":{"__symbol":17,"members":[]}},{"symbol":{"__symbol":18,"members":[]},"metadata":{"__symbol":19,"members":[]}},{"symbol":{"__symbol":20,"members":[]},"metadata":{"__symbol":21,"members":[]}},{"symbol":{"__symbol":22,"members":[]},"metadata":{"__symbol":23,"members":[]}}],"symbols":[{"__symbol":0,"name":"NavMenuModule","filePath":"./public-api"},{"__symbol":1,"name":"NavMenuModule","filePath":"./nav-menu.module"},{"__symbol":2,"name":"NavMenuComponent","filePath":"./public-api"},{"__symbol":3,"name":"NavMenuComponent","filePath":"./nav-menu.component"},{"__symbol":4,"name":"NavItemGroupTitleDirective","filePath":"./public-api"},{"__symbol":5,"name":"NavItemGroupTitleDirective","filePath":"./nav-item-group/nav-item-group.component"},{"__symbol":6,"name":"NavItemGroupComponent","filePath":"./public-api"},{"__symbol":7,"name":"NavItemGroupComponent","filePath":"./nav-item-group/nav-item-group.component"},{"__symbol":8,"name":"NavItemIconDirective","filePath":"./public-api"},{"__symbol":9,"name":"NavItemIconDirective","filePath":"./nav-item/nav-item.component"},{"__symbol":10,"name":"NavItemContentDirective","filePath":"./public-api"},{"__symbol":11,"name":"NavItemContentDirective","filePath":"./nav-item/nav-item.component"},{"__symbol":12,"name":"NavItemComponent","filePath":"./public-api"},{"__symbol":13,"name":"NavItemComponent","filePath":"./nav-item/nav-item.component"},{"__symbol":14,"name":"NavItemKey","filePath":"./public-api"},{"__symbol":15,"name":"NavItemKey","filePath":"./nav-menu.types"},{"__symbol":16,"name":"NavItemConfig","filePath":"./public-api"},{"__symbol":17,"name":"NavItemConfig","filePath":"./nav-menu.types"},{"__symbol":18,"name":"NavGroupConfig","filePath":"./public-api"},{"__symbol":19,"name":"NavGroupConfig","filePath":"./nav-menu.types"},{"__symbol":20,"name":"PlatformNavComponent","filePath":"./public-api"},{"__symbol":21,"name":"PlatformNavComponent","filePath":"./platform-nav/platform-nav.component"},{"__symbol":22,"name":"PlatformNavModule","filePath":"./public-api"},{"__symbol":23,"name":"PlatformNavModule","filePath":"./platform-nav.module"}]}
|
|
@@ -9,7 +9,7 @@ PageComponent.decorators = [
|
|
|
9
9
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
10
10
|
encapsulation: ViewEncapsulation.None,
|
|
11
11
|
preserveWhitespaces: false,
|
|
12
|
-
styles: [".aui-page{min-height:100%;background-color:rgb(var(--aui-color-n-9))}.aui-page__header{top:0;z-index:101;justify-content:space-between;height:var(--aui-page-header-height);padding:0 var(--aui-page-padding-m) 0 var(--aui-page-padding-s);background-color:rgb(var(--aui-color-n-10));box-shadow:0 1px 4px 0 rgba(var(--aui-color-n-1),.1)}.aui-page__header,.aui-page__toolbar{position:fixed;left:0;right:0;display:flex;align-items:center}.aui-page__toolbar{top:var(--aui-page-header-height);z-index:100;height:var(--aui-page-toolbar-height);padding:0 var(--aui-page-padding-m);background-color:rgb(var(--aui-color-n-9))}.aui-page__snackbar{position:fixed;bottom:0;left:var(--aui-page-padding-m);right:var(--aui-page-padding-m);z-index:100;display:flex;justify-content:flex-end;align-items:center;height:var(--aui-page-snackbar-height);padding:0 var(--aui-page-padding-m);background-color:rgb(var(--aui-color-n-10));box-shadow:0 -1px 4px 0 rgba(var(--aui-color-n-1),.1);border-radius:var(--aui-border-radius-m)}.aui-page__sider{position:fixed;top:var(--aui-page-header-height);bottom:0;left:0;z-index:100;width:var(--aui-page-sider-width);overflow:auto;background-color:rgb(var(--aui-color-n-9));padding:var(--aui-page-padding-m)}.aui-page__sider::-webkit-scrollbar{width:4px;height:4px}.aui-page__sider::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3)}.aui-page__content{min-height:100vh;position:relative;padding:var(--aui-page-padding-m)}.aui-page.hasHeader .aui-page__content{padding-top:var(--aui-page-header-height)}.aui-page.hasToolbar .aui-page__content{padding-top:var(--aui-page-toolbar-height)}.aui-page.hasHeader.hasToolbar .aui-page__content{padding-top:calc(var(--aui-page-header-height) + var(--aui-page-toolbar-height))}.aui-page.hasSnackbar .aui-page__content{padding-bottom:calc(var(--aui-page-snackbar-height) + var(--aui-page-padding-m))}.aui-page.hasSider .aui-page__snackbar,.aui-page.hasSider .aui-page__toolbar{left:var(--aui-page-sider-width)}.aui-page.hasSider .aui-page__content{padding-left:var(--aui-page-sider-width)}"]
|
|
12
|
+
styles: [".aui-page{min-height:100%;background-color:rgb(var(--aui-color-n-9))}.aui-page__header{top:0;z-index:101;justify-content:space-between;height:var(--aui-page-header-height);padding:0 var(--aui-page-padding-m) 0 var(--aui-page-padding-s);background-color:rgb(var(--aui-color-n-10));box-shadow:0 1px 4px 0 rgba(var(--aui-color-n-1),.1)}.aui-page__header,.aui-page__toolbar{position:fixed;left:0;right:0;display:flex;align-items:center}.aui-page__toolbar{top:var(--aui-page-header-height);z-index:100;height:var(--aui-page-toolbar-height);padding:0 var(--aui-page-padding-m);background-color:rgb(var(--aui-color-n-9))}.aui-page__snackbar{position:fixed;bottom:0;left:var(--aui-page-padding-m);right:var(--aui-page-padding-m);z-index:100;display:flex;justify-content:flex-end;align-items:center;height:var(--aui-page-snackbar-height);padding:0 var(--aui-page-padding-m);background-color:rgb(var(--aui-color-n-10));box-shadow:0 -1px 4px 0 rgba(var(--aui-color-n-1),.1);border-radius:var(--aui-border-radius-m)}.aui-page__sider{position:fixed;top:var(--aui-page-header-height);bottom:0;left:0;z-index:100;width:var(--aui-page-sider-width);overflow:auto;background-color:rgb(var(--aui-color-n-9));padding:var(--aui-page-padding-m)}.aui-page__sider::-webkit-scrollbar{width:4px;height:4px}.aui-page__sider::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3)}.aui-page__content{min-height:100vh;position:relative;z-index:100;padding:var(--aui-page-padding-m)}.aui-page.hasHeader .aui-page__content{padding-top:var(--aui-page-header-height)}.aui-page.hasToolbar .aui-page__content{padding-top:var(--aui-page-toolbar-height)}.aui-page.hasHeader.hasToolbar .aui-page__content{padding-top:calc(var(--aui-page-header-height) + var(--aui-page-toolbar-height))}.aui-page.hasSnackbar .aui-page__content{padding-bottom:calc(var(--aui-page-snackbar-height) + var(--aui-page-padding-m))}.aui-page.hasSider .aui-page__snackbar,.aui-page.hasSider .aui-page__toolbar{left:var(--aui-page-sider-width)}.aui-page.hasSider .aui-page__content{padding-left:var(--aui-page-sider-width)}"]
|
|
13
13
|
},] }
|
|
14
14
|
];
|
|
15
15
|
PageComponent.propDecorators = {
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
* @suppress {suspiciousCode,uselessCode,missingProperties,missingOverride,checkTypes,extraRequire}
|
|
5
5
|
* tslint:disable
|
|
6
6
|
*/
|
|
7
|
-
var styles = [".aui-page{min-height:100%;background-color:rgb(var(--aui-color-n-9))}.aui-page__header{top:0;z-index:101;justify-content:space-between;height:var(--aui-page-header-height);padding:0 var(--aui-page-padding-m) 0 var(--aui-page-padding-s);background-color:rgb(var(--aui-color-n-10));box-shadow:0 1px 4px 0 rgba(var(--aui-color-n-1),.1)}.aui-page__header,.aui-page__toolbar{position:fixed;left:0;right:0;display:flex;align-items:center}.aui-page__toolbar{top:var(--aui-page-header-height);z-index:100;height:var(--aui-page-toolbar-height);padding:0 var(--aui-page-padding-m);background-color:rgb(var(--aui-color-n-9))}.aui-page__snackbar{position:fixed;bottom:0;left:var(--aui-page-padding-m);right:var(--aui-page-padding-m);z-index:100;display:flex;justify-content:flex-end;align-items:center;height:var(--aui-page-snackbar-height);padding:0 var(--aui-page-padding-m);background-color:rgb(var(--aui-color-n-10));box-shadow:0 -1px 4px 0 rgba(var(--aui-color-n-1),.1);border-radius:var(--aui-border-radius-m)}.aui-page__sider{position:fixed;top:var(--aui-page-header-height);bottom:0;left:0;z-index:100;width:var(--aui-page-sider-width);overflow:auto;background-color:rgb(var(--aui-color-n-9));padding:var(--aui-page-padding-m)}.aui-page__sider::-webkit-scrollbar{width:4px;height:4px}.aui-page__sider::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3)}.aui-page__content{min-height:100vh;position:relative;padding:var(--aui-page-padding-m)}.aui-page.hasHeader .aui-page__content{padding-top:var(--aui-page-header-height)}.aui-page.hasToolbar .aui-page__content{padding-top:var(--aui-page-toolbar-height)}.aui-page.hasHeader.hasToolbar .aui-page__content{padding-top:calc(var(--aui-page-header-height) + var(--aui-page-toolbar-height))}.aui-page.hasSnackbar .aui-page__content{padding-bottom:calc(var(--aui-page-snackbar-height) + var(--aui-page-padding-m))}.aui-page.hasSider .aui-page__snackbar,.aui-page.hasSider .aui-page__toolbar{left:var(--aui-page-sider-width)}.aui-page.hasSider .aui-page__content{padding-left:var(--aui-page-sider-width)}"];
|
|
7
|
+
var styles = [".aui-page{min-height:100%;background-color:rgb(var(--aui-color-n-9))}.aui-page__header{top:0;z-index:101;justify-content:space-between;height:var(--aui-page-header-height);padding:0 var(--aui-page-padding-m) 0 var(--aui-page-padding-s);background-color:rgb(var(--aui-color-n-10));box-shadow:0 1px 4px 0 rgba(var(--aui-color-n-1),.1)}.aui-page__header,.aui-page__toolbar{position:fixed;left:0;right:0;display:flex;align-items:center}.aui-page__toolbar{top:var(--aui-page-header-height);z-index:100;height:var(--aui-page-toolbar-height);padding:0 var(--aui-page-padding-m);background-color:rgb(var(--aui-color-n-9))}.aui-page__snackbar{position:fixed;bottom:0;left:var(--aui-page-padding-m);right:var(--aui-page-padding-m);z-index:100;display:flex;justify-content:flex-end;align-items:center;height:var(--aui-page-snackbar-height);padding:0 var(--aui-page-padding-m);background-color:rgb(var(--aui-color-n-10));box-shadow:0 -1px 4px 0 rgba(var(--aui-color-n-1),.1);border-radius:var(--aui-border-radius-m)}.aui-page__sider{position:fixed;top:var(--aui-page-header-height);bottom:0;left:0;z-index:100;width:var(--aui-page-sider-width);overflow:auto;background-color:rgb(var(--aui-color-n-9));padding:var(--aui-page-padding-m)}.aui-page__sider::-webkit-scrollbar{width:4px;height:4px}.aui-page__sider::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3)}.aui-page__content{min-height:100vh;position:relative;z-index:100;padding:var(--aui-page-padding-m)}.aui-page.hasHeader .aui-page__content{padding-top:var(--aui-page-header-height)}.aui-page.hasToolbar .aui-page__content{padding-top:var(--aui-page-toolbar-height)}.aui-page.hasHeader.hasToolbar .aui-page__content{padding-top:calc(var(--aui-page-header-height) + var(--aui-page-toolbar-height))}.aui-page.hasSnackbar .aui-page__content{padding-bottom:calc(var(--aui-page-snackbar-height) + var(--aui-page-padding-m))}.aui-page.hasSider .aui-page__snackbar,.aui-page.hasSider .aui-page__toolbar{left:var(--aui-page-sider-width)}.aui-page.hasSider .aui-page__content{padding-left:var(--aui-page-sider-width)}"];
|
|
8
8
|
export { styles as styles };
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS5jb21wb25lbnQuc2Nzcy5uZ3N0eWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3BhZ2UvcGFnZS5jb21wb25lbnQuc2Nzcy5uZ3N0eWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBpMCBmcm9tICdAYW5ndWxhci9jb3JlJztcbmkwLkNvbXBvbmVudEZhY3Rvcnk7XG4iXX0=
|