@ynput/ayon-react-components 1.15.2 → 1.15.3

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.
@@ -9,8 +9,6 @@ export interface SearchFilterProps extends Omit<React.HTMLAttributes<HTMLDivElem
9
9
  onFinish?: (filters: Filter[]) => void;
10
10
  enableGlobalSearch?: boolean;
11
11
  globalSearchConfig?: {
12
- label?: string;
13
- icon?: string;
14
12
  enableMultiple?: boolean;
15
13
  };
16
14
  enableSearchChildren?: boolean;
@@ -7,6 +7,7 @@ export interface SearchFilterItemProps extends Omit<React.HTMLAttributes<HTMLDiv
7
7
  isInvertedAllowed?: boolean;
8
8
  isDisabled?: boolean;
9
9
  isCompact?: boolean;
10
+ isSearch?: boolean;
10
11
  onEdit?: (id: string) => void;
11
12
  onRemove?: (id: string) => void;
12
13
  onInvert?: (id: string) => void;
@@ -0,0 +1 @@
1
+ export declare const SEARCH_FILTER_ID = "--search--";
@@ -2,3 +2,4 @@ export * from './SearchFilter';
2
2
  export * from './types';
3
3
  export * from './buildFilterId';
4
4
  export * from './getFilterFromId';
5
+ export * from './constants';