@cyber-harbour/ui 1.0.25 → 1.0.27

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.
Binary file
Binary file
Binary file
@@ -11,10 +11,13 @@ export interface Graph2DProps {
11
11
 
12
12
  //custom node rendering
13
13
  config?: {
14
- nodeSizeFactor: number;
15
14
  fontSize: number;
15
+ maxZoom: number;
16
16
  nodeSizeBase: number;
17
+ nodeAreaFactor: number;
17
18
  textPaddingFactor: number;
19
+ gridSpacing: number;
20
+ dotSize: number;
18
21
  };
19
22
 
20
23
  onNodeClick?: (node: any) => void;
@@ -0,0 +1,19 @@
1
+ declare module '*.png' {
2
+ const content: string;
3
+ export default content;
4
+ }
5
+
6
+ declare module '*.jpg' {
7
+ const content: string;
8
+ export default content;
9
+ }
10
+
11
+ declare module '*.jpeg' {
12
+ const content: string;
13
+ export default content;
14
+ }
15
+
16
+ declare module '*.gif' {
17
+ const content: string;
18
+ export default content;
19
+ }