@ynput/ayon-react-components 1.17.1 → 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.
@@ -2,6 +2,9 @@ import { HTMLAttributes, ReactNode } from 'react';
2
2
  import { DropdownProps, DropdownRef } from '../Dropdown';
3
3
  import { SortCardProps } from './SortCard';
4
4
 
5
+ export declare const AddAnotherButton: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<import('../../Icon').IconProps & import('react').RefAttributes<HTMLSpanElement>, "ref"> & {
6
+ ref?: ((instance: HTMLSpanElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLSpanElement> | null | undefined;
7
+ }, never>> & string & Omit<import('react').ForwardRefExoticComponent<import('../../Icon').IconProps & import('react').RefAttributes<HTMLSpanElement>>, keyof import('react').Component<any, {}, any>>;
5
8
  export type SortCardType = {
6
9
  id: string;
7
10
  label: string;
@@ -12,6 +15,7 @@ export interface SortingDropdownProps extends Omit<DropdownProps, 'value' | 'onC
12
15
  options: SortCardType[];
13
16
  onChange: (value: SortCardType[]) => void;
14
17
  title: string;
18
+ multiSelectButton?: boolean;
15
19
  renderValueContent?: (props: {
16
20
  isOpen: boolean;
17
21
  title: string;
@@ -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;