@cyber-harbour/ui 3.0.0-next-gen.39 → 3.0.0-next-gen.41

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.mts CHANGED
@@ -90,11 +90,11 @@ type Button2OwnProps = {
90
90
  */
91
91
  htmlType?: 'button' | 'submit' | 'reset';
92
92
  };
93
- type PolymorphicRef$1<C extends React__default.ElementType> = React__default.ComponentPropsWithRef<C>['ref'];
93
+ type PolymorphicRef$2<C extends React__default.ElementType> = React__default.ComponentPropsWithRef<C>['ref'];
94
94
  type Button2Props<C extends React__default.ElementType = 'button'> = Button2OwnProps & {
95
95
  /** Render as a different element/component (e.g. react-router `Link`). Defaults to `<button>`. */
96
96
  as?: C;
97
- ref?: PolymorphicRef$1<C>;
97
+ ref?: PolymorphicRef$2<C>;
98
98
  } & Omit<React__default.ComponentPropsWithoutRef<C>, keyof Button2OwnProps | 'as' | 'ref'>;
99
99
  declare function Button2<C extends React__default.ElementType = 'button'>({ as, type, size, active, loading, leftIcon, rightIcon, children, className, disabled, onClick, style, ref, htmlType, ...rest }: Button2Props<C>): react_jsx_runtime.JSX.Element;
100
100
 
@@ -124,11 +124,11 @@ type IconButton2OwnProps = {
124
124
  */
125
125
  htmlType?: 'button' | 'submit' | 'reset';
126
126
  };
127
- type PolymorphicRef<C extends React__default.ElementType> = React__default.ComponentPropsWithRef<C>['ref'];
127
+ type PolymorphicRef$1<C extends React__default.ElementType> = React__default.ComponentPropsWithRef<C>['ref'];
128
128
  type IconButton2Props<C extends React__default.ElementType = 'button'> = IconButton2OwnProps & {
129
129
  /** Render as a different element/component (e.g. react-router `Link`). Defaults to `<button>`. */
130
130
  as?: C;
131
- ref?: PolymorphicRef<C>;
131
+ ref?: PolymorphicRef$1<C>;
132
132
  } & Omit<React__default.ComponentPropsWithoutRef<C>, keyof IconButton2OwnProps | 'as' | 'ref'>;
133
133
  declare function IconButton2<C extends React__default.ElementType = 'button'>({ as, icon, type, size, active, loading, className, disabled, onClick, ref, htmlType, ...rest }: IconButton2Props<C>): react_jsx_runtime.JSX.Element;
134
134
 
@@ -250,6 +250,8 @@ type BaseLinkProps = {
250
250
  startIcon?: React__default.ReactNode;
251
251
  endIcon?: React__default.ReactNode;
252
252
  children?: React__default.ReactNode;
253
+ /** Truncate overflowing children with ellipsis. Caller must constrain the link's width. */
254
+ truncate?: boolean;
253
255
  };
254
256
  type LinkProps = Omit<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, keyof BaseLinkProps> & BaseLinkProps;
255
257
  declare const Link: React__default.ForwardRefExoticComponent<Omit<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, keyof BaseLinkProps> & BaseLinkProps & React__default.RefAttributes<HTMLAnchorElement>>;
@@ -384,8 +386,16 @@ type BaseSourcesButtonProps = {
384
386
  count: number | string;
385
387
  icon?: React__default.ReactNode;
386
388
  };
387
- type SourcesButtonProps = Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, keyof BaseSourcesButtonProps> & BaseSourcesButtonProps;
388
- declare const SourcesButton: React__default.ForwardRefExoticComponent<Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, keyof BaseSourcesButtonProps> & BaseSourcesButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
389
+ type PolymorphicRef<C extends React__default.ElementType> = React__default.ComponentPropsWithRef<C>['ref'];
390
+ type SourcesButtonProps<C extends React__default.ElementType = 'button'> = BaseSourcesButtonProps & {
391
+ /** Render as a different element/component (e.g. react-router `Link`). Defaults to `<button>`. */
392
+ as?: C;
393
+ ref?: PolymorphicRef<C>;
394
+ } & Omit<React__default.ComponentPropsWithoutRef<C>, keyof BaseSourcesButtonProps | 'as' | 'ref'>;
395
+ declare function SourcesButton<C extends React__default.ElementType = 'button'>({ as, count, icon, className, ref, ...rest }: SourcesButtonProps<C>): react_jsx_runtime.JSX.Element;
396
+ declare namespace SourcesButton {
397
+ var displayName: string;
398
+ }
389
399
 
