plainframe-ui 0.1.45 → 0.1.47
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.
- package/dist/index.d.ts +4 -2
- package/dist/index.js +7 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1040,7 +1040,6 @@ type SelectProps<T = unknown> = {
|
|
|
1040
1040
|
value?: T | T[];
|
|
1041
1041
|
defaultValue?: T | T[];
|
|
1042
1042
|
onChange?: (value: T | T[]) => void;
|
|
1043
|
-
onValueChange?: (value: T | T[]) => void;
|
|
1044
1043
|
label?: string;
|
|
1045
1044
|
placeholder?: string | React.ReactNode;
|
|
1046
1045
|
startIcon?: React.ReactNode;
|
|
@@ -1064,7 +1063,10 @@ type SelectProps<T = unknown> = {
|
|
|
1064
1063
|
menuSize?: "sm" | "md";
|
|
1065
1064
|
triggerRender?: (selected: React.ReactNode | React.ReactNode[] | undefined) => React.ReactNode;
|
|
1066
1065
|
};
|
|
1067
|
-
declare
|
|
1066
|
+
declare const Select: {
|
|
1067
|
+
<T>({ value, defaultValue, onChange, label, placeholder, startIcon, endIcon, disabled, size, variant, fullWidth, width, menuAlign, menuWidth, menuMaxHeight, wrapperCss, labelCss, triggerCss, menuCss, optionCss, children, className, menuSize, triggerRender, multiple, }: SelectProps<T>): JSX.Element;
|
|
1068
|
+
DisplayName: string;
|
|
1069
|
+
};
|
|
1068
1070
|
|
|
1069
1071
|
/** @jsxImportSource @emotion/react */
|
|
1070
1072
|
|