@zuzjs/ui 1.0.49 → 1.0.50

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
@@ -1311,7 +1311,7 @@ type ScrollViewProps = BoxProps & {
1311
1311
 
1312
1312
  declare const ScrollView: react.ForwardRefExoticComponent<Omit<ScrollViewProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1313
1313
 
1314
- type SearchProps = InputProps & {
1314
+ type SearchProps = Omit<InputProps, `onChange`> & {
1315
1315
  onSubmit?: (value: string) => void;
1316
1316
  onChange?: (value: string) => void;
1317
1317
  onClear?: () => void;
package/dist/index.d.ts CHANGED
@@ -1311,7 +1311,7 @@ type ScrollViewProps = BoxProps & {
1311
1311
 
1312
1312
  declare const ScrollView: react.ForwardRefExoticComponent<Omit<ScrollViewProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1313
1313
 
1314
- type SearchProps = InputProps & {
1314
+ type SearchProps = Omit<InputProps, `onChange`> & {
1315
1315
  onSubmit?: (value: string) => void;
1316
1316
  onChange?: (value: string) => void;
1317
1317
  onClear?: () => void;