@ansible/ansible-ui-framework 2.4.131 → 2.4.132

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,6 +10,7 @@ export interface IToolbarStringFilter {
10
10
  type: 'string';
11
11
  query: string;
12
12
  placeholder: string;
13
+ isPinned?: boolean;
13
14
  }
14
15
  export interface IToolbarSelectFilter {
15
16
  key: string;
@@ -21,6 +22,7 @@ export interface IToolbarSelectFilter {
21
22
  }[];
22
23
  query: string;
23
24
  placeholder: string;
25
+ isPinned?: boolean;
24
26
  }
25
27
  export type IToolbarFilter = IToolbarStringFilter | IToolbarSelectFilter;
26
28
  export type IFilterState = Record<string, string[] | undefined>;