@zuzjs/ui 1.0.64 → 1.0.66

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
  *
@@ -1584,38 +1618,50 @@ declare const Form: {
1584
1618
  };
1585
1619
 
1586
1620
  interface GridProps extends Omit<BoxProps, 'cols'> {
1621
+ /** Grid column template (legacy shorthand). Prefer `columns` for readability. */
1587
1622
  cols?: string | number;
1623
+ /** Grid column template. Number values map to `repeat(n, 1fr)`. */
1624
+ columns?: string | number;
1625
+ /** Grid row template. Number values map to `repeat(n, 1fr)`. */
1588
1626
  rows?: string | number;
1627
+ /** CSS `gap`. */
1589
1628
  gap?: string | number;
1629
+ /** CSS `column-gap` (legacy shorthand). Prefer `columnGap`. */
1590
1630
  gapX?: string | number;
1631
+ /** CSS `row-gap` (legacy shorthand). Prefer `rowGap`. */
1591
1632
  gapY?: string | number;
1633
+ /** CSS `column-gap`. */
1634
+ columnGap?: string | number;
1635
+ /** CSS `row-gap`. */
1636
+ rowGap?: string | number;
1637
+ /** CSS `align-items` (legacy shorthand). Prefer `alignItems`. */
1592
1638
  align?: "start" | "end" | "center" | "stretch";
1639
+ /** CSS `align-items`. */
1640
+ alignItems?: "start" | "end" | "center" | "stretch";
1641
+ /** CSS `justify-content` (legacy shorthand). Prefer `justifyContent`. */
1593
1642
  justify?: "start" | "end" | "center" | "stretch" | "between" | "around";
1643
+ /** CSS `justify-content`. */
1644
+ justifyContent?: "start" | "end" | "center" | "stretch" | "between" | "around";
1645
+ /** Use `inline-grid` instead of `grid`. */
1594
1646
  inline?: boolean;
1647
+ /** CSS `grid-auto-flow` (legacy shorthand). Prefer `autoFlow`. */
1595
1648
  flow?: "row" | "column" | "dense" | "row dense" | "column dense";
1649
+ /** CSS `grid-auto-flow`. */
1650
+ autoFlow?: "row" | "column" | "dense" | "row dense" | "column dense";
1651
+ /** CSS `grid-auto-columns` (legacy shorthand). Prefer `autoColumns`. */
1596
1652
  autoCols?: string;
1653
+ /** CSS `grid-auto-columns`. */
1654
+ autoColumns?: string;
1655
+ /** CSS `grid-auto-rows` (legacy shorthand). Prefer `autoRow`. */
1597
1656
  autoRows?: string;
1657
+ /** CSS `grid-auto-rows`. */
1658
+ autoRow?: string;
1659
+ /** CSS `grid-template-areas` (legacy shorthand). Prefer `areas`. */
1598
1660
  template?: string;
1661
+ /** CSS `grid-template-areas`. */
1662
+ areas?: string;
1599
1663
  }
1600
1664
 
1601
- /**
1602
- * Grid component.
1603
- *
1604
- * @example
1605
- * // Basic usage
1606
- * ```tsx
1607
- * <Grid columns={3}><div>1</div><div>2</div><div>3</div></Grid>
1608
- * ```
1609
- *
1610
- * @example
1611
- * // Advanced usage with additional props
1612
- * ```tsx
1613
- * <Grid columns={4} gap="lg" minColWidth="200px"><div>Cell 1</div><div>Cell 2</div></Grid>
1614
- * ```
1615
- * @param columns - Number of columns
1616
- * @param gap - Spacing between items
1617
- * @param minColWidth - minColWidth prop
1618
- */
1619
1665
  declare const Grid: {
1620
1666
  (props: GridProps): react_jsx_runtime.JSX.Element;
1621
1667
  displayName: string;
@@ -3139,24 +3185,6 @@ declare const Toast: FC<ToastProps & {
3139
3185
  forceClose?: boolean;
3140
3186
  }>;
3141
3187
 
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
3188
  /**
3161
3189
  * Tooltip component.
3162
3190
  *
@@ -3317,6 +3345,10 @@ declare const useContextMenu: () => {
3317
3345
  declare const useDialog: () => {
3318
3346
  clearAll: () => void;
3319
3347
  show: (pops: Omit<DialogProps, `id` | `onShow` | `onHide`>) => DialogController;
3348
+ confirm: (pops: Omit<DialogProps, `id` | `onShow` | `onHide`> & {
3349
+ confirmLabel?: string;
3350
+ cancelLabel?: string;
3351
+ }) => DialogController;
3320
3352
  hide: (id: number) => void;
3321
3353
  };
3322
3354
 
@@ -3444,4 +3476,4 @@ declare const animationTransition: (transition: ValueOf<typeof TRANSITIONS>, sta
3444
3476
  };
3445
3477
  declare const getAnimationTransition: (transition: ValueOf<typeof TRANSITIONS>, to?: boolean, from?: boolean) => dynamic;
3446
3478
 
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 };
3479
+ 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 };