IAnalyticsCatalogFilterProps
Home > @gooddata/sdk-ui-catalog > IAnalyticsCatalogFilterProps
IAnalyticsCatalogFilterProps interface
Props for AnalyticsCatalogFilter().
Signature:
export interface IAnalyticsCatalogFilterProps<T>
Properties
|
Property |
Modifiers |
Type |
Description |
|---|---|---|---|
|
ReactNode |
(Optional) Optional custom action buttons replacing default Apply/Cancel. | ||
|
string |
Test id applied to the root element for automation. | ||
|
(item: T) => string |
(Optional) Derives unique key for option items. Defaults to string coercion. | ||
|
(item: T) => string |
(Optional) Derives display title for option items. Defaults to string coercion. | ||
|
boolean |
Whether the selection is inverted. | ||
|
string |
Label shown on the trigger button and header. | ||
|
ReactNode |
(Optional) Message rendered when there are no items to display. | ||
|
(selection: T[], isInverted: boolean) => void |
Called when selection changes and user confirms. | ||
|
T[] |
All selectable options. | ||
|
T[] |
Currently selected options (empty means none when not inverted). | ||
|
ReactNode |
(Optional) Optional status bar content rendered under the list. |