@cyber-harbour/ui 1.0.25 → 1.0.26
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/cross_light-JTZWFLSV.png +0 -0
- package/dist/cross_light_hover-UQZ7E3CW.png +0 -0
- package/dist/eye_light-EQXRQBFN.png +0 -0
- package/dist/eye_light_hover-5XFRPJS4.png +0 -0
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +141 -139
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +117 -115
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -1
- package/src/Graph2D/Graph2D.tsx +720 -145
- package/src/Graph2D/cross_light.png +0 -0
- package/src/Graph2D/cross_light_hover.png +0 -0
- package/src/Graph2D/eye_light.png +0 -0
- package/src/Graph2D/eye_light_hover.png +0 -0
- package/src/Graph2D/types.ts +4 -1
- package/src/custom.d.ts +19 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/index.d.mts
CHANGED
|
@@ -694,10 +694,13 @@ interface Graph2DProps {
|
|
|
694
694
|
width?: number;
|
|
695
695
|
height?: number;
|
|
696
696
|
config?: {
|
|
697
|
-
nodeSizeFactor: number;
|
|
698
697
|
fontSize: number;
|
|
698
|
+
maxZoom: number;
|
|
699
699
|
nodeSizeBase: number;
|
|
700
|
+
nodeAreaFactor: number;
|
|
700
701
|
textPaddingFactor: number;
|
|
702
|
+
gridSpacing: number;
|
|
703
|
+
dotSize: number;
|
|
701
704
|
};
|
|
702
705
|
onNodeClick?: (node: any) => void;
|
|
703
706
|
onLinkClick?: (link: any) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -694,10 +694,13 @@ interface Graph2DProps {
|
|
|
694
694
|
width?: number;
|
|
695
695
|
height?: number;
|
|
696
696
|
config?: {
|
|
697
|
-
nodeSizeFactor: number;
|
|
698
697
|
fontSize: number;
|
|
698
|
+
maxZoom: number;
|
|
699
699
|
nodeSizeBase: number;
|
|
700
|
+
nodeAreaFactor: number;
|
|
700
701
|
textPaddingFactor: number;
|
|
702
|
+
gridSpacing: number;
|
|
703
|
+
dotSize: number;
|
|
701
704
|
};
|
|
702
705
|
onNodeClick?: (node: any) => void;
|
|
703
706
|
onLinkClick?: (link: any) => void;
|