@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/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: react.ForwardRefExoticComponent<Omit<SelectProps, "ref"> & react.RefAttributes<SelectHandler>>;
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: react.ForwardRefExoticComponent<Omit<SelectProps, "ref"> & react.RefAttributes<SelectHandler>>;
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>;