@cyber-harbour/ui 1.0.51 → 1.0.53

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
@@ -25,6 +25,16 @@ type InputState = 'default' | 'focus' | 'error' | 'disabled';
25
25
  type InputSize = 'empty' | 'small' | 'medium';
26
26
  type TagVariant = 'fill' | 'outlined';
27
27
  type TagColor = 'default' | 'primary' | 'error' | 'warning' | 'success' | 'disabled' | 'text' | 'orange' | string;
28
+ type LabelSize = 'small' | 'medium';
29
+ type LabelSizeStyle = {
30
+ fontSize: number | string;
31
+ gap: number | string;
32
+ marginBottom: number | string;
33
+ helpText: {
34
+ fontSize: number | string;
35
+ marginTop: number | string;
36
+ };
37
+ };
28
38
  type Breakpoint = 'xs' | 's' | 'm' | 'l' | 'xl';
29
39
  type ButtonElementStyle = {
30
40
  background: string;
@@ -267,6 +277,11 @@ type Theme = {
267
277
  background: string;
268
278
  };
269
279
  };
280
+ label: {
281
+ sizes: Record<LabelSize, LabelSizeStyle>;
282
+ color: string;
283
+ helpTextColor: string;
284
+ };
270
285
  };
271
286
  type ThemeColors = Theme['colors'];
272
287
  type ColorCategory = keyof ThemeColors;
