mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACA-4487] support search forms layout (#2195)
* [ACA-4487] support search chips -initial commit * * update adf, fixed comments and e2e * * update context menu test * * update tool bar test * * remove await expect * * add e2e back
This commit is contained in:
@@ -27,25 +27,10 @@ import { Action } from '@ngrx/store';
|
||||
import { SearchOptionModel } from '../models/search-option.model';
|
||||
|
||||
export enum SearchActionTypes {
|
||||
SearchByTerm = 'SEARCH_BY_TERM',
|
||||
ToggleFilter = 'TOGGLE_SEARCH_FILTER',
|
||||
ShowFilter = 'SHOW_SEARCH_FILTER',
|
||||
HideFilter = 'HIDE_SEARCH_FILTER'
|
||||
SearchByTerm = 'SEARCH_BY_TERM'
|
||||
}
|
||||
|
||||
export class SearchByTermAction implements Action {
|
||||
readonly type = SearchActionTypes.SearchByTerm;
|
||||
constructor(public payload: string, public searchOptions?: SearchOptionModel[]) {}
|
||||
}
|
||||
|
||||
export class ToggleSearchFilterAction implements Action {
|
||||
readonly type = SearchActionTypes.ToggleFilter;
|
||||
}
|
||||
|
||||
export class ShowSearchFilterAction implements Action {
|
||||
readonly type = SearchActionTypes.ShowFilter;
|
||||
}
|
||||
|
||||
export class HideSearchFilterAction implements Action {
|
||||
readonly type = SearchActionTypes.HideFilter;
|
||||
}
|
||||
|
Reference in New Issue
Block a user