@ultraviolet/ui 1.72.1 → 1.72.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.
@@ -10,6 +10,7 @@ export type DropdownProps = {
10
10
  loadMore?: ReactNode;
11
11
  optionalInfoPlacement: 'left' | 'right';
12
12
  isLoading?: boolean;
13
+ size: 'small' | 'medium' | 'large';
13
14
  };
14
15
  export type CreateDropdownProps = {
15
16
  isEmpty: boolean;
@@ -20,4 +21,4 @@ export type CreateDropdownProps = {
20
21
  defaultSearchValue: string | null;
21
22
  isLoading?: boolean;
22
23
  };
23
- export declare const Dropdown: ({ children, emptyState, descriptionDirection, searchable, placeholder, footer, refSelect, loadMore, optionalInfoPlacement, isLoading, }: DropdownProps) => import("@emotion/react/jsx-runtime").JSX.Element;
24
+ export declare const Dropdown: ({ children, emptyState, descriptionDirection, searchable, placeholder, footer, refSelect, loadMore, optionalInfoPlacement, isLoading, size, }: DropdownProps) => import("@emotion/react/jsx-runtime").JSX.Element;