@cyber-harbour/ui 2.0.0 → 2.0.1

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
@@ -3,7 +3,7 @@ export { ServerStyleSheet, StyleSheetManager } from 'styled-components';
3
3
  import * as styled_components_dist_types from 'styled-components/dist/types';
4
4
  import { DefaultTheme as DefaultTheme$1 } from 'styled-components/dist/types';
5
5
  import * as react from 'react';
6
- import react__default, { SVGProps, CSSProperties as CSSProperties$1, ElementType, InputHTMLAttributes, TextareaHTMLAttributes } from 'react';
6
+ import react__default, { SVGProps, CSSProperties as CSSProperties$1, ElementType, InputHTMLAttributes, TextareaHTMLAttributes, ReactNode } from 'react';
7
7
  import * as react_jsx_runtime from 'react/jsx-runtime';
8
8
  import { PopoverPosition, PopoverAlign } from 'react-tiny-popover';
9
9
  import { IContentLoaderProps } from 'react-content-loader';
@@ -476,6 +476,7 @@ type BaseButtonProps = {
476
476
  iconVariant?: 'filled' | 'empty';
477
477
  minWidth?: number;
478
478
  whiteSpace?: CSSProperties['whiteSpace'];
479
+ component?: react__default.ElementType;
479
480
  };
480
481
  type ButtonProps = (Omit<react__default.AnchorHTMLAttributes<HTMLAnchorElement>, 'children' | 'media'> | Omit<react__default.ButtonHTMLAttributes<HTMLButtonElement>, 'children' | 'media'>) & BaseButtonProps;
481
482
  declare const Button: react__default.ForwardRefExoticComponent<FabricComponent<ButtonProps> & react__default.RefAttributes<unknown>>;
@@ -811,6 +812,11 @@ interface RotateRightIconProps extends SVGProps<SVGSVGElement> {
811
812
  }
812
813
  declare const RotateRightIcon: ({ fill, ...props }: RotateRightIconProps) => react_jsx_runtime.JSX.Element;
813
814
 
