@ynput/ayon-react-components 1.17.2 → 1.17.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,3 +9,4 @@ export declare const Scopes: Story;
9
9
  export declare const WithExternalControl: Story;
10
10
  export declare const OperationsTemplate: Story;
11
11
  export declare const OptionsContent: Story;
12
+ export declare const CustomRangeDebug: Story;
@@ -0,0 +1,7 @@
1
+ import { SearchFilterProps } from './SearchFilter';
2
+ import { Option } from './types';
3
+
4
+ export interface SearchFilterCustomRangeDebugProps extends Omit<SearchFilterProps, 'options' | 'filters' | 'onChange' | 'onFinish'> {
5
+ baseOptions: Option[];
6
+ }
7
+ export declare const SearchFilterCustomRangeDebug: ({ baseOptions, pt, ...props }: SearchFilterCustomRangeDebugProps) => import("react/jsx-runtime").JSX.Element;