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