@@ -292,6 +307,14 @@ declare const resolveThemeColor: (theme: DefaultTheme, colorPath: string | undef
292
307
  */
293
308
  declare const pxToRem: (pxValue: number | string, baseSize?: number) => string;
294
309
  declare const remToPx: (remValue: number | string, baseSize?: number) => number;
310
+ /**
311
+ * Converts a prop value to rem units if needed
312
+ *
313
+ * @param value - The pixel value to convert. Can be a number or a string with 'px' suffix
314
+ * @param baseSize - Base font size in pixels. Default is 16px (browser default)
315
+ * @returns The value in rem units as a string (e.g., "1.25rem")
316
+ */
317
+ declare const propToRem: (value: number | string, baseSize?: number) => string;
295
318
  /**
296
319
  * Recursively converts all pixel values in an object to rem units
297
320
  *
@@ -344,7 +367,7 @@ declare const lightTheme: DefaultTheme$1;
344
367
  declare const darkThemePx: Theme;
345
368
  declare const darkTheme: DefaultTheme$1;
346
369
 
347
- type MarginProps = {
370
+ type SpaceProps = {
348
371
  m?: string | number;
349
372
  mt?: string | number;
350
373
  mr?: string | number;
@@ -360,13 +383,14 @@ type MarginProps = {
360
383
  px?: string | number;
361
384
  py?: string | number;
362
385
  };
363
- type FabricComponent<T = object> = T & MarginProps;
386
+ type FabricComponent<T = object> = T & SpaceProps;
364
387
  type GeneratedFabricMarginProperties = 'margin' | 'margin-top' | 'margin-right' | 'margin-bottom' | 'margin-left' | 'margin-inline' | 'margin-block' | 'padding' | 'padding-top' | 'padding-right' | 'padding-bottom' | 'padding-left' | 'padding-inline' | 'padding-block';
365
388
  declare const generatePropertySpaceStyle: (theme: DefaultTheme, property: GeneratedFabricMarginProperties, value?: string | number, ignoredOptions?: GeneratedFabricMarginProperties[]) => string;
366
389
  type FabricComponentOptions = {
367
390
  ignoreStyles?: GeneratedFabricMarginProperties[] | undefined;
368
391
  };
369
- declare const createComponent: <T extends object = {}>(component: React.ComponentType<T>, options?: FabricComponentOptions) => styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<T | (react.PropsWithoutRef<T> & react.RefAttributes<react.Component<T, any, any>>), T & object & MarginProps>> & (string & (Omit<react.ComponentClass<T, any>, keyof react.Component<any, {}, any>> | Omit<react.FunctionComponent<T>, keyof react.Component<any, {}, any>>));
392
+ declare const createComponent: <T extends object = {}>(component: React.ComponentType<T>, options?: FabricComponentOptions) => styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<T | (react.PropsWithoutRef<T> & react.RefAttributes<react.Component<T, any, any>>), T & object & SpaceProps>> & (string & (Omit<react.ComponentClass<T, any>, keyof react.Component<any, {}, any>> | Omit<react.FunctionComponent<T>, keyof react.Component<any, {}, any>>));
393
+ declare const destructSpaceProps: <T extends FabricComponent>(props: T) => SpaceProps;
370
394
 
371
395
  type BaseButtonProps = FabricComponent<{
372
396
  children?: any;
@@ -644,6 +668,21 @@ interface FileIconProps extends SVGProps<SVGSVGElement> {
644
668
  }
645
669
  declare const FileIcon: ({ fill, ...props }: FileIconProps) => react_jsx_runtime.JSX.Element;
646
670
 
671
+ interface IosIconProps extends SVGProps<SVGSVGElement> {
672
+ fill?: string;
673
+ }
674
+ declare const IosIcon: ({ fill, ...props }: IosIconProps) => react_jsx_runtime.JSX.Element;
675
+
676
+ interface AndroidIconProps extends SVGProps<SVGSVGElement> {
677
+ fill?: string;
678
+ }
679
+ declare const AndroidIcon: ({ fill, ...props }: AndroidIconProps) => react_jsx_runtime.JSX.Element;
680
+
681
+ interface MicrosoftIconProps extends SVGProps<SVGSVGElement> {
682
+ fill?: string;
683
+ }
684
+ declare const MicrosoftIcon: ({ fill, ...props }: MicrosoftIconProps) => react_jsx_runtime.JSX.Element;
685
+
647
686
  interface SidebarProps {
648
687
  defaultCollapsed?: boolean;
649
688
  children: any;
@@ -905,12 +944,35 @@ type AlertProps = FabricComponent<{
905
944
  }> & Omit<react__default.HTMLAttributes<HTMLDivElement>, 'children'>;
906
945
  declare const Alert: ({ title, note, ...props }: AlertProps) => react_jsx_runtime.JSX.Element;
907
946
 
947
+ type LabelProps = FabricComponent<{
948
+ label?: any;
949
+ helpText?: any;
950
+ errorText?: string;
951
+ size?: LabelSize;
952
+ children: any;
953
+ fullWidth?: boolean;
954
+ }> & Omit<react__default.LabelHTMLAttributes<HTMLLabelElement>, 'children'> & (LabelDirection | LabelDirectionRaw);
955
+ type LabelDirectionRaw = {
956
+ direction?: 'row' | 'row-reverse';
957
+ childrenWidth?: number | string;
958
+ };
959
+ type LabelDirection = {
960
+ direction?: Omit<react__default.CSSProperties['flexDirection'], 'row' | 'row-reverse'>;
961
+ };
962
+ declare const Label: ({ label, helpText, children, direction, size, errorText, fullWidth, ...props }: LabelProps) => react_jsx_runtime.JSX.Element;
963
+
964
+ type CheckboxProps = FabricComponent<{
965
+ label?: any;
966
+ }> & Omit<react__default.InputHTMLAttributes<HTMLInputElement>, 'type'>;
967
+ declare const Checkbox: ({ label, className, disabled, ...props }: CheckboxProps) => react_jsx_runtime.JSX.Element;
968
+
908
969
  interface PageLayoutProps {
909
970
  header?: any;
910
971
  sidebar?: any;
911
972
  children?: any;
973
+ className?: string;
912
974
  }
913
- declare const PageLayout: ({ children, header, sidebar }: PageLayoutProps) => react_jsx_runtime.JSX.Element;
975
+ declare const PageLayout: ({ children, header, sidebar, className }: PageLayoutProps) => react_jsx_runtime.JSX.Element;
914
976
  interface StyledContainerProps {
915
977
  $withHeader?: boolean;
916
978
  $withSidebar?: boolean;
@@ -1047,4 +1109,4 @@ interface FullscreenCardProps {
1047
1109
  }
1048
1110
  declare const FullscreenCard: ({ isActive, position, top, left, right, bottom, ...props }: FullscreenCardProps) => react_jsx_runtime.JSX.Element;
1049
1111
 
1050
- export { type Action, Alert, AlertIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, BugReportIcon, BusIcon, Button, type ButtonColor, type ButtonElementStyle, type ButtonProps, type ButtonSize, type ButtonSizeStyle, type ButtonState, type ButtonVariant, CalendarIcon, CarIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseCircleIcon, ClosedLockIcon, type ColorVariant, type ColumnTable, Container, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, EditUserIcon, EmptyData, type EmptyDataProps, EnableVisibleIcon, EnterArrowLeftIcon, type FabricComponent, FileIcon, FiltersIcon, FlexContainer, FlexItem, FullscreenCard, GlobalStyle, 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, Line, type LinkObject, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MaximizeIcon, MoonIcon, type NestedColorPaths, type NodeButton, type NodeObject, OpenLockIcon, OrganizationIcon, PageLayout, Pagination, type PaginationProps, PasswordFinderIcon, PhonebookIcon, PlaneIcon, PlusIcon, PrintIcon, Profiler2Icon, ProfilerIcon, type RenderCellProps, type RenderHeaderCellProps, RowActionsMenu, SandBoxIcon, SearchIcon, Select, ShipIcon, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, SunIcon, Table, Tag, type TagColor, type TagElementStyle, type TagVariant, type TextAreaElementProps, type Theme, type ThemeMode, ThemeProvider, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, WayIcon, convertPaletteToRem, createComponent, darkTheme, darkThemePx, generatePropertySpaceStyle, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getTypographyStyles, hexToRgba, lightTheme, lightThemePx, pxToRem, remToPx, resolveThemeColor, useContextMenuControl };
1112
+ export { type Action, Alert, AlertIcon, AndroidIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, 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, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, EditUserIcon, EmptyData, type EmptyDataProps, EnableVisibleIcon, EnterArrowLeftIcon, type FabricComponent, FileIcon, FiltersIcon, FlexContainer, FlexItem, FullscreenCard, GlobalStyle, 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, type LinkObject, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MaximizeIcon, MicrosoftIcon, MoonIcon, type NestedColorPaths, type NodeButton, type NodeObject, OpenLockIcon, OrganizationIcon, PageLayout, Pagination, type PaginationProps, PasswordFinderIcon, PhonebookIcon, PlaneIcon, PlusIcon, PrintIcon, Profiler2Icon, ProfilerIcon, type RenderCellProps, type RenderHeaderCellProps, RowActionsMenu, SandBoxIcon, SearchIcon, Select, ShipIcon, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, SunIcon, Table, Tag, type TagColor, type TagElementStyle, type TagVariant, type TextAreaElementProps, type Theme, type ThemeMode, ThemeProvider, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, WayIcon, convertPaletteToRem, createComponent, darkTheme, darkThemePx, destructSpaceProps, generatePropertySpaceStyle, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getTypographyStyles, hexToRgba, lightTheme, lightThemePx, propToRem, pxToRem, remToPx, resolveThemeColor, useContextMenuControl };
package/dist/index.d.ts CHANGED
@@ -25,6 +25,16 @@ type InputState = 'default' | 'focus' | 'error' | 'disabled';
25
25
  type InputSize = 'empty' | 'small' | 'medium';
26
26
  type TagVariant = 'fill' | 'outlined';
27
27
  type TagColor = 'default' | 'primary' | 'error' | 'warning' | 'success' | 'disabled' | 'text' | 'orange' | string;
28
+ type LabelSize = 'small' | 'medium';
29
+ type LabelSizeStyle = {
30
+ fontSize: number | string;
31
+ gap: number | string;
32
+ marginBottom: number | string;
33
+ helpText: {
34
+ fontSize: number | string;
35
+ marginTop: number | string;
36
+ };
37
+ };
28
38
  type Breakpoint = 'xs' | 's' | 'm' | 'l' | 'xl';
29
39
  type ButtonElementStyle = {
30
40
  background: string;
@@ -267,6 +277,11 @@ type Theme = {
267
277
  background: string;
268
278
  };
269
279
  };
280
+ label: {
281
+ sizes: Record<LabelSize, LabelSizeStyle>;
282
+ color: string;
283
+ helpTextColor: string;
284
+ };
270
285
  };
271
286
  type ThemeColors = Theme['colors'];
272
287
  type ColorCategory = keyof ThemeColors;
@@ -292,6 +307,14 @@ declare const resolveThemeColor: (theme: DefaultTheme, colorPath: string | undef
292
307
  */
293
308
  declare const pxToRem: (pxValue: number | string, baseSize?: number) => string;
294
309
  declare const remToPx: (remValue: number | string, baseSize?: number) => number;
310
+ /**
311
+ * Converts a prop value to rem units if needed
312
+ *
313
+ * @param value - The pixel value to convert. Can be a number or a string with 'px' suffix
314
+ * @param baseSize - Base font size in pixels. Default is 16px (browser default)
315
+ * @returns The value in rem units as a string (e.g., "1.25rem")
316
+ */
317
+ declare const propToRem: (value: number | string, baseSize?: number) => string;
295
318
  /**
296
319
  * Recursively converts all pixel values in an object to rem units
297
320
  *
@@ -344,7 +367,7 @@ declare const lightTheme: DefaultTheme$1;
344
367
  declare const darkThemePx: Theme;
345
368
  declare const darkTheme: DefaultTheme$1;
346
369
 
347
- type MarginProps = {
370
+ type SpaceProps = {
348
371
  m?: string | number;
349
372
  mt?: string | number;
350
373
  mr?: string | number;
@@ -360,13 +383,14 @@ type MarginProps = {
360
383
  px?: string | number;
361
384
  py?: string | number;
362
385
  };
363
- type FabricComponent<T = object> = T & MarginProps;
386
+ type FabricComponent<T = object> = T & SpaceProps;
364
387
  type GeneratedFabricMarginProperties = 'margin' | 'margin-top' | 'margin-right' | 'margin-bottom' | 'margin-left' | 'margin-inline' | 'margin-block' | 'padding' | 'padding-top' | 'padding-right' | 'padding-bottom' | 'padding-left' | 'padding-inline' | 'padding-block';
365
388
  declare const generatePropertySpaceStyle: (theme: DefaultTheme, property: GeneratedFabricMarginProperties, value?: string | number, ignoredOptions?: GeneratedFabricMarginProperties[]) => string;
366
389
  type FabricComponentOptions = {
367
390
  ignoreStyles?: GeneratedFabricMarginProperties[] | undefined;
368
391
  };
369
- declare const createComponent: <T extends object = {}>(component: React.ComponentType<T>, options?: FabricComponentOptions) => styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<T | (react.PropsWithoutRef<T> & react.RefAttributes<react.Component<T, any, any>>), T & object & MarginProps>> & (string & (Omit<react.ComponentClass<T, any>, keyof react.Component<any, {}, any>> | Omit<react.FunctionComponent<T>, keyof react.Component<any, {}, any>>));
392
+ declare const createComponent: <T extends object = {}>(component: React.ComponentType<T>, options?: FabricComponentOptions) => styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<T | (react.PropsWithoutRef<T> & react.RefAttributes<react.Component<T, any, any>>), T & object & SpaceProps>> & (string & (Omit<react.ComponentClass<T, any>, keyof react.Component<any, {}, any>> | Omit<react.FunctionComponent<T>, keyof react.Component<any, {}, any>>));
393
+ declare const destructSpaceProps: <T extends FabricComponent>(props: T) => SpaceProps;
370
394
 
371
395
  type BaseButtonProps = FabricComponent<{
372
396
  children?: any;
@@ -644,6 +668,21 @@ interface FileIconProps extends SVGProps<SVGSVGElement> {
644
668
  }
645
669
  declare const FileIcon: ({ fill, ...props }: FileIconProps) => react_jsx_runtime.JSX.Element;
646
670
 
671
+ interface IosIconProps extends SVGProps<SVGSVGElement> {
672
+ fill?: string;
673
+ }
674
+ declare const IosIcon: ({ fill, ...props }: IosIconProps) => react_jsx_runtime.JSX.Element;
675
+
676
+ interface AndroidIconProps extends SVGProps<SVGSVGElement> {
677
+ fill?: string;
678
+ }
679
+ declare const AndroidIcon: ({ fill, ...props }: AndroidIconProps) => react_jsx_runtime.JSX.Element;
680
+
681
+ interface MicrosoftIconProps extends SVGProps<SVGSVGElement> {
682
+ fill?: string;
683
+ }
684
+ declare const MicrosoftIcon: ({ fill, ...props }: MicrosoftIconProps) => react_jsx_runtime.JSX.Element;
685
+
647
686
  interface SidebarProps {
648
687
  defaultCollapsed?: boolean;
649
688
  children: any;
@@ -905,12 +944,35 @@ type AlertProps = FabricComponent<{
905
944
  }> & Omit<react__default.HTMLAttributes<HTMLDivElement>, 'children'>;
906
945
  declare const Alert: ({ title, note, ...props }: AlertProps) => react_jsx_runtime.JSX.Element;
907
946
 
947
+ type LabelProps = FabricComponent<{
948
+ label?: any;
949
+ helpText?: any;
950
+ errorText?: string;
951
+ size?: LabelSize;
952
+ children: any;
953
+ fullWidth?: boolean;
954
+ }> & Omit<react__default.LabelHTMLAttributes<HTMLLabelElement>, 'children'> & (LabelDirection | LabelDirectionRaw);
955
+ type LabelDirectionRaw = {
956
+ direction?: 'row' | 'row-reverse';
957
+ childrenWidth?: number | string;
958
+ };
959
+ type LabelDirection = {
960
+ direction?: Omit<react__default.CSSProperties['flexDirection'], 'row' | 'row-reverse'>;
961
+ };
962
+ declare const Label: ({ label, helpText, children, direction, size, errorText, fullWidth, ...props }: LabelProps) => react_jsx_runtime.JSX.Element;
963
+
964
+ type CheckboxProps = FabricComponent<{
965
+ label?: any;
966
+ }> & Omit<react__default.InputHTMLAttributes<HTMLInputElement>, 'type'>;
967
+ declare const Checkbox: ({ label, className, disabled, ...props }: CheckboxProps) => react_jsx_runtime.JSX.Element;
968
+
908
969
  interface PageLayoutProps {
909
970
  header?: any;
910
971
  sidebar?: any;
911
972
  children?: any;
973
+ className?: string;
912
974
  }
913
- declare const PageLayout: ({ children, header, sidebar }: PageLayoutProps) => react_jsx_runtime.JSX.Element;
975
+ declare const PageLayout: ({ children, header, sidebar, className }: PageLayoutProps) => react_jsx_runtime.JSX.Element;
914
976
  interface StyledContainerProps {
915
977
  $withHeader?: boolean;
916
978
  $withSidebar?: boolean;
@@ -1047,4 +1109,4 @@ interface FullscreenCardProps {
1047
1109
  }
1048
1110
  declare const FullscreenCard: ({ isActive, position, top, left, right, bottom, ...props }: FullscreenCardProps) => react_jsx_runtime.JSX.Element;
1049
1111
 
1050
- export { type Action, Alert, AlertIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, BugReportIcon, BusIcon, Button, type ButtonColor, type ButtonElementStyle, type ButtonProps, type ButtonSize, type ButtonSizeStyle, type ButtonState, type ButtonVariant, CalendarIcon, CarIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseCircleIcon, ClosedLockIcon, type ColorVariant, type ColumnTable, Container, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, EditUserIcon, EmptyData, type EmptyDataProps, EnableVisibleIcon, EnterArrowLeftIcon, type FabricComponent, FileIcon, FiltersIcon, FlexContainer, FlexItem, FullscreenCard, GlobalStyle, 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, Line, type LinkObject, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MaximizeIcon, MoonIcon, type NestedColorPaths, type NodeButton, type NodeObject, OpenLockIcon, OrganizationIcon, PageLayout, Pagination, type PaginationProps, PasswordFinderIcon, PhonebookIcon, PlaneIcon, PlusIcon, PrintIcon, Profiler2Icon, ProfilerIcon, type RenderCellProps, type RenderHeaderCellProps, RowActionsMenu, SandBoxIcon, SearchIcon, Select, ShipIcon, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, SunIcon, Table, Tag, type TagColor, type TagElementStyle, type TagVariant, type TextAreaElementProps, type Theme, type ThemeMode, ThemeProvider, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, WayIcon, convertPaletteToRem, createComponent, darkTheme, darkThemePx, generatePropertySpaceStyle, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getTypographyStyles, hexToRgba, lightTheme, lightThemePx, pxToRem, remToPx, resolveThemeColor, useContextMenuControl };
1112
+ export { type Action, Alert, AlertIcon, AndroidIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, 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, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, EditUserIcon, EmptyData, type EmptyDataProps, EnableVisibleIcon, EnterArrowLeftIcon, type FabricComponent, FileIcon, FiltersIcon, FlexContainer, FlexItem, FullscreenCard, GlobalStyle, 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, type LinkObject, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MaximizeIcon, MicrosoftIcon, MoonIcon, type NestedColorPaths, type NodeButton, type NodeObject, OpenLockIcon, OrganizationIcon, PageLayout, Pagination, type PaginationProps, PasswordFinderIcon, PhonebookIcon, PlaneIcon, PlusIcon, PrintIcon, Profiler2Icon, ProfilerIcon, type RenderCellProps, type RenderHeaderCellProps, RowActionsMenu, SandBoxIcon, SearchIcon, Select, ShipIcon, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, SunIcon, Table, Tag, type TagColor, type TagElementStyle, type TagVariant, type TextAreaElementProps, type Theme, type ThemeMode, ThemeProvider, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, WayIcon, convertPaletteToRem, createComponent, darkTheme, darkThemePx, destructSpaceProps, generatePropertySpaceStyle, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getTypographyStyles, hexToRgba, lightTheme, lightThemePx, propToRem, pxToRem, remToPx, resolveThemeColor, useContextMenuControl };