mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* [ADF-2626] added preserved state functionality for sidenav component
* [ADF-2626] changed logic for preserving the sidenav component state
* [ADF-2626] added missing curly brace }
* [ADF-2626] small changes on logic based on pr comments
* [ADF-2843] added tooltip for create folder and edit folder icons from Content Services
* Revert "[ADF-2843] added tooltip for create folder and edit folder icons from Content Services"
This reverts commit d5a7abb65b
.
* [ADF-2626] changed casting
* [ADF-2626] updated documentation with event
* [ADF-2626] removed app-config pipe because it was not being used
27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
<div class="sidenav-layout">
|
|
<ng-container *ngIf="!isHeaderInside">
|
|
<ng-container class="adf-sidenav-layout-outer-header" *ngTemplateOutlet="headerTemplate; context:templateContext"></ng-container>
|
|
</ng-container>
|
|
|
|
<adf-layout-container #container
|
|
[sidenavMin]="sidenavMin"
|
|
[sidenavMax]="sidenavMax"
|
|
[mediaQueryList]="mediaQueryList"
|
|
[hideSidenav]="hideSidenav"
|
|
[expandedSidenav]="expandedSidenav"
|
|
data-automation-id="adf-layout-container"
|
|
class="layout__content">
|
|
|
|
<ng-container app-layout-navigation *ngTemplateOutlet="navigationTemplate; context:templateContext"></ng-container>
|
|
|
|
<ng-container app-layout-content>
|
|
<ng-container *ngIf="isHeaderInside">
|
|
<ng-container *ngTemplateOutlet="headerTemplate; context:templateContext"></ng-container>
|
|
</ng-container>
|
|
<ng-container *ngTemplateOutlet="contentTemplate; context:templateContext"></ng-container>
|
|
</ng-container>
|
|
</adf-layout-container>
|
|
</div>
|
|
|
|
<ng-template #emptyTemplate></ng-template>
|