@eml-payments/ui-kit 1.8.5 → 1.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -28,9 +28,10 @@ type ButtonGroupOption = ButtonGroupProps & {
|
|
|
28
28
|
type: typeof BUTTON_GROUP_TYPE;
|
|
29
29
|
name: string;
|
|
30
30
|
};
|
|
31
|
-
type SearchInputFilterOption = SearchInputProps & {
|
|
31
|
+
type SearchInputFilterOption = Omit<SearchInputProps, 'onSearch'> & {
|
|
32
32
|
type: typeof SEARCH_INPUT_TYPE;
|
|
33
33
|
name: string;
|
|
34
|
+
onSearch?: (query: string) => void;
|
|
34
35
|
};
|
|
35
36
|
export type FilterConfigType = DateRangeFilterOption | SelectFilterOption | CheckboxFilterOption | ButtonGroupOption | SearchInputFilterOption;
|
|
36
37
|
export type FiltersHandle = {
|