remove "Remove All"

This commit is contained in:
jonaswinkler
2020-12-27 13:12:01 +01:00
parent a2ad62b310
commit bf79b252ad
3 changed files with 0 additions and 18 deletions

View File

@@ -19,12 +19,6 @@
<input class="form-control" type="text" [(ngModel)]="filterText" placeholder="Filter {{title}}" (keyup.enter)="listFilterEnter()" #listFilterTextInput>
</div>
</div>
<button *ngIf="showRemoveAll" role="menuitem" class="list-group-item list-group-item-action d-flex align-items-center p-2 border-top-0 border-left-0 border-right-0 border-bottom" (click)="removeAll.next()">
<svg class="toolbaricon text-danger" fill="currentColor">
<use xlink:href="assets/bootstrap-icons.svg#x" />
</svg>
<small class="my-1">Remove All</small>
</button>
<div *ngIf="toggleableItems" class="items">
<ng-container *ngFor="let toggleableItem of toggleableItems | filter: filterText">
<app-toggleable-dropdown-button [toggleableItem]="toggleableItem" [showCounts]="showCounts" (toggle)="toggleItem($event)"></app-toggleable-dropdown-button>

View File

@@ -67,18 +67,12 @@ export class FilterableDropdownComponent {
@Input()
singular: boolean = false
@Input()
showRemoveAll: boolean = false
@Output()
toggle = new EventEmitter()
@Output()
open = new EventEmitter()
@Output()
removeAll = new EventEmitter()
@Output()
editingComplete = new EventEmitter()