[ADF-3435][ADF-3436] fix search chips (#3681)

* fix chip list remove

* fix tests

* better find criteria

* swap to fix e2e test

* set 'expanded' for facetFields from config

* fix e2e test

* remove comments
This commit is contained in:
Suzana Dirla
2018-08-10 15:04:13 +03:00
committed by Eugenio Romano
parent c328d70e43
commit 6f313b7c37
10 changed files with 58 additions and 41 deletions

View File

@@ -32,7 +32,10 @@ export interface SearchConfiguration {
expanded?: boolean;
queries: Array<FacetQuery>;
};
facetFields?: Array<FacetField>;
facetFields?: {
expanded?: boolean;
fields: Array<FacetField>;
};
sorting?: {
options: Array<SearchSortingDefinition>;
defaults: Array<SearchSortingDefinition>;