@zuzjs/ui 1.0.49 → 1.0.51

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
@@ -215,6 +215,7 @@ interface ZuzProps {
215
215
  draggable?: boolean;
216
216
  dragOptions?: DragOptions;
217
217
  busy?: boolean;
218
+ stripes?: `background` | `overlay`;
218
219
  }
219
220
  interface BoxProps extends Partial<Props<`div`>> {
220
221
  name?: string;
@@ -1311,7 +1312,7 @@ type ScrollViewProps = BoxProps & {
1311
1312
 
1312
1313
  declare const ScrollView: react.ForwardRefExoticComponent<Omit<ScrollViewProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1313
1314
 
1314
- type SearchProps = InputProps & {
1315
+ type SearchProps = Omit<InputProps, `onChange`> & {
1315
1316
  onSubmit?: (value: string) => void;
1316
1317
  onChange?: (value: string) => void;
1317
1318
  onClear?: () => void;
package/dist/index.d.ts CHANGED
@@ -215,6 +215,7 @@ interface ZuzProps {
215
215
  draggable?: boolean;
216
216
  dragOptions?: DragOptions;
217
217
  busy?: boolean;
218
+ stripes?: `background` | `overlay`;
218
219
  }
219
220
  interface BoxProps extends Partial<Props<`div`>> {
220
221
  name?: string;
@@ -1311,7 +1312,7 @@ type ScrollViewProps = BoxProps & {
1311
1312
 
1312
1313
  declare const ScrollView: react.ForwardRefExoticComponent<Omit<ScrollViewProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
1313
1314
 
1314
- type SearchProps = InputProps & {
1315
+ type SearchProps = Omit<InputProps, `onChange`> & {
1315
1316
  onSubmit?: (value: string) => void;
1316
1317
  onChange?: (value: string) => void;
1317
1318
  onClear?: () => void;