@cyber-harbour/ui 1.0.31 → 1.0.33
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 +24 -42
- package/dist/index.d.ts +24 -42
- package/dist/index.js +265 -264
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +158 -157
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/Core/Box/Box.tsx +10 -4
- package/src/Core/Input/Input.tsx +34 -35
- package/src/Core/Line/Line.tsx +1 -1
- package/src/Core/Typography/Typography.tsx +6 -1
- package/src/Graph2D/Graph2D.tsx +248 -38
- package/src/Graph2D/types.ts +6 -4
- package/src/Layouts/Container/Container.tsx +14 -8
- package/src/Theme/theme.ts +45 -4
- package/src/Theme/types.ts +4 -2
- package/src/Theme/utils.ts +22 -19
- package/tsup.config.ts +4 -2
package/dist/index.d.mts
CHANGED
|
@@ -6,7 +6,7 @@ import { CSSProperties, DefaultTheme, WebTarget } from 'styled-components';
|
|
|
6
6
|
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
7
7
|
import { DefaultTheme as DefaultTheme$1 } from 'styled-components/dist/types';
|
|
8
8
|
import { PopoverPosition, PopoverAlign } from 'react-tiny-popover';
|
|
9
|
-
import { GraphData } from 'react-force-graph-2d';
|
|
9
|
+
import { GraphData, NodeObject } from 'react-force-graph-2d';
|
|
10
10
|
|
|
11
11
|
declare const GlobalStyle: react.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
|
12
12
|
|
|
@@ -18,9 +18,9 @@ type ButtonVariant = 'fill' | 'outlined' | 'empty';
|
|
|
18
18
|
type ButtonColor = 'default' | 'primary' | 'secondary' | 'error';
|
|
19
19
|
type ButtonState = 'default' | 'hover' | 'active' | 'disabled';
|
|
20
20
|
type ButtonSize = 'small' | 'medium';
|
|
21
|
-
type InputVariant = 'outlined';
|
|
21
|
+
type InputVariant = 'outlined' | 'empty';
|
|
22
22
|
type InputState = 'default' | 'focus' | 'error' | 'disabled';
|
|
23
|
-
type InputSize = 'small' | 'medium';
|
|
23
|
+
type InputSize = 'empty' | 'small' | 'medium';
|
|
24
24
|
type Breakpoint = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
25
25
|
type ButtonElementStyle = {
|
|
26
26
|
background: string;
|
|
@@ -59,6 +59,7 @@ type InputSizeStyle = {
|
|
|
59
59
|
};
|
|
60
60
|
type Theme = {
|
|
61
61
|
mode: 'light' | 'dark';
|
|
62
|
+
baseSize: number;
|
|
62
63
|
colors: {
|
|
63
64
|
background: string;
|
|
64
65
|
primary: {
|
|
@@ -195,6 +196,7 @@ type Theme = {
|
|
|
195
196
|
input: {
|
|
196
197
|
sizes: Record<InputSize, InputSizeStyle>;
|
|
197
198
|
outlined: Record<InputState, InputElementStyle>;
|
|
199
|
+
empty: Record<InputState, InputElementStyle>;
|
|
198
200
|
};
|
|
199
201
|
box: {
|
|
200
202
|
padding: number | string;
|
|
@@ -243,6 +245,10 @@ declare const convertPaletteToRem: (obj: Record<string, any>, baseSize?: number,
|
|
|
243
245
|
*/
|
|
244
246
|
declare const getButtonStyles: <V extends ButtonVariant>(theme: DefaultTheme, variant: ButtonVariant, color: ButtonColor, state: ButtonState) => ButtonElementStyle;
|
|
245
247
|
declare const getButtonSizeStyles: (theme: DefaultTheme, size: ButtonSize) => ButtonSizeStyle;
|
|
248
|
+
/**
|
|
249
|
+
* Функція для отримання стилів інпута за варіантом та станом
|
|
250
|
+
*/
|
|
251
|
+
declare const getInputStyles: (theme: DefaultTheme, variant: InputVariant, state: InputState) => InputElementStyle;
|
|
246
252
|
/**
|
|
247
253
|
* Функція для отримання типографічних стилів
|
|
248
254
|
*/
|
|
@@ -576,8 +582,9 @@ type TypographyProps = FabricComponent<{
|
|
|
576
582
|
fontStyle?: CSSProperties$1['fontStyle'];
|
|
577
583
|
color?: ColorVariant | string;
|
|
578
584
|
className?: string;
|
|
585
|
+
ellipsis?: boolean;
|
|
579
586
|
}>;
|
|
580
|
-
declare const Typography: ({ variant, element, children, weight, fontStyle, color, className, style, ...props }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
587
|
+
declare const Typography: ({ variant, element, children, weight, fontStyle, color, className, style, ellipsis, ...props }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
581
588
|
|
|
582
589
|
interface ListMenuProps {
|
|
583
590
|
children: any;
|
|
@@ -721,8 +728,9 @@ type InputProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'size'> & {
|
|
|
721
728
|
append?: any;
|
|
722
729
|
prepend?: any;
|
|
723
730
|
size?: InputSize;
|
|
731
|
+
variant?: InputVariant;
|
|
724
732
|
};
|
|
725
|
-
declare const Input:
|
|
733
|
+
declare const Input: any;
|
|
726
734
|
|
|
727
735
|
type FlexDirection = 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
|
728
736
|
type FlexWrap = 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
@@ -762,39 +770,10 @@ interface FlexItemProps {
|
|
|
762
770
|
}
|
|
763
771
|
declare const FlexItem: ({ children, grow, shrink, basis, align, order, className, style, as, }: FlexItemProps) => react_jsx_runtime.JSX.Element;
|
|
764
772
|
|
|
765
|
-
|
|
766
|
-
m?: string | number;
|
|
767
|
-
mt?: string | number;
|
|
768
|
-
mr?: string | number;
|
|
769
|
-
mb?: string | number;
|
|
770
|
-
ml?: string | number;
|
|
771
|
-
mx?: string | number;
|
|
772
|
-
my?: string | number;
|
|
773
|
-
p?: string | number;
|
|
774
|
-
pt?: string | number;
|
|
775
|
-
pr?: string | number;
|
|
776
|
-
pb?: string | number;
|
|
777
|
-
pl?: string | number;
|
|
778
|
-
px?: string | number;
|
|
779
|
-
py?: string | number;
|
|
780
|
-
}> & {
|
|
773
|
+
type BoxProps = FabricComponent<{
|
|
781
774
|
children: any;
|
|
782
|
-
} &
|
|
783
|
-
|
|
784
|
-
mt?: string | number;
|
|
785
|
-
mr?: string | number;
|
|
786
|
-
mb?: string | number;
|
|
787
|
-
ml?: string | number;
|
|
788
|
-
mx?: string | number;
|
|
789
|
-
my?: string | number;
|
|
790
|
-
p?: string | number;
|
|
791
|
-
pt?: string | number;
|
|
792
|
-
pr?: string | number;
|
|
793
|
-
pb?: string | number;
|
|
794
|
-
pl?: string | number;
|
|
795
|
-
px?: string | number;
|
|
796
|
-
py?: string | number;
|
|
797
|
-
}, never>> & string;
|
|
775
|
+
} & React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
776
|
+
declare const Box: ({ children, ...props }: BoxProps) => react_jsx_runtime.JSX.Element;
|
|
798
777
|
|
|
799
778
|
type LineProps = FabricComponent<{
|
|
800
779
|
direction?: 'horizontal' | 'vertical';
|
|
@@ -825,7 +804,7 @@ type ContainerProps = FabricComponent<{
|
|
|
825
804
|
children: any;
|
|
826
805
|
maxWidth?: string | number;
|
|
827
806
|
}>;
|
|
828
|
-
declare const Container: ({ ...props }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
807
|
+
declare const Container: ({ maxWidth, ...props }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
829
808
|
|
|
830
809
|
interface Graph2DProps {
|
|
831
810
|
graphData?: GraphData;
|
|
@@ -842,11 +821,14 @@ interface Graph2DProps {
|
|
|
842
821
|
gridSpacing: number;
|
|
843
822
|
dotSize: number;
|
|
844
823
|
};
|
|
845
|
-
onNodeClick?: (node:
|
|
846
|
-
onLinkClick?: (link:
|
|
824
|
+
onNodeClick?: (node: NodeObject) => void;
|
|
825
|
+
onLinkClick?: (link: NodeObject) => void;
|
|
826
|
+
onNodeHover?: (node: NodeObject | null) => void;
|
|
827
|
+
onLinkHover?: (link: NodeObject | null) => void;
|
|
828
|
+
onBackgroundClick?: () => void;
|
|
847
829
|
}
|
|
848
830
|
|
|
849
|
-
declare const Graph2D: ({ graphData, width, height, linkTarget, linkSource, config, onNodeClick, onLinkClick, }: Graph2DProps) => react_jsx_runtime.JSX.Element;
|
|
831
|
+
declare const Graph2D: ({ graphData, width, height, linkTarget, linkSource, config, onNodeClick, onNodeHover, onLinkHover, onLinkClick, onBackgroundClick, }: Graph2DProps) => react_jsx_runtime.JSX.Element;
|
|
850
832
|
|
|
851
833
|
interface FullscreenCardProps {
|
|
852
834
|
children: any;
|
|
@@ -855,4 +837,4 @@ interface FullscreenCardProps {
|
|
|
855
837
|
}
|
|
856
838
|
declare const FullscreenCard: ({ isActive, position, ...props }: FullscreenCardProps) => react_jsx_runtime.JSX.Element;
|
|
857
839
|
|
|
858
|
-
export { type Action, AlertIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, BugReportIcon, Button, type ButtonColor, type ButtonElementStyle, type ButtonProps, type ButtonSize, type ButtonSizeStyle, type ButtonState, type ButtonVariant, CalendarIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ClosedLockIcon, type ColorVariant, type ColumnTable, Container, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, EditUserIcon, EmptyData, type EmptyDataProps, EnableVisibleIcon, EnterArrowLeftIcon, type FabricComponent, FiltersIcon, FlexContainer, FlexItem, FullscreenCard, GlobalStyle, Graph2D, type Graph2DProps, Header, HeaderDelimeter, HeaderSection, HomepageIcon, InfoCircleFilledIcon, InfoCircleIcon, Input, type InputElementStyle, type InputSize, type InputSizeStyle, type InputState, type InputVariant, Line, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MaximizeIcon, MoonIcon, type NestedColorPaths, OpenLockIcon, OrganizationIcon, PageLayout, Pagination, type PaginationProps, PasswordFinderIcon, PhonebookIcon, PlusIcon, PrintIcon, Profiler2Icon, ProfilerIcon, type RenderCellProps, type RenderHeaderCellProps, RowActionsMenu, SandBoxIcon, SearchIcon, Select, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, SunIcon, Table, type Theme, ThemeProvider, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, convertPaletteToRem, createComponent, darkTheme, getBreakpoint, getButtonSizeStyles, getButtonStyles, getTypographyStyles, lightTheme, lightThemePx, pxToRem, resolveThemeColor, useContextMenuControl };
|
|
840
|
+
export { type Action, AlertIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, BugReportIcon, Button, type ButtonColor, type ButtonElementStyle, type ButtonProps, type ButtonSize, type ButtonSizeStyle, type ButtonState, type ButtonVariant, CalendarIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ClosedLockIcon, type ColorVariant, type ColumnTable, Container, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, EditUserIcon, EmptyData, type EmptyDataProps, EnableVisibleIcon, EnterArrowLeftIcon, type FabricComponent, FiltersIcon, FlexContainer, FlexItem, FullscreenCard, GlobalStyle, Graph2D, type Graph2DProps, Header, HeaderDelimeter, HeaderSection, HomepageIcon, InfoCircleFilledIcon, InfoCircleIcon, Input, type InputElementStyle, type InputProps, type InputSize, type InputSizeStyle, type InputState, type InputVariant, Line, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MaximizeIcon, MoonIcon, type NestedColorPaths, OpenLockIcon, OrganizationIcon, PageLayout, Pagination, type PaginationProps, PasswordFinderIcon, PhonebookIcon, PlusIcon, PrintIcon, Profiler2Icon, ProfilerIcon, type RenderCellProps, type RenderHeaderCellProps, RowActionsMenu, SandBoxIcon, SearchIcon, Select, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, SunIcon, Table, type Theme, ThemeProvider, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, convertPaletteToRem, createComponent, darkTheme, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getTypographyStyles, lightTheme, lightThemePx, pxToRem, resolveThemeColor, useContextMenuControl };
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { CSSProperties, DefaultTheme, WebTarget } from 'styled-components';
|
|
|
6
6
|
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
7
7
|
import { DefaultTheme as DefaultTheme$1 } from 'styled-components/dist/types';
|
|
8
8
|
import { PopoverPosition, PopoverAlign } from 'react-tiny-popover';
|
|
9
|
-
import { GraphData } from 'react-force-graph-2d';
|
|
9
|
+
import { GraphData, NodeObject } from 'react-force-graph-2d';
|
|
10
10
|
|
|
11
11
|
declare const GlobalStyle: react.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
|
12
12
|
|
|
@@ -18,9 +18,9 @@ type ButtonVariant = 'fill' | 'outlined' | 'empty';
|
|
|
18
18
|
type ButtonColor = 'default' | 'primary' | 'secondary' | 'error';
|
|
19
19
|
type ButtonState = 'default' | 'hover' | 'active' | 'disabled';
|
|
20
20
|
type ButtonSize = 'small' | 'medium';
|
|
21
|
-
type InputVariant = 'outlined';
|
|
21
|
+
type InputVariant = 'outlined' | 'empty';
|
|
22
22
|
type InputState = 'default' | 'focus' | 'error' | 'disabled';
|
|
23
|
-
type InputSize = 'small' | 'medium';
|
|
23
|
+
type InputSize = 'empty' | 'small' | 'medium';
|
|
24
24
|
type Breakpoint = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
25
25
|
type ButtonElementStyle = {
|
|
26
26
|
background: string;
|
|
@@ -59,6 +59,7 @@ type InputSizeStyle = {
|
|
|
59
59
|
};
|
|
60
60
|
type Theme = {
|
|
61
61
|
mode: 'light' | 'dark';
|
|
62
|
+
baseSize: number;
|
|
62
63
|
colors: {
|
|
63
64
|
background: string;
|
|
64
65
|
primary: {
|
|
@@ -195,6 +196,7 @@ type Theme = {
|
|
|
195
196
|
input: {
|
|
196
197
|
sizes: Record<InputSize, InputSizeStyle>;
|
|
197
198
|
outlined: Record<InputState, InputElementStyle>;
|
|
199
|
+
empty: Record<InputState, InputElementStyle>;
|
|
198
200
|
};
|
|
199
201
|
box: {
|
|
200
202
|
padding: number | string;
|
|
@@ -243,6 +245,10 @@ declare const convertPaletteToRem: (obj: Record<string, any>, baseSize?: number,
|
|
|
243
245
|
*/
|
|
244
246
|
declare const getButtonStyles: <V extends ButtonVariant>(theme: DefaultTheme, variant: ButtonVariant, color: ButtonColor, state: ButtonState) => ButtonElementStyle;
|
|
245
247
|
declare const getButtonSizeStyles: (theme: DefaultTheme, size: ButtonSize) => ButtonSizeStyle;
|
|
248
|
+
/**
|
|
249
|
+
* Функція для отримання стилів інпута за варіантом та станом
|
|
250
|
+
*/
|
|
251
|
+
declare const getInputStyles: (theme: DefaultTheme, variant: InputVariant, state: InputState) => InputElementStyle;
|
|
246
252
|
/**
|
|
247
253
|
* Функція для отримання типографічних стилів
|
|
248
254
|
*/
|
|
@@ -576,8 +582,9 @@ type TypographyProps = FabricComponent<{
|
|
|
576
582
|
fontStyle?: CSSProperties$1['fontStyle'];
|
|
577
583
|
color?: ColorVariant | string;
|
|
578
584
|
className?: string;
|
|
585
|
+
ellipsis?: boolean;
|
|
579
586
|
}>;
|
|
580
|
-
declare const Typography: ({ variant, element, children, weight, fontStyle, color, className, style, ...props }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
587
|
+
declare const Typography: ({ variant, element, children, weight, fontStyle, color, className, style, ellipsis, ...props }: TypographyProps) => react_jsx_runtime.JSX.Element;
|
|
581
588
|
|
|
582
589
|
interface ListMenuProps {
|
|
583
590
|
children: any;
|
|
@@ -721,8 +728,9 @@ type InputProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'size'> & {
|
|
|
721
728
|
append?: any;
|
|
722
729
|
prepend?: any;
|
|
723
730
|
size?: InputSize;
|
|
731
|
+
variant?: InputVariant;
|
|
724
732
|
};
|
|
725
|
-
declare const Input:
|
|
733
|
+
declare const Input: any;
|
|
726
734
|
|
|
727
735
|
type FlexDirection = 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
|
728
736
|
type FlexWrap = 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
@@ -762,39 +770,10 @@ interface FlexItemProps {
|
|
|
762
770
|
}
|
|
763
771
|
declare const FlexItem: ({ children, grow, shrink, basis, align, order, className, style, as, }: FlexItemProps) => react_jsx_runtime.JSX.Element;
|
|
764
772
|
|
|
765
|
-
|
|
766
|
-
m?: string | number;
|
|
767
|
-
mt?: string | number;
|
|
768
|
-
mr?: string | number;
|
|
769
|
-
mb?: string | number;
|
|
770
|
-
ml?: string | number;
|
|
771
|
-
mx?: string | number;
|
|
772
|
-
my?: string | number;
|
|
773
|
-
p?: string | number;
|
|
774
|
-
pt?: string | number;
|
|
775
|
-
pr?: string | number;
|
|
776
|
-
pb?: string | number;
|
|
777
|
-
pl?: string | number;
|
|
778
|
-
px?: string | number;
|
|
779
|
-
py?: string | number;
|
|
780
|
-
}> & {
|
|
773
|
+
type BoxProps = FabricComponent<{
|
|
781
774
|
children: any;
|
|
782
|
-
} &
|
|
783
|
-
|
|
784
|
-
mt?: string | number;
|
|
785
|
-
mr?: string | number;
|
|
786
|
-
mb?: string | number;
|
|
787
|
-
ml?: string | number;
|
|
788
|
-
mx?: string | number;
|
|
789
|
-
my?: string | number;
|
|
790
|
-
p?: string | number;
|
|
791
|
-
pt?: string | number;
|
|
792
|
-
pr?: string | number;
|
|
793
|
-
pb?: string | number;
|
|
794
|
-
pl?: string | number;
|
|
795
|
-
px?: string | number;
|
|
796
|
-
py?: string | number;
|
|
797
|
-
}, never>> & string;
|
|
775
|
+
} & React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
|
|
776
|
+
declare const Box: ({ children, ...props }: BoxProps) => react_jsx_runtime.JSX.Element;
|
|
798
777
|
|
|
799
778
|
type LineProps = FabricComponent<{
|
|
800
779
|
direction?: 'horizontal' | 'vertical';
|
|
@@ -825,7 +804,7 @@ type ContainerProps = FabricComponent<{
|
|
|
825
804
|
children: any;
|
|
826
805
|
maxWidth?: string | number;
|
|
827
806
|
}>;
|
|
828
|
-
declare const Container: ({ ...props }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
807
|
+
declare const Container: ({ maxWidth, ...props }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
829
808
|
|
|
830
809
|
interface Graph2DProps {
|
|
831
810
|
graphData?: GraphData;
|
|
@@ -842,11 +821,14 @@ interface Graph2DProps {
|
|
|
842
821
|
gridSpacing: number;
|
|
843
822
|
dotSize: number;
|
|
844
823
|
};
|
|
845
|
-
onNodeClick?: (node:
|
|
846
|
-
onLinkClick?: (link:
|
|
824
|
+
onNodeClick?: (node: NodeObject) => void;
|
|
825
|
+
onLinkClick?: (link: NodeObject) => void;
|
|
826
|
+
onNodeHover?: (node: NodeObject | null) => void;
|
|
827
|
+
onLinkHover?: (link: NodeObject | null) => void;
|
|
828
|
+
onBackgroundClick?: () => void;
|
|
847
829
|
}
|
|
848
830
|
|
|
849
|
-
declare const Graph2D: ({ graphData, width, height, linkTarget, linkSource, config, onNodeClick, onLinkClick, }: Graph2DProps) => react_jsx_runtime.JSX.Element;
|
|
831
|
+
declare const Graph2D: ({ graphData, width, height, linkTarget, linkSource, config, onNodeClick, onNodeHover, onLinkHover, onLinkClick, onBackgroundClick, }: Graph2DProps) => react_jsx_runtime.JSX.Element;
|
|
850
832
|
|
|
851
833
|
interface FullscreenCardProps {
|
|
852
834
|
children: any;
|
|
@@ -855,4 +837,4 @@ interface FullscreenCardProps {
|
|
|
855
837
|
}
|
|
856
838
|
declare const FullscreenCard: ({ isActive, position, ...props }: FullscreenCardProps) => react_jsx_runtime.JSX.Element;
|
|
857
839
|
|
|
858
|
-
export { type Action, AlertIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, BugReportIcon, Button, type ButtonColor, type ButtonElementStyle, type ButtonProps, type ButtonSize, type ButtonSizeStyle, type ButtonState, type ButtonVariant, CalendarIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ClosedLockIcon, type ColorVariant, type ColumnTable, Container, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, EditUserIcon, EmptyData, type EmptyDataProps, EnableVisibleIcon, EnterArrowLeftIcon, type FabricComponent, FiltersIcon, FlexContainer, FlexItem, FullscreenCard, GlobalStyle, Graph2D, type Graph2DProps, Header, HeaderDelimeter, HeaderSection, HomepageIcon, InfoCircleFilledIcon, InfoCircleIcon, Input, type InputElementStyle, type InputSize, type InputSizeStyle, type InputState, type InputVariant, Line, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MaximizeIcon, MoonIcon, type NestedColorPaths, OpenLockIcon, OrganizationIcon, PageLayout, Pagination, type PaginationProps, PasswordFinderIcon, PhonebookIcon, PlusIcon, PrintIcon, Profiler2Icon, ProfilerIcon, type RenderCellProps, type RenderHeaderCellProps, RowActionsMenu, SandBoxIcon, SearchIcon, Select, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, SunIcon, Table, type Theme, ThemeProvider, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, convertPaletteToRem, createComponent, darkTheme, getBreakpoint, getButtonSizeStyles, getButtonStyles, getTypographyStyles, lightTheme, lightThemePx, pxToRem, resolveThemeColor, useContextMenuControl };
|
|
840
|
+
export { type Action, AlertIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, Box, type Breakpoint, BugReportIcon, Button, type ButtonColor, type ButtonElementStyle, type ButtonProps, type ButtonSize, type ButtonSizeStyle, type ButtonState, type ButtonVariant, CalendarIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ClosedLockIcon, type ColorVariant, type ColumnTable, Container, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, EditUserIcon, EmptyData, type EmptyDataProps, EnableVisibleIcon, EnterArrowLeftIcon, type FabricComponent, FiltersIcon, FlexContainer, FlexItem, FullscreenCard, GlobalStyle, Graph2D, type Graph2DProps, Header, HeaderDelimeter, HeaderSection, HomepageIcon, InfoCircleFilledIcon, InfoCircleIcon, Input, type InputElementStyle, type InputProps, type InputSize, type InputSizeStyle, type InputState, type InputVariant, Line, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MaximizeIcon, MoonIcon, type NestedColorPaths, OpenLockIcon, OrganizationIcon, PageLayout, Pagination, type PaginationProps, PasswordFinderIcon, PhonebookIcon, PlusIcon, PrintIcon, Profiler2Icon, ProfilerIcon, type RenderCellProps, type RenderHeaderCellProps, RowActionsMenu, SandBoxIcon, SearchIcon, Select, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, SunIcon, Table, type Theme, ThemeProvider, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, convertPaletteToRem, createComponent, darkTheme, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getTypographyStyles, lightTheme, lightThemePx, pxToRem, resolveThemeColor, useContextMenuControl };
|