@cyber-harbour/ui 1.0.23 → 1.0.25
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 +55 -12
- package/dist/index.d.ts +55 -12
- package/dist/index.js +116 -39
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +112 -35
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/Core/IconComponents/Check.tsx +5 -2
- package/src/Core/IconComponents/Cross.tsx +16 -0
- package/src/Core/IconComponents/InfoCircleFilled.tsx +18 -0
- package/src/Core/IconComponents/Unfold.tsx +20 -0
- package/src/Core/IconComponents/index.ts +3 -0
- package/src/Core/Input/Input.tsx +133 -0
- package/src/Core/Input/index.ts +1 -0
- package/src/Core/index.ts +1 -0
- package/src/Theme/theme.ts +55 -0
- package/src/Theme/types.ts +28 -2
- package/src/Theme/utils.ts +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
|
-
import react__default, { SVGProps, ElementType, CSSProperties as CSSProperties$1 } from 'react';
|
|
3
|
+
import react__default, { SVGProps, ElementType, CSSProperties as CSSProperties$1, InputHTMLAttributes } from 'react';
|
|
4
4
|
import * as styled_components from 'styled-components';
|
|
5
5
|
import { CSSProperties, DefaultTheme } from 'styled-components';
|
|
6
6
|
import { PopoverPosition, PopoverAlign } from 'react-tiny-popover';
|
|
@@ -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 = '
|
|
21
|
+
type InputVariant = 'outlined';
|
|
22
22
|
type InputState = 'default' | 'focus' | 'error' | 'disabled';
|
|
23
|
-
type InputSize = 'small' | 'medium'
|
|
23
|
+
type InputSize = 'small' | 'medium';
|
|
24
24
|
type Breakpoint = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
25
25
|
type ButtonElementStyle = {
|
|
26
26
|
background: string;
|
|
@@ -37,6 +37,22 @@ type ButtonSizeStyle = {
|
|
|
37
37
|
gap: number | string;
|
|
38
38
|
iconSize: number | string;
|
|
39
39
|
};
|
|
40
|
+
type InputElementStyle = {
|
|
41
|
+
background: string;
|
|
42
|
+
text: string;
|
|
43
|
+
placeholder: string;
|
|
44
|
+
border: string;
|
|
45
|
+
boxShadow: string;
|
|
46
|
+
icon: string;
|
|
47
|
+
};
|
|
48
|
+
type InputSizeStyle = {
|
|
49
|
+
fontSize: number | string;
|
|
50
|
+
paddingInline: number | string;
|
|
51
|
+
paddingBlock: number | string;
|
|
52
|
+
borderRadius: number | string;
|
|
53
|
+
iconSize: number | string;
|
|
54
|
+
height: number | string;
|
|
55
|
+
};
|
|
40
56
|
type Theme = {
|
|
41
57
|
mode: 'light' | 'dark';
|
|
42
58
|
colors: {
|
|
@@ -168,6 +184,10 @@ type Theme = {
|
|
|
168
184
|
size: number | string;
|
|
169
185
|
};
|
|
170
186
|
};
|
|
187
|
+
input: {
|
|
188
|
+
sizes: Record<InputSize, InputSizeStyle>;
|
|
189
|
+
outlined: Record<InputState, InputElementStyle>;
|
|
190
|
+
};
|
|
171
191
|
};
|
|
172
192
|
type ThemeColors = Theme['colors'];
|
|
173
193
|
type ColorCategory = keyof ThemeColors;
|
|
@@ -289,10 +309,10 @@ interface ClosedLockIconProps extends SVGProps<SVGSVGElement> {
|
|
|
289
309
|
}
|
|
290
310
|
declare const ClosedLockIcon: ({ fill, ...props }: ClosedLockIconProps) => react_jsx_runtime.JSX.Element;
|
|
291
311
|
|
|
292
|
-
interface DataSetsIconProps extends SVGProps<SVGSVGElement> {
|
|
312
|
+
interface DataSetsIconProps$2 extends SVGProps<SVGSVGElement> {
|
|
293
313
|
fill?: string;
|
|
294
314
|
}
|
|
295
|
-
declare const DataSetsIcon: ({ fill, ...props }: DataSetsIconProps) => react_jsx_runtime.JSX.Element;
|
|
315
|
+
declare const DataSetsIcon: ({ fill, ...props }: DataSetsIconProps$2) => react_jsx_runtime.JSX.Element;
|
|
296
316
|
|
|
297
317
|
interface DeepSearchIconProps extends SVGProps<SVGSVGElement> {
|
|
298
318
|
fill?: string;
|
|
@@ -339,10 +359,10 @@ interface HomepageIconProps extends SVGProps<SVGSVGElement> {
|
|
|
339
359
|
}
|
|
340
360
|
declare const HomepageIcon: ({ fill, ...props }: HomepageIconProps) => react_jsx_runtime.JSX.Element;
|
|
341
361
|
|
|
342
|
-
interface InfoCircleIconProps$
|
|
362
|
+
interface InfoCircleIconProps$3 extends SVGProps<SVGSVGElement> {
|
|
343
363
|
fill?: string;
|
|
344
364
|
}
|
|
345
|
-
declare const InfoCircleIcon: ({ fill, ...props }: InfoCircleIconProps$
|
|
365
|
+
declare const InfoCircleIcon: ({ fill, ...props }: InfoCircleIconProps$3) => react_jsx_runtime.JSX.Element;
|
|
346
366
|
|
|
347
367
|
interface MapRadarIconProps extends SVGProps<SVGSVGElement> {
|
|
348
368
|
fill?: string;
|
|
@@ -415,15 +435,15 @@ interface VectorIconProps extends SVGProps<SVGSVGElement> {
|
|
|
415
435
|
}
|
|
416
436
|
declare const VectorIcon: ({ fill, ...props }: VectorIconProps) => react_jsx_runtime.JSX.Element;
|
|
417
437
|
|
|
418
|
-
interface InfoCircleIconProps$
|
|
438
|
+
interface InfoCircleIconProps$2 extends SVGProps<SVGSVGElement> {
|
|
419
439
|
fill?: string;
|
|
420
440
|
}
|
|
421
|
-
declare const BallsMenu: ({ fill, ...props }: InfoCircleIconProps$
|
|
441
|
+
declare const BallsMenu: ({ fill, ...props }: InfoCircleIconProps$2) => react_jsx_runtime.JSX.Element;
|
|
422
442
|
|
|
423
|
-
interface InfoCircleIconProps extends SVGProps<SVGSVGElement> {
|
|
443
|
+
interface InfoCircleIconProps$1 extends SVGProps<SVGSVGElement> {
|
|
424
444
|
fill?: string;
|
|
425
445
|
}
|
|
426
|
-
declare const CheckIcon: ({ fill, ...props }: InfoCircleIconProps) => react_jsx_runtime.JSX.Element;
|
|
446
|
+
declare const CheckIcon: ({ fill, ...props }: InfoCircleIconProps$1) => react_jsx_runtime.JSX.Element;
|
|
427
447
|
|
|
428
448
|
interface ChevronRightIconProps$1 extends SVGProps<SVGSVGElement> {
|
|
429
449
|
fill?: string;
|
|
@@ -445,6 +465,21 @@ interface PrintIconProps extends SVGProps<SVGSVGElement> {
|
|
|
445
465
|
}
|
|
446
466
|
declare const UsersIcon: ({ fill, ...props }: PrintIconProps) => react_jsx_runtime.JSX.Element;
|
|
447
467
|
|
|
468
|
+
interface InfoCircleIconProps extends SVGProps<SVGSVGElement> {
|
|
469
|
+
fill?: string;
|
|
470
|
+
}
|
|
471
|
+
declare const InfoCircleFilledIcon: ({ fill, ...props }: InfoCircleIconProps) => react_jsx_runtime.JSX.Element;
|
|
472
|
+
|
|
473
|
+
interface DataSetsIconProps$1 extends SVGProps<SVGSVGElement> {
|
|
474
|
+
fill?: string;
|
|
475
|
+
}
|
|
476
|
+
declare const UnfoldIcon: ({ fill, ...props }: DataSetsIconProps$1) => react_jsx_runtime.JSX.Element;
|
|
477
|
+
|
|
478
|
+
interface DataSetsIconProps extends SVGProps<SVGSVGElement> {
|
|
479
|
+
fill?: string;
|
|
480
|
+
}
|
|
481
|
+
declare const CrossIcon: ({ fill, ...props }: DataSetsIconProps) => react_jsx_runtime.JSX.Element;
|
|
482
|
+
|
|
448
483
|
interface SidebarProps {
|
|
449
484
|
defaultCollapsed?: boolean;
|
|
450
485
|
children: any;
|
|
@@ -632,6 +667,14 @@ interface RowActionsMenuProps {
|
|
|
632
667
|
}
|
|
633
668
|
declare const RowActionsMenu: ({ size, disabled, className, positions, align, items, }: RowActionsMenuProps) => react_jsx_runtime.JSX.Element;
|
|
634
669
|
|
|
670
|
+
type InputProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'size'> & {
|
|
671
|
+
error?: boolean;
|
|
672
|
+
append?: any;
|
|
673
|
+
prepend?: any;
|
|
674
|
+
size?: InputSize;
|
|
675
|
+
};
|
|
676
|
+
declare const Input: ({ error, append, prepend, size, disabled, className, ...props }: InputProps) => react_jsx_runtime.JSX.Element;
|
|
677
|
+
|
|
635
678
|
interface PageLayoutProps {
|
|
636
679
|
header?: any;
|
|
637
680
|
sidebar?: any;
|
|
@@ -662,4 +705,4 @@ interface Graph2DProps {
|
|
|
662
705
|
|
|
663
706
|
declare const Graph2D: ({ graphData, width, height, linkTarget, linkSource, config, onNodeClick, onLinkClick, }: Graph2DProps) => react_jsx_runtime.JSX.Element;
|
|
664
707
|
|
|
665
|
-
export { type Action, AlertIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, 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, ContextMenu, ContextMenuDelimiter, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, EditUserIcon, EnableVisibleIcon, EnterArrowLeftIcon, FiltersIcon, GlobalStyle, Graph2D, type Graph2DProps, Header, HeaderDelimeter, HeaderSection, HomepageIcon, InfoCircleIcon, type InputSize, type InputState, type InputVariant, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MoonIcon, type NestedColorPaths, OpenLockIcon, OrganizationIcon, PageLayout, Pagination, type PaginationProps, PasswordFinderIcon, PhonebookIcon, PlusIcon, PrintIcon, Profiler2Icon, ProfilerIcon, type RenderCellProps, type RenderHeaderCellProps, RowActionsMenu, SandBoxIcon, Select, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, SunIcon, Table, type Theme, ThemeProvider, Typography, type TypographyProps, type TypographyVariant, UpRightArrowCircleIcon, UsersIcon, VectorIcon, convertPaletteToRem, darkTheme, getBreakpoint, getButtonSizeStyles, getButtonStyles, getTypographyStyles, lightTheme, lightThemePx, pxToRem, resolveThemeColor, useContextMenuControl };
|
|
708
|
+
export { type Action, AlertIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, 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, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, EditUserIcon, EnableVisibleIcon, EnterArrowLeftIcon, FiltersIcon, GlobalStyle, Graph2D, type Graph2DProps, Header, HeaderDelimeter, HeaderSection, HomepageIcon, InfoCircleFilledIcon, InfoCircleIcon, Input, type InputElementStyle, type InputSize, type InputSizeStyle, type InputState, type InputVariant, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MoonIcon, type NestedColorPaths, OpenLockIcon, OrganizationIcon, PageLayout, Pagination, type PaginationProps, PasswordFinderIcon, PhonebookIcon, PlusIcon, PrintIcon, Profiler2Icon, ProfilerIcon, type RenderCellProps, type RenderHeaderCellProps, RowActionsMenu, SandBoxIcon, Select, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, SunIcon, Table, type Theme, ThemeProvider, Typography, type TypographyProps, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, convertPaletteToRem, darkTheme, getBreakpoint, getButtonSizeStyles, getButtonStyles, getTypographyStyles, lightTheme, lightThemePx, pxToRem, resolveThemeColor, useContextMenuControl };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
|
-
import react__default, { SVGProps, ElementType, CSSProperties as CSSProperties$1 } from 'react';
|
|
3
|
+
import react__default, { SVGProps, ElementType, CSSProperties as CSSProperties$1, InputHTMLAttributes } from 'react';
|
|
4
4
|
import * as styled_components from 'styled-components';
|
|
5
5
|
import { CSSProperties, DefaultTheme } from 'styled-components';
|
|
6
6
|
import { PopoverPosition, PopoverAlign } from 'react-tiny-popover';
|
|
@@ -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 = '
|
|
21
|
+
type InputVariant = 'outlined';
|
|
22
22
|
type InputState = 'default' | 'focus' | 'error' | 'disabled';
|
|
23
|
-
type InputSize = 'small' | 'medium'
|
|
23
|
+
type InputSize = 'small' | 'medium';
|
|
24
24
|
type Breakpoint = 'xs' | 's' | 'm' | 'l' | 'xl';
|
|
25
25
|
type ButtonElementStyle = {
|
|
26
26
|
background: string;
|
|
@@ -37,6 +37,22 @@ type ButtonSizeStyle = {
|
|
|
37
37
|
gap: number | string;
|
|
38
38
|
iconSize: number | string;
|
|
39
39
|
};
|
|
40
|
+
type InputElementStyle = {
|
|
41
|
+
background: string;
|
|
42
|
+
text: string;
|
|
43
|
+
placeholder: string;
|
|
44
|
+
border: string;
|
|
45
|
+
boxShadow: string;
|
|
46
|
+
icon: string;
|
|
47
|
+
};
|
|
48
|
+
type InputSizeStyle = {
|
|
49
|
+
fontSize: number | string;
|
|
50
|
+
paddingInline: number | string;
|
|
51
|
+
paddingBlock: number | string;
|
|
52
|
+
borderRadius: number | string;
|
|
53
|
+
iconSize: number | string;
|
|
54
|
+
height: number | string;
|
|
55
|
+
};
|
|
40
56
|
type Theme = {
|
|
41
57
|
mode: 'light' | 'dark';
|
|
42
58
|
colors: {
|
|
@@ -168,6 +184,10 @@ type Theme = {
|
|
|
168
184
|
size: number | string;
|
|
169
185
|
};
|
|
170
186
|
};
|
|
187
|
+
input: {
|
|
188
|
+
sizes: Record<InputSize, InputSizeStyle>;
|
|
189
|
+
outlined: Record<InputState, InputElementStyle>;
|
|
190
|
+
};
|
|
171
191
|
};
|
|
172
192
|
type ThemeColors = Theme['colors'];
|
|
173
193
|
type ColorCategory = keyof ThemeColors;
|
|
@@ -289,10 +309,10 @@ interface ClosedLockIconProps extends SVGProps<SVGSVGElement> {
|
|
|
289
309
|
}
|
|
290
310
|
declare const ClosedLockIcon: ({ fill, ...props }: ClosedLockIconProps) => react_jsx_runtime.JSX.Element;
|
|
291
311
|
|
|
292
|
-
interface DataSetsIconProps extends SVGProps<SVGSVGElement> {
|
|
312
|
+
interface DataSetsIconProps$2 extends SVGProps<SVGSVGElement> {
|
|
293
313
|
fill?: string;
|
|
294
314
|
}
|
|
295
|
-
declare const DataSetsIcon: ({ fill, ...props }: DataSetsIconProps) => react_jsx_runtime.JSX.Element;
|
|
315
|
+
declare const DataSetsIcon: ({ fill, ...props }: DataSetsIconProps$2) => react_jsx_runtime.JSX.Element;
|
|
296
316
|
|
|
297
317
|
interface DeepSearchIconProps extends SVGProps<SVGSVGElement> {
|
|
298
318
|
fill?: string;
|
|
@@ -339,10 +359,10 @@ interface HomepageIconProps extends SVGProps<SVGSVGElement> {
|
|
|
339
359
|
}
|
|
340
360
|
declare const HomepageIcon: ({ fill, ...props }: HomepageIconProps) => react_jsx_runtime.JSX.Element;
|
|
341
361
|
|
|
342
|
-
interface InfoCircleIconProps$
|
|
362
|
+
interface InfoCircleIconProps$3 extends SVGProps<SVGSVGElement> {
|
|
343
363
|
fill?: string;
|
|
344
364
|
}
|
|
345
|
-
declare const InfoCircleIcon: ({ fill, ...props }: InfoCircleIconProps$
|
|
365
|
+
declare const InfoCircleIcon: ({ fill, ...props }: InfoCircleIconProps$3) => react_jsx_runtime.JSX.Element;
|
|
346
366
|
|
|
347
367
|
interface MapRadarIconProps extends SVGProps<SVGSVGElement> {
|
|
348
368
|
fill?: string;
|
|
@@ -415,15 +435,15 @@ interface VectorIconProps extends SVGProps<SVGSVGElement> {
|
|
|
415
435
|
}
|
|
416
436
|
declare const VectorIcon: ({ fill, ...props }: VectorIconProps) => react_jsx_runtime.JSX.Element;
|
|
417
437
|
|
|
418
|
-
interface InfoCircleIconProps$
|
|
438
|
+
interface InfoCircleIconProps$2 extends SVGProps<SVGSVGElement> {
|
|
419
439
|
fill?: string;
|
|
420
440
|
}
|
|
421
|
-
declare const BallsMenu: ({ fill, ...props }: InfoCircleIconProps$
|
|
441
|
+
declare const BallsMenu: ({ fill, ...props }: InfoCircleIconProps$2) => react_jsx_runtime.JSX.Element;
|
|
422
442
|
|
|
423
|
-
interface InfoCircleIconProps extends SVGProps<SVGSVGElement> {
|
|
443
|
+
interface InfoCircleIconProps$1 extends SVGProps<SVGSVGElement> {
|
|
424
444
|
fill?: string;
|
|
425
445
|
}
|
|
426
|
-
declare const CheckIcon: ({ fill, ...props }: InfoCircleIconProps) => react_jsx_runtime.JSX.Element;
|
|
446
|
+
declare const CheckIcon: ({ fill, ...props }: InfoCircleIconProps$1) => react_jsx_runtime.JSX.Element;
|
|
427
447
|
|
|
428
448
|
interface ChevronRightIconProps$1 extends SVGProps<SVGSVGElement> {
|
|
429
449
|
fill?: string;
|
|
@@ -445,6 +465,21 @@ interface PrintIconProps extends SVGProps<SVGSVGElement> {
|
|
|
445
465
|
}
|
|
446
466
|
declare const UsersIcon: ({ fill, ...props }: PrintIconProps) => react_jsx_runtime.JSX.Element;
|
|
447
467
|
|
|
468
|
+
interface InfoCircleIconProps extends SVGProps<SVGSVGElement> {
|
|
469
|
+
fill?: string;
|
|
470
|
+
}
|
|
471
|
+
declare const InfoCircleFilledIcon: ({ fill, ...props }: InfoCircleIconProps) => react_jsx_runtime.JSX.Element;
|
|
472
|
+
|
|
473
|
+
interface DataSetsIconProps$1 extends SVGProps<SVGSVGElement> {
|
|
474
|
+
fill?: string;
|
|
475
|
+
}
|
|
476
|
+
declare const UnfoldIcon: ({ fill, ...props }: DataSetsIconProps$1) => react_jsx_runtime.JSX.Element;
|
|
477
|
+
|
|
478
|
+
interface DataSetsIconProps extends SVGProps<SVGSVGElement> {
|
|
479
|
+
fill?: string;
|
|
480
|
+
}
|
|
481
|
+
declare const CrossIcon: ({ fill, ...props }: DataSetsIconProps) => react_jsx_runtime.JSX.Element;
|
|
482
|
+
|
|
448
483
|
interface SidebarProps {
|
|
449
484
|
defaultCollapsed?: boolean;
|
|
450
485
|
children: any;
|
|
@@ -632,6 +667,14 @@ interface RowActionsMenuProps {
|
|
|
632
667
|
}
|
|
633
668
|
declare const RowActionsMenu: ({ size, disabled, className, positions, align, items, }: RowActionsMenuProps) => react_jsx_runtime.JSX.Element;
|
|
634
669
|
|
|
670
|
+
type InputProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'size'> & {
|
|
671
|
+
error?: boolean;
|
|
672
|
+
append?: any;
|
|
673
|
+
prepend?: any;
|
|
674
|
+
size?: InputSize;
|
|
675
|
+
};
|
|
676
|
+
declare const Input: ({ error, append, prepend, size, disabled, className, ...props }: InputProps) => react_jsx_runtime.JSX.Element;
|
|
677
|
+
|
|
635
678
|
interface PageLayoutProps {
|
|
636
679
|
header?: any;
|
|
637
680
|
sidebar?: any;
|
|
@@ -662,4 +705,4 @@ interface Graph2DProps {
|
|
|
662
705
|
|
|
663
706
|
declare const Graph2D: ({ graphData, width, height, linkTarget, linkSource, config, onNodeClick, onLinkClick, }: Graph2DProps) => react_jsx_runtime.JSX.Element;
|
|
664
707
|
|
|
665
|
-
export { type Action, AlertIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, 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, ContextMenu, ContextMenuDelimiter, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, EditUserIcon, EnableVisibleIcon, EnterArrowLeftIcon, FiltersIcon, GlobalStyle, Graph2D, type Graph2DProps, Header, HeaderDelimeter, HeaderSection, HomepageIcon, InfoCircleIcon, type InputSize, type InputState, type InputVariant, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MoonIcon, type NestedColorPaths, OpenLockIcon, OrganizationIcon, PageLayout, Pagination, type PaginationProps, PasswordFinderIcon, PhonebookIcon, PlusIcon, PrintIcon, Profiler2Icon, ProfilerIcon, type RenderCellProps, type RenderHeaderCellProps, RowActionsMenu, SandBoxIcon, Select, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, SunIcon, Table, type Theme, ThemeProvider, Typography, type TypographyProps, type TypographyVariant, UpRightArrowCircleIcon, UsersIcon, VectorIcon, convertPaletteToRem, darkTheme, getBreakpoint, getButtonSizeStyles, getButtonStyles, getTypographyStyles, lightTheme, lightThemePx, pxToRem, resolveThemeColor, useContextMenuControl };
|
|
708
|
+
export { type Action, AlertIcon, ApiIcon, ArrowCircleTopRightIcon, ArrowRightIcon, BallsMenu, 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, ContextMenu, ContextMenuDelimiter, CrossIcon, DataSetsIcon, DeepSearchIcon, DisabledVisibleIcon, DocsIcon, DownloadIcon, EditUserIcon, EnableVisibleIcon, EnterArrowLeftIcon, FiltersIcon, GlobalStyle, Graph2D, type Graph2DProps, Header, HeaderDelimeter, HeaderSection, HomepageIcon, InfoCircleFilledIcon, InfoCircleIcon, Input, type InputElementStyle, type InputSize, type InputSizeStyle, type InputState, type InputVariant, ListMenu, ListMenuItem, type ListMenuItemAnchorProps, type ListMenuItemBase, type ListMenuItemButtonProps, type ListMenuItemProps, type ListMenuProps, ListMenuSection, type ListMenuSectionProps, MapRadarIcon, MoonIcon, type NestedColorPaths, OpenLockIcon, OrganizationIcon, PageLayout, Pagination, type PaginationProps, PasswordFinderIcon, PhonebookIcon, PlusIcon, PrintIcon, Profiler2Icon, ProfilerIcon, type RenderCellProps, type RenderHeaderCellProps, RowActionsMenu, SandBoxIcon, Select, Sidebar, SidebarContext, SidebarDelimeter, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarSection, type SidebarSectionProps, StatisticIcon, StyledContainer, SunIcon, Table, type Theme, ThemeProvider, Typography, type TypographyProps, type TypographyVariant, UnfoldIcon, UpRightArrowCircleIcon, UsersIcon, VectorIcon, convertPaletteToRem, darkTheme, getBreakpoint, getButtonSizeStyles, getButtonStyles, getTypographyStyles, lightTheme, lightThemePx, pxToRem, resolveThemeColor, useContextMenuControl };
|