@cyber-harbour/ui 1.0.76 → 1.0.78

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.
@@ -94,7 +94,7 @@ async function main() {
94
94
  message: 'Що підключити?',
95
95
  choices: [
96
96
  { title: `Локальну бібліотеку (${localPath})`, value: 'local' },
97
- { title: 'Публічну версію з NPM', value: 'npm' },
97
+ { title: 'Версію з NPM (latest, next, або конкретну версію)', value: 'npm' },
98
98
  ],
99
99
  });
100
100
 
@@ -148,6 +148,24 @@ async function main() {
148
148
  }
149
149
 
150
150
  if (mode === 'npm') {
151
+ const versionResponse = await prompts({
152
+ type: 'text',
153
+ name: 'version',
154
+ message: 'Введіть версію або тег (latest, next, 2.0.0, alpha, beta):',
155
+ initial: 'latest',
156
+ validate: value => value.length > 0 ? true : 'Версія не може бути пустою'
157
+ });
158
+
159
+ if (!versionResponse.version) {
160
+ console.log('❌ Операція скасована.');
161
+ return;
162
+ }
163
+
164
+ const version = versionResponse.version.startsWith('@')
165
+ ? versionResponse.version.substring(1)
166
+ : versionResponse.version;
167
+ const packageToInstall = `${packageName}@${version}`;
168
+
151
169
  if (isUsingNpmVersion()) {
152
170
  console.log('✅ Вже використовується версія з NPM.');
153
171
  return;
@@ -176,9 +194,9 @@ async function main() {
176
194
  }
177
195
 
178
196
  // Встановлюємо пакет з NPM
179
- console.log('🔄 Встановлюємо версію з NPM...');
180
- execSync(`npm install ${packageName}`, { stdio: 'inherit', cwd: projectRoot });
181
- console.log('✅ Успішно підключено версію з NPM.');
197
+ console.log(`🔄 Встановлюємо ${packageToInstall}...`);
198
+ execSync(`npm install ${packageToInstall}`, { stdio: 'inherit', cwd: projectRoot });
199
+ console.log(`✅ Успішно підключено ${packageToInstall}.`);
182
200
  } catch (error) {
183
201
  console.error('❌ Помилка при підключенні версії з NPM:', error.message);
184
202
  }
package/dist/index.d.mts CHANGED
@@ -814,10 +814,19 @@ interface RotateRightIconProps extends SVGProps<SVGSVGElement> {
814
814
  }
815
815
  declare const RotateRightIcon: ({ fill, ...props }: RotateRightIconProps) => react_jsx_runtime.JSX.Element;
816
816
 
817
+ interface BurgerMenuIconProps extends SVGProps<SVGSVGElement> {
818
+ fill?: string;
819
+ }
820
+ declare const BurgerMenuIcon: ({ fill, ...props }: BurgerMenuIconProps) => react_jsx_runtime.JSX.Element;
821
+
822
+ interface ClockIconProps extends SVGProps<SVGSVGElement> {
823
+ fill?: string;
824
+ }
825
+ declare const ClockIcon: ({ fill, ...props }: ClockIconProps) => react_jsx_runtime.JSX.Element;
826
+
817
827
  interface SidebarProps {
818
828
  defaultCollapsed?: boolean;
819
829
  children: any;
820
- canGrow: boolean;
821
830
  }
822
831
  declare const Sidebar: react__default.ForwardRefExoticComponent<SidebarProps & {
823
832
  m?: string | number;
@@ -847,7 +856,6 @@ declare const Sidebar: react__default.ForwardRefExoticComponent<SidebarProps & {
847
856
  interface SidebarContext {
848
857
  collapsed: boolean;
849
858
  setCollapsed: React.Dispatch<React.SetStateAction<boolean>>;
850
- canGrow: boolean;
851
859
  }
852
860
  declare const SidebarContext: react.Context<SidebarContext>;
853
861
 
@@ -855,6 +863,8 @@ interface SidebarItemBase {
855
863
  active?: boolean;
856
864
  icon?: React.ComponentType<SVGProps<SVGSVGElement>>;
857
865
  label?: string;
866
+ height?: number;
867
+ iconSize?: number;
858
868
  }
859
869
  interface SidebarItemAnchor {
860
870
  href: string;
@@ -866,17 +876,19 @@ interface SidebarItemButton {
866
876
  onClick?: (e: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
867
877
  }
868
878
  type SidebarItemProps = SidebarItemBase & (SidebarItemAnchor | SidebarItemButton);
869
- declare const SidebarItem: ({ active, icon: Icon, label, ...props }: SidebarItemProps) => react_jsx_runtime.JSX.Element;
879
+ declare const SidebarItem: ({ active, icon: Icon, label, height, iconSize, ...props }: SidebarItemProps) => react_jsx_runtime.JSX.Element;
870
880
 
871
881
  declare const SidebarDelimeter: () => react_jsx_runtime.JSX.Element;
872
882
 
883
+ type SectionRole = 'header' | 'footer' | 'content';
873
884
  interface SidebarSectionProps {
874
885
  grow?: number;
875
886
  shrink?: number;
876
887
  basis?: CSSProperties['flexBasis'];
877
888
  items: React.ReactElement[];
889
+ role: SectionRole;
878
890
  }
879
- declare const SidebarSection: ({ grow, shrink, basis, items }: SidebarSectionProps) => react_jsx_runtime.JSX.Element;
891
+ declare const SidebarSection: ({ grow, shrink, basis, items, role }: SidebarSectionProps) => react_jsx_runtime.JSX.Element;
880
892
 
881
893
  type TypographyProps = FabricComponent<{
882
894
  style?: CSSProperties$1;
@@ -1014,7 +1026,7 @@ declare const ListMenuSection: ({ title, items }: ListMenuSectionProps) => react
1014
1026
  interface HeaderProps {
1015
1027
  children?: any;
1016
1028
  }
1017
- declare const Header: ({ children }: HeaderProps) => react_jsx_runtime.JSX.Element;
1029
+ declare const Header: react.ForwardRefExoticComponent<HeaderProps & react.RefAttributes<HTMLHeadElement>>;
1018
1030
 
1019
1031
  declare const HeaderDelimeter: () => react_jsx_runtime.JSX.Element;
1020
1032
 
@@ -1078,9 +1090,9 @@ interface ContextMenuProps {
1078
1090
  }
1079
1091
  declare const ContextMenu: ({ isOpen, onClickOutside, onClick, anchor, size, disabled, fullWidth, className, positions, align, children, hasBorder, maxHeight, matchAnchorWidth, anchorIcon, }: ContextMenuProps) => react_jsx_runtime.JSX.Element;
1080
1092
 
1081
- interface StyledProps {
1093
+ interface StyledProps$1 {
1082
1094
  }
1083
- declare const ContextMenuDelimiter: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledProps>> & string;
1095
+ declare const ContextMenuDelimiter: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledProps$1>> & string;
1084
1096
 
1085
1097
  declare const useContextMenuControl: () => {
1086
1098
  isOpen: boolean;
@@ -1618,17 +1630,29 @@ declare const ModalBody: styled_components_dist_types.IStyledComponentBase<"web"
1618
1630
  declare const ModalFooter: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<ModalChildrenProps | (ModalChildrenProps & react.RefAttributes<react.Component<ModalChildrenProps, any, any>>), StyledFabricComponent<ModalChildrenProps>>> & (string & (Omit<react.ComponentClass<ModalChildrenProps, any>, keyof react.Component<any, {}, any>> | Omit<react.FunctionComponent<ModalChildrenProps>, keyof react.Component<any, {}, any>>));
1619
1631
 
1620
1632
  interface PageLayoutProps {
1621
- header?: any;
1622
- sidebar?: any;
1623
1633
  children?: any;
1624
1634
  className?: string;
1625
1635
  }
1626
- declare const PageLayout: ({ children, header, sidebar, className }: PageLayoutProps) => react_jsx_runtime.JSX.Element;
1627
- interface StyledContainerProps {
1628
- $withHeader?: boolean;
1629
- $withSidebar?: boolean;
1636
+ declare const PageLayout: ({ children, className }: PageLayoutProps) => react_jsx_runtime.JSX.Element;
1637
+ declare const StyledContainer: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
1638
+
1639
+ interface ContentProps {
1640
+ children: any;
1641
+ className?: string;
1642
+ }
1643
+ declare const PageContent: ({ children, className }: ContentProps) => react_jsx_runtime.JSX.Element;
1644
+ declare const StyledMain: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
1645
+
1646
+ interface SubNavProps {
1647
+ children?: any;
1648
+ className?: string;
1649
+ top?: number;
1630
1650
  }
1631
- declare const StyledContainer: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledContainerProps>> & string;
1651
+ declare const SubNav: ({ children, className, top }: SubNavProps) => react_jsx_runtime.JSX.Element;
1652
+ type StyledProps = {
1653
+ $top: number;
1654
+ };
1655
+ declare const Styled: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledProps>> & string;
1632
1656
 
1633
1657
  type ContainerProps = {
1634
1658
  children: any;
@@ -1811,4 +1835,4 @@ declare const FullscreenCard: react.ForwardRefExoticComponent<FullscreenCardProp
1811
1835
  } | undefined;
1812
1836
  } & react.RefAttributes<unknown>>;
1813
1837
 
1814
- 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, 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, 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, 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 };
1838
+ export { type Action, Alert, AlertIcon, AndroidIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, BreakpointProvider, BugReportIcon, BurgerMenuIcon, BusIcon, Button, type ButtonColor, type ButtonElementStyle, type ButtonProps, type ButtonSize, type ButtonSizeStyle, type ButtonState, type ButtonVariant, CalendarIcon, CarIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ClockIcon, 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, 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, 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, PageContent, 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, Styled, StyledContainer, type StyledFabricComponent, StyledMain, SubNav, SunIcon, Switch, type SwitchState, Table, Tag, type TagColor, type TagElementStyle, type TagVariant, 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 };
package/dist/index.d.ts CHANGED
@@ -814,10 +814,19 @@ interface RotateRightIconProps extends SVGProps<SVGSVGElement> {
814
814
  }
815
815
  declare const RotateRightIcon: ({ fill, ...props }: RotateRightIconProps) => react_jsx_runtime.JSX.Element;
816
816
 
817
+ interface BurgerMenuIconProps extends SVGProps<SVGSVGElement> {
818
+ fill?: string;
819
+ }
820
+ declare const BurgerMenuIcon: ({ fill, ...props }: BurgerMenuIconProps) => react_jsx_runtime.JSX.Element;
821
+
822
+ interface ClockIconProps extends SVGProps<SVGSVGElement> {
823
+ fill?: string;
824
+ }
825
+ declare const ClockIcon: ({ fill, ...props }: ClockIconProps) => react_jsx_runtime.JSX.Element;
826
+
817
827
  interface SidebarProps {
818
828
  defaultCollapsed?: boolean;
819
829
  children: any;
820
- canGrow: boolean;
821
830
  }
822
831
  declare const Sidebar: react__default.ForwardRefExoticComponent<SidebarProps & {
823
832
  m?: string | number;
@@ -847,7 +856,6 @@ declare const Sidebar: react__default.ForwardRefExoticComponent<SidebarProps & {
847
856
  interface SidebarContext {
848
857
  collapsed: boolean;
849
858
  setCollapsed: React.Dispatch<React.SetStateAction<boolean>>;
850
- canGrow: boolean;
851
859
  }
852
860
  declare const SidebarContext: react.Context<SidebarContext>;
853
861
 
@@ -855,6 +863,8 @@ interface SidebarItemBase {
855
863
  active?: boolean;
856
864
  icon?: React.ComponentType<SVGProps<SVGSVGElement>>;
857
865
  label?: string;
866
+ height?: number;
867
+ iconSize?: number;
858
868
  }
859
869
  interface SidebarItemAnchor {
860
870
  href: string;
@@ -866,17 +876,19 @@ interface SidebarItemButton {
866
876
  onClick?: (e: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
867
877
  }
868
878
  type SidebarItemProps = SidebarItemBase & (SidebarItemAnchor | SidebarItemButton);
869
- declare const SidebarItem: ({ active, icon: Icon, label, ...props }: SidebarItemProps) => react_jsx_runtime.JSX.Element;
879
+ declare const SidebarItem: ({ active, icon: Icon, label, height, iconSize, ...props }: SidebarItemProps) => react_jsx_runtime.JSX.Element;
870
880
 
871
881
  declare const SidebarDelimeter: () => react_jsx_runtime.JSX.Element;
872
882
 
883
+ type SectionRole = 'header' | 'footer' | 'content';
873
884
  interface SidebarSectionProps {
874
885
  grow?: number;
875
886
  shrink?: number;
876
887
  basis?: CSSProperties['flexBasis'];
877
888
  items: React.ReactElement[];
889
+ role: SectionRole;
878
890
  }
879
- declare const SidebarSection: ({ grow, shrink, basis, items }: SidebarSectionProps) => react_jsx_runtime.JSX.Element;
891
+ declare const SidebarSection: ({ grow, shrink, basis, items, role }: SidebarSectionProps) => react_jsx_runtime.JSX.Element;
880
892
 
881
893
  type TypographyProps = FabricComponent<{
882
894
  style?: CSSProperties$1;
@@ -1014,7 +1026,7 @@ declare const ListMenuSection: ({ title, items }: ListMenuSectionProps) => react
1014
1026
  interface HeaderProps {
1015
1027
  children?: any;
1016
1028
  }
1017
- declare const Header: ({ children }: HeaderProps) => react_jsx_runtime.JSX.Element;
1029
+ declare const Header: react.ForwardRefExoticComponent<HeaderProps & react.RefAttributes<HTMLHeadElement>>;
1018
1030
 
1019
1031
  declare const HeaderDelimeter: () => react_jsx_runtime.JSX.Element;
1020
1032
 
@@ -1078,9 +1090,9 @@ interface ContextMenuProps {
1078
1090
  }
1079
1091
  declare const ContextMenu: ({ isOpen, onClickOutside, onClick, anchor, size, disabled, fullWidth, className, positions, align, children, hasBorder, maxHeight, matchAnchorWidth, anchorIcon, }: ContextMenuProps) => react_jsx_runtime.JSX.Element;
1080
1092
 
1081
- interface StyledProps {
1093
+ interface StyledProps$1 {
1082
1094
  }
1083
- declare const ContextMenuDelimiter: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledProps>> & string;
1095
+ declare const ContextMenuDelimiter: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledProps$1>> & string;
1084
1096
 
1085
1097
  declare const useContextMenuControl: () => {
1086
1098
  isOpen: boolean;
@@ -1618,17 +1630,29 @@ declare const ModalBody: styled_components_dist_types.IStyledComponentBase<"web"
1618
1630
  declare const ModalFooter: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<ModalChildrenProps | (ModalChildrenProps & react.RefAttributes<react.Component<ModalChildrenProps, any, any>>), StyledFabricComponent<ModalChildrenProps>>> & (string & (Omit<react.ComponentClass<ModalChildrenProps, any>, keyof react.Component<any, {}, any>> | Omit<react.FunctionComponent<ModalChildrenProps>, keyof react.Component<any, {}, any>>));
1619
1631
 
1620
1632
  interface PageLayoutProps {
1621
- header?: any;
1622
- sidebar?: any;
1623
1633
  children?: any;
1624
1634
  className?: string;
1625
1635
  }
1626
- declare const PageLayout: ({ children, header, sidebar, className }: PageLayoutProps) => react_jsx_runtime.JSX.Element;
1627
- interface StyledContainerProps {
1628
- $withHeader?: boolean;
1629
- $withSidebar?: boolean;
1636
+ declare const PageLayout: ({ children, className }: PageLayoutProps) => react_jsx_runtime.JSX.Element;
1637
+ declare const StyledContainer: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
1638
+
1639
+ interface ContentProps {
1640
+ children: any;
1641
+ className?: string;
1642
+ }
1643
+ declare const PageContent: ({ children, className }: ContentProps) => react_jsx_runtime.JSX.Element;
1644
+ declare const StyledMain: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
1645
+
1646
+ interface SubNavProps {
1647
+ children?: any;
1648
+ className?: string;
1649
+ top?: number;
1630
1650
  }
1631
- declare const StyledContainer: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledContainerProps>> & string;
1651
+ declare const SubNav: ({ children, className, top }: SubNavProps) => react_jsx_runtime.JSX.Element;
1652
+ type StyledProps = {
1653
+ $top: number;
1654
+ };
1655
+ declare const Styled: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledProps>> & string;
1632
1656
 
1633
1657
  type ContainerProps = {
1634
1658
  children: any;
@@ -1811,4 +1835,4 @@ declare const FullscreenCard: react.ForwardRefExoticComponent<FullscreenCardProp
1811
1835
  } | undefined;
1812
1836
  } & react.RefAttributes<unknown>>;
1813
1837
 
1814
- 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, 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, 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, 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 };
1838
+ export { type Action, Alert, AlertIcon, AndroidIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, BreakpointProvider, BugReportIcon, BurgerMenuIcon, BusIcon, Button, type ButtonColor, type ButtonElementStyle, type ButtonProps, type ButtonSize, type ButtonSizeStyle, type ButtonState, type ButtonVariant, CalendarIcon, CarIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ClockIcon, 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, 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, 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, PageContent, 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, Styled, StyledContainer, type StyledFabricComponent, StyledMain, SubNav, SunIcon, Switch, type SwitchState, Table, Tag, type TagColor, type TagElementStyle, type TagVariant, 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 };