@zuzjs/ui 1.0.10 → 1.0.12
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/bin.cjs +4 -4
- package/dist/bin.js +1 -1
- package/dist/index.cjs +6 -6
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +5 -5
- package/package.json +3 -3
- /package/dist/{chunk-4QXR46PL.js → chunk-DMBVWA7C.js} +0 -0
- /package/dist/{chunk-KUGLU5CK.cjs → chunk-X4NXRKUY.cjs} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -1224,7 +1224,12 @@ type SelectProps = Omit<BoxProps, "onChange"> & {
|
|
|
1224
1224
|
arrowUpIcon?: string | ReactNode;
|
|
1225
1225
|
};
|
|
1226
1226
|
|
|
1227
|
-
declare const Select:
|
|
1227
|
+
declare const Select: {
|
|
1228
|
+
({ ref, ...props }: SelectProps & {
|
|
1229
|
+
ref?: Ref<SelectHandler>;
|
|
1230
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1231
|
+
displayName: string;
|
|
1232
|
+
};
|
|
1228
1233
|
|
|
1229
1234
|
type SliderProps = BoxProps & {
|
|
1230
1235
|
type?: ValueOf<typeof SLIDER>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1224,7 +1224,12 @@ type SelectProps = Omit<BoxProps, "onChange"> & {
|
|
|
1224
1224
|
arrowUpIcon?: string | ReactNode;
|
|
1225
1225
|
};
|
|
1226
1226
|
|
|
1227
|
-
declare const Select:
|
|
1227
|
+
declare const Select: {
|
|
1228
|
+
({ ref, ...props }: SelectProps & {
|
|
1229
|
+
ref?: Ref<SelectHandler>;
|
|
1230
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1231
|
+
displayName: string;
|
|
1232
|
+
};
|
|
1228
1233
|
|
|
1229
1234
|
type SliderProps = BoxProps & {
|
|
1230
1235
|
type?: ValueOf<typeof SLIDER>;
|