@zuzjs/ui 1.0.40 → 1.0.42
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +5 -5
- package/package.json +2 -2
- /package/dist/{chunk-XKEI337X.cjs → chunk-CXHYK2ND.cjs} +0 -0
- /package/dist/{chunk-NG5H4LFA.js → chunk-LQMXWNQV.js} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import react__default, { ElementType, ComponentPropsWithoutRef, Ref, ReactNode, MouseEvent as MouseEvent$1, RefObject, FC, CSSProperties, FormEventHandler, JSX, HTMLAttributes, ComponentPropsWithRef } from 'react';
|
|
3
3
|
import * as _zuzjs_hooks from '@zuzjs/hooks';
|
|
4
|
-
import { DragOptions, LineChartProps, MediaItem, useMediaPlayer, Command } from '@zuzjs/hooks';
|
|
4
|
+
import { DragOptions, LineChartProps, MediaItem, useMediaPlayer, ScrollBreakpoint, Command } from '@zuzjs/hooks';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import { PubSub } from '@zuzjs/core';
|
|
7
7
|
|
|
@@ -215,6 +215,7 @@ interface ZuzProps {
|
|
|
215
215
|
/** Makes Component Draggable */
|
|
216
216
|
draggable?: boolean;
|
|
217
217
|
dragOptions?: DragOptions;
|
|
218
|
+
busy?: boolean;
|
|
218
219
|
}
|
|
219
220
|
interface BoxProps extends Partial<Props<`div`>> {
|
|
220
221
|
name?: string;
|
|
@@ -1298,6 +1299,8 @@ declare const Radio: react.ForwardRefExoticComponent<ZuzProps & Omit<Omit<react.
|
|
|
1298
1299
|
type ScrollViewProps = BoxProps & {
|
|
1299
1300
|
style?: CSSProperties;
|
|
1300
1301
|
speed?: number;
|
|
1302
|
+
smooth?: boolean;
|
|
1303
|
+
breakpoints?: ScrollBreakpoint;
|
|
1301
1304
|
};
|
|
1302
1305
|
|
|
1303
1306
|
declare const ScrollView: react.ForwardRefExoticComponent<Omit<ScrollViewProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import react__default, { ElementType, ComponentPropsWithoutRef, Ref, ReactNode, MouseEvent as MouseEvent$1, RefObject, FC, CSSProperties, FormEventHandler, JSX, HTMLAttributes, ComponentPropsWithRef } from 'react';
|
|
3
3
|
import * as _zuzjs_hooks from '@zuzjs/hooks';
|
|
4
|
-
import { DragOptions, LineChartProps, MediaItem, useMediaPlayer, Command } from '@zuzjs/hooks';
|
|
4
|
+
import { DragOptions, LineChartProps, MediaItem, useMediaPlayer, ScrollBreakpoint, Command } from '@zuzjs/hooks';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import { PubSub } from '@zuzjs/core';
|
|
7
7
|
|
|
@@ -215,6 +215,7 @@ interface ZuzProps {
|
|
|
215
215
|
/** Makes Component Draggable */
|
|
216
216
|
draggable?: boolean;
|
|
217
217
|
dragOptions?: DragOptions;
|
|
218
|
+
busy?: boolean;
|
|
218
219
|
}
|
|
219
220
|
interface BoxProps extends Partial<Props<`div`>> {
|
|
220
221
|
name?: string;
|
|
@@ -1298,6 +1299,8 @@ declare const Radio: react.ForwardRefExoticComponent<ZuzProps & Omit<Omit<react.
|
|
|
1298
1299
|
type ScrollViewProps = BoxProps & {
|
|
1299
1300
|
style?: CSSProperties;
|
|
1300
1301
|
speed?: number;
|
|
1302
|
+
smooth?: boolean;
|
|
1303
|
+
breakpoints?: ScrollBreakpoint;
|
|
1301
1304
|
};
|
|
1302
1305
|
|
|
1303
1306
|
declare const ScrollView: react.ForwardRefExoticComponent<Omit<ScrollViewProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|