@zuzjs/ui 1.0.32 → 1.0.33
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/index.cjs +6 -6
- package/dist/index.d.cts +52 -4
- package/dist/index.d.ts +52 -4
- package/dist/index.js +5 -5
- package/package.json +2 -2
- /package/dist/{chunk-6246PXMY.js → chunk-6RUAMBJW.js} +0 -0
- /package/dist/{chunk-KUHU22RD.cjs → chunk-LE3HEEAK.cjs} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -2,7 +2,7 @@ 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 react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as _zuzjs_hooks from '@zuzjs/hooks';
|
|
5
|
-
import { LineChartProps, Command } from '@zuzjs/hooks';
|
|
5
|
+
import { LineChartProps, MediaItem, useMediaPlayer, Command } from '@zuzjs/hooks';
|
|
6
6
|
import { PubSub } from '@zuzjs/core';
|
|
7
7
|
|
|
8
8
|
declare const AVATAR: {
|
|
@@ -865,6 +865,8 @@ declare const SVGIcons: {
|
|
|
865
865
|
pause: react_jsx_runtime.JSX.Element;
|
|
866
866
|
next: react_jsx_runtime.JSX.Element;
|
|
867
867
|
prev: react_jsx_runtime.JSX.Element;
|
|
868
|
+
volumeHigh: react_jsx_runtime.JSX.Element;
|
|
869
|
+
volumeMute: react_jsx_runtime.JSX.Element;
|
|
868
870
|
plus: react_jsx_runtime.JSX.Element;
|
|
869
871
|
add: react_jsx_runtime.JSX.Element;
|
|
870
872
|
chevronUp: react_jsx_runtime.JSX.Element;
|
|
@@ -1138,6 +1140,45 @@ declare const List: react.ForwardRefExoticComponent<ZuzProps & Omit<Omit<react.D
|
|
|
1138
1140
|
ol?: boolean;
|
|
1139
1141
|
} & react.RefAttributes<HTMLOListElement | HTMLUListElement>>;
|
|
1140
1142
|
|
|
1143
|
+
interface MediaPlayerController {
|
|
1144
|
+
}
|
|
1145
|
+
type MediaPlayerProps = Omit<BoxProps, `ref`> & {
|
|
1146
|
+
ref?: Ref<MediaPlayerController>;
|
|
1147
|
+
playlist?: MediaItem[];
|
|
1148
|
+
mode?: 'audio' | 'video';
|
|
1149
|
+
autoPlay?: boolean;
|
|
1150
|
+
icons?: MediaPlayerIcons;
|
|
1151
|
+
defaultTitle?: string;
|
|
1152
|
+
defaultCover?: string;
|
|
1153
|
+
defaultArtist?: string;
|
|
1154
|
+
onTrackChange?: (item: MediaItem) => void;
|
|
1155
|
+
};
|
|
1156
|
+
type MediaPlayerIcon = string | ReactNode;
|
|
1157
|
+
interface MediaPlayerIcons {
|
|
1158
|
+
play?: MediaPlayerIcon;
|
|
1159
|
+
pause?: MediaPlayerIcon;
|
|
1160
|
+
prev?: MediaPlayerIcon;
|
|
1161
|
+
next?: MediaPlayerIcon;
|
|
1162
|
+
volumeHigh?: MediaPlayerIcon;
|
|
1163
|
+
volumeMute?: MediaPlayerIcon;
|
|
1164
|
+
loading?: MediaPlayerIcon;
|
|
1165
|
+
}
|
|
1166
|
+
type MediaPlayerContextType = ReturnType<typeof useMediaPlayer> & {
|
|
1167
|
+
icons?: MediaPlayerIcons;
|
|
1168
|
+
mode?: "audio" | "video";
|
|
1169
|
+
defaultTitle?: string;
|
|
1170
|
+
defaultCover?: string;
|
|
1171
|
+
defaultArtist?: string;
|
|
1172
|
+
};
|
|
1173
|
+
|
|
1174
|
+
declare const MediaPlayer: (({ ref, ...props }: MediaPlayerProps) => react_jsx_runtime.JSX.Element) & {
|
|
1175
|
+
Stage: () => react_jsx_runtime.JSX.Element;
|
|
1176
|
+
TrackInfo: () => react_jsx_runtime.JSX.Element;
|
|
1177
|
+
Controls: () => react_jsx_runtime.JSX.Element;
|
|
1178
|
+
Progress: () => react_jsx_runtime.JSX.Element;
|
|
1179
|
+
Volume: () => react_jsx_runtime.JSX.Element;
|
|
1180
|
+
};
|
|
1181
|
+
|
|
1141
1182
|
type NetworkManagerprops = BoxProps & {
|
|
1142
1183
|
variant?: ValueOf<typeof Variant>;
|
|
1143
1184
|
offlineMessage?: string;
|
|
@@ -1391,7 +1432,10 @@ declare const Select: {
|
|
|
1391
1432
|
displayName: string;
|
|
1392
1433
|
};
|
|
1393
1434
|
|
|
1394
|
-
|
|
1435
|
+
interface SliderController {
|
|
1436
|
+
}
|
|
1437
|
+
type SliderProps = Omit<BoxProps, `ref`> & {
|
|
1438
|
+
ref?: Ref<SliderController>;
|
|
1395
1439
|
type?: ValueOf<typeof SLIDER>;
|
|
1396
1440
|
value?: number;
|
|
1397
1441
|
min?: number;
|
|
@@ -1404,7 +1448,11 @@ type SliderProps = BoxProps & {
|
|
|
1404
1448
|
formatValue?: (value: number) => string | number;
|
|
1405
1449
|
onChange?: (value: number) => void;
|
|
1406
1450
|
};
|
|
1407
|
-
|
|
1451
|
+
|
|
1452
|
+
declare const Slider: {
|
|
1453
|
+
({ ref, ...props }: SliderProps): react_jsx_runtime.JSX.Element;
|
|
1454
|
+
displayName: string;
|
|
1455
|
+
};
|
|
1408
1456
|
|
|
1409
1457
|
type SpanProps = Props<`span`> & {
|
|
1410
1458
|
ref?: Ref<HTMLSpanElement>;
|
|
@@ -2028,4 +2076,4 @@ declare const animationTransition: (transition: ValueOf<typeof TRANSITIONS>, off
|
|
|
2028
2076
|
};
|
|
2029
2077
|
declare const getAnimationTransition: (transition: ValueOf<typeof TRANSITIONS>, to?: boolean, from?: boolean) => dynamic;
|
|
2030
2078
|
|
|
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 };
|
|
2079
|
+
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
|
@@ -2,7 +2,7 @@ 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 react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as _zuzjs_hooks from '@zuzjs/hooks';
|
|
5
|
-
import { LineChartProps, Command } from '@zuzjs/hooks';
|
|
5
|
+
import { LineChartProps, MediaItem, useMediaPlayer, Command } from '@zuzjs/hooks';
|
|
6
6
|
import { PubSub } from '@zuzjs/core';
|
|
7
7
|
|
|
8
8
|
declare const AVATAR: {
|
|
@@ -865,6 +865,8 @@ declare const SVGIcons: {
|
|
|
865
865
|
pause: react_jsx_runtime.JSX.Element;
|
|
866
866
|
next: react_jsx_runtime.JSX.Element;
|
|
867
867
|
prev: react_jsx_runtime.JSX.Element;
|
|
868
|
+
volumeHigh: react_jsx_runtime.JSX.Element;
|
|
869
|
+
volumeMute: react_jsx_runtime.JSX.Element;
|
|
868
870
|
plus: react_jsx_runtime.JSX.Element;
|
|
869
871
|
add: react_jsx_runtime.JSX.Element;
|
|
870
872
|
chevronUp: react_jsx_runtime.JSX.Element;
|
|
@@ -1138,6 +1140,45 @@ declare const List: react.ForwardRefExoticComponent<ZuzProps & Omit<Omit<react.D
|
|
|
1138
1140
|
ol?: boolean;
|
|
1139
1141
|
} & react.RefAttributes<HTMLOListElement | HTMLUListElement>>;
|
|
1140
1142
|
|
|
1143
|
+
interface MediaPlayerController {
|
|
1144
|
+
}
|
|
1145
|
+
type MediaPlayerProps = Omit<BoxProps, `ref`> & {
|
|
1146
|
+
ref?: Ref<MediaPlayerController>;
|
|
1147
|
+
playlist?: MediaItem[];
|
|
1148
|
+
mode?: 'audio' | 'video';
|
|
1149
|
+
autoPlay?: boolean;
|
|
1150
|
+
icons?: MediaPlayerIcons;
|
|
1151
|
+
defaultTitle?: string;
|
|
1152
|
+
defaultCover?: string;
|
|
1153
|
+
defaultArtist?: string;
|
|
1154
|
+
onTrackChange?: (item: MediaItem) => void;
|
|
1155
|
+
};
|
|
1156
|
+
type MediaPlayerIcon = string | ReactNode;
|
|
1157
|
+
interface MediaPlayerIcons {
|
|
1158
|
+
play?: MediaPlayerIcon;
|
|
1159
|
+
pause?: MediaPlayerIcon;
|
|
1160
|
+
prev?: MediaPlayerIcon;
|
|
1161
|
+
next?: MediaPlayerIcon;
|
|
1162
|
+
volumeHigh?: MediaPlayerIcon;
|
|
1163
|
+
volumeMute?: MediaPlayerIcon;
|
|
1164
|
+
loading?: MediaPlayerIcon;
|
|
1165
|
+
}
|
|
1166
|
+
type MediaPlayerContextType = ReturnType<typeof useMediaPlayer> & {
|
|
1167
|
+
icons?: MediaPlayerIcons;
|
|
1168
|
+
mode?: "audio" | "video";
|
|
1169
|
+
defaultTitle?: string;
|
|
1170
|
+
defaultCover?: string;
|
|
1171
|
+
defaultArtist?: string;
|
|
1172
|
+
};
|
|
1173
|
+
|
|
1174
|
+
declare const MediaPlayer: (({ ref, ...props }: MediaPlayerProps) => react_jsx_runtime.JSX.Element) & {
|
|
1175
|
+
Stage: () => react_jsx_runtime.JSX.Element;
|
|
1176
|
+
TrackInfo: () => react_jsx_runtime.JSX.Element;
|
|
1177
|
+
Controls: () => react_jsx_runtime.JSX.Element;
|
|
1178
|
+
Progress: () => react_jsx_runtime.JSX.Element;
|
|
1179
|
+
Volume: () => react_jsx_runtime.JSX.Element;
|
|
1180
|
+
};
|
|
1181
|
+
|
|
1141
1182
|
type NetworkManagerprops = BoxProps & {
|
|
1142
1183
|
variant?: ValueOf<typeof Variant>;
|
|
1143
1184
|
offlineMessage?: string;
|
|
@@ -1391,7 +1432,10 @@ declare const Select: {
|
|
|
1391
1432
|
displayName: string;
|
|
1392
1433
|
};
|
|
1393
1434
|
|
|
1394
|
-
|
|
1435
|
+
interface SliderController {
|
|
1436
|
+
}
|
|
1437
|
+
type SliderProps = Omit<BoxProps, `ref`> & {
|
|
1438
|
+
ref?: Ref<SliderController>;
|
|
1395
1439
|
type?: ValueOf<typeof SLIDER>;
|
|
1396
1440
|
value?: number;
|
|
1397
1441
|
min?: number;
|
|
@@ -1404,7 +1448,11 @@ type SliderProps = BoxProps & {
|
|
|
1404
1448
|
formatValue?: (value: number) => string | number;
|
|
1405
1449
|
onChange?: (value: number) => void;
|
|
1406
1450
|
};
|
|
1407
|
-
|
|
1451
|
+
|
|
1452
|
+
declare const Slider: {
|
|
1453
|
+
({ ref, ...props }: SliderProps): react_jsx_runtime.JSX.Element;
|
|
1454
|
+
displayName: string;
|
|
1455
|
+
};
|
|
1408
1456
|
|
|
1409
1457
|
type SpanProps = Props<`span`> & {
|
|
1410
1458
|
ref?: Ref<HTMLSpanElement>;
|
|
@@ -2028,4 +2076,4 @@ declare const animationTransition: (transition: ValueOf<typeof TRANSITIONS>, off
|
|
|
2028
2076
|
};
|
|
2029
2077
|
declare const getAnimationTransition: (transition: ValueOf<typeof TRANSITIONS>, to?: boolean, from?: boolean) => dynamic;
|
|
2030
2078
|
|
|
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 };
|
|
2079
|
+
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 };
|