815
+ interface UploadImageIconProps extends SVGProps<SVGSVGElement> {
816
+ fill?: string;
817
+ }
818
+ declare const UploadImageIcon: ({ fill, ...props }: UploadImageIconProps) => react_jsx_runtime.JSX.Element;
819
+
814
820
  interface SidebarProps {
815
821
  defaultCollapsed?: boolean;
816
822
  children: any;
@@ -850,8 +856,9 @@ declare const SidebarContext: react.Context<SidebarContext>;
850
856
 
851
857
  interface SidebarItemBase {
852
858
  active?: boolean;
853
- icon?: React.ComponentType<SVGProps<SVGSVGElement>>;
859
+ icon?: React.ReactNode;
854
860
  label?: string;
861
+ component?: React.ElementType;
855
862
  }
856
863
  interface SidebarItemAnchor {
857
864
  href: string;
@@ -863,7 +870,7 @@ interface SidebarItemButton {
863
870
  onClick?: (e: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
864
871
  }
865
872
  type SidebarItemProps = SidebarItemBase & (SidebarItemAnchor | SidebarItemButton);
866
- declare const SidebarItem: ({ active, icon: Icon, label, ...props }: SidebarItemProps) => react_jsx_runtime.JSX.Element;
873
+ declare const SidebarItem: ({ active, icon, label, component, ...props }: SidebarItemProps) => react_jsx_runtime.JSX.Element;
867
874
 
868
875
  declare const SidebarDelimeter: () => react_jsx_runtime.JSX.Element;
869
876
 
@@ -1145,6 +1152,31 @@ type TextAreaElementProps = BaseInputProps & TextareaHTMLAttributes<HTMLTextArea
1145
1152
  type InputProps = InputElementProps | TextAreaElementProps;
1146
1153
  declare const Input: any;
1147
1154
 
1155
+ type FileFieldProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'value' | 'onChange' | 'size'> & {
1156
+ error?: boolean;
1157
+ variant?: InputVariant;
1158
+ multiple?: boolean;
1159
+ accept?: string;
1160
+ uploadButtonText?: string;
1161
+ dragDropPlaceholder?: string;
1162
+ value?: File[];
1163
+ onChange?: (files: File[]) => void;
1164
+ onError?: (error: string) => void;
1165
+ dragDropClassName?: string;
1166
+ };
1167
+ declare const FileField: react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value" | "size" | "type" | "onChange"> & {
1168
+ error?: boolean;
1169
+ variant?: InputVariant;
1170
+ multiple?: boolean;
1171
+ accept?: string;
1172
+ uploadButtonText?: string;
1173
+ dragDropPlaceholder?: string;
1174
+ value?: File[];
1175
+ onChange?: (files: File[]) => void;
1176
+ onError?: (error: string) => void;
1177
+ dragDropClassName?: string;
1178
+ } & react.RefAttributes<HTMLInputElement>>;
1179
+
1148
1180
  type FlexDirection = 'row' | 'column' | 'row-reverse' | 'column-reverse';
1149
1181
  type FlexWrap = 'nowrap' | 'wrap' | 'wrap-reverse';
1150
1182
  type FlexJustify = 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly';
@@ -1620,6 +1652,18 @@ interface TailwindExampleProps {
1620
1652
  }
1621
1653
  declare const TailwindExample: react__default.FC<TailwindExampleProps>;
1622
1654
 
1655
+ type ChatFieldProps = Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'type'> & {
1656
+ error?: boolean;
1657
+ errorText?: string;
1658
+ button?: ReactNode;
1659
+ images?: File[];
1660
+ onChangeImages?: (files: File[]) => void;
1661
+ onError?: (error: string) => void;
1662
+ multiple?: boolean;
1663
+ fieldClassName?: string;
1664
+ };
1665
+ declare const ChatField: ({ multiple, value, onChangeImages, images, errorText, error, onError, button, fieldClassName, ...props }: ChatFieldProps) => react_jsx_runtime.JSX.Element;
1666
+
1623
1667
  interface PageLayoutProps {
1624
1668
  header?: any;
1625
1669
  sidebar?: any;
@@ -1814,4 +1858,4 @@ declare const FullscreenCard: react.ForwardRefExoticComponent<FullscreenCardProp
1814
1858
  } | undefined;
1815
1859
  } & react.RefAttributes<unknown>>;
1816
1860
 
1817
- export { type Action, Alert, AlertIcon, AndroidIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, BreakpointProvider, BugReportIcon, BusIcon, Button, type ButtonColor, type ButtonElementStyle, type ButtonProps, type ButtonSize, type ButtonSizeStyle, type ButtonState, type ButtonVariant, CalendarIcon, CarIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseCircleIcon, ClosedLockIcon, type ColorVariant, type ColumnTable, Container, ContentLoader, type ContentLoaderProps, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, Drawer, DrawerBody, DrawerHeader, EditUserIcon, EmptyData, type EmptyDataProps, EnableVisibleIcon, EnterArrowLeftIcon, type FabricComponent, FileIcon, FiltersIcon, FlashIcon, FlexContainer, FlexItem, FolderAlertIcon, FolderInfoIcon, FullscreenCard, Graph2D, type Graph2DProps, type Graph2DRef, type GraphData, type GraphState, Header, HeaderDelimeter, HeaderSection, HomepageIcon, InfoCircleFilledIcon, InfoCircleIcon, Input, type InputElementProps, type InputElementStyle, type InputProps, type InputSize, type InputSizeStyle, type InputState, type InputVariant, IosIcon, Label, type LabelSize, type LabelSizeStyle, Line, LinerProgress, type LinkObject, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MaximizeIcon, MicrosoftIcon, Modal, ModalBody, ModalFooter, ModalHeader, MoonIcon, type NestedColorPaths, type NodeButton, type NodeObject, OpenLockIcon, OrganizationIcon, Overlay, type OverlayProps, PageLayout, Pagination, type PaginationProps, PassportIcon, PasswordFinderIcon, PencilIcon, PhonebookIcon, PlaneIcon, PlusIcon, PointIcon, PrintIcon, Profiler2Icon, ProfilerIcon, RelationIcon, RelationPointsIcon, type RenderCellProps, type RenderHeaderCellProps, RotateLeftIcon, RotateRightIcon, RowActionsMenu, SandBoxIcon, SearchIcon, Select, ShipIcon, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, type StyledFabricComponent, SunIcon, Switch, type SwitchState, Table, Tag, type TagColor, type TagElementStyle, type TagVariant, TailwindExample, type TailwindExampleProps, type TextAreaElementProps, type Theme, type ThemeMode, ThemeProvider, Tooltip, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UserInCircleIcon, UsersIcon, VectorIcon, WayIcon, convertPaletteToRem, createComponent, createStyledComponent, darkTheme, darkThemePx, destructSpaceProps, generatePropertySpaceStyle, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getResponsiveProps, getTypographyStyles, hexToRgba, lightTheme, lightThemePx, propToRem, pxToRem, remToPx, resolveThemeColor, useBreakpoint, useContextMenuControl, useTheme };
1861
+ export { type Action, Alert, AlertIcon, AndroidIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, BreakpointProvider, BugReportIcon, BusIcon, Button, type ButtonColor, type ButtonElementStyle, type ButtonProps, type ButtonSize, type ButtonSizeStyle, type ButtonState, type ButtonVariant, CalendarIcon, CarIcon, ChatField, type ChatFieldProps, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseCircleIcon, ClosedLockIcon, type ColorVariant, type ColumnTable, Container, ContentLoader, type ContentLoaderProps, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, Drawer, DrawerBody, DrawerHeader, EditUserIcon, EmptyData, type EmptyDataProps, EnableVisibleIcon, EnterArrowLeftIcon, type FabricComponent, FileField, type FileFieldProps, FileIcon, FiltersIcon, FlashIcon, FlexContainer, FlexItem, FolderAlertIcon, FolderInfoIcon, FullscreenCard, Graph2D, type Graph2DProps, type Graph2DRef, type GraphData, type GraphState, Header, HeaderDelimeter, HeaderSection, HomepageIcon, InfoCircleFilledIcon, InfoCircleIcon, Input, type InputElementProps, type InputElementStyle, type InputProps, type InputSize, type InputSizeStyle, type InputState, type InputVariant, IosIcon, Label, type LabelSize, type LabelSizeStyle, Line, LinerProgress, type LinkObject, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MaximizeIcon, MicrosoftIcon, Modal, ModalBody, ModalFooter, ModalHeader, MoonIcon, type NestedColorPaths, type NodeButton, type NodeObject, OpenLockIcon, OrganizationIcon, Overlay, type OverlayProps, PageLayout, Pagination, type PaginationProps, PassportIcon, PasswordFinderIcon, PencilIcon, PhonebookIcon, PlaneIcon, PlusIcon, PointIcon, PrintIcon, Profiler2Icon, ProfilerIcon, RelationIcon, RelationPointsIcon, type RenderCellProps, type RenderHeaderCellProps, RotateLeftIcon, RotateRightIcon, RowActionsMenu, SandBoxIcon, SearchIcon, Select, ShipIcon, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, type StyledFabricComponent, SunIcon, Switch, type SwitchState, Table, Tag, type TagColor, type TagElementStyle, type TagVariant, TailwindExample, type TailwindExampleProps, type TextAreaElementProps, type Theme, type ThemeMode, ThemeProvider, Tooltip, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UploadImageIcon, UserInCircleIcon, UsersIcon, VectorIcon, WayIcon, convertPaletteToRem, createComponent, createStyledComponent, darkTheme, darkThemePx, destructSpaceProps, generatePropertySpaceStyle, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getResponsiveProps, getTypographyStyles, hexToRgba, lightTheme, lightThemePx, propToRem, pxToRem, remToPx, resolveThemeColor, useBreakpoint, useContextMenuControl, useTheme };
package/dist/index.d.ts CHANGED
@@ -3,7 +3,7 @@ export { ServerStyleSheet, StyleSheetManager } from 'styled-components';
3
3
  import * as styled_components_dist_types from 'styled-components/dist/types';
4
4
  import { DefaultTheme as DefaultTheme$1 } from 'styled-components/dist/types';
5
5
  import * as react from 'react';
6
- import react__default, { SVGProps, CSSProperties as CSSProperties$1, ElementType, InputHTMLAttributes, TextareaHTMLAttributes } from 'react';
6
+ import react__default, { SVGProps, CSSProperties as CSSProperties$1, ElementType, InputHTMLAttributes, TextareaHTMLAttributes, ReactNode } from 'react';
7
7
  import * as react_jsx_runtime from 'react/jsx-runtime';
8
8
  import { PopoverPosition, PopoverAlign } from 'react-tiny-popover';
9
9
  import { IContentLoaderProps } from 'react-content-loader';
@@ -476,6 +476,7 @@ type BaseButtonProps = {
476
476
  iconVariant?: 'filled' | 'empty';
477
477
  minWidth?: number;
478
478
  whiteSpace?: CSSProperties['whiteSpace'];
479
+ component?: react__default.ElementType;
479
480
  };
480
481
  type ButtonProps = (Omit<react__default.AnchorHTMLAttributes<HTMLAnchorElement>, 'children' | 'media'> | Omit<react__default.ButtonHTMLAttributes<HTMLButtonElement>, 'children' | 'media'>) & BaseButtonProps;
481
482
  declare const Button: react__default.ForwardRefExoticComponent<FabricComponent<ButtonProps> & react__default.RefAttributes<unknown>>;
@@ -811,6 +812,11 @@ interface RotateRightIconProps extends SVGProps<SVGSVGElement> {
811
812
  }
812
813
  declare const RotateRightIcon: ({ fill, ...props }: RotateRightIconProps) => react_jsx_runtime.JSX.Element;
813
814
 
815
+ interface UploadImageIconProps extends SVGProps<SVGSVGElement> {
816
+ fill?: string;
817
+ }
818
+ declare const UploadImageIcon: ({ fill, ...props }: UploadImageIconProps) => react_jsx_runtime.JSX.Element;
819
+
814
820
  interface SidebarProps {
815
821
  defaultCollapsed?: boolean;
816
822
  children: any;
@@ -850,8 +856,9 @@ declare const SidebarContext: react.Context<SidebarContext>;
850
856
 
851
857
  interface SidebarItemBase {
852
858
  active?: boolean;
853
- icon?: React.ComponentType<SVGProps<SVGSVGElement>>;
859
+ icon?: React.ReactNode;
854
860
  label?: string;
861
+ component?: React.ElementType;
855
862
  }
856
863
  interface SidebarItemAnchor {
857
864
  href: string;
@@ -863,7 +870,7 @@ interface SidebarItemButton {
863
870
  onClick?: (e: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
864
871
  }
865
872
  type SidebarItemProps = SidebarItemBase & (SidebarItemAnchor | SidebarItemButton);
866
- declare const SidebarItem: ({ active, icon: Icon, label, ...props }: SidebarItemProps) => react_jsx_runtime.JSX.Element;
873
+ declare const SidebarItem: ({ active, icon, label, component, ...props }: SidebarItemProps) => react_jsx_runtime.JSX.Element;
867
874
 
868
875
  declare const SidebarDelimeter: () => react_jsx_runtime.JSX.Element;
869
876
 
@@ -1145,6 +1152,31 @@ type TextAreaElementProps = BaseInputProps & TextareaHTMLAttributes<HTMLTextArea
1145
1152
  type InputProps = InputElementProps | TextAreaElementProps;
1146
1153
  declare const Input: any;
1147
1154
 
1155
+ type FileFieldProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'type' | 'value' | 'onChange' | 'size'> & {
1156
+ error?: boolean;
1157
+ variant?: InputVariant;
1158
+ multiple?: boolean;
1159
+ accept?: string;
1160
+ uploadButtonText?: string;
1161
+ dragDropPlaceholder?: string;
1162
+ value?: File[];
1163
+ onChange?: (files: File[]) => void;
1164
+ onError?: (error: string) => void;
1165
+ dragDropClassName?: string;
1166
+ };
1167
+ declare const FileField: react.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value" | "size" | "type" | "onChange"> & {
1168
+ error?: boolean;
1169
+ variant?: InputVariant;
1170
+ multiple?: boolean;
1171
+ accept?: string;
1172
+ uploadButtonText?: string;
1173
+ dragDropPlaceholder?: string;
1174
+ value?: File[];
1175
+ onChange?: (files: File[]) => void;
1176
+ onError?: (error: string) => void;
1177
+ dragDropClassName?: string;
1178
+ } & react.RefAttributes<HTMLInputElement>>;
1179
+
1148
1180
  type FlexDirection = 'row' | 'column' | 'row-reverse' | 'column-reverse';
1149
1181
  type FlexWrap = 'nowrap' | 'wrap' | 'wrap-reverse';
1150
1182
  type FlexJustify = 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly';
@@ -1620,6 +1652,18 @@ interface TailwindExampleProps {
1620
1652
  }
1621
1653
  declare const TailwindExample: react__default.FC<TailwindExampleProps>;
1622
1654
 
1655
+ type ChatFieldProps = Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'type'> & {
1656
+ error?: boolean;
1657
+ errorText?: string;
1658
+ button?: ReactNode;
1659
+ images?: File[];
1660
+ onChangeImages?: (files: File[]) => void;
1661
+ onError?: (error: string) => void;
1662
+ multiple?: boolean;
1663
+ fieldClassName?: string;
1664
+ };
1665
+ declare const ChatField: ({ multiple, value, onChangeImages, images, errorText, error, onError, button, fieldClassName, ...props }: ChatFieldProps) => react_jsx_runtime.JSX.Element;
1666
+
1623
1667
  interface PageLayoutProps {
1624
1668
  header?: any;
1625
1669
  sidebar?: any;
@@ -1814,4 +1858,4 @@ declare const FullscreenCard: react.ForwardRefExoticComponent<FullscreenCardProp
1814
1858
  } | undefined;
1815
1859
  } & react.RefAttributes<unknown>>;
1816
1860
 
1817
- export { type Action, Alert, AlertIcon, AndroidIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, BreakpointProvider, BugReportIcon, BusIcon, Button, type ButtonColor, type ButtonElementStyle, type ButtonProps, type ButtonSize, type ButtonSizeStyle, type ButtonState, type ButtonVariant, CalendarIcon, CarIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseCircleIcon, ClosedLockIcon, type ColorVariant, type ColumnTable, Container, ContentLoader, type ContentLoaderProps, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, Drawer, DrawerBody, DrawerHeader, EditUserIcon, EmptyData, type EmptyDataProps, EnableVisibleIcon, EnterArrowLeftIcon, type FabricComponent, FileIcon, FiltersIcon, FlashIcon, FlexContainer, FlexItem, FolderAlertIcon, FolderInfoIcon, FullscreenCard, Graph2D, type Graph2DProps, type Graph2DRef, type GraphData, type GraphState, Header, HeaderDelimeter, HeaderSection, HomepageIcon, InfoCircleFilledIcon, InfoCircleIcon, Input, type InputElementProps, type InputElementStyle, type InputProps, type InputSize, type InputSizeStyle, type InputState, type InputVariant, IosIcon, Label, type LabelSize, type LabelSizeStyle, Line, LinerProgress, type LinkObject, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MaximizeIcon, MicrosoftIcon, Modal, ModalBody, ModalFooter, ModalHeader, MoonIcon, type NestedColorPaths, type NodeButton, type NodeObject, OpenLockIcon, OrganizationIcon, Overlay, type OverlayProps, PageLayout, Pagination, type PaginationProps, PassportIcon, PasswordFinderIcon, PencilIcon, PhonebookIcon, PlaneIcon, PlusIcon, PointIcon, PrintIcon, Profiler2Icon, ProfilerIcon, RelationIcon, RelationPointsIcon, type RenderCellProps, type RenderHeaderCellProps, RotateLeftIcon, RotateRightIcon, RowActionsMenu, SandBoxIcon, SearchIcon, Select, ShipIcon, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, type StyledFabricComponent, SunIcon, Switch, type SwitchState, Table, Tag, type TagColor, type TagElementStyle, type TagVariant, TailwindExample, type TailwindExampleProps, type TextAreaElementProps, type Theme, type ThemeMode, ThemeProvider, Tooltip, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UserInCircleIcon, UsersIcon, VectorIcon, WayIcon, convertPaletteToRem, createComponent, createStyledComponent, darkTheme, darkThemePx, destructSpaceProps, generatePropertySpaceStyle, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getResponsiveProps, getTypographyStyles, hexToRgba, lightTheme, lightThemePx, propToRem, pxToRem, remToPx, resolveThemeColor, useBreakpoint, useContextMenuControl, useTheme };
1861
+ export { type Action, Alert, AlertIcon, AndroidIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, BreakpointProvider, BugReportIcon, BusIcon, Button, type ButtonColor, type ButtonElementStyle, type ButtonProps, type ButtonSize, type ButtonSizeStyle, type ButtonState, type ButtonVariant, CalendarIcon, CarIcon, ChatField, type ChatFieldProps, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseCircleIcon, ClosedLockIcon, type ColorVariant, type ColumnTable, Container, ContentLoader, type ContentLoaderProps, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, Drawer, DrawerBody, DrawerHeader, EditUserIcon, EmptyData, type EmptyDataProps, EnableVisibleIcon, EnterArrowLeftIcon, type FabricComponent, FileField, type FileFieldProps, FileIcon, FiltersIcon, FlashIcon, FlexContainer, FlexItem, FolderAlertIcon, FolderInfoIcon, FullscreenCard, Graph2D, type Graph2DProps, type Graph2DRef, type GraphData, type GraphState, Header, HeaderDelimeter, HeaderSection, HomepageIcon, InfoCircleFilledIcon, InfoCircleIcon, Input, type InputElementProps, type InputElementStyle, type InputProps, type InputSize, type InputSizeStyle, type InputState, type InputVariant, IosIcon, Label, type LabelSize, type LabelSizeStyle, Line, LinerProgress, type LinkObject, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MaximizeIcon, MicrosoftIcon, Modal, ModalBody, ModalFooter, ModalHeader, MoonIcon, type NestedColorPaths, type NodeButton, type NodeObject, OpenLockIcon, OrganizationIcon, Overlay, type OverlayProps, PageLayout, Pagination, type PaginationProps, PassportIcon, PasswordFinderIcon, PencilIcon, PhonebookIcon, PlaneIcon, PlusIcon, PointIcon, PrintIcon, Profiler2Icon, ProfilerIcon, RelationIcon, RelationPointsIcon, type RenderCellProps, type RenderHeaderCellProps, RotateLeftIcon, RotateRightIcon, RowActionsMenu, SandBoxIcon, SearchIcon, Select, ShipIcon, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, type StyledFabricComponent, SunIcon, Switch, type SwitchState, Table, Tag, type TagColor, type TagElementStyle, type TagVariant, TailwindExample, type TailwindExampleProps, type TextAreaElementProps, type Theme, type ThemeMode, ThemeProvider, Tooltip, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UploadImageIcon, UserInCircleIcon, UsersIcon, VectorIcon, WayIcon, convertPaletteToRem, createComponent, createStyledComponent, darkTheme, darkThemePx, destructSpaceProps, generatePropertySpaceStyle, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getResponsiveProps, getTypographyStyles, hexToRgba, lightTheme, lightThemePx, propToRem, pxToRem, remToPx, resolveThemeColor, useBreakpoint, useContextMenuControl, useTheme };