@ynput/ayon-react-components 0.3.12 → 0.3.15

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.
@@ -5,12 +5,13 @@ export declare const OptionsStyled: import("styled-components").StyledComponent<
5
5
  $search: boolean;
6
6
  $startAnimation: boolean;
7
7
  $animationHeight: number;
8
- $maxHeight: number;
8
+ $maxHeight?: number | undefined;
9
9
  }, never>;
10
10
  export declare const ListItemStyled: import("styled-components").StyledComponent<"li", any, {
11
11
  $focused: boolean;
12
12
  $usingKeyboard: boolean;
13
13
  $startAnimation: boolean;
14
+ $disabled?: boolean | undefined;
14
15
  }, never>;
15
16
  export declare const DefaultItemStyled: import("styled-components").StyledComponent<"span", any, {
16
17
  $isSelected: boolean;
@@ -48,5 +49,7 @@ export interface DropdownProps {
48
49
  onClear?: () => void;
49
50
  editable?: boolean;
50
51
  maxHeight?: number;
52
+ disableReorder?: boolean;
53
+ disabledValues?: (string | number)[];
51
54
  }
52
55
  export declare const Dropdown: import("react").ForwardRefExoticComponent<DropdownProps & import("react").RefAttributes<HTMLDivElement>>;
@@ -1,3 +1,2 @@
1
1
  export * from './Dropdown';
2
2
  export * from './DefaultValueTemplate';
3
- export * from './DefaultItemTemplate';