demio-ui 2.4.5 → 2.5.1
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
|
};
|
|
@@ -1043,9 +1043,8 @@ function _extends$_() { return _extends$_ = Object.assign ? Object.assign.bind()
|
|
|
1043
1043
|
var SvgExclamation = function SvgExclamation(props) {
|
|
1044
1044
|
return /*#__PURE__*/React.createElement("svg", _extends$_({
|
|
1045
1045
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
fill: "none"
|
|
1046
|
+
fill: "none",
|
|
1047
|
+
viewBox: "0 0 24 24"
|
|
1049
1048
|
}, props), _path$Z || (_path$Z = /*#__PURE__*/React.createElement("path", {
|
|
1050
1049
|
fill: "#EDC121",
|
|
1051
1050
|
d: "M23.625 12c0 6.422-5.205 11.625-11.625 11.625S.375 18.422.375 12C.375 5.582 5.58.375 12 .375S23.625 5.582 23.625 12M12 14.344a2.156 2.156 0 1 0 0 4.312 2.156 2.156 0 0 0 0-4.312m-2.047-7.75.348 6.374a.563.563 0 0 0 .561.532h2.276a.563.563 0 0 0 .562-.532l.347-6.375A.563.563 0 0 0 13.485 6h-2.97c-.323 0-.58.27-.562.593Z"
|