xcode-graph 0.1.0 → 0.2.0
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/LICENSE +21 -0
- package/README.md +364 -41
- package/custom-elements.json +1418 -537
- package/dist/elk-worker.js +104592 -0
- package/dist/elk.bundled.js +5907 -5981
- package/dist/{assets/micro-layout.worker-CSeqAKhL.js → micro-layout.worker.js} +58 -364
- package/dist/xcode-graph.js +28509 -0
- package/dist/xcode-graph.service.js +4917 -0
- package/dist/xcodegraph.js +1 -22164
- package/package.json +49 -45
- package/vscode.css-custom-data.json +0 -5
- package/vscode.html-custom-data.json +358 -78
- package/web-types.json +918 -202
- package/dist/flow.js +0 -883
|
@@ -10,16 +10,43 @@
|
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "xcode-graph-canvas",
|
|
13
|
-
"description": "
|
|
13
|
+
"description": "Canvas2D interactive graph visualization\n---\n\n\n### **Events:**\n - **zoom-change** - Dispatched when the zoom level changes (detail: number)\n- **node-select** - Dispatched when a node is selected or deselected (detail: { node })\n- **node-hover** - Dispatched when a node is hovered (detail: { nodeId })\n- **cluster-select** - Dispatched when a cluster is selected or deselected (detail: { clusterId })\n- **cluster-hover** - Dispatched when a cluster is hovered (detail: { clusterId })\n- **zoom-in** - Dispatched when zoom in is requested via keyboard\n- **zoom-out** - Dispatched when zoom out is requested via keyboard\n- **zoom-reset** - Dispatched when zoom reset is requested via keyboard\n\n### **Methods:**\n - **fitToViewport(): _void_** - Adjusts zoom and pan so that all clusters fit within the visible viewport.",
|
|
14
14
|
"attributes": [
|
|
15
|
-
{
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
{
|
|
21
|
-
|
|
22
|
-
|
|
15
|
+
{
|
|
16
|
+
"name": "search-query",
|
|
17
|
+
"description": "Active search query — attribute-bound from parent via search-query=\"...\"",
|
|
18
|
+
"values": []
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "view-mode",
|
|
22
|
+
"description": "Display mode — attribute-bound from parent via view-mode=\"...\"",
|
|
23
|
+
"values": [{ "name": "ViewMode" }]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "enable-animation",
|
|
27
|
+
"description": "Whether physics animation is enabled for layout settling",
|
|
28
|
+
"values": []
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "show-direct-deps",
|
|
32
|
+
"description": "Whether to highlight direct dependency edges — attribute-bound via ?show-direct-deps",
|
|
33
|
+
"values": []
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "show-transitive-deps",
|
|
37
|
+
"description": "Whether to highlight transitive dependency edges — attribute-bound via ?show-transitive-deps",
|
|
38
|
+
"values": []
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "show-direct-dependents",
|
|
42
|
+
"description": "Whether to highlight direct dependent edges — attribute-bound via ?show-direct-dependents",
|
|
43
|
+
"values": []
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "show-transitive-dependents",
|
|
47
|
+
"description": "Whether to highlight transitive dependent edges — attribute-bound via ?show-transitive-dependents",
|
|
48
|
+
"values": []
|
|
49
|
+
}
|
|
23
50
|
],
|
|
24
51
|
"references": []
|
|
25
52
|
},
|
|
@@ -33,8 +60,16 @@
|
|
|
33
60
|
"name": "xcode-graph-controls",
|
|
34
61
|
"description": "Zoom controls overlay\n---\n\n\n### **Events:**\n - **zoom-step** - Dispatched when a zoom step button is clicked (detail: number)\n- **zoom-reset** - Dispatched when the fit-to-view button is clicked",
|
|
35
62
|
"attributes": [
|
|
36
|
-
{
|
|
37
|
-
|
|
63
|
+
{
|
|
64
|
+
"name": "zoom",
|
|
65
|
+
"description": "Current absolute zoom level",
|
|
66
|
+
"values": []
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "base-zoom",
|
|
70
|
+
"description": "Baseline zoom level used for ratio display (fit-to-view = 1x)",
|
|
71
|
+
"values": []
|
|
72
|
+
}
|
|
38
73
|
],
|
|
39
74
|
"references": []
|
|
40
75
|
},
|
|
@@ -94,9 +129,21 @@
|
|
|
94
129
|
"name": "xcode-graph-right-sidebar-header",
|
|
95
130
|
"description": "Right sidebar header with collapse toggle\n---\n\n\n### **Events:**\n - **toggle-collapse** - Dispatched when the collapse button is clicked",
|
|
96
131
|
"attributes": [
|
|
97
|
-
{
|
|
98
|
-
|
|
99
|
-
|
|
132
|
+
{
|
|
133
|
+
"name": "title",
|
|
134
|
+
"description": "Title text displayed in the header",
|
|
135
|
+
"values": []
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "is-collapsed",
|
|
139
|
+
"description": "Whether the sidebar is currently collapsed",
|
|
140
|
+
"values": []
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "has-active-filters",
|
|
144
|
+
"description": "Whether any filters are currently active (shows indicator dot)",
|
|
145
|
+
"values": []
|
|
146
|
+
}
|
|
100
147
|
],
|
|
101
148
|
"references": []
|
|
102
149
|
},
|
|
@@ -104,10 +151,26 @@
|
|
|
104
151
|
"name": "xcode-graph-collapsed-sidebar",
|
|
105
152
|
"description": "Collapsed sidebar icon bar with filter badges\n---\n\n\n### **Events:**\n - **expand-to-section** - Dispatched when a section icon is clicked (detail: { section })",
|
|
106
153
|
"attributes": [
|
|
107
|
-
{
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
154
|
+
{
|
|
155
|
+
"name": "node-types-filter-size",
|
|
156
|
+
"description": "Number of currently selected node type filters",
|
|
157
|
+
"values": []
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "platforms-filter-size",
|
|
161
|
+
"description": "Number of currently selected platform filters",
|
|
162
|
+
"values": []
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "projects-filter-size",
|
|
166
|
+
"description": "Number of currently selected project filters",
|
|
167
|
+
"values": []
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"name": "packages-filter-size",
|
|
171
|
+
"description": "Number of currently selected package filters",
|
|
172
|
+
"values": []
|
|
173
|
+
}
|
|
111
174
|
],
|
|
112
175
|
"references": []
|
|
113
176
|
},
|
|
@@ -181,25 +244,77 @@
|
|
|
181
244
|
"name": "xcode-graph-metrics-section",
|
|
182
245
|
"description": "Metrics grid with toggleable stats cards\n---\n\n\n### **Events:**\n - **card**\n- **toggle-direct-deps** - Dispatched when direct dependencies card is toggled\n- **toggle-transitive-deps** - Dispatched when transitive dependencies card is toggled\n- **toggle-direct-dependents** - Dispatched when direct dependents card is toggled\n- **toggle-transitive-dependents** - Dispatched when transitive dependents card is toggled",
|
|
183
246
|
"attributes": [
|
|
184
|
-
{
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
{
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
{
|
|
195
|
-
|
|
196
|
-
|
|
247
|
+
{
|
|
248
|
+
"name": "dependencies-count",
|
|
249
|
+
"description": "Number of direct dependencies (filtered)",
|
|
250
|
+
"values": []
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "dependents-count",
|
|
254
|
+
"description": "Number of direct dependents (filtered)",
|
|
255
|
+
"values": []
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "total-dependencies-count",
|
|
259
|
+
"description": "Total number of direct dependencies (unfiltered)",
|
|
260
|
+
"values": []
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"name": "total-dependents-count",
|
|
264
|
+
"description": "Total number of direct dependents (unfiltered)",
|
|
265
|
+
"values": []
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "transitive-dependencies-count",
|
|
269
|
+
"description": "Number of transitive dependencies",
|
|
270
|
+
"values": []
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"name": "transitive-dependents-count",
|
|
274
|
+
"description": "Number of transitive dependents",
|
|
275
|
+
"values": []
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "is-high-fan-in",
|
|
279
|
+
"description": "Whether this node has high fan-in (many dependents)",
|
|
280
|
+
"values": []
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"name": "is-high-fan-out",
|
|
284
|
+
"description": "Whether this node has high fan-out (many dependencies)",
|
|
285
|
+
"values": []
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"name": "active-direct-deps",
|
|
289
|
+
"description": "Whether the direct dependencies card is toggled on",
|
|
290
|
+
"values": []
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "active-transitive-deps",
|
|
294
|
+
"description": "Whether the transitive dependencies card is toggled on",
|
|
295
|
+
"values": []
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"name": "active-direct-dependents",
|
|
299
|
+
"description": "Whether the direct dependents card is toggled on",
|
|
300
|
+
"values": []
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"name": "active-transitive-dependents",
|
|
304
|
+
"description": "Whether the transitive dependents card is toggled on",
|
|
305
|
+
"values": []
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "expanded",
|
|
309
|
+
"description": "Whether the section starts expanded",
|
|
310
|
+
"values": []
|
|
311
|
+
}
|
|
197
312
|
],
|
|
198
313
|
"references": []
|
|
199
314
|
},
|
|
200
315
|
{
|
|
201
316
|
"name": "xcode-graph-badge",
|
|
202
|
-
"description": "Color-themed badge with pill, rounded, and accent variants\n---\n\n\n### **CSS Properties:**\n - **--badge-bg** - Background color of the badge (computed from color prop) _(default: undefined)_\n- **--badge-border** - Border color of the badge (computed from color prop) _(default: undefined)_\n- **--badge-color** - Text color of the badge (computed from color prop) _(default: undefined)_\n- **--badge-bg-hover** - Background color on hover (computed from color prop) _(default: undefined)_\n- **--badge-border-hover** - Border color on hover (computed from color prop) _(default: undefined)_
|
|
317
|
+
"description": "Color-themed badge with pill, rounded, and accent variants\n---\n\n\n### **CSS Properties:**\n - **--badge-bg** - Background color of the badge (computed from color prop) _(default: undefined)_\n- **--badge-border** - Border color of the badge (computed from color prop) _(default: undefined)_\n- **--badge-color** - Text color of the badge (computed from color prop) _(default: undefined)_\n- **--badge-bg-hover** - Background color on hover (computed from color prop) _(default: undefined)_\n- **--badge-border-hover** - Border color on hover (computed from color prop) _(default: undefined)_",
|
|
203
318
|
"attributes": [
|
|
204
319
|
{
|
|
205
320
|
"name": "label",
|
|
@@ -225,11 +340,6 @@
|
|
|
225
340
|
"name": "interactive",
|
|
226
341
|
"description": "Whether the badge has interactive hover states",
|
|
227
342
|
"values": []
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
"name": "glow",
|
|
231
|
-
"description": "Whether to show glow effect on hover",
|
|
232
|
-
"values": []
|
|
233
343
|
}
|
|
234
344
|
],
|
|
235
345
|
"references": []
|
|
@@ -250,7 +360,7 @@
|
|
|
250
360
|
},
|
|
251
361
|
{
|
|
252
362
|
"name": "color",
|
|
253
|
-
"description": "Theme color for the icon box
|
|
363
|
+
"description": "Theme color for the icon box",
|
|
254
364
|
"values": []
|
|
255
365
|
},
|
|
256
366
|
{
|
|
@@ -282,8 +392,16 @@
|
|
|
282
392
|
"name": "xcode-graph-node-header",
|
|
283
393
|
"description": "Node details header with icon, badges, and tags\n---\n\n\n### **Events:**\n - **cluster-click** - Dispatched when a cluster badge is clicked (detail: { clusterId })\n- **close** - Dispatched when the back/close button is clicked",
|
|
284
394
|
"attributes": [
|
|
285
|
-
{
|
|
286
|
-
|
|
395
|
+
{
|
|
396
|
+
"name": "zoom",
|
|
397
|
+
"description": "Current canvas zoom level for color adjustments",
|
|
398
|
+
"values": []
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"name": "show-cluster-link",
|
|
402
|
+
"description": "Whether clicking back navigates to the parent cluster instead of closing",
|
|
403
|
+
"values": []
|
|
404
|
+
}
|
|
287
405
|
],
|
|
288
406
|
"references": []
|
|
289
407
|
},
|
|
@@ -302,16 +420,34 @@
|
|
|
302
420
|
{
|
|
303
421
|
"name": "xcode-graph-node-info",
|
|
304
422
|
"description": "Collapsible node information details section\n---\n",
|
|
305
|
-
"attributes": [
|
|
423
|
+
"attributes": [
|
|
424
|
+
{
|
|
425
|
+
"name": "expanded",
|
|
426
|
+
"description": "Whether the section starts expanded",
|
|
427
|
+
"values": []
|
|
428
|
+
}
|
|
429
|
+
],
|
|
306
430
|
"references": []
|
|
307
431
|
},
|
|
308
432
|
{
|
|
309
433
|
"name": "xcode-graph-list-item-row",
|
|
310
434
|
"description": "Node list row with icon, name, and chevron\n---\n\n\n### **Events:**\n - **row-select** - Dispatched when the row is clicked (detail: { node })\n- **row-hover** - Dispatched on mouse enter (detail: { nodeId })\n- **row-hover-end** - Dispatched on mouse leave",
|
|
311
435
|
"attributes": [
|
|
312
|
-
{
|
|
313
|
-
|
|
314
|
-
|
|
436
|
+
{
|
|
437
|
+
"name": "subtitle",
|
|
438
|
+
"description": "Optional subtitle text shown below the node name",
|
|
439
|
+
"values": []
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"name": "zoom",
|
|
443
|
+
"description": "Current canvas zoom level for color adjustments",
|
|
444
|
+
"values": []
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"name": "is-selected",
|
|
448
|
+
"description": "Whether this row is currently selected",
|
|
449
|
+
"values": []
|
|
450
|
+
}
|
|
315
451
|
],
|
|
316
452
|
"references": []
|
|
317
453
|
},
|
|
@@ -351,11 +487,31 @@
|
|
|
351
487
|
"name": "xcode-graph-node-details-panel",
|
|
352
488
|
"description": "Node details panel with metrics, info, and dependency lists\n---\n\n\n### **Events:**\n - **eventName**\n- **close** - Dispatched when the panel close/back button is clicked\n- **node-select** - Dispatched when a dependency or dependent node is clicked (detail: { node })\n- **cluster-select** - Dispatched when a cluster badge is clicked (detail: { clusterId })\n- **node-hover** - Dispatched when hovering a dependency or dependent node (detail: { nodeId })\n- **toggle-direct-deps** - Dispatched when the direct dependencies metric card is toggled\n- **toggle-transitive-deps** - Dispatched when the transitive dependencies metric card is toggled\n- **toggle-direct-dependents** - Dispatched when the direct dependents metric card is toggled\n- **toggle-transitive-dependents** - Dispatched when the transitive dependents metric card is toggled",
|
|
353
489
|
"attributes": [
|
|
354
|
-
{
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
490
|
+
{
|
|
491
|
+
"name": "active-direct-deps",
|
|
492
|
+
"description": "Whether direct dependencies highlighting is active",
|
|
493
|
+
"values": []
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"name": "active-transitive-deps",
|
|
497
|
+
"description": "Whether transitive dependencies highlighting is active",
|
|
498
|
+
"values": []
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"name": "active-direct-dependents",
|
|
502
|
+
"description": "Whether direct dependents highlighting is active",
|
|
503
|
+
"values": []
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"name": "active-transitive-dependents",
|
|
507
|
+
"description": "Whether transitive dependents highlighting is active",
|
|
508
|
+
"values": []
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"name": "zoom",
|
|
512
|
+
"description": "Current canvas zoom level for color adjustments",
|
|
513
|
+
"values": []
|
|
514
|
+
}
|
|
359
515
|
],
|
|
360
516
|
"references": []
|
|
361
517
|
},
|
|
@@ -393,14 +549,31 @@
|
|
|
393
549
|
"name": "xcode-graph-cluster-header",
|
|
394
550
|
"description": "Cluster details panel header with icon, badges, and path\n---\n\n\n### **Events:**\n - **back** - Dispatched when back button is clicked",
|
|
395
551
|
"attributes": [
|
|
396
|
-
{
|
|
552
|
+
{
|
|
553
|
+
"name": "cluster-name",
|
|
554
|
+
"description": "Display name of the cluster",
|
|
555
|
+
"values": []
|
|
556
|
+
},
|
|
397
557
|
{
|
|
398
558
|
"name": "cluster-type",
|
|
559
|
+
"description": "Whether this cluster is a package or project",
|
|
399
560
|
"values": [{ "name": "package" }, { "name": "project" }]
|
|
400
561
|
},
|
|
401
|
-
{
|
|
402
|
-
|
|
403
|
-
|
|
562
|
+
{
|
|
563
|
+
"name": "cluster-color",
|
|
564
|
+
"description": "Accent color for the cluster icon and badges",
|
|
565
|
+
"values": []
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"name": "cluster-path",
|
|
569
|
+
"description": "Filesystem path to the cluster source (used for source type detection and copy)",
|
|
570
|
+
"values": []
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"name": "is-external",
|
|
574
|
+
"description": "Whether the cluster comes from an external dependency",
|
|
575
|
+
"values": []
|
|
576
|
+
}
|
|
404
577
|
],
|
|
405
578
|
"references": []
|
|
406
579
|
},
|
|
@@ -408,13 +581,41 @@
|
|
|
408
581
|
"name": "xcode-graph-cluster-stats",
|
|
409
582
|
"description": "Collapsible cluster metrics with stats cards and breakdowns\n---\n\n\n### **Events:**\n - **card**\n- **toggle-direct-deps** - Dispatched when dependencies card is toggled\n- **toggle-direct-dependents** - Dispatched when dependents card is toggled",
|
|
410
583
|
"attributes": [
|
|
411
|
-
{
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
{
|
|
417
|
-
|
|
584
|
+
{
|
|
585
|
+
"name": "filtered-dependencies",
|
|
586
|
+
"description": "Number of dependencies visible after filtering",
|
|
587
|
+
"values": []
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"name": "total-dependencies",
|
|
591
|
+
"description": "Total number of dependencies before filtering",
|
|
592
|
+
"values": []
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"name": "filtered-dependents",
|
|
596
|
+
"description": "Number of dependents visible after filtering",
|
|
597
|
+
"values": []
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"name": "total-dependents",
|
|
601
|
+
"description": "Total number of dependents before filtering",
|
|
602
|
+
"values": []
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"name": "active-direct-deps",
|
|
606
|
+
"description": "Whether the direct dependencies card is toggled on",
|
|
607
|
+
"values": []
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"name": "active-direct-dependents",
|
|
611
|
+
"description": "Whether the direct dependents card is toggled on",
|
|
612
|
+
"values": []
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"name": "expanded",
|
|
616
|
+
"description": "Whether the section starts expanded",
|
|
617
|
+
"values": []
|
|
618
|
+
}
|
|
418
619
|
],
|
|
419
620
|
"references": []
|
|
420
621
|
},
|
|
@@ -422,9 +623,21 @@
|
|
|
422
623
|
"name": "xcode-graph-cluster-targets-list",
|
|
423
624
|
"description": "Collapsible cluster targets list grouped by node type\n---\n\n\n### **Events:**\n - **node-select** - Dispatched when a target is clicked (detail: { node })\n- **node-hover** - Dispatched on hover (detail: { nodeId })\n\n### **Methods:**\n \n\n",
|
|
424
625
|
"attributes": [
|
|
425
|
-
{
|
|
426
|
-
|
|
427
|
-
|
|
626
|
+
{
|
|
627
|
+
"name": "filtered-targets-count",
|
|
628
|
+
"description": "Number of targets visible after filtering",
|
|
629
|
+
"values": []
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"name": "total-targets-count",
|
|
633
|
+
"description": "Total number of targets in the cluster",
|
|
634
|
+
"values": []
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"name": "zoom",
|
|
638
|
+
"description": "Current canvas zoom level for color adjustments",
|
|
639
|
+
"values": []
|
|
640
|
+
},
|
|
428
641
|
{
|
|
429
642
|
"name": "expanded",
|
|
430
643
|
"description": "Whether to start expanded (default: true)",
|
|
@@ -437,9 +650,21 @@
|
|
|
437
650
|
"name": "xcode-graph-cluster-details-panel",
|
|
438
651
|
"description": "Cluster details panel with header, stats, and targets\n---\n\n\n### **Events:**\n - **eventName**\n- **close** - Dispatched when the back button is clicked\n- **node-select** - Dispatched when a target node is selected (detail: { node })\n- **node-hover** - Dispatched when a target node is hovered (detail: { nodeId })",
|
|
439
652
|
"attributes": [
|
|
440
|
-
{
|
|
441
|
-
|
|
442
|
-
|
|
653
|
+
{
|
|
654
|
+
"name": "active-direct-deps",
|
|
655
|
+
"description": "Whether direct dependencies highlighting is active",
|
|
656
|
+
"values": []
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"name": "active-direct-dependents",
|
|
660
|
+
"description": "Whether direct dependents highlighting is active",
|
|
661
|
+
"values": []
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"name": "zoom",
|
|
665
|
+
"description": "Current canvas zoom level for color adjustments",
|
|
666
|
+
"values": []
|
|
667
|
+
}
|
|
443
668
|
],
|
|
444
669
|
"references": []
|
|
445
670
|
},
|
|
@@ -471,12 +696,36 @@
|
|
|
471
696
|
"name": "xcode-graph-filter-section",
|
|
472
697
|
"description": "Collapsible filter section with toggleable checkbox items\n---\n\n\n### **Events:**\n - **section-toggle** - Dispatched when the section header is clicked\n- **item-toggle** - Dispatched when an item checkbox is toggled (detail: { key, checked })\n- **preview-change** - Dispatched on item hover for filter preview (detail: { type, value } or null)\n\n### **Slots:**\n - **icon** - Icon to display in the section header",
|
|
473
698
|
"attributes": [
|
|
474
|
-
{
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
{
|
|
699
|
+
{
|
|
700
|
+
"name": "id",
|
|
701
|
+
"description": "Unique section identifier",
|
|
702
|
+
"values": []
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"name": "title",
|
|
706
|
+
"description": "Display title for the section header",
|
|
707
|
+
"values": []
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"name": "icon-name",
|
|
711
|
+
"description": "Icon name for the section header slot",
|
|
712
|
+
"values": []
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"name": "is-expanded",
|
|
716
|
+
"description": "Whether the section is currently expanded",
|
|
717
|
+
"values": []
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"name": "filter-type",
|
|
721
|
+
"description": "The type of filter this section controls",
|
|
722
|
+
"values": [{ "name": "FilterType" }]
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"name": "zoom",
|
|
726
|
+
"description": "Current canvas zoom level for color adjustments",
|
|
727
|
+
"values": []
|
|
728
|
+
}
|
|
480
729
|
],
|
|
481
730
|
"references": []
|
|
482
731
|
},
|
|
@@ -507,7 +756,13 @@
|
|
|
507
756
|
{
|
|
508
757
|
"name": "xcode-graph-error-toast",
|
|
509
758
|
"description": "Individual error notification toast with severity styling\n---\n\n\n### **Events:**\n - **dismiss** - Dispatched when the toast is dismissed (detail: { errorId })\n- **action** - Dispatched when the action button is clicked (detail: { error })",
|
|
510
|
-
"attributes": [
|
|
759
|
+
"attributes": [
|
|
760
|
+
{
|
|
761
|
+
"name": "visible",
|
|
762
|
+
"description": "Whether the toast is currently visible (triggers slide-in animation)",
|
|
763
|
+
"values": []
|
|
764
|
+
}
|
|
765
|
+
],
|
|
511
766
|
"references": []
|
|
512
767
|
},
|
|
513
768
|
{
|
|
@@ -517,11 +772,28 @@
|
|
|
517
772
|
"references": []
|
|
518
773
|
},
|
|
519
774
|
{
|
|
520
|
-
"name": "xcode-graph",
|
|
521
|
-
"description": "
|
|
775
|
+
"name": "xcode-graph-file-upload",
|
|
776
|
+
"description": "File upload button with drag-and-drop support\n---\n\n\n### **Events:**\n - **graph-file-loaded** - Dispatched when a valid JSON file is loaded (detail: { raw: unknown })",
|
|
522
777
|
"attributes": [],
|
|
523
778
|
"references": []
|
|
524
779
|
},
|
|
780
|
+
{
|
|
781
|
+
"name": "xcode-graph",
|
|
782
|
+
"description": "Embeddable graph visualization entry point\n---\n\n\n### **Methods:**\n - **loadRawGraph(raw: _unknown_): _Promise<void>_** - Load raw Tuist graph JSON (the output of `tuist graph --format json`).\nTransforms it into GraphData and sets nodes/edges automatically.\nShows user-facing warnings/errors via ErrorService if the transform has issues.\n\nThe transform service (and its Zod dependency) is lazy-loaded on first\ncall so the main bundle stays small until validation is actually needed.",
|
|
783
|
+
"attributes": [
|
|
784
|
+
{
|
|
785
|
+
"name": "show-upload",
|
|
786
|
+
"description": "Whether to show the file upload overlay for loading graph JSON",
|
|
787
|
+
"values": []
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"name": "color-scheme",
|
|
791
|
+
"description": "Color scheme preference. Set to `'light'` or `'dark'` to force a mode,\nor `'auto'` (default) to follow the user's system preference.",
|
|
792
|
+
"values": [{ "name": "ColorScheme" }]
|
|
793
|
+
}
|
|
794
|
+
],
|
|
795
|
+
"references": []
|
|
796
|
+
},
|
|
525
797
|
{
|
|
526
798
|
"name": "xcode-graph-edge",
|
|
527
799
|
"description": "SVG edge connection between graph nodes\n---\n",
|
|
@@ -627,7 +899,7 @@
|
|
|
627
899
|
},
|
|
628
900
|
{
|
|
629
901
|
"name": "xcode-graph-header",
|
|
630
|
-
"description": "
|
|
902
|
+
"description": "Application header bar\n---\n",
|
|
631
903
|
"attributes": [],
|
|
632
904
|
"references": []
|
|
633
905
|
},
|
|
@@ -647,8 +919,16 @@
|
|
|
647
919
|
"name": "xcode-graph-sidebar",
|
|
648
920
|
"description": "Left sidebar navigation component\n---\n\n\n### **Events:**\n - **tab-change** - Dispatched when a tab is clicked (detail: { tab: string })",
|
|
649
921
|
"attributes": [
|
|
650
|
-
{
|
|
651
|
-
|
|
922
|
+
{
|
|
923
|
+
"name": "collapsed",
|
|
924
|
+
"description": "Whether the sidebar is currently collapsed",
|
|
925
|
+
"values": []
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"name": "defaultCollapsed",
|
|
929
|
+
"description": "Whether the sidebar should start collapsed on first render",
|
|
930
|
+
"values": []
|
|
931
|
+
},
|
|
652
932
|
{
|
|
653
933
|
"name": "active-tab",
|
|
654
934
|
"description": "The currently active tab",
|