@zuzjs/ui 1.0.63 → 1.0.65

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.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, ReactElement, JSX, ComponentPropsWithRef } from 'react';
3
3
  import { DragOptions, LineChartProps, MediaItem, useMediaPlayer, ScrollBreakpoint, Command } from '@zuzjs/hooks';
4
4
  import * as react_jsx_runtime from 'react/jsx-runtime';
5
- import { PubSub } from '@zuzjs/core';
5
+ import { dynamic as dynamic$1, PubSub } from '@zuzjs/core';
6
6
 
7
7
  declare const AVATAR: {
8
8
  readonly Circle: "CIRCLE";
@@ -140,6 +140,7 @@ declare const SHEET: {
140
140
  readonly Success: "SUCCESS";
141
141
  readonly Warn: "WARN";
142
142
  readonly Promise: "PROMISE";
143
+ readonly Confirm: "CONFIRM";
143
144
  };
144
145
  declare const DIALOG: {
145
146
  readonly Dialog: "DIALOG";
@@ -148,6 +149,7 @@ declare const DIALOG: {
148
149
  readonly Success: "SUCCESS";
149
150
  readonly Warn: "WARN";
150
151
  readonly Promise: "PROMISE";
152
+ readonly Confirm: "CONFIRM";
151
153
  };
152
154
  declare const SHEET_ACTION_POSITION: {
153
155
  readonly Left: "LEFT";
@@ -595,6 +597,24 @@ declare const Box: {
595
597
  displayName: string;
596
598
  };
597
599
 
600
+ interface ToolTipController {
601
+ setPosition: (pos: {
602
+ x: number;
603
+ y: number;
604
+ }) => void;
605
+ show: () => void;
606
+ hide: () => void;
607
+ }
608
+ type ToolTipProps = Omit<BoxProps, `title` | `ref`> & {
609
+ position?: ValueOf<typeof POSITION>;
610
+ margin?: number;
611
+ title?: string | ReactNode;
612
+ show?: boolean;
613
+ variant?: ValueOf<typeof Variant>;
614
+ /** Tooltip will be anchored to this className in children */
615
+ anchorName?: string;
616
+ };
617
+
598
618
  type ButtonProps = Props<`button`> & {
599
619
  ref?: Ref<HTMLButtonElement>;
600
620
  icon?: string | null;
@@ -604,12 +624,15 @@ type ButtonProps = Props<`button`> & {
604
624
  state?: ButtonState;
605
625
  variant?: ValueOf<typeof Variant>;
606
626
  reset?: boolean;
607
- kind?: `solid` | `subtle` | `surface` | `outline` | `ghost` | `plain`;
627
+ tooltip?: string;
628
+ tooltipProps?: Omit<ToolTipProps, `title`>;
629
+ kind?: ButtonKind;
608
630
  };
609
631
  interface ButtonHandler extends HTMLButtonElement {
610
632
  reset: () => void;
611
633
  setState: (mod: ButtonState) => void;
612
634
  }
635
+ type ButtonKind = `solid` | `subtle` | `surface` | `outline` | `ghost` | `plain`;
613
636
  declare const ButtonState: {
614
637
  Loading: string;
615
638
  Normal: string;
@@ -1194,10 +1217,128 @@ type DatePickerProps = InputProps & {
1194
1217
  */
1195
1218
  declare const DatePicker: react.ForwardRefExoticComponent<Omit<DatePickerProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
1196
1219
 
1220
+ type SheetProps = ZuzProps & {
1221
+ title?: string;
1222
+ message?: string | ReactNode;
1223
+ transition?: ValueOf<typeof TRANSITIONS>;
1224
+ curve?: ValueOf<typeof TRANSITION_CURVES>;
1225
+ speed?: number;
1226
+ type?: ValueOf<typeof SHEET>;
1227
+ spinner?: ValueOf<typeof SPINNER>;
1228
+ loadingMessage?: string;
1229
+ actionPosition?: ValueOf<typeof SHEET_ACTION_POSITION>;
1230
+ onShow?: () => void;
1231
+ onHide?: () => void;
1232
+ };
1233
+ interface SheetActionHandler {
1234
+ key?: string;
1235
+ label: string;
1236
+ handler?: () => void;
1237
+ onClick?: () => void;
1238
+ }
1239
+ interface SheetHandler {
1240
+ setLoading: (mode: boolean) => void;
1241
+ showDialog: (title: string | ReactNode, message: string | ReactNode, action?: SheetActionHandler[], onShow?: () => void) => void;
1242
+ dialog: (title: string | ReactNode, message: string | ReactNode, action?: SheetActionHandler[], onShow?: () => void) => void;
1243
+ show: (message: string | ReactNode, duration?: number, type?: ValueOf<typeof SHEET>) => void;
1244
+ success: (message: string | ReactNode, duration?: number) => void;
1245
+ error: (message: string | ReactNode, duration?: number) => void;
1246
+ warn: (message: string | ReactNode, duration?: number) => void;
1247
+ hide: () => void;
1248
+ }
1249
+ /**
1250
+ * Sheet component.
1251
+ *
1252
+ * @example
1253
+ * // Basic usage
1254
+ * ```tsx
1255
+ * <Sheet isOpen={true} onClose={() => setOpen(false)}>Content here</Sheet>
1256
+ * ```
1257
+ *
1258
+ * @example
1259
+ * // Advanced usage with additional props
1260
+ * ```tsx
1261
+ * <Sheet isOpen={true} onClose={() => setOpen(false)} position="bottom" size="md" backdrop>Bottom sheet</Sheet>
1262
+ * ```
1263
+ * @param isOpen - Whether sheet is open
1264
+ * @param onClose - Callback function triggered when closing
1265
+ * @param position - position prop
1266
+ * @param size - Component size
1267
+ * @param backdrop - backdrop prop
1268
+ */
1269
+ declare const Sheet: react.ForwardRefExoticComponent<ZuzProps & {
1270
+ title?: string;
1271
+ message?: string | ReactNode;
1272
+ transition?: ValueOf<typeof TRANSITIONS>;
1273
+ curve?: ValueOf<typeof TRANSITION_CURVES>;
1274
+ speed?: number;
1275
+ type?: ValueOf<typeof SHEET>;
1276
+ spinner?: ValueOf<typeof SPINNER>;
1277
+ loadingMessage?: string;
1278
+ actionPosition?: ValueOf<typeof SHEET_ACTION_POSITION>;
1279
+ onShow?: () => void;
1280
+ onHide?: () => void;
1281
+ } & react.RefAttributes<SheetHandler>>;
1282
+
1283
+ type ValidationSchema = Record<string, (value: any, allValues: dynamic) => string | null | boolean>;
1284
+ type ValidationResult = {
1285
+ [key: string]: {
1286
+ valid: boolean;
1287
+ value: string;
1288
+ };
1289
+ };
1290
+ type FormProps = Omit<BoxProps, `ref`> & {
1291
+ schema?: ValidationSchema;
1292
+ /** Name of form, will be appended to --form-{name} in className
1293
+ * whitespace will be replaced with dash (-)
1294
+ */
1295
+ name?: string;
1296
+ /** The URL to which the form data is submitted */
1297
+ action?: string;
1298
+ /** List of error messages for form validation */
1299
+ errors?: dynamic;
1300
+ /** Spinner properties for loading indicator */
1301
+ spinner?: ValueOf<typeof SPINNER>;
1302
+ /** Additional data to include with form submission */
1303
+ withData?: dynamic;
1304
+ /** Handler function called before form submission with validated form data */
1305
+ beforeSubmit?: (data: FormData | dynamic, validationResult: ValidationResult) => void;
1306
+ /** Handler function called on form submission with validated form data */
1307
+ onSubmit?: (data: FormData | dynamic, validationResult: ValidationResult) => void;
1308
+ /** Callback triggered upon successful form submission */
1309
+ onSuccess?: (data: dynamic, payload?: dynamic) => void;
1310
+ /** Callback triggered when form submission encounters an error */
1311
+ onError?: (error: any, validationResult: ValidationResult) => void;
1312
+ /** Cover properties to display loading or processing message */
1313
+ cover?: {
1314
+ /** Background color of the loading cover */
1315
+ color?: string;
1316
+ /** Message displayed during loading */
1317
+ message?: string;
1318
+ } | SheetHandler;
1319
+ resetOnSuccess?: boolean;
1320
+ };
1321
+ /**
1322
+ * Exposes control methods for the Form component, such as setting loading states or hiding errors.
1323
+ */
1324
+ interface FormHandler {
1325
+ /** Sets the loading state of the form */
1326
+ setLoading: (mode: boolean) => void;
1327
+ /** Hides any currently displayed error message */
1328
+ hideError: () => void;
1329
+ /** Resets the form to its initial state */
1330
+ init: () => void;
1331
+ submit: (more?: dynamic) => void;
1332
+ }
1333
+
1197
1334
  type DialogProps = ZuzProps & {
1198
1335
  id?: number;
1199
1336
  title?: string | ReactNode;
1337
+ description?: string | ReactNode;
1338
+ titleAlignment?: `left` | `center` | `right`;
1200
1339
  message?: string | ReactNode;
1340
+ content?: string | ReactNode;
1341
+ width?: number | string;
1201
1342
  transition?: ValueOf<typeof TRANSITIONS>;
1202
1343
  curve?: ValueOf<typeof TRANSITION_CURVES>;
1203
1344
  speed?: number;
@@ -1208,12 +1349,19 @@ type DialogProps = ZuzProps & {
1208
1349
  action?: DialogActionHandler[];
1209
1350
  actionPosition?: ValueOf<typeof DIALOG_ACTION_POSITION>;
1210
1351
  variant?: ValueOf<typeof Variant>;
1352
+ /** WithForm */
1353
+ useForm?: boolean;
1354
+ formProps?: FormProps;
1355
+ onConfirm?: (data?: dynamic$1, validateResult?: ValidationResult) => void;
1356
+ onCancel?: () => void;
1211
1357
  onShow?: () => void;
1212
1358
  onHide?: () => void;
1213
1359
  } & LayerHandler;
1214
1360
  interface DialogActionHandler {
1215
1361
  key?: string;
1216
1362
  label: string;
1363
+ kind?: ButtonKind;
1364
+ type?: "button" | "reset" | "submit";
1217
1365
  handler?: () => void;
1218
1366
  onClick?: () => void;
1219
1367
  }
@@ -1444,120 +1592,6 @@ type FlexProps = BoxProps & {
1444
1592
  */
1445
1593
  declare const Flex: FC<FlexProps>;
1446
1594
 
1447
- type SheetProps = ZuzProps & {
1448
- title?: string;
1449
- message?: string | ReactNode;
1450
- transition?: ValueOf<typeof TRANSITIONS>;
1451
- curve?: ValueOf<typeof TRANSITION_CURVES>;
1452
- speed?: number;
1453
- type?: ValueOf<typeof SHEET>;
1454
- spinner?: ValueOf<typeof SPINNER>;
1455
- loadingMessage?: string;
1456
- actionPosition?: ValueOf<typeof SHEET_ACTION_POSITION>;
1457
- onShow?: () => void;
1458
- onHide?: () => void;
1459
- };
1460
- interface SheetActionHandler {
1461
- key?: string;
1462
- label: string;
1463
- handler?: () => void;
1464
- onClick?: () => void;
1465
- }
1466
- interface SheetHandler {
1467
- setLoading: (mode: boolean) => void;
1468
- showDialog: (title: string | ReactNode, message: string | ReactNode, action?: SheetActionHandler[], onShow?: () => void) => void;
1469
- dialog: (title: string | ReactNode, message: string | ReactNode, action?: SheetActionHandler[], onShow?: () => void) => void;
1470
- show: (message: string | ReactNode, duration?: number, type?: ValueOf<typeof SHEET>) => void;
1471
- success: (message: string | ReactNode, duration?: number) => void;
1472
- error: (message: string | ReactNode, duration?: number) => void;
1473
- warn: (message: string | ReactNode, duration?: number) => void;
1474
- hide: () => void;
1475
- }
1476
- /**
1477
- * Sheet component.
1478
- *
1479
- * @example
1480
- * // Basic usage
1481
- * ```tsx
1482
- * <Sheet isOpen={true} onClose={() => setOpen(false)}>Content here</Sheet>
1483
- * ```
1484
- *
1485
- * @example
1486
- * // Advanced usage with additional props
1487
- * ```tsx
1488
- * <Sheet isOpen={true} onClose={() => setOpen(false)} position="bottom" size="md" backdrop>Bottom sheet</Sheet>
1489
- * ```
1490
- * @param isOpen - Whether sheet is open
1491
- * @param onClose - Callback function triggered when closing
1492
- * @param position - position prop
1493
- * @param size - Component size
1494
- * @param backdrop - backdrop prop
1495
- */
1496
- declare const Sheet: react.ForwardRefExoticComponent<ZuzProps & {
1497
- title?: string;
1498
- message?: string | ReactNode;
1499
- transition?: ValueOf<typeof TRANSITIONS>;
1500
- curve?: ValueOf<typeof TRANSITION_CURVES>;
1501
- speed?: number;
1502
- type?: ValueOf<typeof SHEET>;
1503
- spinner?: ValueOf<typeof SPINNER>;
1504
- loadingMessage?: string;
1505
- actionPosition?: ValueOf<typeof SHEET_ACTION_POSITION>;
1506
- onShow?: () => void;
1507
- onHide?: () => void;
1508
- } & react.RefAttributes<SheetHandler>>;
1509
-
1510
- type ValidationSchema = Record<string, (value: any, allValues: dynamic) => string | null | boolean>;
1511
- type ValidationResult = {
1512
- [key: string]: {
1513
- valid: boolean;
1514
- value: string;
1515
- };
1516
- };
1517
- type FormProps = Omit<BoxProps, `ref`> & {
1518
- schema?: ValidationSchema;
1519
- /** Name of form, will be appended to --form-{name} in className
1520
- * whitespace will be replaced with dash (-)
1521
- */
1522
- name?: string;
1523
- /** The URL to which the form data is submitted */
1524
- action?: string;
1525
- /** List of error messages for form validation */
1526
- errors?: dynamic;
1527
- /** Spinner properties for loading indicator */
1528
- spinner?: ValueOf<typeof SPINNER>;
1529
- /** Additional data to include with form submission */
1530
- withData?: dynamic;
1531
- /** Handler function called before form submission with validated form data */
1532
- beforeSubmit?: (data: FormData | dynamic, validationResult: ValidationResult) => void;
1533
- /** Handler function called on form submission with validated form data */
1534
- onSubmit?: (data: FormData | dynamic, validationResult: ValidationResult) => void;
1535
- /** Callback triggered upon successful form submission */
1536
- onSuccess?: (data: dynamic, payload?: dynamic) => void;
1537
- /** Callback triggered when form submission encounters an error */
1538
- onError?: (error: any, validationResult: ValidationResult) => void;
1539
- /** Cover properties to display loading or processing message */
1540
- cover?: {
1541
- /** Background color of the loading cover */
1542
- color?: string;
1543
- /** Message displayed during loading */
1544
- message?: string;
1545
- } | SheetHandler;
1546
- resetOnSuccess?: boolean;
1547
- };
1548
- /**
1549
- * Exposes control methods for the Form component, such as setting loading states or hiding errors.
1550
- */
1551
- interface FormHandler {
1552
- /** Sets the loading state of the form */
1553
- setLoading: (mode: boolean) => void;
1554
- /** Hides any currently displayed error message */
1555
- hideError: () => void;
1556
- /** Resets the form to its initial state */
1557
- init: () => void;
1558
- submit: (more?: dynamic) => void;
1559
- }
1560
-
1561
1595
  /**
1562
1596
  * Form component.
1563
1597
  *
@@ -3139,24 +3173,6 @@ declare const Toast: FC<ToastProps & {
3139
3173
  forceClose?: boolean;
3140
3174
  }>;
3141
3175
 
3142
- interface ToolTipController {
3143
- setPosition: (pos: {
3144
- x: number;
3145
- y: number;
3146
- }) => void;
3147
- show: () => void;
3148
- hide: () => void;
3149
- }
3150
- type ToolTipProps = Omit<BoxProps, `title` | `ref`> & {
3151
- position?: ValueOf<typeof POSITION>;
3152
- margin?: number;
3153
- title?: string | ReactNode;
3154
- show?: boolean;
3155
- variant?: ValueOf<typeof Variant>;
3156
- /** Tooltip will be anchored to this className in children */
3157
- anchorName?: string;
3158
- };
3159
-
3160
3176
  /**
3161
3177
  * Tooltip component.
3162
3178
  *
@@ -3317,6 +3333,10 @@ declare const useContextMenu: () => {
3317
3333
  declare const useDialog: () => {
3318
3334
  clearAll: () => void;
3319
3335
  show: (pops: Omit<DialogProps, `id` | `onShow` | `onHide`>) => DialogController;
3336
+ confirm: (pops: Omit<DialogProps, `id` | `onShow` | `onHide`> & {
3337
+ confirmLabel?: string;
3338
+ cancelLabel?: string;
3339
+ }) => DialogController;
3320
3340
  hide: (id: number) => void;
3321
3341
  };
3322
3342
 
@@ -3444,4 +3464,4 @@ declare const animationTransition: (transition: ValueOf<typeof TRANSITIONS>, sta
3444
3464
  };
3445
3465
  declare const getAnimationTransition: (transition: ValueOf<typeof TRANSITIONS>, to?: boolean, from?: boolean) => dynamic;
3446
3466
 
3447
- 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, Fieldset, type FieldsetProps, type FilterProps, Filters, Flex, type FlexProps, Form, type FormHandler, type FormInputs, type FormProps, type FormValidation, 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, PLACEMENTS, POSITION, PROGRESS, Pagination, type PaginationCallback, type PaginationController, type PaginationPage, type PaginationPageItem, type PaginationProps, PaginationStyle, Password, type PasswordProps, PinInput, type PinInputProps, type Placement, 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 SelectEditableChange, type SelectEditableProps, type SelectHandler, type SelectInternalProps, type SelectMultipleChange, type SelectMultipleProps, type SelectPrimitive, type SelectProps, type SelectSingleChange, type SelectSingleProps, type SelectSingleValue, Segmented as SelectTabs, type SelectTokenizerProps, type SelectValue, Sheet, type SheetHandler, type SheetProps, type Skeleton, Slider, type SliderController, type SliderProps, type ToastAction as SnackAction, type SnackController, 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 ValidationResult, type ValidationSchema, type Value, type ValueOf, Variant, type WithFormValidation, 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 };
3467
+ 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 ButtonKind, 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, Fieldset, type FieldsetProps, type FilterProps, Filters, Flex, type FlexProps, Form, type FormHandler, type FormInputs, type FormProps, type FormValidation, 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, PLACEMENTS, POSITION, PROGRESS, Pagination, type PaginationCallback, type PaginationController, type PaginationPage, type PaginationPageItem, type PaginationProps, PaginationStyle, Password, type PasswordProps, PinInput, type PinInputProps, type Placement, 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 SelectEditableChange, type SelectEditableProps, type SelectHandler, type SelectInternalProps, type SelectMultipleChange, type SelectMultipleProps, type SelectPrimitive, type SelectProps, type SelectSingleChange, type SelectSingleProps, type SelectSingleValue, Segmented as SelectTabs, type SelectTokenizerProps, type SelectValue, Sheet, type SheetHandler, type SheetProps, type Skeleton, Slider, type SliderController, type SliderProps, type ToastAction as SnackAction, type SnackController, 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 ValidationResult, type ValidationSchema, type Value, type ValueOf, Variant, type WithFormValidation, 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 };