quixotic-gol 0.1.0 → 0.1.2
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.ts +22 -14
- package/dist/index.js +3 -3
- package/dist/index.mjs +1943 -1926
- package/package.json +1 -1
- package/dist/assets/graphvizWorker-Bbv8iQW7.js +0 -2402
- package/dist/worker.d.ts +0 -1
- package/dist/worker.js +0 -13
- package/dist/worker.mjs +0 -2402
package/dist/index.d.ts
CHANGED
|
@@ -29,20 +29,16 @@ declare interface DrawOp {
|
|
|
29
29
|
style?: string;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
title: string;
|
|
43
|
-
chain: string;
|
|
44
|
-
tx: string;
|
|
45
|
-
edgeCount: number;
|
|
32
|
+
/**
|
|
33
|
+
* Content structure for graph edges
|
|
34
|
+
*/
|
|
35
|
+
export declare interface EdgeContent {
|
|
36
|
+
/** Unique identifier for the edge */
|
|
37
|
+
id: string;
|
|
38
|
+
/** Color of the edge */
|
|
39
|
+
color: string;
|
|
40
|
+
/** Text label on the edge */
|
|
41
|
+
text: string;
|
|
46
42
|
}
|
|
47
43
|
|
|
48
44
|
export declare interface GraphvizJson {
|
|
@@ -200,6 +196,18 @@ export declare interface LayoutConfig {
|
|
|
200
196
|
nearlyAlignedThreshold: number;
|
|
201
197
|
}
|
|
202
198
|
|
|
199
|
+
/**
|
|
200
|
+
* Content structure for graph nodes
|
|
201
|
+
*/
|
|
202
|
+
export declare interface NodeContent {
|
|
203
|
+
/** Tags associated with the node */
|
|
204
|
+
tags: string[];
|
|
205
|
+
/** Display label for the node */
|
|
206
|
+
label: string;
|
|
207
|
+
/** Text content of the node */
|
|
208
|
+
text: string;
|
|
209
|
+
}
|
|
210
|
+
|
|
203
211
|
export declare interface NodeMapping {
|
|
204
212
|
sourceNodeId: string;
|
|
205
213
|
targetNodeId: string;
|