mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-09-17 14:21:14 +00:00
* header action order property * apply sort for parents and children * update tests * use parent class to set style * render user component through configuration * header should allow disable actions rendering * update e2e header resource
21 lines
612 B
HTML
21 lines
612 B
HTML
<adf-layout-header
|
|
[logo]="logo$ | async"
|
|
[redirectUrl]="'/personal-files'"
|
|
[tooltip]="appName$ | async"
|
|
[color]="headerColor$ | async"
|
|
[title]="appName$ | async"
|
|
(clicked)="toggleClicked.emit($event)"
|
|
[expandedSidenav]="expandedSidenav"
|
|
>
|
|
<div class="adf-toolbar--spacer adf-toolbar-divider"></div>
|
|
|
|
<aca-search-input></aca-search-input>
|
|
|
|
<adf-toolbar-divider></adf-toolbar-divider>
|
|
|
|
<ng-container *ngFor="let actionRef of actions; trackBy: trackByActionId">
|
|
<aca-toolbar-action [actionRef]="actionRef" color="default">
|
|
</aca-toolbar-action>
|
|
</ng-container>
|
|
</adf-layout-header>
|