@ansible/ansible-ui-framework 2.4.254 → 2.4.256

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,8 +6,11 @@ export interface IToolbarSelectFilterOption {
6
6
  value: string;
7
7
  }
8
8
  export interface IToolbarSelectFilter extends ToolbarFilterCommon {
9
- type: 'select';
9
+ type: 'select' | 'selectTypeAhead';
10
10
  options: IToolbarSelectFilterOption[];
11
+ hasSearch?: boolean;
12
+ onSearchTextChange?: (searchText: string) => void;
13
+ variant?: SelectVariant;
11
14
  }
12
15
  export declare function ToolbarSelectFilter(props: {
13
16
  addFilter: (value: string) => void;
@@ -20,4 +23,5 @@ export declare function ToolbarSelectFilter(props: {
20
23
  placeholder?: string;
21
24
  hasSearch?: boolean;
22
25
  variant?: SelectVariant;
26
+ onSearchTextChange?: (text: string) => void;
23
27
  }): import("react/jsx-runtime").JSX.Element;