plainframe-ui 0.1.44 → 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 -1
- package/dist/index.js +8 -8
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1063,7 +1063,10 @@ type SelectProps<T = unknown> = {
|
|
|
1063
1063
|
menuSize?: "sm" | "md";
|
|
1064
1064
|
triggerRender?: (selected: React.ReactNode | React.ReactNode[] | undefined) => React.ReactNode;
|
|
1065
1065
|
};
|
|
1066
|
-
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
|
+
};
|
|
1067
1070
|
|
|
1068
1071
|
/** @jsxImportSource @emotion/react */
|
|
1069
1072
|
|