@zuzjs/ui 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -684,11 +684,6 @@ type DialogProps = ZuzProps & {
684
684
  onShow?: () => void;
685
685
  onHide?: () => void;
686
686
  };
687
- interface DialogController {
688
- add: (toast: Omit<DialogProps, 'id'>) => number;
689
- remove: (id: number) => void;
690
- clear: () => void;
691
- }
692
687
  interface DialogActionHandler {
693
688
  key?: string;
694
689
  label: string;
@@ -704,20 +699,6 @@ interface DialogHandler {
704
699
  warn: (message: string | ReactNode, duration?: number) => void;
705
700
  hide: () => void;
706
701
  }
707
- interface DialogContextType extends DialogController {
708
- fx: {
709
- curve: ValueOf<typeof TRANSITION_CURVES>;
710
- duration: number;
711
- };
712
- }
713
-
714
- declare const SheetProvider: FC<{
715
- children: ReactNode;
716
- fx?: {
717
- curve: ValueOf<typeof TRANSITION_CURVES>;
718
- duration: number;
719
- };
720
- }>;
721
702
 
722
703
  declare const Dialog: {
723
704
  ({ ref, ...props }: DialogProps & {
@@ -729,6 +710,8 @@ declare const Dialog: {
729
710
  };
730
711
 
731
712
  type DrawerProps = BoxProps & {
713
+ id?: number;
714
+ index?: number;
732
715
  as?: string;
733
716
  speed?: number;
734
717
  from?: ValueOf<typeof DRAWER_SIDE>;
@@ -736,14 +719,19 @@ type DrawerProps = BoxProps & {
736
719
  prerender?: boolean;
737
720
  margin?: number;
738
721
  animation?: ValueOf<typeof TRANSITION_CURVES>;
739
- onClose?: () => void;
722
+ onClose?: (id: number) => void;
740
723
  };
741
724
  interface DrawerHandler {
742
725
  open: (child?: string | ReactNode | ReactNode[]) => void;
743
726
  close: () => void;
744
727
  }
745
728
 
746
- declare const Drawer: react.ForwardRefExoticComponent<Omit<DrawerProps, "ref"> & react.RefAttributes<DrawerHandler>>;
729
+ declare const Drawer: {
730
+ ({ ref, ...props }: DrawerProps & {
731
+ ref?: Ref<HTMLDivElement>;
732
+ }): react_jsx_runtime.JSX.Element;
733
+ displayName: string;
734
+ };
747
735
 
748
736
  declare const SVGIcons: {
749
737
  colorSchemeLight: react_jsx_runtime.JSX.Element;
@@ -1558,33 +1546,19 @@ declare enum ToastType {
1558
1546
  Promise = "promise"
1559
1547
  }
1560
1548
  declare const ToastDefaultTitle: dynamic;
1561
- interface ToastData {
1562
- id: number;
1549
+ interface ToastProps {
1550
+ id?: number;
1563
1551
  type: ToastType;
1564
1552
  icon?: string;
1565
1553
  title?: string | ReactNode;
1566
1554
  message?: string | ReactNode;
1567
1555
  duration?: number;
1556
+ onClose?: (id: number) => void;
1568
1557
  onClick?: () => void;
1569
1558
  }
1570
- interface ToastController {
1571
- add: (toast: Omit<ToastData, 'id'>) => number;
1572
- remove: (id: number) => void;
1573
- clear: () => void;
1574
- }
1575
- interface ToastContextType extends ToastController {
1576
- fx: {
1577
- curve: ValueOf<typeof TRANSITION_CURVES>;
1578
- duration: number;
1579
- };
1580
- }
1581
1559
 
1582
- declare const ToastProvider: FC<{
1583
- children: ReactNode;
1584
- fx?: {
1585
- curve: ValueOf<typeof TRANSITION_CURVES>;
1586
- duration: number;
1587
- };
1560
+ declare const Toast: FC<ToastProps & {
1561
+ index: number;
1588
1562
  }>;
1589
1563
 
1590
1564
  type ToolTipProps = BoxProps & {
@@ -1663,6 +1637,10 @@ interface ThemeConfig {
1663
1637
  spinner?: {
1664
1638
  type?: ValueOf<typeof SPINNER>;
1665
1639
  };
1640
+ toast?: {
1641
+ curve?: ValueOf<typeof TRANSITION_CURVES>;
1642
+ duration?: number;
1643
+ };
1666
1644
  }
1667
1645
  type ThemeProviderProps = {
1668
1646
  children: ReactNode;
@@ -1705,6 +1683,16 @@ declare const useToast: () => {
1705
1683
  clearAll: () => void;
1706
1684
  };
1707
1685
 
1686
+ declare const useDrawer: () => {
1687
+ clearAll: () => void;
1688
+ open: (child?: string | ReactNode | ReactNode[]) => number;
1689
+ right: (child?: string | ReactNode | ReactNode[]) => number;
1690
+ left: (child?: string | ReactNode | ReactNode[]) => number;
1691
+ top: (child?: string | ReactNode | ReactNode[]) => number;
1692
+ bottom: (child?: string | ReactNode | ReactNode[]) => number;
1693
+ close: (id: number) => void;
1694
+ };
1695
+
1708
1696
  declare const useFx: (fx?: animationProps, ref?: RefObject<HTMLElement>) => {
1709
1697
  style: any;
1710
1698
  };
@@ -1737,4 +1725,4 @@ declare const animationTransition: (transition: ValueOf<typeof TRANSITIONS>, off
1737
1725
  };
1738
1726
  declare const getAnimationTransition: (transition: ValueOf<typeof TRANSITIONS>, to?: boolean, from?: boolean) => dynamic;
1739
1727
 
1740
- export { ALERT, AVATAR, Accordion, type AccordionHandler, type AccordionProps, ActionBar, type ActionBarHandler, type ActionBarItem, type ActionBarProps, Alert, type AlertHandler, type AlertProps, 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, 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 DialogContextType, type DialogController, type DialogHandler, type DialogProps, SheetProvider as DialogProvider, Drawer, type DrawerHandler, type DrawerProps, FILTER, FORMVALIDATION, FORMVALIDATION_STYLE, Fab, type FabProps, type FilterProps, Filters, Form, type FormHandler, type FormInputs, type FormProps, 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, List, type ListItem, type ListItemObject, type ListProps, type MenuItemProps, type NetworkManagerprops, NetworkManager as NetworkStatus, type Option, type OptionItemProps, Overlay, type OverlayProps, PACKAGE_NAME, POSITION, PROGRESS, Pagination, type PaginationCallback, 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, Span, type SpanProps, Spinner, type SpinnerProps, Status, Switch, TRANSITIONS, TRANSITION_CURVES, type Tab, type TabBodyProps, type TabProps, TabView, type TabViewHandler, type TabViewProps, ForwardedTable as Table, type TableController, type TableProps, type TableSortCallback, Text, type TextAreaProps, TextWheel, type TextWheelHandler, type TextWheelProps, TextArea as Textarea, ThemeProvider, type ToastContextType, type ToastController, type ToastData, ToastDefaultTitle, ToastProvider, ToastType, ToolTip, 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, _buildWithStyles, type animationProps, animationTransition, buildClassString, buildWithStyles, cleanProps, css, type cssShortKey, type cssShortKeys, type dynamic, getAnimationCurve, getAnimationTransition, getZuzMap, isKeyCombination, type parallaxEffectProps, setZuzMap, splitAtoms, useBase, useContextMenu, useDialog, useFx, usePosition, useToast };
1728
+ export { ALERT, AVATAR, Accordion, type AccordionHandler, type AccordionProps, ActionBar, type ActionBarHandler, type ActionBarItem, type ActionBarProps, Alert, type AlertHandler, type AlertProps, 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, 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 DialogHandler, type DialogProps, Drawer, type DrawerHandler, type DrawerProps, FILTER, FORMVALIDATION, FORMVALIDATION_STYLE, Fab, type FabProps, type FilterProps, Filters, Form, type FormHandler, type FormInputs, type FormProps, 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, List, type ListItem, type ListItemObject, type ListProps, type MenuItemProps, type NetworkManagerprops, NetworkManager as NetworkStatus, type Option, type OptionItemProps, Overlay, type OverlayProps, PACKAGE_NAME, POSITION, PROGRESS, Pagination, type PaginationCallback, 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, Span, type SpanProps, Spinner, type SpinnerProps, Status, Switch, TRANSITIONS, TRANSITION_CURVES, type Tab, type TabBodyProps, type TabProps, TabView, type TabViewHandler, type TabViewProps, ForwardedTable as Table, type TableController, type TableProps, type TableSortCallback, Text, type TextAreaProps, TextWheel, type TextWheelHandler, type TextWheelProps, TextArea as Textarea, ThemeProvider, ToastDefaultTitle, type ToastProps, Toast as ToastProvider, ToastType, ToolTip, 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, _buildWithStyles, 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, usePosition, useToast };
package/dist/index.d.ts CHANGED
@@ -684,11 +684,6 @@ type DialogProps = ZuzProps & {
684
684
  onShow?: () => void;
685
685
  onHide?: () => void;
686
686
  };
687
- interface DialogController {
688
- add: (toast: Omit<DialogProps, 'id'>) => number;
689
- remove: (id: number) => void;
690
- clear: () => void;
691
- }
692
687
  interface DialogActionHandler {
693
688
  key?: string;
694
689
  label: string;
@@ -704,20 +699,6 @@ interface DialogHandler {
704
699
  warn: (message: string | ReactNode, duration?: number) => void;
705
700
  hide: () => void;
706
701
  }
707
- interface DialogContextType extends DialogController {
708
- fx: {
709
- curve: ValueOf<typeof TRANSITION_CURVES>;
710
- duration: number;
711
- };
712
- }
713
-
714
- declare const SheetProvider: FC<{
715
- children: ReactNode;
716
- fx?: {
717
- curve: ValueOf<typeof TRANSITION_CURVES>;
718
- duration: number;
719
- };
720
- }>;
721
702
 
722
703
  declare const Dialog: {
723
704
  ({ ref, ...props }: DialogProps & {
@@ -729,6 +710,8 @@ declare const Dialog: {
729
710
  };
730
711
 
731
712
  type DrawerProps = BoxProps & {
713
+ id?: number;
714
+ index?: number;
732
715
  as?: string;
733
716
  speed?: number;
734
717
  from?: ValueOf<typeof DRAWER_SIDE>;
@@ -736,14 +719,19 @@ type DrawerProps = BoxProps & {
736
719
  prerender?: boolean;
737
720
  margin?: number;
738
721
  animation?: ValueOf<typeof TRANSITION_CURVES>;
739
- onClose?: () => void;
722
+ onClose?: (id: number) => void;
740
723
  };
741
724
  interface DrawerHandler {
742
725
  open: (child?: string | ReactNode | ReactNode[]) => void;
743
726
  close: () => void;
744
727
  }
745
728
 
746
- declare const Drawer: react.ForwardRefExoticComponent<Omit<DrawerProps, "ref"> & react.RefAttributes<DrawerHandler>>;
729
+ declare const Drawer: {
730
+ ({ ref, ...props }: DrawerProps & {
731
+ ref?: Ref<HTMLDivElement>;
732
+ }): react_jsx_runtime.JSX.Element;
733
+ displayName: string;
734
+ };
747
735
 
748
736
  declare const SVGIcons: {
749
737
  colorSchemeLight: react_jsx_runtime.JSX.Element;
@@ -1558,33 +1546,19 @@ declare enum ToastType {
1558
1546
  Promise = "promise"
1559
1547
  }
1560
1548
  declare const ToastDefaultTitle: dynamic;
1561
- interface ToastData {
1562
- id: number;
1549
+ interface ToastProps {
1550
+ id?: number;
1563
1551
  type: ToastType;
1564
1552
  icon?: string;
1565
1553
  title?: string | ReactNode;
1566
1554
  message?: string | ReactNode;
1567
1555
  duration?: number;
1556
+ onClose?: (id: number) => void;
1568
1557
  onClick?: () => void;
1569
1558
  }
1570
- interface ToastController {
1571
- add: (toast: Omit<ToastData, 'id'>) => number;
1572
- remove: (id: number) => void;
1573
- clear: () => void;
1574
- }
1575
- interface ToastContextType extends ToastController {
1576
- fx: {
1577
- curve: ValueOf<typeof TRANSITION_CURVES>;
1578
- duration: number;
1579
- };
1580
- }
1581
1559
 
1582
- declare const ToastProvider: FC<{
1583
- children: ReactNode;
1584
- fx?: {
1585
- curve: ValueOf<typeof TRANSITION_CURVES>;
1586
- duration: number;
1587
- };
1560
+ declare const Toast: FC<ToastProps & {
1561
+ index: number;
1588
1562
  }>;
1589
1563
 
1590
1564
  type ToolTipProps = BoxProps & {
@@ -1663,6 +1637,10 @@ interface ThemeConfig {
1663
1637
  spinner?: {
1664
1638
  type?: ValueOf<typeof SPINNER>;
1665
1639
  };
1640
+ toast?: {
1641
+ curve?: ValueOf<typeof TRANSITION_CURVES>;
1642
+ duration?: number;
1643
+ };
1666
1644
  }
1667
1645
  type ThemeProviderProps = {
1668
1646
  children: ReactNode;
@@ -1705,6 +1683,16 @@ declare const useToast: () => {
1705
1683
  clearAll: () => void;
1706
1684
  };
1707
1685
 
1686
+ declare const useDrawer: () => {
1687
+ clearAll: () => void;
1688
+ open: (child?: string | ReactNode | ReactNode[]) => number;
1689
+ right: (child?: string | ReactNode | ReactNode[]) => number;
1690
+ left: (child?: string | ReactNode | ReactNode[]) => number;
1691
+ top: (child?: string | ReactNode | ReactNode[]) => number;
1692
+ bottom: (child?: string | ReactNode | ReactNode[]) => number;
1693
+ close: (id: number) => void;
1694
+ };
1695
+
1708
1696
  declare const useFx: (fx?: animationProps, ref?: RefObject<HTMLElement>) => {
1709
1697
  style: any;
1710
1698
  };
@@ -1737,4 +1725,4 @@ declare const animationTransition: (transition: ValueOf<typeof TRANSITIONS>, off
1737
1725
  };
1738
1726
  declare const getAnimationTransition: (transition: ValueOf<typeof TRANSITIONS>, to?: boolean, from?: boolean) => dynamic;
1739
1727
 
1740
- export { ALERT, AVATAR, Accordion, type AccordionHandler, type AccordionProps, ActionBar, type ActionBarHandler, type ActionBarItem, type ActionBarProps, Alert, type AlertHandler, type AlertProps, 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, 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 DialogContextType, type DialogController, type DialogHandler, type DialogProps, SheetProvider as DialogProvider, Drawer, type DrawerHandler, type DrawerProps, FILTER, FORMVALIDATION, FORMVALIDATION_STYLE, Fab, type FabProps, type FilterProps, Filters, Form, type FormHandler, type FormInputs, type FormProps, 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, List, type ListItem, type ListItemObject, type ListProps, type MenuItemProps, type NetworkManagerprops, NetworkManager as NetworkStatus, type Option, type OptionItemProps, Overlay, type OverlayProps, PACKAGE_NAME, POSITION, PROGRESS, Pagination, type PaginationCallback, 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, Span, type SpanProps, Spinner, type SpinnerProps, Status, Switch, TRANSITIONS, TRANSITION_CURVES, type Tab, type TabBodyProps, type TabProps, TabView, type TabViewHandler, type TabViewProps, ForwardedTable as Table, type TableController, type TableProps, type TableSortCallback, Text, type TextAreaProps, TextWheel, type TextWheelHandler, type TextWheelProps, TextArea as Textarea, ThemeProvider, type ToastContextType, type ToastController, type ToastData, ToastDefaultTitle, ToastProvider, ToastType, ToolTip, 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, _buildWithStyles, type animationProps, animationTransition, buildClassString, buildWithStyles, cleanProps, css, type cssShortKey, type cssShortKeys, type dynamic, getAnimationCurve, getAnimationTransition, getZuzMap, isKeyCombination, type parallaxEffectProps, setZuzMap, splitAtoms, useBase, useContextMenu, useDialog, useFx, usePosition, useToast };
1728
+ export { ALERT, AVATAR, Accordion, type AccordionHandler, type AccordionProps, ActionBar, type ActionBarHandler, type ActionBarItem, type ActionBarProps, Alert, type AlertHandler, type AlertProps, 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, 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 DialogHandler, type DialogProps, Drawer, type DrawerHandler, type DrawerProps, FILTER, FORMVALIDATION, FORMVALIDATION_STYLE, Fab, type FabProps, type FilterProps, Filters, Form, type FormHandler, type FormInputs, type FormProps, 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, List, type ListItem, type ListItemObject, type ListProps, type MenuItemProps, type NetworkManagerprops, NetworkManager as NetworkStatus, type Option, type OptionItemProps, Overlay, type OverlayProps, PACKAGE_NAME, POSITION, PROGRESS, Pagination, type PaginationCallback, 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, Span, type SpanProps, Spinner, type SpinnerProps, Status, Switch, TRANSITIONS, TRANSITION_CURVES, type Tab, type TabBodyProps, type TabProps, TabView, type TabViewHandler, type TabViewProps, ForwardedTable as Table, type TableController, type TableProps, type TableSortCallback, Text, type TextAreaProps, TextWheel, type TextWheelHandler, type TextWheelProps, TextArea as Textarea, ThemeProvider, ToastDefaultTitle, type ToastProps, Toast as ToastProvider, ToastType, ToolTip, 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, _buildWithStyles, 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, usePosition, useToast };