390
400
  interface SpinnerLoaderProps {
391
401
  icon?: React__default.ComponentType<{
@@ -741,6 +751,8 @@ type FileViewerProps = {
741
751
  filename?: string;
742
752
  /** Custom download handler. If omitted, the FileViewer triggers a default <a download> using path/blob URL. */
743
753
  onDownload?: () => void;
754
+ /** Image-only: bbox [x1, y1, x2, y2] in natural pixels to zoom into on initial load. */
755
+ initialBbox?: number[];
744
756
  };
745
757
  declare const FileViewer: (props: FileViewerProps) => react_jsx_runtime.JSX.Element;
746
758
 
@@ -1069,6 +1081,13 @@ type DataGridProps<T> = {
1069
1081
  /** Activate extended row when container width <= threshold. */
1070
1082
  extendedRowBelow?: number;
1071
1083
  renderExtendedRow?: (row: T, hidden: DataGridColumn<T>[]) => React__default.ReactNode;
1084
+ /**
1085
+ * Optional inter-row slot. Called for every adjacent pair `(rowAbove, rowBelow)`.
1086
+ * Returning a non-null `ReactNode` injects a full-width row spanning all
1087
+ * columns between the two rows. Use sparingly — separators participate in
1088
+ * scroll, not in sticky headers, and break zebra striping continuity.
1089
+ */
1090
+ renderRowSeparator?: (rowAbove: T, rowBelow: T) => React__default.ReactNode;
1072
1091
  onRowClick?: (row: T, index: number) => void;
1073
1092
  emptyMessage?: React__default.ReactNode;
1074
1093
  /** When true, the body area stretches to fill parent height and empty rows (zebra pattern) fill remaining space. */
@@ -1081,7 +1100,7 @@ type DataGridProps<T> = {
1081
1100
  style?: React__default.CSSProperties;
1082
1101
  };
1083
1102
 
1084
- declare function DataGrid<T>({ columns, data, rowKey, zebra, sort, onSortChange, onColumnResizeEnd, extendedRowBelow, renderExtendedRow, onRowClick, emptyMessage, fillRows, fillRowHeight, isFullscreen, className, style, }: DataGridProps<T>): react_jsx_runtime.JSX.Element;
1103
+ declare function DataGrid<T>({ columns, data, rowKey, zebra, sort, onSortChange, onColumnResizeEnd, extendedRowBelow, renderExtendedRow, renderRowSeparator, onRowClick, emptyMessage, fillRows, fillRowHeight, isFullscreen, className, style, }: DataGridProps<T>): react_jsx_runtime.JSX.Element;
1085
1104
 
1086
1105
  interface PaginationProps {
1087
1106
  total_items: number;
@@ -1595,6 +1614,14 @@ declare const Modal2: React__default.ForwardRefExoticComponent<Omit<React__defau
1595
1614
  } & React__default.RefAttributes<HTMLButtonElement>>;
1596
1615
  };
1597
1616
 
1617
+ type Notification2Type = 'info' | 'success' | 'warning' | 'error';
1618
+ type Notification2Props = {
1619
+ type?: Notification2Type;
1620
+ } & HTMLAttributes<HTMLDivElement>;
1621
+ declare const Notification2: React__default.ForwardRefExoticComponent<{
1622
+ type?: Notification2Type;
1623
+ } & React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
1624
+
1598
1625
  type InputVariant = 'outlined' | 'empty';
1599
1626
 
1600
1627
  type FileFieldProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'value' | 'onChange' | 'size'> & {
@@ -1647,4 +1674,4 @@ interface ThemeProviderProps {
1647
1674
  declare function ThemeProvider({ children, defaultTheme, storageKey, root, }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
1648
1675
  declare function useTheme(): ThemeContextValue;
1649
1676
 
1650
- export { Alert, type BaseInputProps, Box, Button, Button2, type Button2Props, type ButtonProps, type ButtonSize, type ButtonType, Checkbox, Checkbox2, type Checkbox2Props, type ColorToastVariant, type ColumnTable, Container, ContentLoader, type ContentLoaderProps, ContextMenu, ContextMenuChevron, ContextMenuDelimiter, CopyButton, type CopyButtonProps, Counter, type CounterProps, CounterTag, type CounterTagLevel, type CounterTagProps, DataGrid, type DataGridColumn, type DataGridProps, type DataGridSortDirection, type DataGridSortState, DatePicker, DatePickerCalendar, Drawer, Drawer2, Drawer2Body, type Drawer2BodyProps, Drawer2Close, type Drawer2CloseProps, Drawer2Footer, type Drawer2FooterProps, Drawer2Header, type Drawer2HeaderProps, type Drawer2Props, DrawerBody, DrawerHeader, DropdownMenu2, DropdownMenu2Item, type DropdownMenu2ItemProps, type DropdownMenu2ItemSize, DropdownMenu2List, type DropdownMenu2ListProps, type DropdownMenu2Props, EmptyData, type EmptyDataProps, FileField, type FileFieldProps, FileViewer, FullscreenCard, GlobalDropZone, Graph2D, type Graph2DProps, type Graph2DRef, type GraphData, type GraphState, Header, HeaderDelimeter, HeaderSection, IconButton2, type IconButton2Props, type IconButtonSize, type IconButtonType, Input, type InputElementProps, type InputProps, Label, Line, LinerProgress, Link, type LinkObject, type LinkProps, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, Modal, Modal2, Modal2Body, type Modal2BodyProps, Modal2Close, type Modal2CloseProps, Modal2Footer, type Modal2FooterProps, Modal2Header, type Modal2HeaderProps, type Modal2Props, ModalBody, ModalFooter, ModalHeader, MultiSelect, MultiSelect2, type MultiSelect2AllOption, type MultiSelect2Props, type MultiSelectProps, type NodeButton, type NodeObject, Overlay, Overlay2, type Overlay2Props, type OverlayProps, PageContent, PageLayout, Pagination, type PaginationProps, PhoneNumber2, type PhoneNumber2Meta, type PhoneNumber2Props, type PinSide, ProgressLoader, type RenderCellProps, type RenderHeaderCellProps, SearchInput2, type SearchInput2Props, Select, Select2, type Select2Group, type Select2Option, type Select2Props, type Select2RenderOption, type Select2RenderOptionContext, type Select2Value, SideNavigationButton, type SideNavigationButtonProps, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SourcesButton, type SourcesButtonProps, SpinnerLoader, type SpinnerLoaderProps, SplitterLayout, SubNav, type SupportedFileExtension, Switch, Table, Table2, type Table2Column, type Table2Props, type Table2SortDirection, type Table2SortState, Tag, Tag2, type Tag2Color, type Tag2Props, type TextAreaElementProps, TextInput2, type TextInput2Props, type Theme, ThemeProvider, type Toast, type ToastVariant, ToastsList, Tooltip, Tooltip2, type Tooltip2Props, type TooltipProps, Typewriter, VerticalNavigation, type VerticalNavigationItem, type VerticalNavigationProps, buttonVariants, useCopyToClipboard, useTheme };
1677
+ export { Alert, type BaseInputProps, Box, Button, Button2, type Button2Props, type ButtonProps, type ButtonSize, type ButtonType, Checkbox, Checkbox2, type Checkbox2Props, type ColorToastVariant, type ColumnTable, Container, ContentLoader, type ContentLoaderProps, ContextMenu, ContextMenuChevron, ContextMenuDelimiter, CopyButton, type CopyButtonProps, Counter, type CounterProps, CounterTag, type CounterTagLevel, type CounterTagProps, DataGrid, type DataGridColumn, type DataGridProps, type DataGridSortDirection, type DataGridSortState, DatePicker, DatePickerCalendar, Drawer, Drawer2, Drawer2Body, type Drawer2BodyProps, Drawer2Close, type Drawer2CloseProps, Drawer2Footer, type Drawer2FooterProps, Drawer2Header, type Drawer2HeaderProps, type Drawer2Props, DrawerBody, DrawerHeader, DropdownMenu2, DropdownMenu2Item, type DropdownMenu2ItemProps, type DropdownMenu2ItemSize, DropdownMenu2List, type DropdownMenu2ListProps, type DropdownMenu2Props, EmptyData, type EmptyDataProps, FileField, type FileFieldProps, FileViewer, FullscreenCard, GlobalDropZone, Graph2D, type Graph2DProps, type Graph2DRef, type GraphData, type GraphState, Header, HeaderDelimeter, HeaderSection, IconButton2, type IconButton2Props, type IconButtonSize, type IconButtonType, Input, type InputElementProps, type InputProps, Label, Line, LinerProgress, Link, type LinkObject, type LinkProps, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, Modal, Modal2, Modal2Body, type Modal2BodyProps, Modal2Close, type Modal2CloseProps, Modal2Footer, type Modal2FooterProps, Modal2Header, type Modal2HeaderProps, type Modal2Props, ModalBody, ModalFooter, ModalHeader, MultiSelect, MultiSelect2, type MultiSelect2AllOption, type MultiSelect2Props, type MultiSelectProps, type NodeButton, type NodeObject, Notification2, type Notification2Props, type Notification2Type, Overlay, Overlay2, type Overlay2Props, type OverlayProps, PageContent, PageLayout, Pagination, type PaginationProps, PhoneNumber2, type PhoneNumber2Meta, type PhoneNumber2Props, type PinSide, ProgressLoader, type RenderCellProps, type RenderHeaderCellProps, SearchInput2, type SearchInput2Props, Select, Select2, type Select2Group, type Select2Option, type Select2Props, type Select2RenderOption, type Select2RenderOptionContext, type Select2Value, SideNavigationButton, type SideNavigationButtonProps, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SourcesButton, type SourcesButtonProps, SpinnerLoader, type SpinnerLoaderProps, SplitterLayout, SubNav, type SupportedFileExtension, Switch, Table, Table2, type Table2Column, type Table2Props, type Table2SortDirection, type Table2SortState, Tag, Tag2, type Tag2Color, type Tag2Props, type TextAreaElementProps, TextInput2, type TextInput2Props, type Theme, ThemeProvider, type Toast, type ToastVariant, ToastsList, Tooltip, Tooltip2, type Tooltip2Props, type TooltipProps, Typewriter, VerticalNavigation, type VerticalNavigationItem, type VerticalNavigationProps, buttonVariants, useCopyToClipboard, useTheme };
package/dist/index.d.ts CHANGED
@@ -90,11 +90,11 @@ type Button2OwnProps = {
90
90
  */
91
91
  htmlType?: 'button' | 'submit' | 'reset';
92
92
  };
93
- type PolymorphicRef$1<C extends React__default.ElementType> = React__default.ComponentPropsWithRef<C>['ref'];
93
+ type PolymorphicRef$2<C extends React__default.ElementType> = React__default.ComponentPropsWithRef<C>['ref'];
94
94
  type Button2Props<C extends React__default.ElementType = 'button'> = Button2OwnProps & {
95
95
  /** Render as a different element/component (e.g. react-router `Link`). Defaults to `<button>`. */
96
96
  as?: C;
97
- ref?: PolymorphicRef$1<C>;
97
+ ref?: PolymorphicRef$2<C>;
98
98
  } & Omit<React__default.ComponentPropsWithoutRef<C>, keyof Button2OwnProps | 'as' | 'ref'>;
99
99
  declare function Button2<C extends React__default.ElementType = 'button'>({ as, type, size, active, loading, leftIcon, rightIcon, children, className, disabled, onClick, style, ref, htmlType, ...rest }: Button2Props<C>): react_jsx_runtime.JSX.Element;
100
100
 
@@ -124,11 +124,11 @@ type IconButton2OwnProps = {
124
124
  */
125
125
  htmlType?: 'button' | 'submit' | 'reset';
126
126
  };
127
- type PolymorphicRef<C extends React__default.ElementType> = React__default.ComponentPropsWithRef<C>['ref'];
127
+ type PolymorphicRef$1<C extends React__default.ElementType> = React__default.ComponentPropsWithRef<C>['ref'];
128
128
  type IconButton2Props<C extends React__default.ElementType = 'button'> = IconButton2OwnProps & {
129
129
  /** Render as a different element/component (e.g. react-router `Link`). Defaults to `<button>`. */
130
130
  as?: C;
131
- ref?: PolymorphicRef<C>;
131
+ ref?: PolymorphicRef$1<C>;
132
132
  } & Omit<React__default.ComponentPropsWithoutRef<C>, keyof IconButton2OwnProps | 'as' | 'ref'>;
133
133
  declare function IconButton2<C extends React__default.ElementType = 'button'>({ as, icon, type, size, active, loading, className, disabled, onClick, ref, htmlType, ...rest }: IconButton2Props<C>): react_jsx_runtime.JSX.Element;
134
134
 
@@ -250,6 +250,8 @@ type BaseLinkProps = {
250
250
  startIcon?: React__default.ReactNode;
251
251
  endIcon?: React__default.ReactNode;
252
252
  children?: React__default.ReactNode;
253
+ /** Truncate overflowing children with ellipsis. Caller must constrain the link's width. */
254
+ truncate?: boolean;
253
255
  };
254
256
  type LinkProps = Omit<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, keyof BaseLinkProps> & BaseLinkProps;
255
257
  declare const Link: React__default.ForwardRefExoticComponent<Omit<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, keyof BaseLinkProps> & BaseLinkProps & React__default.RefAttributes<HTMLAnchorElement>>;
@@ -384,8 +386,16 @@ type BaseSourcesButtonProps = {
384
386
  count: number | string;
385
387
  icon?: React__default.ReactNode;
386
388
  };
387
- type SourcesButtonProps = Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, keyof BaseSourcesButtonProps> & BaseSourcesButtonProps;
388
- declare const SourcesButton: React__default.ForwardRefExoticComponent<Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, keyof BaseSourcesButtonProps> & BaseSourcesButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
389
+ type PolymorphicRef<C extends React__default.ElementType> = React__default.ComponentPropsWithRef<C>['ref'];
390
+ type SourcesButtonProps<C extends React__default.ElementType = 'button'> = BaseSourcesButtonProps & {
391
+ /** Render as a different element/component (e.g. react-router `Link`). Defaults to `<button>`. */
392
+ as?: C;
393
+ ref?: PolymorphicRef<C>;
394
+ } & Omit<React__default.ComponentPropsWithoutRef<C>, keyof BaseSourcesButtonProps | 'as' | 'ref'>;
395
+ declare function SourcesButton<C extends React__default.ElementType = 'button'>({ as, count, icon, className, ref, ...rest }: SourcesButtonProps<C>): react_jsx_runtime.JSX.Element;
396
+ declare namespace SourcesButton {
397
+ var displayName: string;
398
+ }
389
399
 
390
400
  interface SpinnerLoaderProps {
391
401
  icon?: React__default.ComponentType<{
@@ -741,6 +751,8 @@ type FileViewerProps = {
741
751
  filename?: string;
742
752
  /** Custom download handler. If omitted, the FileViewer triggers a default <a download> using path/blob URL. */
743
753
  onDownload?: () => void;
754
+ /** Image-only: bbox [x1, y1, x2, y2] in natural pixels to zoom into on initial load. */
755
+ initialBbox?: number[];
744
756
  };
745
757
  declare const FileViewer: (props: FileViewerProps) => react_jsx_runtime.JSX.Element;
746
758
 
@@ -1069,6 +1081,13 @@ type DataGridProps<T> = {
1069
1081
  /** Activate extended row when container width <= threshold. */
1070
1082
  extendedRowBelow?: number;
1071
1083
  renderExtendedRow?: (row: T, hidden: DataGridColumn<T>[]) => React__default.ReactNode;
1084
+ /**
1085
+ * Optional inter-row slot. Called for every adjacent pair `(rowAbove, rowBelow)`.
1086
+ * Returning a non-null `ReactNode` injects a full-width row spanning all
1087
+ * columns between the two rows. Use sparingly — separators participate in
1088
+ * scroll, not in sticky headers, and break zebra striping continuity.
1089
+ */
1090
+ renderRowSeparator?: (rowAbove: T, rowBelow: T) => React__default.ReactNode;
1072
1091
  onRowClick?: (row: T, index: number) => void;
1073
1092
  emptyMessage?: React__default.ReactNode;
1074
1093
  /** When true, the body area stretches to fill parent height and empty rows (zebra pattern) fill remaining space. */
@@ -1081,7 +1100,7 @@ type DataGridProps<T> = {
1081
1100
  style?: React__default.CSSProperties;
1082
1101
  };
1083
1102
 
1084
- declare function DataGrid<T>({ columns, data, rowKey, zebra, sort, onSortChange, onColumnResizeEnd, extendedRowBelow, renderExtendedRow, onRowClick, emptyMessage, fillRows, fillRowHeight, isFullscreen, className, style, }: DataGridProps<T>): react_jsx_runtime.JSX.Element;
1103
+ declare function DataGrid<T>({ columns, data, rowKey, zebra, sort, onSortChange, onColumnResizeEnd, extendedRowBelow, renderExtendedRow, renderRowSeparator, onRowClick, emptyMessage, fillRows, fillRowHeight, isFullscreen, className, style, }: DataGridProps<T>): react_jsx_runtime.JSX.Element;
1085
1104
 
1086
1105
  interface PaginationProps {
1087
1106
  total_items: number;
@@ -1595,6 +1614,14 @@ declare const Modal2: React__default.ForwardRefExoticComponent<Omit<React__defau
1595
1614
  } & React__default.RefAttributes<HTMLButtonElement>>;
1596
1615
  };
1597
1616
 
1617
+ type Notification2Type = 'info' | 'success' | 'warning' | 'error';
1618
+ type Notification2Props = {
1619
+ type?: Notification2Type;
1620
+ } & HTMLAttributes<HTMLDivElement>;
1621
+ declare const Notification2: React__default.ForwardRefExoticComponent<{
1622
+ type?: Notification2Type;
1623
+ } & React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
1624
+
1598
1625
  type InputVariant = 'outlined' | 'empty';
1599
1626
 
1600
1627
  type FileFieldProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'value' | 'onChange' | 'size'> & {
@@ -1647,4 +1674,4 @@ interface ThemeProviderProps {
1647
1674
  declare function ThemeProvider({ children, defaultTheme, storageKey, root, }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
1648
1675
  declare function useTheme(): ThemeContextValue;
1649
1676
 
1650
- export { Alert, type BaseInputProps, Box, Button, Button2, type Button2Props, type ButtonProps, type ButtonSize, type ButtonType, Checkbox, Checkbox2, type Checkbox2Props, type ColorToastVariant, type ColumnTable, Container, ContentLoader, type ContentLoaderProps, ContextMenu, ContextMenuChevron, ContextMenuDelimiter, CopyButton, type CopyButtonProps, Counter, type CounterProps, CounterTag, type CounterTagLevel, type CounterTagProps, DataGrid, type DataGridColumn, type DataGridProps, type DataGridSortDirection, type DataGridSortState, DatePicker, DatePickerCalendar, Drawer, Drawer2, Drawer2Body, type Drawer2BodyProps, Drawer2Close, type Drawer2CloseProps, Drawer2Footer, type Drawer2FooterProps, Drawer2Header, type Drawer2HeaderProps, type Drawer2Props, DrawerBody, DrawerHeader, DropdownMenu2, DropdownMenu2Item, type DropdownMenu2ItemProps, type DropdownMenu2ItemSize, DropdownMenu2List, type DropdownMenu2ListProps, type DropdownMenu2Props, EmptyData, type EmptyDataProps, FileField, type FileFieldProps, FileViewer, FullscreenCard, GlobalDropZone, Graph2D, type Graph2DProps, type Graph2DRef, type GraphData, type GraphState, Header, HeaderDelimeter, HeaderSection, IconButton2, type IconButton2Props, type IconButtonSize, type IconButtonType, Input, type InputElementProps, type InputProps, Label, Line, LinerProgress, Link, type LinkObject, type LinkProps, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, Modal, Modal2, Modal2Body, type Modal2BodyProps, Modal2Close, type Modal2CloseProps, Modal2Footer, type Modal2FooterProps, Modal2Header, type Modal2HeaderProps, type Modal2Props, ModalBody, ModalFooter, ModalHeader, MultiSelect, MultiSelect2, type MultiSelect2AllOption, type MultiSelect2Props, type MultiSelectProps, type NodeButton, type NodeObject, Overlay, Overlay2, type Overlay2Props, type OverlayProps, PageContent, PageLayout, Pagination, type PaginationProps, PhoneNumber2, type PhoneNumber2Meta, type PhoneNumber2Props, type PinSide, ProgressLoader, type RenderCellProps, type RenderHeaderCellProps, SearchInput2, type SearchInput2Props, Select, Select2, type Select2Group, type Select2Option, type Select2Props, type Select2RenderOption, type Select2RenderOptionContext, type Select2Value, SideNavigationButton, type SideNavigationButtonProps, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SourcesButton, type SourcesButtonProps, SpinnerLoader, type SpinnerLoaderProps, SplitterLayout, SubNav, type SupportedFileExtension, Switch, Table, Table2, type Table2Column, type Table2Props, type Table2SortDirection, type Table2SortState, Tag, Tag2, type Tag2Color, type Tag2Props, type TextAreaElementProps, TextInput2, type TextInput2Props, type Theme, ThemeProvider, type Toast, type ToastVariant, ToastsList, Tooltip, Tooltip2, type Tooltip2Props, type TooltipProps, Typewriter, VerticalNavigation, type VerticalNavigationItem, type VerticalNavigationProps, buttonVariants, useCopyToClipboard, useTheme };
1677
+ export { Alert, type BaseInputProps, Box, Button, Button2, type Button2Props, type ButtonProps, type ButtonSize, type ButtonType, Checkbox, Checkbox2, type Checkbox2Props, type ColorToastVariant, type ColumnTable, Container, ContentLoader, type ContentLoaderProps, ContextMenu, ContextMenuChevron, ContextMenuDelimiter, CopyButton, type CopyButtonProps, Counter, type CounterProps, CounterTag, type CounterTagLevel, type CounterTagProps, DataGrid, type DataGridColumn, type DataGridProps, type DataGridSortDirection, type DataGridSortState, DatePicker, DatePickerCalendar, Drawer, Drawer2, Drawer2Body, type Drawer2BodyProps, Drawer2Close, type Drawer2CloseProps, Drawer2Footer, type Drawer2FooterProps, Drawer2Header, type Drawer2HeaderProps, type Drawer2Props, DrawerBody, DrawerHeader, DropdownMenu2, DropdownMenu2Item, type DropdownMenu2ItemProps, type DropdownMenu2ItemSize, DropdownMenu2List, type DropdownMenu2ListProps, type DropdownMenu2Props, EmptyData, type EmptyDataProps, FileField, type FileFieldProps, FileViewer, FullscreenCard, GlobalDropZone, Graph2D, type Graph2DProps, type Graph2DRef, type GraphData, type GraphState, Header, HeaderDelimeter, HeaderSection, IconButton2, type IconButton2Props, type IconButtonSize, type IconButtonType, Input, type InputElementProps, type InputProps, Label, Line, LinerProgress, Link, type LinkObject, type LinkProps, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, Modal, Modal2, Modal2Body, type Modal2BodyProps, Modal2Close, type Modal2CloseProps, Modal2Footer, type Modal2FooterProps, Modal2Header, type Modal2HeaderProps, type Modal2Props, ModalBody, ModalFooter, ModalHeader, MultiSelect, MultiSelect2, type MultiSelect2AllOption, type MultiSelect2Props, type MultiSelectProps, type NodeButton, type NodeObject, Notification2, type Notification2Props, type Notification2Type, Overlay, Overlay2, type Overlay2Props, type OverlayProps, PageContent, PageLayout, Pagination, type PaginationProps, PhoneNumber2, type PhoneNumber2Meta, type PhoneNumber2Props, type PinSide, ProgressLoader, type RenderCellProps, type RenderHeaderCellProps, SearchInput2, type SearchInput2Props, Select, Select2, type Select2Group, type Select2Option, type Select2Props, type Select2RenderOption, type Select2RenderOptionContext, type Select2Value, SideNavigationButton, type SideNavigationButtonProps, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SourcesButton, type SourcesButtonProps, SpinnerLoader, type SpinnerLoaderProps, SplitterLayout, SubNav, type SupportedFileExtension, Switch, Table, Table2, type Table2Column, type Table2Props, type Table2SortDirection, type Table2SortState, Tag, Tag2, type Tag2Color, type Tag2Props, type TextAreaElementProps, TextInput2, type TextInput2Props, type Theme, ThemeProvider, type Toast, type ToastVariant, ToastsList, Tooltip, Tooltip2, type Tooltip2Props, type TooltipProps, Typewriter, VerticalNavigation, type VerticalNavigationItem, type VerticalNavigationProps, buttonVariants, useCopyToClipboard, useTheme };