@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/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>>;