mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-16 21:35:13 +00:00
37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
<div fxFlex fxLayout="row" fxLayoutAlign="start center" class="p-24">
|
|
|
|
<div class="close-button-wrapper" fxFlex="0 1 auto" fxFlex.gt-sm="220px" (click)="deselectAll()">
|
|
<button class="p-8" mat-button fxLayout="row" fxLayoutAlign="start center">
|
|
<mat-icon class="mr-8">arrow_back</mat-icon>
|
|
<span class="text-uppercase">Back</span>
|
|
</button>
|
|
</div>
|
|
|
|
<div fxFlex fxLayout="row" fxLayoutAlign="end center" fxLayoutAlign.gt-sm="space-between center">
|
|
|
|
<div>
|
|
<span class="selected-contacts-count">
|
|
<span class="mr-4">{{selectedContacts.length}}</span>
|
|
<span>selected</span>
|
|
</span>
|
|
|
|
<button mat-icon-button [matMenuTriggerFor]="selectMenu">
|
|
<mat-icon>arrow_drop_down</mat-icon>
|
|
</button>
|
|
<mat-menu #selectMenu="matMenu">
|
|
<button mat-menu-item (click)="selectAll()">Select all</button>
|
|
<button mat-menu-item (click)="deselectAll()">Deselect all</button>
|
|
</mat-menu>
|
|
|
|
</div>
|
|
|
|
<div class="multi-select-actions">
|
|
<button mat-icon-button (click)="deleteSelectedContacts()" aria-label="delete selected">
|
|
<mat-icon>delete</mat-icon>
|
|
</button>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|