src/modules/generic-search/entities/generic-search-action-bar-config.intf.ts
This interface describes the properties of the action bar displayed in the generic search component.
Properties |
new |
new:
|
Type : StarkCustomizablePredefinedAction
|
Optional |
Configuration of the new action displayed in the Generic Search component |
reset |
reset:
|
Type : StarkCustomizablePredefinedAction
|
Optional |
Configuration of the reset action displayed in the Generic Search component |
search |
search:
|
Type : StarkDefaultPredefinedAction
|
Optional |
Configuration of the search action displayed in the Generic Search component |
import {
StarkActionBarConfig,
StarkCustomizablePredefinedAction,
StarkDefaultPredefinedAction
} from "@nationalbankbelgium/stark-ui/src/modules/action-bar";
/**
* This interface describes the properties of the action bar displayed in the generic search component.
*/
export interface StarkGenericSearchActionBarConfig extends StarkActionBarConfig {
/**
* Configuration of the search action displayed in the Generic Search component
*/
search?: StarkDefaultPredefinedAction;
/**
* Configuration of the new action displayed in the Generic Search component
*/
new?: StarkCustomizablePredefinedAction;
/**
* Configuration of the reset action displayed in the Generic Search component
*/
reset?: StarkCustomizablePredefinedAction;
}