Bulk editor component skeleton

This commit is contained in:
Michael Shamoon
2020-12-18 21:19:49 -08:00
parent 55a6dca373
commit 01d448ecde
5 changed files with 107 additions and 99 deletions

View File

@@ -27,6 +27,9 @@ export class FilterableDropdownComponent {
@Output()
toggle = new EventEmitter()
@Output()
close = new EventEmitter()
@ViewChild('listFilterTextInput') listFilterTextInput: ElementRef
@ViewChild('dropdown') dropdown: NgbDropdown
@@ -47,6 +50,7 @@ export class FilterableDropdownComponent {
}, 0);
} else {
this.filterText = ''
this.close.emit(this.itemsSelected)
}
}