@zuzjs/ui 1.0.32 → 1.0.34
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/{chunk-6246PXMY.js → chunk-SBXQZW2K.js} +1 -1
- package/dist/{chunk-KUHU22RD.cjs → chunk-SPYDV5Q4.cjs} +2 -2
- package/dist/index.cjs +7 -7
- package/dist/index.d.cts +56 -5
- package/dist/index.d.ts +56 -5
- package/dist/index.js +6 -6
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
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
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
3
|
import * as _zuzjs_hooks from '@zuzjs/hooks';
|
|
5
|
-
import { LineChartProps, Command } from '@zuzjs/hooks';
|
|
4
|
+
import { DragOptions, LineChartProps, MediaItem, useMediaPlayer, Command } from '@zuzjs/hooks';
|
|
5
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import { PubSub } from '@zuzjs/core';
|
|
7
7
|
|
|
8
8
|
declare const AVATAR: {
|
|
@@ -212,6 +212,9 @@ interface ZuzProps {
|
|
|
212
212
|
/** Animation configuration using {@link animationProps} */
|
|
213
213
|
fx?: animationProps;
|
|
214
214
|
transition?: ValueOf<typeof TRANSITIONS>;
|
|
215
|
+
/** Makes Component Draggable */
|
|
216
|
+
draggable?: boolean;
|
|
217
|
+
dragOptions?: DragOptions;
|
|
215
218
|
}
|
|
216
219
|
interface BoxProps extends Partial<Props<`div`>> {
|
|
217
220
|
name?: string;
|
|
@@ -865,6 +868,8 @@ declare const SVGIcons: {
|
|
|
865
868
|
pause: react_jsx_runtime.JSX.Element;
|
|
866
869
|
next: react_jsx_runtime.JSX.Element;
|
|
867
870
|
prev: react_jsx_runtime.JSX.Element;
|
|
871
|
+
volumeHigh: react_jsx_runtime.JSX.Element;
|
|
872
|
+
volumeMute: react_jsx_runtime.JSX.Element;
|
|
868
873
|
plus: react_jsx_runtime.JSX.Element;
|
|
869
874
|
add: react_jsx_runtime.JSX.Element;
|
|
870
875
|
chevronUp: react_jsx_runtime.JSX.Element;
|
|
@@ -1138,6 +1143,45 @@ declare const List: react.ForwardRefExoticComponent<ZuzProps & Omit<Omit<react.D
|
|
|
1138
1143
|
ol?: boolean;
|
|
1139
1144
|
} & react.RefAttributes<HTMLOListElement | HTMLUListElement>>;
|
|
1140
1145
|
|
|
1146
|
+
interface MediaPlayerController {
|
|
1147
|
+
}
|
|
1148
|
+
type MediaPlayerProps = Omit<BoxProps, `ref`> & {
|
|
1149
|
+
ref?: Ref<MediaPlayerController>;
|
|
1150
|
+
playlist?: MediaItem[];
|
|
1151
|
+
mode?: 'audio' | 'video';
|
|
1152
|
+
autoPlay?: boolean;
|
|
1153
|
+
icons?: MediaPlayerIcons;
|
|
1154
|
+
defaultTitle?: string;
|
|
1155
|
+
defaultCover?: string;
|
|
1156
|
+
defaultArtist?: string;
|
|
1157
|
+
onTrackChange?: (item: MediaItem) => void;
|
|
1158
|
+
};
|
|
1159
|
+
type MediaPlayerIcon = string | ReactNode;
|
|
1160
|
+
interface MediaPlayerIcons {
|
|
1161
|
+
play?: MediaPlayerIcon;
|
|
1162
|
+
pause?: MediaPlayerIcon;
|
|
1163
|
+
prev?: MediaPlayerIcon;
|
|
1164
|
+
next?: MediaPlayerIcon;
|
|
1165
|
+
volumeHigh?: MediaPlayerIcon;
|
|
1166
|
+
volumeMute?: MediaPlayerIcon;
|
|
1167
|
+
loading?: MediaPlayerIcon;
|
|
1168
|
+
}
|
|
1169
|
+
type MediaPlayerContextType = ReturnType<typeof useMediaPlayer> & {
|
|
1170
|
+
icons?: MediaPlayerIcons;
|
|
1171
|
+
mode?: "audio" | "video";
|
|
1172
|
+
defaultTitle?: string;
|
|
1173
|
+
defaultCover?: string;
|
|
1174
|
+
defaultArtist?: string;
|
|
1175
|
+
};
|
|
1176
|
+
|
|
1177
|
+
declare const MediaPlayer: (({ ref, ...props }: MediaPlayerProps) => react_jsx_runtime.JSX.Element) & {
|
|
1178
|
+
Stage: () => react_jsx_runtime.JSX.Element;
|
|
1179
|
+
TrackInfo: () => react_jsx_runtime.JSX.Element;
|
|
1180
|
+
Controls: () => react_jsx_runtime.JSX.Element;
|
|
1181
|
+
Progress: () => react_jsx_runtime.JSX.Element;
|
|
1182
|
+
Volume: () => react_jsx_runtime.JSX.Element;
|
|
1183
|
+
};
|
|
1184
|
+
|
|
1141
1185
|
type NetworkManagerprops = BoxProps & {
|
|
1142
1186
|
variant?: ValueOf<typeof Variant>;
|
|
1143
1187
|
offlineMessage?: string;
|
|
@@ -1391,7 +1435,10 @@ declare const Select: {
|
|
|
1391
1435
|
displayName: string;
|
|
1392
1436
|
};
|
|
1393
1437
|
|
|
1394
|
-
|
|
1438
|
+
interface SliderController {
|
|
1439
|
+
}
|
|
1440
|
+
type SliderProps = Omit<BoxProps, `ref`> & {
|
|
1441
|
+
ref?: Ref<SliderController>;
|
|
1395
1442
|
type?: ValueOf<typeof SLIDER>;
|
|
1396
1443
|
value?: number;
|
|
1397
1444
|
min?: number;
|
|
@@ -1404,7 +1451,11 @@ type SliderProps = BoxProps & {
|
|
|
1404
1451
|
formatValue?: (value: number) => string | number;
|
|
1405
1452
|
onChange?: (value: number) => void;
|
|
1406
1453
|
};
|
|
1407
|
-
|
|
1454
|
+
|
|
1455
|
+
declare const Slider: {
|
|
1456
|
+
({ ref, ...props }: SliderProps): react_jsx_runtime.JSX.Element;
|
|
1457
|
+
displayName: string;
|
|
1458
|
+
};
|
|
1408
1459
|
|
|
1409
1460
|
type SpanProps = Props<`span`> & {
|
|
1410
1461
|
ref?: Ref<HTMLSpanElement>;
|
|
@@ -2028,4 +2079,4 @@ declare const animationTransition: (transition: ValueOf<typeof TRANSITIONS>, off
|
|
|
2028
2079
|
};
|
|
2029
2080
|
declare const getAnimationTransition: (transition: ValueOf<typeof TRANSITIONS>, to?: boolean, from?: boolean) => dynamic;
|
|
2030
2081
|
|
|
2031
|
-
export { ALERT, AVATAR, Accordion, type AccordionHandler, type AccordionProps, ActionBar, type ActionBarHandler, type ActionBarItem, type ActionBarProps, Alert, type AlertHandler, type AlertProps, type AnimationTransition, AutoComplete, type AutoCompleteProps, Avatar, type AvatarHandler, type AvatarProps, Badge, type BadgeProps, Box, type BoxProps, Bubble, BubbleMediaType, type BubbleProps, BubbleStatus, Button, type ButtonHandler, type ButtonProps, ButtonState, CHART, CHECKBOX, COLORTHEME, Calendar, type CalendarProps, Carousel, type CarouselEffect, type CarouselProps, Chart, type ChartProps, CheckBox, type CheckBoxProps, type CheckboxHandler, CodeBlock, type CodeBlockProps, ColorScheme$1 as ColorScheme, type Column, type ContextItem, ContextMenu, type ContextMenuHandler, type ContextMenuProps, type CookieConsentProps, CookiesConsent, Cover, type CoverProps, type CropHandler, CropShape, Cropper, type CropperProps, Crumb, type CrumbItem, type CrumbProps, DATATYPE, DIALOG, DIALOG_ACTION_POSITION, DRAWER_SIDE, DatePicker, Dialog, type DialogActionHandler, type DialogController, type DialogHandler, type DialogProps, Drawer, type DrawerController, type DrawerHandler, type DrawerProps, FILTER, FORMVALIDATION, FORMVALIDATION_STYLE, Fab, type FabProps, type FilterProps, Filters, Form, type FormHandler, type FormInputs, type FormProps, Grid, type GridProps, Group, type GroupProps, Icon, type IconProps, Image, type ImageProps, Input, type InputProps, type KeyCombination, type KeyboardKey, type KeyboardKeyProps, KeyBoardKeys as KeyboardKeys, KeysLabelMap, KeysMap, Label, type LabelProps, type LayerHandler, LayersProvider, List, type ListItem, type ListItemObject, type ListProps, type LoopMode, type MenuItemProps, type MorphOptions, type NetworkManagerprops, NetworkManager as NetworkStatus, ORIGIN, type Option, type OptionItemProps, OriginType, Overlay, type OverlayProps, PACKAGE_NAME, POSITION, PROGRESS, Pagination, type PaginationCallback, type PaginationController, type PaginationPage, type PaginationPageItem, type PaginationProps, PaginationStyle, Password, type PasswordProps, PinInput, type PinInputProps, Position, ProgressBar, type ProgressBarProps, type ProgressHandler, type Props, RADIO, Radio, type RadioHandler, type RadioProps, type Row, type RowSelectCallback, SHEET, SHEET_ACTION_POSITION, SKELETON, SLIDER, SORT, SPINNER, ScrollView, type ScrollViewProps, Search, type SearchHandler, type SearchProps, type Segment, type SegmentController, type SegmentItemProps, type SegmentProps, Select, type SelectHandler, type SelectProps, Segmented as SelectTabs, Sheet, type SheetHandler, type SheetProps, type Skeleton, Slider, type SliderProps, type ToastAction as SnackAction, ToastPosition as SnackPosition, ToastStyle as SnackStyle, ToastType as SnackType, Span, type SpanProps, Spinner, type SpinnerProps, Status, Switch, type CheckboxHandler as SwitchHandler, TRANSITIONS, TRANSITION_CURVES, type Tab, type TabBodyProps, type TabProps, TabView, type TabViewHandler, type TabViewProps, ForwardedTable as Table, type TableController, type TableOfContentItem, TableOfContents, type TableOfContentsProps, type TableProps, type TableSortCallback, Terminal, type TerminalCommandFn, type TerminalCommands, type TerminalHandler, type TerminalLine, type TerminalProps, Text, type TextAreaProps, TextWheel, type TextWheelHandler, type TextWheelProps, TextArea as Textarea, ThemeProvider, type ToastAction, ToastDefaultTitle, ToastPosition, type ToastProps, Toast as ToastProvider, ToastStyle, ToastType, ToolTip, type ToolTipController, type ToolTipProps, type TreeItemHandler, type TreeItemProps, type TreeNode, type TreeNodeIcons, TreeView, type TreeViewHandler, type TreeViewProps, type Value, type ValueOf, Variant, type ZuzCommonValues, type ZuzProps, type ZuzStyleString, type animationProps, animationTransition, buildClassString, buildWithStyles, cleanProps, css, type cssShortKey, type cssShortKeys, type dynamic, getAnimationCurve, getAnimationTransition, getZuzMap, isKeyCombination, type parallaxEffectProps, setZuzMap, splitAtoms, useBase, useContextMenu, useDialog, useDrawer, useFx, useMorph, usePosition, useSnack, useToast };
|
|
2082
|
+
export { ALERT, AVATAR, Accordion, type AccordionHandler, type AccordionProps, ActionBar, type ActionBarHandler, type ActionBarItem, type ActionBarProps, Alert, type AlertHandler, type AlertProps, type AnimationTransition, AutoComplete, type AutoCompleteProps, Avatar, type AvatarHandler, type AvatarProps, Badge, type BadgeProps, Box, type BoxProps, Bubble, BubbleMediaType, type BubbleProps, BubbleStatus, Button, type ButtonHandler, type ButtonProps, ButtonState, CHART, CHECKBOX, COLORTHEME, Calendar, type CalendarProps, Carousel, type CarouselEffect, type CarouselProps, Chart, type ChartProps, CheckBox, type CheckBoxProps, type CheckboxHandler, CodeBlock, type CodeBlockProps, ColorScheme$1 as ColorScheme, type Column, type ContextItem, ContextMenu, type ContextMenuHandler, type ContextMenuProps, type CookieConsentProps, CookiesConsent, Cover, type CoverProps, type CropHandler, CropShape, Cropper, type CropperProps, Crumb, type CrumbItem, type CrumbProps, DATATYPE, DIALOG, DIALOG_ACTION_POSITION, DRAWER_SIDE, DatePicker, Dialog, type DialogActionHandler, type DialogController, type DialogHandler, type DialogProps, Drawer, type DrawerController, type DrawerHandler, type DrawerProps, FILTER, FORMVALIDATION, FORMVALIDATION_STYLE, Fab, type FabProps, type FilterProps, Filters, Form, type FormHandler, type FormInputs, type FormProps, Grid, type GridProps, Group, type GroupProps, Icon, type IconProps, Image, type ImageProps, Input, type InputProps, type KeyCombination, type KeyboardKey, type KeyboardKeyProps, KeyBoardKeys as KeyboardKeys, KeysLabelMap, KeysMap, Label, type LabelProps, type LayerHandler, LayersProvider, List, type ListItem, type ListItemObject, type ListProps, type LoopMode, MediaPlayer, type MediaPlayerContextType, type MediaPlayerController, type MediaPlayerIcons, type MediaPlayerProps, type MenuItemProps, type MorphOptions, type NetworkManagerprops, NetworkManager as NetworkStatus, ORIGIN, type Option, type OptionItemProps, OriginType, Overlay, type OverlayProps, PACKAGE_NAME, POSITION, PROGRESS, Pagination, type PaginationCallback, type PaginationController, type PaginationPage, type PaginationPageItem, type PaginationProps, PaginationStyle, Password, type PasswordProps, PinInput, type PinInputProps, Position, ProgressBar, type ProgressBarProps, type ProgressHandler, type Props, RADIO, Radio, type RadioHandler, type RadioProps, type Row, type RowSelectCallback, SHEET, SHEET_ACTION_POSITION, SKELETON, SLIDER, SORT, SPINNER, ScrollView, type ScrollViewProps, Search, type SearchHandler, type SearchProps, type Segment, type SegmentController, type SegmentItemProps, type SegmentProps, Select, type SelectHandler, type SelectProps, Segmented as SelectTabs, Sheet, type SheetHandler, type SheetProps, type Skeleton, Slider, type SliderController, type SliderProps, type ToastAction as SnackAction, ToastPosition as SnackPosition, ToastStyle as SnackStyle, ToastType as SnackType, Span, type SpanProps, Spinner, type SpinnerProps, Status, Switch, type CheckboxHandler as SwitchHandler, TRANSITIONS, TRANSITION_CURVES, type Tab, type TabBodyProps, type TabProps, TabView, type TabViewHandler, type TabViewProps, ForwardedTable as Table, type TableController, type TableOfContentItem, TableOfContents, type TableOfContentsProps, type TableProps, type TableSortCallback, Terminal, type TerminalCommandFn, type TerminalCommands, type TerminalHandler, type TerminalLine, type TerminalProps, Text, type TextAreaProps, TextWheel, type TextWheelHandler, type TextWheelProps, TextArea as Textarea, ThemeProvider, type ToastAction, ToastDefaultTitle, ToastPosition, type ToastProps, Toast as ToastProvider, ToastStyle, ToastType, ToolTip, type ToolTipController, type ToolTipProps, type TreeItemHandler, type TreeItemProps, type TreeNode, type TreeNodeIcons, TreeView, type TreeViewHandler, type TreeViewProps, type Value, type ValueOf, Variant, type ZuzCommonValues, type ZuzProps, type ZuzStyleString, type animationProps, animationTransition, buildClassString, buildWithStyles, cleanProps, css, type cssShortKey, type cssShortKeys, type dynamic, getAnimationCurve, getAnimationTransition, getZuzMap, isKeyCombination, type parallaxEffectProps, setZuzMap, splitAtoms, useBase, useContextMenu, useDialog, useDrawer, useFx, useMorph, usePosition, useSnack, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
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
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
3
|
import * as _zuzjs_hooks from '@zuzjs/hooks';
|
|
5
|
-
import { LineChartProps, Command } from '@zuzjs/hooks';
|
|
4
|
+
import { DragOptions, LineChartProps, MediaItem, useMediaPlayer, Command } from '@zuzjs/hooks';
|
|
5
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import { PubSub } from '@zuzjs/core';
|
|
7
7
|
|
|
8
8
|
declare const AVATAR: {
|
|
@@ -212,6 +212,9 @@ interface ZuzProps {
|
|
|
212
212
|
/** Animation configuration using {@link animationProps} */
|
|
213
213
|
fx?: animationProps;
|
|
214
214
|
transition?: ValueOf<typeof TRANSITIONS>;
|
|
215
|
+
/** Makes Component Draggable */
|
|
216
|
+
draggable?: boolean;
|
|
217
|
+
dragOptions?: DragOptions;
|
|
215
218
|
}
|
|
216
219
|
interface BoxProps extends Partial<Props<`div`>> {
|
|
217
220
|
name?: string;
|
|
@@ -865,6 +868,8 @@ declare const SVGIcons: {
|
|
|
865
868
|
pause: react_jsx_runtime.JSX.Element;
|
|
866
869
|
next: react_jsx_runtime.JSX.Element;
|
|
867
870
|
prev: react_jsx_runtime.JSX.Element;
|
|
871
|
+
volumeHigh: react_jsx_runtime.JSX.Element;
|
|
872
|
+
volumeMute: react_jsx_runtime.JSX.Element;
|
|
868
873
|
plus: react_jsx_runtime.JSX.Element;
|
|
869
874
|
add: react_jsx_runtime.JSX.Element;
|
|
870
875
|
chevronUp: react_jsx_runtime.JSX.Element;
|
|
@@ -1138,6 +1143,45 @@ declare const List: react.ForwardRefExoticComponent<ZuzProps & Omit<Omit<react.D
|
|
|
1138
1143
|
ol?: boolean;
|
|
1139
1144
|
} & react.RefAttributes<HTMLOListElement | HTMLUListElement>>;
|
|
1140
1145
|
|
|
1146
|
+
interface MediaPlayerController {
|
|
1147
|
+
}
|
|
1148
|
+
type MediaPlayerProps = Omit<BoxProps, `ref`> & {
|
|
1149
|
+
ref?: Ref<MediaPlayerController>;
|
|
1150
|
+
playlist?: MediaItem[];
|
|
1151
|
+
mode?: 'audio' | 'video';
|
|
1152
|
+
autoPlay?: boolean;
|
|
1153
|
+
icons?: MediaPlayerIcons;
|
|
1154
|
+
defaultTitle?: string;
|
|
1155
|
+
defaultCover?: string;
|
|
1156
|
+
defaultArtist?: string;
|
|
1157
|
+
onTrackChange?: (item: MediaItem) => void;
|
|
1158
|
+
};
|
|
1159
|
+
type MediaPlayerIcon = string | ReactNode;
|
|
1160
|
+
interface MediaPlayerIcons {
|
|
1161
|
+
play?: MediaPlayerIcon;
|
|
1162
|
+
pause?: MediaPlayerIcon;
|
|
1163
|
+
prev?: MediaPlayerIcon;
|
|
1164
|
+
next?: MediaPlayerIcon;
|
|
1165
|
+
volumeHigh?: MediaPlayerIcon;
|
|
1166
|
+
volumeMute?: MediaPlayerIcon;
|
|
1167
|
+
loading?: MediaPlayerIcon;
|
|
1168
|
+
}
|
|
1169
|
+
type MediaPlayerContextType = ReturnType<typeof useMediaPlayer> & {
|
|
1170
|
+
icons?: MediaPlayerIcons;
|
|
1171
|
+
mode?: "audio" | "video";
|
|
1172
|
+
defaultTitle?: string;
|
|
1173
|
+
defaultCover?: string;
|
|
1174
|
+
defaultArtist?: string;
|
|
1175
|
+
};
|
|
1176
|
+
|
|
1177
|
+
declare const MediaPlayer: (({ ref, ...props }: MediaPlayerProps) => react_jsx_runtime.JSX.Element) & {
|
|
1178
|
+
Stage: () => react_jsx_runtime.JSX.Element;
|
|
1179
|
+
TrackInfo: () => react_jsx_runtime.JSX.Element;
|
|
1180
|
+
Controls: () => react_jsx_runtime.JSX.Element;
|
|
1181
|
+
Progress: () => react_jsx_runtime.JSX.Element;
|
|
1182
|
+
Volume: () => react_jsx_runtime.JSX.Element;
|
|
1183
|
+
};
|
|
1184
|
+
|
|
1141
1185
|
type NetworkManagerprops = BoxProps & {
|
|
1142
1186
|
variant?: ValueOf<typeof Variant>;
|
|
1143
1187
|
offlineMessage?: string;
|
|
@@ -1391,7 +1435,10 @@ declare const Select: {
|
|
|
1391
1435
|
displayName: string;
|
|
1392
1436
|
};
|
|
1393
1437
|
|
|
1394
|
-
|
|
1438
|
+
interface SliderController {
|
|
1439
|
+
}
|
|
1440
|
+
type SliderProps = Omit<BoxProps, `ref`> & {
|
|
1441
|
+
ref?: Ref<SliderController>;
|
|
1395
1442
|
type?: ValueOf<typeof SLIDER>;
|
|
1396
1443
|
value?: number;
|
|
1397
1444
|
min?: number;
|
|
@@ -1404,7 +1451,11 @@ type SliderProps = BoxProps & {
|
|
|
1404
1451
|
formatValue?: (value: number) => string | number;
|
|
1405
1452
|
onChange?: (value: number) => void;
|
|
1406
1453
|
};
|
|
1407
|
-
|
|
1454
|
+
|
|
1455
|
+
declare const Slider: {
|
|
1456
|
+
({ ref, ...props }: SliderProps): react_jsx_runtime.JSX.Element;
|
|
1457
|
+
displayName: string;
|
|
1458
|
+
};
|
|
1408
1459
|
|
|
1409
1460
|
type SpanProps = Props<`span`> & {
|
|
1410
1461
|
ref?: Ref<HTMLSpanElement>;
|
|
@@ -2028,4 +2079,4 @@ declare const animationTransition: (transition: ValueOf<typeof TRANSITIONS>, off
|
|
|
2028
2079
|
};
|
|
2029
2080
|
declare const getAnimationTransition: (transition: ValueOf<typeof TRANSITIONS>, to?: boolean, from?: boolean) => dynamic;
|
|
2030
2081
|
|
|
2031
|
-
export { ALERT, AVATAR, Accordion, type AccordionHandler, type AccordionProps, ActionBar, type ActionBarHandler, type ActionBarItem, type ActionBarProps, Alert, type AlertHandler, type AlertProps, type AnimationTransition, AutoComplete, type AutoCompleteProps, Avatar, type AvatarHandler, type AvatarProps, Badge, type BadgeProps, Box, type BoxProps, Bubble, BubbleMediaType, type BubbleProps, BubbleStatus, Button, type ButtonHandler, type ButtonProps, ButtonState, CHART, CHECKBOX, COLORTHEME, Calendar, type CalendarProps, Carousel, type CarouselEffect, type CarouselProps, Chart, type ChartProps, CheckBox, type CheckBoxProps, type CheckboxHandler, CodeBlock, type CodeBlockProps, ColorScheme$1 as ColorScheme, type Column, type ContextItem, ContextMenu, type ContextMenuHandler, type ContextMenuProps, type CookieConsentProps, CookiesConsent, Cover, type CoverProps, type CropHandler, CropShape, Cropper, type CropperProps, Crumb, type CrumbItem, type CrumbProps, DATATYPE, DIALOG, DIALOG_ACTION_POSITION, DRAWER_SIDE, DatePicker, Dialog, type DialogActionHandler, type DialogController, type DialogHandler, type DialogProps, Drawer, type DrawerController, type DrawerHandler, type DrawerProps, FILTER, FORMVALIDATION, FORMVALIDATION_STYLE, Fab, type FabProps, type FilterProps, Filters, Form, type FormHandler, type FormInputs, type FormProps, Grid, type GridProps, Group, type GroupProps, Icon, type IconProps, Image, type ImageProps, Input, type InputProps, type KeyCombination, type KeyboardKey, type KeyboardKeyProps, KeyBoardKeys as KeyboardKeys, KeysLabelMap, KeysMap, Label, type LabelProps, type LayerHandler, LayersProvider, List, type ListItem, type ListItemObject, type ListProps, type LoopMode, type MenuItemProps, type MorphOptions, type NetworkManagerprops, NetworkManager as NetworkStatus, ORIGIN, type Option, type OptionItemProps, OriginType, Overlay, type OverlayProps, PACKAGE_NAME, POSITION, PROGRESS, Pagination, type PaginationCallback, type PaginationController, type PaginationPage, type PaginationPageItem, type PaginationProps, PaginationStyle, Password, type PasswordProps, PinInput, type PinInputProps, Position, ProgressBar, type ProgressBarProps, type ProgressHandler, type Props, RADIO, Radio, type RadioHandler, type RadioProps, type Row, type RowSelectCallback, SHEET, SHEET_ACTION_POSITION, SKELETON, SLIDER, SORT, SPINNER, ScrollView, type ScrollViewProps, Search, type SearchHandler, type SearchProps, type Segment, type SegmentController, type SegmentItemProps, type SegmentProps, Select, type SelectHandler, type SelectProps, Segmented as SelectTabs, Sheet, type SheetHandler, type SheetProps, type Skeleton, Slider, type SliderProps, type ToastAction as SnackAction, ToastPosition as SnackPosition, ToastStyle as SnackStyle, ToastType as SnackType, Span, type SpanProps, Spinner, type SpinnerProps, Status, Switch, type CheckboxHandler as SwitchHandler, TRANSITIONS, TRANSITION_CURVES, type Tab, type TabBodyProps, type TabProps, TabView, type TabViewHandler, type TabViewProps, ForwardedTable as Table, type TableController, type TableOfContentItem, TableOfContents, type TableOfContentsProps, type TableProps, type TableSortCallback, Terminal, type TerminalCommandFn, type TerminalCommands, type TerminalHandler, type TerminalLine, type TerminalProps, Text, type TextAreaProps, TextWheel, type TextWheelHandler, type TextWheelProps, TextArea as Textarea, ThemeProvider, type ToastAction, ToastDefaultTitle, ToastPosition, type ToastProps, Toast as ToastProvider, ToastStyle, ToastType, ToolTip, type ToolTipController, type ToolTipProps, type TreeItemHandler, type TreeItemProps, type TreeNode, type TreeNodeIcons, TreeView, type TreeViewHandler, type TreeViewProps, type Value, type ValueOf, Variant, type ZuzCommonValues, type ZuzProps, type ZuzStyleString, type animationProps, animationTransition, buildClassString, buildWithStyles, cleanProps, css, type cssShortKey, type cssShortKeys, type dynamic, getAnimationCurve, getAnimationTransition, getZuzMap, isKeyCombination, type parallaxEffectProps, setZuzMap, splitAtoms, useBase, useContextMenu, useDialog, useDrawer, useFx, useMorph, usePosition, useSnack, useToast };
|
|
2082
|
+
export { ALERT, AVATAR, Accordion, type AccordionHandler, type AccordionProps, ActionBar, type ActionBarHandler, type ActionBarItem, type ActionBarProps, Alert, type AlertHandler, type AlertProps, type AnimationTransition, AutoComplete, type AutoCompleteProps, Avatar, type AvatarHandler, type AvatarProps, Badge, type BadgeProps, Box, type BoxProps, Bubble, BubbleMediaType, type BubbleProps, BubbleStatus, Button, type ButtonHandler, type ButtonProps, ButtonState, CHART, CHECKBOX, COLORTHEME, Calendar, type CalendarProps, Carousel, type CarouselEffect, type CarouselProps, Chart, type ChartProps, CheckBox, type CheckBoxProps, type CheckboxHandler, CodeBlock, type CodeBlockProps, ColorScheme$1 as ColorScheme, type Column, type ContextItem, ContextMenu, type ContextMenuHandler, type ContextMenuProps, type CookieConsentProps, CookiesConsent, Cover, type CoverProps, type CropHandler, CropShape, Cropper, type CropperProps, Crumb, type CrumbItem, type CrumbProps, DATATYPE, DIALOG, DIALOG_ACTION_POSITION, DRAWER_SIDE, DatePicker, Dialog, type DialogActionHandler, type DialogController, type DialogHandler, type DialogProps, Drawer, type DrawerController, type DrawerHandler, type DrawerProps, FILTER, FORMVALIDATION, FORMVALIDATION_STYLE, Fab, type FabProps, type FilterProps, Filters, Form, type FormHandler, type FormInputs, type FormProps, Grid, type GridProps, Group, type GroupProps, Icon, type IconProps, Image, type ImageProps, Input, type InputProps, type KeyCombination, type KeyboardKey, type KeyboardKeyProps, KeyBoardKeys as KeyboardKeys, KeysLabelMap, KeysMap, Label, type LabelProps, type LayerHandler, LayersProvider, List, type ListItem, type ListItemObject, type ListProps, type LoopMode, MediaPlayer, type MediaPlayerContextType, type MediaPlayerController, type MediaPlayerIcons, type MediaPlayerProps, type MenuItemProps, type MorphOptions, type NetworkManagerprops, NetworkManager as NetworkStatus, ORIGIN, type Option, type OptionItemProps, OriginType, Overlay, type OverlayProps, PACKAGE_NAME, POSITION, PROGRESS, Pagination, type PaginationCallback, type PaginationController, type PaginationPage, type PaginationPageItem, type PaginationProps, PaginationStyle, Password, type PasswordProps, PinInput, type PinInputProps, Position, ProgressBar, type ProgressBarProps, type ProgressHandler, type Props, RADIO, Radio, type RadioHandler, type RadioProps, type Row, type RowSelectCallback, SHEET, SHEET_ACTION_POSITION, SKELETON, SLIDER, SORT, SPINNER, ScrollView, type ScrollViewProps, Search, type SearchHandler, type SearchProps, type Segment, type SegmentController, type SegmentItemProps, type SegmentProps, Select, type SelectHandler, type SelectProps, Segmented as SelectTabs, Sheet, type SheetHandler, type SheetProps, type Skeleton, Slider, type SliderController, type SliderProps, type ToastAction as SnackAction, ToastPosition as SnackPosition, ToastStyle as SnackStyle, ToastType as SnackType, Span, type SpanProps, Spinner, type SpinnerProps, Status, Switch, type CheckboxHandler as SwitchHandler, TRANSITIONS, TRANSITION_CURVES, type Tab, type TabBodyProps, type TabProps, TabView, type TabViewHandler, type TabViewProps, ForwardedTable as Table, type TableController, type TableOfContentItem, TableOfContents, type TableOfContentsProps, type TableProps, type TableSortCallback, Terminal, type TerminalCommandFn, type TerminalCommands, type TerminalHandler, type TerminalLine, type TerminalProps, Text, type TextAreaProps, TextWheel, type TextWheelHandler, type TextWheelProps, TextArea as Textarea, ThemeProvider, type ToastAction, ToastDefaultTitle, ToastPosition, type ToastProps, Toast as ToastProvider, ToastStyle, ToastType, ToolTip, type ToolTipController, type ToolTipProps, type TreeItemHandler, type TreeItemProps, type TreeNode, type TreeNodeIcons, TreeView, type TreeViewHandler, type TreeViewProps, type Value, type ValueOf, Variant, type ZuzCommonValues, type ZuzProps, type ZuzStyleString, type animationProps, animationTransition, buildClassString, buildWithStyles, cleanProps, css, type cssShortKey, type cssShortKeys, type dynamic, getAnimationCurve, getAnimationTransition, getZuzMap, isKeyCombination, type parallaxEffectProps, setZuzMap, splitAtoms, useBase, useContextMenu, useDialog, useDrawer, useFx, useMorph, usePosition, useSnack, useToast };
|