mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* update material2 beta12 update angular2 4.4.5 * fix changed version js-api * update types hammerjs * fix test * clean old doc * fix pagination test * fix test * missing update packages * fix <mat-form-field> for select box * start task component test
28 lines
948 B
HTML
28 lines
948 B
HTML
<adf-toolbar>
|
|
<adf-toolbar-title>
|
|
<mat-form-field>
|
|
<mat-select [(ngModel)]="selectedSource">
|
|
<mat-option *ngFor="let source of sources" [value]="source.value">
|
|
{{ source.title }}
|
|
</mat-option>
|
|
</mat-select>
|
|
</mat-form-field>
|
|
</adf-toolbar-title>
|
|
|
|
<div fxFlex="0 1 auto" class="adf-document-action-buttons" fxShow fxHide.lt-sm="true">
|
|
<button mat-icon-button
|
|
(restore)="documentList.reload()"
|
|
[disabled]="!documentList.selection.length"
|
|
*ngIf="selectedSource === '-trashcan-'"
|
|
location="/files"
|
|
[adf-restore]="documentList.selection">
|
|
<mat-icon>restore</mat-icon>
|
|
</button>
|
|
</div>
|
|
</adf-toolbar>
|
|
<adf-document-list
|
|
[currentFolderId]="selectedSource"
|
|
locationFormat="/files"
|
|
selectionMode="multiple">
|
|
</adf-document-list>
|