@ynput/ayon-react-components 1.5.2 → 1.5.4

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.
@@ -3,6 +3,7 @@ import * as Styled from './Dropdown.styled';
3
3
  import { IconType } from '../../Icon';
4
4
  export interface DropdownProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'> {
5
5
  message?: string;
6
+ messageOverButton?: boolean;
6
7
  error?: string | null | false;
7
8
  missingValueMessage?: string | null | undefined;
8
9
  itemStyle?: CSSProperties;
@@ -8,14 +8,11 @@ export declare const dropdownMenuAnimation: () => import("styled-components").Ke
8
8
  export declare const Container: import("styled-components").StyledComponent<"div", any, {
9
9
  $isOpen: boolean;
10
10
  $message: string;
11
+ $messageOverButton?: boolean | undefined;
11
12
  $error: string;
12
13
  $hidden: boolean;
13
14
  }, never>;
14
- type ScrollableProps = {
15
- $message: string;
16
- $search: boolean;
17
- };
18
- export declare const Scrollable: import("styled-components").StyledComponent<(<T extends import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> = "div">(props: import("overlayscrollbars-react").OverlayScrollbarsComponentProps<T>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null), any, ScrollableProps, never>;
15
+ export declare const Scrollable: import("styled-components").StyledComponent<(<T extends import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> = "div">(props: import("overlayscrollbars-react").OverlayScrollbarsComponentProps<T>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null), any, {}, never>;
19
16
  export declare const Options: import("styled-components").StyledComponent<"ul", any, {}, never>;
20
17
  export declare const ListItem: import("styled-components").StyledComponent<"li", any, {
21
18
  $usingKeyboard: boolean;
@@ -23,4 +20,3 @@ export declare const ListItem: import("styled-components").StyledComponent<"li",
23
20
  export declare const DefaultItem: import("styled-components").StyledComponent<"span", any, {}, never>;
24
21
  export declare const StartContent: import("styled-components").StyledComponent<"div", any, {}, never>;
25
22
  export declare const Search: import("styled-components").StyledComponent<"div", any, {}, never>;
26
- export {};