@kris701/ez-ui 1.1.14 → 1.1.15
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.
|
@@ -5336,13 +5336,18 @@ class EzUILayout {
|
|
|
5336
5336
|
...(ngDevMode ? [{ debugName: "sidebarFooterItems" }] : /* istanbul ignore next */ []));
|
|
5337
5337
|
topbarright;
|
|
5338
5338
|
topbarlogo;
|
|
5339
|
+
sidebar;
|
|
5340
|
+
forceLoadSidebar() {
|
|
5341
|
+
if (this.sidebar)
|
|
5342
|
+
this.sidebar.initialize();
|
|
5343
|
+
}
|
|
5339
5344
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.0", ngImport: i0, type: EzUILayout, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
5340
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.1.0", type: EzUILayout, isStandalone: true, selector: "ezui-layout", inputs: { sidebarItems: "sidebarItems", sidebarFooterItems: "sidebarFooterItems" }, queries: [{ propertyName: "topbarright", first: true, predicate: ["topbarright"], descendants: true }, { propertyName: "topbarlogo", first: true, predicate: ["topbarlogo"], descendants: true }], ngImport: i0, template: `
|
|
5345
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.1.0", type: EzUILayout, isStandalone: true, selector: "ezui-layout", inputs: { sidebarItems: "sidebarItems", sidebarFooterItems: "sidebarFooterItems" }, queries: [{ propertyName: "topbarright", first: true, predicate: ["topbarright"], descendants: true }, { propertyName: "topbarlogo", first: true, predicate: ["topbarlogo"], descendants: true }, { propertyName: "sidebar", first: true, predicate: ["sidebar"], descendants: true }], ngImport: i0, template: `
|
|
5341
5346
|
<tui-root class="rootContainer">
|
|
5342
5347
|
<div class="layout-wrapper">
|
|
5343
5348
|
<ezui-topbar></ezui-topbar>
|
|
5344
5349
|
<div class="layout-wrapper-split">
|
|
5345
|
-
<ezui-sidebar></ezui-sidebar>
|
|
5350
|
+
<ezui-sidebar #sidebar></ezui-sidebar>
|
|
5346
5351
|
<div class="layout-main-container">
|
|
5347
5352
|
<tui-scrollbar class="layout-main">
|
|
5348
5353
|
<router-outlet></router-outlet>
|
|
@@ -5360,7 +5365,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.0", ngImpor
|
|
|
5360
5365
|
<div class="layout-wrapper">
|
|
5361
5366
|
<ezui-topbar></ezui-topbar>
|
|
5362
5367
|
<div class="layout-wrapper-split">
|
|
5363
|
-
<ezui-sidebar></ezui-sidebar>
|
|
5368
|
+
<ezui-sidebar #sidebar></ezui-sidebar>
|
|
5364
5369
|
<div class="layout-main-container">
|
|
5365
5370
|
<tui-scrollbar class="layout-main">
|
|
5366
5371
|
<router-outlet></router-outlet>
|
|
@@ -5380,6 +5385,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.0", ngImpor
|
|
|
5380
5385
|
}], topbarlogo: [{
|
|
5381
5386
|
type: ContentChild,
|
|
5382
5387
|
args: ['topbarlogo', { static: false }]
|
|
5388
|
+
}], sidebar: [{
|
|
5389
|
+
type: ContentChild,
|
|
5390
|
+
args: ['sidebar', { static: false }]
|
|
5383
5391
|
}] } });
|
|
5384
5392
|
|
|
5385
5393
|
// Components
|