@aiready/visualizer 0.6.14 → 0.6.19
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/graph/index.d.ts +2 -22
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
- package/web/dist/assets/{index-Zc8kVQDw.js → index-CkabxYJ5.js} +557 -496
- package/web/dist/assets/index-CkabxYJ5.js.map +1 -0
- package/web/dist/index.html +1 -1
- package/web/dist/assets/index-Zc8kVQDw.js.map +0 -1
package/dist/graph/index.d.ts
CHANGED
|
@@ -4,30 +4,10 @@ import { GraphEdge, GraphNode, Severity, GraphData as GraphData$1, GraphMetadata
|
|
|
4
4
|
* Severity levels for issues
|
|
5
5
|
*/
|
|
6
6
|
type IssueSeverity = Severity;
|
|
7
|
-
/**
|
|
8
|
-
* Base graph node (compatible with d3-force SimulationNodeDatum)
|
|
9
|
-
*/
|
|
10
|
-
interface BaseGraphNode {
|
|
11
|
-
id: string;
|
|
12
|
-
x?: number;
|
|
13
|
-
y?: number;
|
|
14
|
-
vx?: number;
|
|
15
|
-
vy?: number;
|
|
16
|
-
fx?: number | null;
|
|
17
|
-
fy?: number | null;
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Base graph link (compatible with d3-force SimulationLinkDatum)
|
|
21
|
-
*/
|
|
22
|
-
interface BaseGraphLink {
|
|
23
|
-
source: string | BaseGraphNode;
|
|
24
|
-
target: string | BaseGraphNode;
|
|
25
|
-
index?: number;
|
|
26
|
-
}
|
|
27
7
|
/**
|
|
28
8
|
* File node in the dependency graph
|
|
29
9
|
*/
|
|
30
|
-
interface FileNode extends
|
|
10
|
+
interface FileNode extends GraphNode {
|
|
31
11
|
id: string;
|
|
32
12
|
path: string;
|
|
33
13
|
label: string;
|
|
@@ -207,4 +187,4 @@ declare class GraphBuilder {
|
|
|
207
187
|
*/
|
|
208
188
|
declare function createSampleGraph(): GraphData;
|
|
209
189
|
|
|
210
|
-
export { type
|
|
190
|
+
export { type Cluster, type DependencyEdge, type FileNode, type FilterOptions, GraphBuilder, type GraphData, type GraphMetadata, type IssueOverlay, type IssueSeverity, type LayoutConfig, type VisualizationConfig, createSampleGraph };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { Cluster, DependencyEdge, FileNode, FilterOptions, GraphBuilder, GraphData, GraphMetadata, IssueOverlay, IssueSeverity, LayoutConfig, VisualizationConfig, createSampleGraph } from './graph/index.js';
|
|
2
2
|
import '@aiready/core';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiready/visualizer",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.19",
|
|
4
4
|
"description": "Interactive graph visualization for AIReady analysis results",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"react": "19.2.4",
|
|
50
50
|
"react-dom": "19.2.4",
|
|
51
51
|
"regenerator-runtime": "^0.14.1",
|
|
52
|
-
"@aiready/core": "0.23.
|
|
52
|
+
"@aiready/core": "0.23.20"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@tailwindcss/vite": "^4.1.18",
|