demio-ui 2.4.5 → 2.5.0
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.
|
@@ -12,14 +12,14 @@ type SelectProps = {
|
|
|
12
12
|
id: string;
|
|
13
13
|
icon?: React.ReactNode | string;
|
|
14
14
|
placeholder?: string;
|
|
15
|
-
maxDropdownHeight?: string;
|
|
16
15
|
portalContainer?: HTMLElement;
|
|
17
16
|
contentClassName?: string;
|
|
17
|
+
contentProps?: SelectPrimitive.SelectContentImplProps;
|
|
18
18
|
};
|
|
19
19
|
export declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLButtonElement>>;
|
|
20
20
|
type SelectItemProps = {
|
|
21
21
|
children: React.ReactNode;
|
|
22
|
-
className
|
|
22
|
+
className?: string;
|
|
23
23
|
value: string;
|
|
24
24
|
disabled?: boolean;
|
|
25
25
|
};
|
package/dist/types.d.ts
CHANGED
|
@@ -355,14 +355,14 @@ type SelectProps = {
|
|
|
355
355
|
id: string;
|
|
356
356
|
icon?: React__default.ReactNode | string;
|
|
357
357
|
placeholder?: string;
|
|
358
|
-
maxDropdownHeight?: string;
|
|
359
358
|
portalContainer?: HTMLElement;
|
|
360
359
|
contentClassName?: string;
|
|
360
|
+
contentProps?: SelectPrimitive.SelectContentImplProps;
|
|
361
361
|
};
|
|
362
362
|
declare const Select: React__default.ForwardRefExoticComponent<SelectProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
363
363
|
type SelectItemProps = {
|
|
364
364
|
children: React__default.ReactNode;
|
|
365
|
-
className
|
|
365
|
+
className?: string;
|
|
366
366
|
value: string;
|
|
367
367
|
disabled?: boolean;
|
|
368
368
|
};
|