@ynput/ayon-react-components 1.13.1 → 1.14.0

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.
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
1
+ /// <reference types="react" />
2
2
  import { Filter, Option } from './types';
3
3
  import { SearchFilterItemProps } from './SearchFilterItem';
4
4
  import { SearchFilterDropdownProps } from './SearchFilterDropdown/SearchFilterDropdown';
@@ -25,4 +25,10 @@ export interface SearchFilterProps extends Omit<React.HTMLAttributes<HTMLDivElem
25
25
  backdrop?: React.HTMLAttributes<HTMLDivElement>;
26
26
  };
27
27
  }
28
- export declare const SearchFilter: FC<SearchFilterProps>;
28
+ export interface SearchFilterRef {
29
+ open: () => void;
30
+ close: () => void;
31
+ getContainerElement: () => HTMLDivElement | null;
32
+ getFiltersBarElement: () => HTMLDivElement | null;
33
+ }
34
+ export declare const SearchFilter: import("react").ForwardRefExoticComponent<SearchFilterProps & import("react").RefAttributes<SearchFilterRef>>;