[ADF-1238] Search debounce click issue fix and minor style clean (#2361)

* fix search issues no result table not shown
minor issues style button

* fix issue animation search input field debouncing toggle search

* fix test search
remove expandable probeprties

* remove test expand

* ripristinate expandable properties

* fix test
This commit is contained in:
Eugenio Romano
2017-09-21 20:13:37 +01:00
committed by Denys Vuika
parent fbaf901462
commit 62f6ca0d08
20 changed files with 128 additions and 78 deletions

View File

@@ -4,7 +4,6 @@
[highlight]="true"
(searchSubmit)="onSearchSubmit($event);"
(searchChange)="onSearchTermChange($event);"
(expand)="onExpandToggle($event);"
(fileSelect)="onItemClicked($event)">
</adf-search-control>

View File

@@ -64,8 +64,4 @@ export class SearchBarComponent {
onSearchTermChange(event) {
this.searchTerm = event.value;
}
onExpandToggle(event) {
this.expand.emit(event);
}
}