@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/bin.cjs +4 -4
- package/dist/bin.js +1 -1
- package/dist/css/styles.css +1 -1
- package/dist/index.cjs +8 -8
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +7 -7
- package/package.json +1 -1
- /package/dist/{chunk-PQE5RO6N.cjs → chunk-2PKFX42X.cjs} +0 -0
- /package/dist/{chunk-7D72JUYC.js → chunk-A6NPM5DH.js} +0 -0
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;
|