@ynput/ayon-react-components 1.17.0 → 1.17.2
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;
|