@cyber-harbour/ui 1.0.44 → 1.0.46
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 +71 -24
- package/dist/index.d.ts +71 -24
- package/dist/index.js +163 -139
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +163 -139
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -3
- package/src/Core/Input/Input.tsx +134 -14
- package/src/Graph2D/Graph2D.tsx +1439 -913
- package/src/Graph2D/GraphLoader.tsx +0 -4
- package/src/Graph2D/json_test.json +44443 -3684
- package/src/Graph2D/types.ts +69 -21
- package/src/Theme/themes/dark.ts +4 -0
- package/src/Theme/themes/light.ts +4 -0
- package/src/Theme/types.ts +2 -0
- package/src/Theme/utils.ts +10 -0
- package/dist/eye_light-3WS4REO5.png +0 -0
- package/dist/eye_light_hover-PVS4UAB4.png +0 -0
- package/dist/group_light-RVCSCGRJ.png +0 -0
- package/dist/group_light_hover-LVI5PRZM.png +0 -0
- /package/src/Graph2D/{eye_light.png → icons/eye_light.png} +0 -0
- /package/src/Graph2D/{eye_light_hover.png → icons/eye_light_hover.png} +0 -0
- /package/src/Graph2D/{group_light.png → icons/group_light.png} +0 -0
- /package/src/Graph2D/{group_light_hover.png → icons/group_light_hover.png} +0 -0
package/dist/index.d.mts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
|
-
import react__default, { SVGProps, CSSProperties as CSSProperties$1, ElementType, InputHTMLAttributes } from 'react';
|
|
3
|
+
import react__default, { SVGProps, CSSProperties as CSSProperties$1, ElementType, InputHTMLAttributes, TextareaHTMLAttributes } from 'react';
|
|
4
4
|
import * as styled_components from 'styled-components';
|
|
5
5
|
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, NodeObject } from 'react-force-graph-2d';
|
|
10
9
|
|
|
11
10
|
declare const GlobalStyle: react.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
|
12
11
|
|
|
@@ -59,6 +58,7 @@ type InputSizeStyle = {
|
|
|
59
58
|
borderRadius: number | string;
|
|
60
59
|
iconSize: number | string;
|
|
61
60
|
height: number | string;
|
|
61
|
+
lineHeight: number;
|
|
62
62
|
};
|
|
63
63
|
type Theme = {
|
|
64
64
|
mode: 'light' | 'dark';
|
|
@@ -216,6 +216,7 @@ type Theme = {
|
|
|
216
216
|
graph2D: {
|
|
217
217
|
ring: {
|
|
218
218
|
highlightFill: string;
|
|
219
|
+
selectionFill: string;
|
|
219
220
|
};
|
|
220
221
|
button: {
|
|
221
222
|
stroke: string;
|
|
@@ -262,6 +263,7 @@ declare const resolveThemeColor: (theme: DefaultTheme, colorPath: string | undef
|
|
|
262
263
|
* @returns The value in rem units as a string (e.g., "1.25rem")
|
|
263
264
|
*/
|
|
264
265
|
declare const pxToRem: (pxValue: number | string, baseSize?: number) => string;
|
|
266
|
+
declare const remToPx: (remValue: number | string, baseSize?: number) => number;
|
|
265
267
|
/**
|
|
266
268
|
* Recursively converts all pixel values in an object to rem units
|
|
267
269
|
*
|
|
@@ -764,13 +766,21 @@ interface RowActionsMenuProps {
|
|
|
764
766
|
}
|
|
765
767
|
declare const RowActionsMenu: ({ size, disabled, className, positions, align, items, }: RowActionsMenuProps) => react_jsx_runtime.JSX.Element;
|
|
766
768
|
|
|
767
|
-
type
|
|
769
|
+
type BaseInputProps = {
|
|
768
770
|
error?: boolean;
|
|
769
771
|
append?: any;
|
|
770
772
|
prepend?: any;
|
|
771
773
|
size?: InputSize;
|
|
772
774
|
variant?: InputVariant;
|
|
773
775
|
};
|
|
776
|
+
type InputElementProps = BaseInputProps & InputHTMLAttributes<HTMLInputElement> & {
|
|
777
|
+
multiline?: false;
|
|
778
|
+
};
|
|
779
|
+
type TextAreaElementProps = BaseInputProps & TextareaHTMLAttributes<HTMLTextAreaElement> & {
|
|
780
|
+
multiline: true;
|
|
781
|
+
autoResize?: boolean;
|
|
782
|
+
};
|
|
783
|
+
type InputProps = InputElementProps | TextAreaElementProps;
|
|
774
784
|
declare const Input: any;
|
|
775
785
|
|
|
776
786
|
declare const FlexContainer: any;
|
|
@@ -828,31 +838,68 @@ type ContainerProps = FabricComponent<{
|
|
|
828
838
|
}>;
|
|
829
839
|
declare const Container: ({ maxWidth, ...props }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
830
840
|
|
|
841
|
+
declare const Graph2D: any;
|
|
842
|
+
|
|
843
|
+
interface Graph2DRef {
|
|
844
|
+
/**
|
|
845
|
+
* Масштабирует график так, чтобы все узлы были видны
|
|
846
|
+
* @param duration Длительность анимации масштабирования в миллисекундах
|
|
847
|
+
* @param padding Отступ от краев в пикселях
|
|
848
|
+
*/
|
|
849
|
+
zoomToFit: (duration?: number, padding?: number) => void;
|
|
850
|
+
/**
|
|
851
|
+
* Добавляет новые узлы и связи на график
|
|
852
|
+
* @param newNodes Массив новых узлов для добавления
|
|
853
|
+
* @param newLinks Массив новых связей для добавления
|
|
854
|
+
* @param options Опции для настройки поведения при добавлении
|
|
855
|
+
* - smoothAppearance: если true, существующие узлы не будут двигаться,
|
|
856
|
+
* а новые появятся плавно рядом со связанными узлами
|
|
857
|
+
* - transitionDuration: длительность анимации появления новых узлов в миллисекундах
|
|
858
|
+
*/
|
|
859
|
+
addNodes: (newNodes: NodeObject[], newLinks?: LinkObject[], options?: {
|
|
860
|
+
smoothAppearance?: boolean;
|
|
861
|
+
transitionDuration?: number;
|
|
862
|
+
}) => void;
|
|
863
|
+
/**
|
|
864
|
+
* Удаляет узлы и связанные с ними связи из графа
|
|
865
|
+
* @param nodeIds Массив идентификаторов узлов для удаления
|
|
866
|
+
*/
|
|
867
|
+
removeNodes: (nodeIds: (string | number)[]) => void;
|
|
868
|
+
}
|
|
831
869
|
interface Graph2DProps {
|
|
832
|
-
graphData
|
|
833
|
-
linkSource?: string;
|
|
834
|
-
linkTarget?: string;
|
|
870
|
+
graphData: GraphData;
|
|
835
871
|
loading?: boolean;
|
|
836
|
-
width
|
|
837
|
-
height
|
|
838
|
-
|
|
839
|
-
fontSize: number;
|
|
840
|
-
maxZoom: number;
|
|
841
|
-
nodeSizeBase: number;
|
|
842
|
-
nodeAreaFactor: number;
|
|
843
|
-
textPaddingFactor: number;
|
|
844
|
-
gridSpacing: number;
|
|
845
|
-
dotSize: number;
|
|
846
|
-
};
|
|
872
|
+
width: number;
|
|
873
|
+
height: number;
|
|
874
|
+
buttons?: NodeButton[];
|
|
847
875
|
onNodeClick?: (node: NodeObject) => void;
|
|
848
|
-
onLinkClick?: (link: NodeObject) => void;
|
|
849
|
-
onNodeHover?: (node: NodeObject | null) => void;
|
|
850
|
-
onLinkHover?: (link: NodeObject | null) => void;
|
|
851
876
|
onBackgroundClick?: () => void;
|
|
852
|
-
|
|
877
|
+
onNodeHover?: (node: NodeObject | null) => void;
|
|
853
878
|
}
|
|
854
|
-
|
|
855
|
-
|
|
879
|
+
interface NodeButton {
|
|
880
|
+
img: string;
|
|
881
|
+
hoverImg: string;
|
|
882
|
+
onClick: (node: NodeObject) => void;
|
|
883
|
+
}
|
|
884
|
+
type GraphData<NodeType = {}, LinkType = {}> = {
|
|
885
|
+
nodes: NodeObject<NodeType>[];
|
|
886
|
+
links: LinkObject<NodeType, LinkType>[];
|
|
887
|
+
};
|
|
888
|
+
type NodeObject<NodeType = {}> = NodeType & {
|
|
889
|
+
id?: string | number;
|
|
890
|
+
x?: number;
|
|
891
|
+
y?: number;
|
|
892
|
+
vx?: number;
|
|
893
|
+
vy?: number;
|
|
894
|
+
fx?: number;
|
|
895
|
+
fy?: number;
|
|
896
|
+
[others: string]: any;
|
|
897
|
+
};
|
|
898
|
+
type LinkObject<NodeType = {}, LinkType = {}> = LinkType & {
|
|
899
|
+
source: string | number | NodeObject<NodeType>;
|
|
900
|
+
target: string | number | NodeObject<NodeType>;
|
|
901
|
+
[others: string]: any;
|
|
902
|
+
};
|
|
856
903
|
|
|
857
904
|
interface FullscreenCardProps {
|
|
858
905
|
children: any;
|
|
@@ -866,4 +913,4 @@ interface FullscreenCardProps {
|
|
|
866
913
|
}
|
|
867
914
|
declare const FullscreenCard: ({ isActive, position, top, left, right, bottom, ...props }: FullscreenCardProps) => react_jsx_runtime.JSX.Element;
|
|
868
915
|
|
|
869
|
-
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, CloseCircleIcon, 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, type ThemeMode, ThemeProvider, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, convertPaletteToRem, createComponent, darkTheme, darkThemePx, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getTypographyStyles, lightTheme, lightThemePx, pxToRem, resolveThemeColor, useContextMenuControl };
|
|
916
|
+
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, CloseCircleIcon, 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, type Graph2DRef, type GraphData, 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, 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 TextAreaElementProps, type Theme, type ThemeMode, ThemeProvider, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, convertPaletteToRem, createComponent, darkTheme, darkThemePx, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getTypographyStyles, lightTheme, lightThemePx, pxToRem, remToPx, resolveThemeColor, useContextMenuControl };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
|
-
import react__default, { SVGProps, CSSProperties as CSSProperties$1, ElementType, InputHTMLAttributes } from 'react';
|
|
3
|
+
import react__default, { SVGProps, CSSProperties as CSSProperties$1, ElementType, InputHTMLAttributes, TextareaHTMLAttributes } from 'react';
|
|
4
4
|
import * as styled_components from 'styled-components';
|
|
5
5
|
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, NodeObject } from 'react-force-graph-2d';
|
|
10
9
|
|
|
11
10
|
declare const GlobalStyle: react.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
|
12
11
|
|
|
@@ -59,6 +58,7 @@ type InputSizeStyle = {
|
|
|
59
58
|
borderRadius: number | string;
|
|
60
59
|
iconSize: number | string;
|
|
61
60
|
height: number | string;
|
|
61
|
+
lineHeight: number;
|
|
62
62
|
};
|
|
63
63
|
type Theme = {
|
|
64
64
|
mode: 'light' | 'dark';
|
|
@@ -216,6 +216,7 @@ type Theme = {
|
|
|
216
216
|
graph2D: {
|
|
217
217
|
ring: {
|
|
218
218
|
highlightFill: string;
|
|
219
|
+
selectionFill: string;
|
|
219
220
|
};
|
|
220
221
|
button: {
|
|
221
222
|
stroke: string;
|
|
@@ -262,6 +263,7 @@ declare const resolveThemeColor: (theme: DefaultTheme, colorPath: string | undef
|
|
|
262
263
|
* @returns The value in rem units as a string (e.g., "1.25rem")
|
|
263
264
|
*/
|
|
264
265
|
declare const pxToRem: (pxValue: number | string, baseSize?: number) => string;
|
|
266
|
+
declare const remToPx: (remValue: number | string, baseSize?: number) => number;
|
|
265
267
|
/**
|
|
266
268
|
* Recursively converts all pixel values in an object to rem units
|
|
267
269
|
*
|
|
@@ -764,13 +766,21 @@ interface RowActionsMenuProps {
|
|
|
764
766
|
}
|
|
765
767
|
declare const RowActionsMenu: ({ size, disabled, className, positions, align, items, }: RowActionsMenuProps) => react_jsx_runtime.JSX.Element;
|
|
766
768
|
|
|
767
|
-
type
|
|
769
|
+
type BaseInputProps = {
|
|
768
770
|
error?: boolean;
|
|
769
771
|
append?: any;
|
|
770
772
|
prepend?: any;
|
|
771
773
|
size?: InputSize;
|
|
772
774
|
variant?: InputVariant;
|
|
773
775
|
};
|
|
776
|
+
type InputElementProps = BaseInputProps & InputHTMLAttributes<HTMLInputElement> & {
|
|
777
|
+
multiline?: false;
|
|
778
|
+
};
|
|
779
|
+
type TextAreaElementProps = BaseInputProps & TextareaHTMLAttributes<HTMLTextAreaElement> & {
|
|
780
|
+
multiline: true;
|
|
781
|
+
autoResize?: boolean;
|
|
782
|
+
};
|
|
783
|
+
type InputProps = InputElementProps | TextAreaElementProps;
|
|
774
784
|
declare const Input: any;
|
|
775
785
|
|
|
776
786
|
declare const FlexContainer: any;
|
|
@@ -828,31 +838,68 @@ type ContainerProps = FabricComponent<{
|
|
|
828
838
|
}>;
|
|
829
839
|
declare const Container: ({ maxWidth, ...props }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
830
840
|
|
|
841
|
+
declare const Graph2D: any;
|
|
842
|
+
|
|
843
|
+
interface Graph2DRef {
|
|
844
|
+
/**
|
|
845
|
+
* Масштабирует график так, чтобы все узлы были видны
|
|
846
|
+
* @param duration Длительность анимации масштабирования в миллисекундах
|
|
847
|
+
* @param padding Отступ от краев в пикселях
|
|
848
|
+
*/
|
|
849
|
+
zoomToFit: (duration?: number, padding?: number) => void;
|
|
850
|
+
/**
|
|
851
|
+
* Добавляет новые узлы и связи на график
|
|
852
|
+
* @param newNodes Массив новых узлов для добавления
|
|
853
|
+
* @param newLinks Массив новых связей для добавления
|
|
854
|
+
* @param options Опции для настройки поведения при добавлении
|
|
855
|
+
* - smoothAppearance: если true, существующие узлы не будут двигаться,
|
|
856
|
+
* а новые появятся плавно рядом со связанными узлами
|
|
857
|
+
* - transitionDuration: длительность анимации появления новых узлов в миллисекундах
|
|
858
|
+
*/
|
|
859
|
+
addNodes: (newNodes: NodeObject[], newLinks?: LinkObject[], options?: {
|
|
860
|
+
smoothAppearance?: boolean;
|
|
861
|
+
transitionDuration?: number;
|
|
862
|
+
}) => void;
|
|
863
|
+
/**
|
|
864
|
+
* Удаляет узлы и связанные с ними связи из графа
|
|
865
|
+
* @param nodeIds Массив идентификаторов узлов для удаления
|
|
866
|
+
*/
|
|
867
|
+
removeNodes: (nodeIds: (string | number)[]) => void;
|
|
868
|
+
}
|
|
831
869
|
interface Graph2DProps {
|
|
832
|
-
graphData
|
|
833
|
-
linkSource?: string;
|
|
834
|
-
linkTarget?: string;
|
|
870
|
+
graphData: GraphData;
|
|
835
871
|
loading?: boolean;
|
|
836
|
-
width
|
|
837
|
-
height
|
|
838
|
-
|
|
839
|
-
fontSize: number;
|
|
840
|
-
maxZoom: number;
|
|
841
|
-
nodeSizeBase: number;
|
|
842
|
-
nodeAreaFactor: number;
|
|
843
|
-
textPaddingFactor: number;
|
|
844
|
-
gridSpacing: number;
|
|
845
|
-
dotSize: number;
|
|
846
|
-
};
|
|
872
|
+
width: number;
|
|
873
|
+
height: number;
|
|
874
|
+
buttons?: NodeButton[];
|
|
847
875
|
onNodeClick?: (node: NodeObject) => void;
|
|
848
|
-
onLinkClick?: (link: NodeObject) => void;
|
|
849
|
-
onNodeHover?: (node: NodeObject | null) => void;
|
|
850
|
-
onLinkHover?: (link: NodeObject | null) => void;
|
|
851
876
|
onBackgroundClick?: () => void;
|
|
852
|
-
|
|
877
|
+
onNodeHover?: (node: NodeObject | null) => void;
|
|
853
878
|
}
|
|
854
|
-
|
|
855
|
-
|
|
879
|
+
interface NodeButton {
|
|
880
|
+
img: string;
|
|
881
|
+
hoverImg: string;
|
|
882
|
+
onClick: (node: NodeObject) => void;
|
|
883
|
+
}
|
|
884
|
+
type GraphData<NodeType = {}, LinkType = {}> = {
|
|
885
|
+
nodes: NodeObject<NodeType>[];
|
|
886
|
+
links: LinkObject<NodeType, LinkType>[];
|
|
887
|
+
};
|
|
888
|
+
type NodeObject<NodeType = {}> = NodeType & {
|
|
889
|
+
id?: string | number;
|
|
890
|
+
x?: number;
|
|
891
|
+
y?: number;
|
|
892
|
+
vx?: number;
|
|
893
|
+
vy?: number;
|
|
894
|
+
fx?: number;
|
|
895
|
+
fy?: number;
|
|
896
|
+
[others: string]: any;
|
|
897
|
+
};
|
|
898
|
+
type LinkObject<NodeType = {}, LinkType = {}> = LinkType & {
|
|
899
|
+
source: string | number | NodeObject<NodeType>;
|
|
900
|
+
target: string | number | NodeObject<NodeType>;
|
|
901
|
+
[others: string]: any;
|
|
902
|
+
};
|
|
856
903
|
|
|
857
904
|
interface FullscreenCardProps {
|
|
858
905
|
children: any;
|
|
@@ -866,4 +913,4 @@ interface FullscreenCardProps {
|
|
|
866
913
|
}
|
|
867
914
|
declare const FullscreenCard: ({ isActive, position, top, left, right, bottom, ...props }: FullscreenCardProps) => react_jsx_runtime.JSX.Element;
|
|
868
915
|
|
|
869
|
-
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, CloseCircleIcon, 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, type ThemeMode, ThemeProvider, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, convertPaletteToRem, createComponent, darkTheme, darkThemePx, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getTypographyStyles, lightTheme, lightThemePx, pxToRem, resolveThemeColor, useContextMenuControl };
|
|
916
|
+
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, CloseCircleIcon, 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, type Graph2DRef, type GraphData, 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, 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 TextAreaElementProps, type Theme, type ThemeMode, ThemeProvider, Typography, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, convertPaletteToRem, createComponent, darkTheme, darkThemePx, getBreakpoint, getButtonSizeStyles, getButtonStyles, getInputStyles, getTypographyStyles, lightTheme, lightThemePx, pxToRem, remToPx, resolveThemeColor, useContextMenuControl };
|