xcode-graph 0.1.0 → 0.1.1

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.
@@ -17,6 +17,7 @@
17
17
  "type": {
18
18
  "text": "GraphNode[]"
19
19
  },
20
+ "description": "All graph nodes to expose for screen reader navigation",
20
21
  "default": "[]"
21
22
  },
22
23
  {
@@ -25,6 +26,7 @@
25
26
  "type": {
26
27
  "text": "GraphEdge[]"
27
28
  },
29
+ "description": "All graph edges to expose as an accessible table",
28
30
  "default": "[]"
29
31
  },
30
32
  {
@@ -33,6 +35,7 @@
33
35
  "type": {
34
36
  "text": "GraphNode | null"
35
37
  },
38
+ "description": "Currently selected node for aria-selected state",
36
39
  "default": "null"
37
40
  },
38
41
  {
@@ -181,6 +184,7 @@
181
184
  "type": {
182
185
  "text": "GraphNode[]"
183
186
  },
187
+ "description": "Graph nodes to render",
184
188
  "default": "[]"
185
189
  },
186
190
  {
@@ -189,6 +193,7 @@
189
193
  "type": {
190
194
  "text": "GraphEdge[]"
191
195
  },
196
+ "description": "Graph edges to render",
192
197
  "default": "[]"
193
198
  },
194
199
  {
@@ -197,6 +202,7 @@
197
202
  "type": {
198
203
  "text": "GraphNode | null"
199
204
  },
205
+ "description": "Currently selected node (highlighted with ring and connected edges)",
200
206
  "default": "null"
201
207
  },
202
208
  {
@@ -205,6 +211,7 @@
205
211
  "type": {
206
212
  "text": "string | null"
207
213
  },
214
+ "description": "Currently selected cluster ID (dims non-member nodes)",
208
215
  "default": "null"
209
216
  },
210
217
  {
@@ -213,6 +220,7 @@
213
220
  "type": {
214
221
  "text": "string | null"
215
222
  },
223
+ "description": "Currently hovered node ID (shows tooltip)",
216
224
  "default": "null"
217
225
  },
218
226
  {
@@ -221,6 +229,7 @@
221
229
  "type": {
222
230
  "text": "string"
223
231
  },
232
+ "description": "Active search query for dimming non-matching nodes",
224
233
  "default": "''",
225
234
  "attribute": "search-query"
226
235
  },
@@ -230,6 +239,7 @@
230
239
  "type": {
231
240
  "text": "ViewMode"
232
241
  },
242
+ "description": "Display mode affecting edge visibility",
233
243
  "attribute": "view-mode"
234
244
  },
235
245
  {
@@ -238,6 +248,7 @@
238
248
  "type": {
239
249
  "text": "number"
240
250
  },
251
+ "description": "Current zoom level (affects color saturation and label visibility)",
241
252
  "default": "1",
242
253
  "attribute": "zoom"
243
254
  },
@@ -247,6 +258,7 @@
247
258
  "type": {
248
259
  "text": "boolean"
249
260
  },
261
+ "description": "Whether physics animation is enabled for layout settling",
250
262
  "default": "false",
251
263
  "attribute": "enable-animation"
252
264
  },
@@ -255,21 +267,24 @@
255
267
  "name": "transitiveDeps",
256
268
  "type": {
257
269
  "text": "TransitiveResult | undefined"
258
- }
270
+ },
271
+ "description": "Transitive dependency chain for the selected node"
259
272
  },
260
273
  {
261
274
  "kind": "field",
262
275
  "name": "transitiveDependents",
263
276
  "type": {
264
277
  "text": "TransitiveResult | undefined"
265
- }
278
+ },
279
+ "description": "Transitive dependent chain for the selected node"
266
280
  },
267
281
  {
268
282
  "kind": "field",
269
283
  "name": "previewFilter",
270
284
  "type": {
271
285
  "text": "PreviewFilter | undefined"
272
- }
286
+ },
287
+ "description": "Active filter preview (dims non-matching nodes on hover)"
273
288
  },
274
289
  {
275
290
  "kind": "field",
@@ -277,6 +292,7 @@
277
292
  "type": {
278
293
  "text": "boolean"
279
294
  },
295
+ "description": "Whether to highlight direct dependency edges",
280
296
  "default": "false",
281
297
  "attribute": "show-direct-deps"
282
298
  },
@@ -286,6 +302,7 @@
286
302
  "type": {
287
303
  "text": "boolean"
288
304
  },
305
+ "description": "Whether to highlight transitive dependency edges",
289
306
  "default": "false",
290
307
  "attribute": "show-transitive-deps"
291
308
  },
@@ -295,6 +312,7 @@
295
312
  "type": {
296
313
  "text": "boolean"
297
314
  },
315
+ "description": "Whether to highlight direct dependent edges",
298
316
  "default": "false",
299
317
  "attribute": "show-direct-dependents"
300
318
  },
@@ -304,6 +322,7 @@
304
322
  "type": {
305
323
  "text": "boolean"
306
324
  },
325
+ "description": "Whether to highlight transitive dependent edges",
307
326
  "default": "false",
308
327
  "attribute": "show-transitive-dependents"
309
328
  },
@@ -313,6 +332,7 @@
313
332
  "type": {
314
333
  "text": "Set<string>"
315
334
  },
335
+ "description": "Set of node IDs that should be visually dimmed",
316
336
  "default": "new Set()"
317
337
  },
318
338
  {
@@ -703,6 +723,7 @@
703
723
  "type": {
704
724
  "text": "string"
705
725
  },
726
+ "description": "Active search query for dimming non-matching nodes",
706
727
  "default": "''",
707
728
  "fieldName": "searchQuery"
708
729
  },
@@ -711,6 +732,7 @@
711
732
  "type": {
712
733
  "text": "ViewMode"
713
734
  },
735
+ "description": "Display mode affecting edge visibility",
714
736
  "fieldName": "viewMode"
715
737
  },
716
738
  {
@@ -718,6 +740,7 @@
718
740
  "type": {
719
741
  "text": "number"
720
742
  },
743
+ "description": "Current zoom level (affects color saturation and label visibility)",
721
744
  "default": "1",
722
745
  "fieldName": "zoom"
723
746
  },
@@ -726,6 +749,7 @@
726
749
  "type": {
727
750
  "text": "boolean"
728
751
  },
752
+ "description": "Whether physics animation is enabled for layout settling",
729
753
  "default": "false",
730
754
  "fieldName": "enableAnimation"
731
755
  },
@@ -734,6 +758,7 @@
734
758
  "type": {
735
759
  "text": "boolean"
736
760
  },
761
+ "description": "Whether to highlight direct dependency edges",
737
762
  "default": "false",
738
763
  "fieldName": "showDirectDeps"
739
764
  },
@@ -742,6 +767,7 @@
742
767
  "type": {
743
768
  "text": "boolean"
744
769
  },
770
+ "description": "Whether to highlight transitive dependency edges",
745
771
  "default": "false",
746
772
  "fieldName": "showTransitiveDeps"
747
773
  },
@@ -750,6 +776,7 @@
750
776
  "type": {
751
777
  "text": "boolean"
752
778
  },
779
+ "description": "Whether to highlight direct dependent edges",
753
780
  "default": "false",
754
781
  "fieldName": "showDirectDependents"
755
782
  },
@@ -758,6 +785,7 @@
758
785
  "type": {
759
786
  "text": "boolean"
760
787
  },
788
+ "description": "Whether to highlight transitive dependent edges",
761
789
  "default": "false",
762
790
  "fieldName": "showTransitiveDependents"
763
791
  }
@@ -818,6 +846,7 @@
818
846
  "type": {
819
847
  "text": "number"
820
848
  },
849
+ "description": "Current absolute zoom level",
821
850
  "attribute": "zoom"
822
851
  },
823
852
  {
@@ -826,6 +855,7 @@
826
855
  "type": {
827
856
  "text": "number"
828
857
  },
858
+ "description": "Baseline zoom level used for ratio display (fit-to-view = 1x)",
829
859
  "attribute": "base-zoom"
830
860
  },
831
861
  {
@@ -930,6 +960,7 @@
930
960
  "type": {
931
961
  "text": "number"
932
962
  },
963
+ "description": "Current absolute zoom level",
933
964
  "fieldName": "zoom"
934
965
  },
935
966
  {
@@ -937,6 +968,7 @@
937
968
  "type": {
938
969
  "text": "number"
939
970
  },
971
+ "description": "Baseline zoom level used for ratio display (fit-to-view = 1x)",
940
972
  "fieldName": "baseZoom"
941
973
  }
942
974
  ],
@@ -1282,6 +1314,7 @@
1282
1314
  "type": {
1283
1315
  "text": "string"
1284
1316
  },
1317
+ "description": "Title text displayed in the header",
1285
1318
  "attribute": "title"
1286
1319
  },
1287
1320
  {
@@ -1290,6 +1323,7 @@
1290
1323
  "type": {
1291
1324
  "text": "boolean"
1292
1325
  },
1326
+ "description": "Whether the sidebar is currently collapsed",
1293
1327
  "attribute": "is-collapsed"
1294
1328
  },
1295
1329
  {
@@ -1298,6 +1332,7 @@
1298
1332
  "type": {
1299
1333
  "text": "boolean"
1300
1334
  },
1335
+ "description": "Whether any filters are currently active (shows indicator dot)",
1301
1336
  "attribute": "has-active-filters"
1302
1337
  },
1303
1338
  {
@@ -1321,6 +1356,7 @@
1321
1356
  "type": {
1322
1357
  "text": "string"
1323
1358
  },
1359
+ "description": "Title text displayed in the header",
1324
1360
  "fieldName": "title"
1325
1361
  },
1326
1362
  {
@@ -1328,6 +1364,7 @@
1328
1364
  "type": {
1329
1365
  "text": "boolean"
1330
1366
  },
1367
+ "description": "Whether the sidebar is currently collapsed",
1331
1368
  "fieldName": "isCollapsed"
1332
1369
  },
1333
1370
  {
@@ -1335,6 +1372,7 @@
1335
1372
  "type": {
1336
1373
  "text": "boolean"
1337
1374
  },
1375
+ "description": "Whether any filters are currently active (shows indicator dot)",
1338
1376
  "fieldName": "hasActiveFilters"
1339
1377
  }
1340
1378
  ],
@@ -1368,7 +1406,7 @@
1368
1406
  },
1369
1407
  {
1370
1408
  "kind": "javascript-module",
1371
- "path": "src/ui/components/collapsed-sidebar.ts",
1409
+ "path": "src/ui/components/right-sidebar-collapsed.ts",
1372
1410
  "declarations": [
1373
1411
  {
1374
1412
  "kind": "class",
@@ -1380,42 +1418,48 @@
1380
1418
  "name": "filteredNodes",
1381
1419
  "type": {
1382
1420
  "text": "GraphNode[]"
1383
- }
1421
+ },
1422
+ "description": "Nodes remaining after filter application"
1384
1423
  },
1385
1424
  {
1386
1425
  "kind": "field",
1387
1426
  "name": "filteredEdges",
1388
1427
  "type": {
1389
1428
  "text": "GraphEdge[]"
1390
- }
1429
+ },
1430
+ "description": "Edges remaining after filter application"
1391
1431
  },
1392
1432
  {
1393
1433
  "kind": "field",
1394
1434
  "name": "typeCounts",
1395
1435
  "type": {
1396
1436
  "text": "Map<string, number>"
1397
- }
1437
+ },
1438
+ "description": "Count of nodes per node type"
1398
1439
  },
1399
1440
  {
1400
1441
  "kind": "field",
1401
1442
  "name": "platformCounts",
1402
1443
  "type": {
1403
1444
  "text": "Map<string, number>"
1404
- }
1445
+ },
1446
+ "description": "Count of nodes per platform"
1405
1447
  },
1406
1448
  {
1407
1449
  "kind": "field",
1408
1450
  "name": "projectCounts",
1409
1451
  "type": {
1410
1452
  "text": "Map<string, number>"
1411
- }
1453
+ },
1454
+ "description": "Count of nodes per project"
1412
1455
  },
1413
1456
  {
1414
1457
  "kind": "field",
1415
1458
  "name": "packageCounts",
1416
1459
  "type": {
1417
1460
  "text": "Map<string, number>"
1418
- }
1461
+ },
1462
+ "description": "Count of nodes per package"
1419
1463
  },
1420
1464
  {
1421
1465
  "kind": "field",
@@ -1423,6 +1467,7 @@
1423
1467
  "type": {
1424
1468
  "text": "number"
1425
1469
  },
1470
+ "description": "Number of currently selected node type filters",
1426
1471
  "attribute": "node-types-filter-size"
1427
1472
  },
1428
1473
  {
@@ -1431,6 +1476,7 @@
1431
1476
  "type": {
1432
1477
  "text": "number"
1433
1478
  },
1479
+ "description": "Number of currently selected platform filters",
1434
1480
  "attribute": "platforms-filter-size"
1435
1481
  },
1436
1482
  {
@@ -1439,6 +1485,7 @@
1439
1485
  "type": {
1440
1486
  "text": "number"
1441
1487
  },
1488
+ "description": "Number of currently selected project filters",
1442
1489
  "attribute": "projects-filter-size"
1443
1490
  },
1444
1491
  {
@@ -1447,6 +1494,7 @@
1447
1494
  "type": {
1448
1495
  "text": "number"
1449
1496
  },
1497
+ "description": "Number of currently selected package filters",
1450
1498
  "attribute": "packages-filter-size"
1451
1499
  },
1452
1500
  {
@@ -1498,6 +1546,7 @@
1498
1546
  "type": {
1499
1547
  "text": "number"
1500
1548
  },
1549
+ "description": "Number of currently selected node type filters",
1501
1550
  "fieldName": "nodeTypesFilterSize"
1502
1551
  },
1503
1552
  {
@@ -1505,6 +1554,7 @@
1505
1554
  "type": {
1506
1555
  "text": "number"
1507
1556
  },
1557
+ "description": "Number of currently selected platform filters",
1508
1558
  "fieldName": "platformsFilterSize"
1509
1559
  },
1510
1560
  {
@@ -1512,6 +1562,7 @@
1512
1562
  "type": {
1513
1563
  "text": "number"
1514
1564
  },
1565
+ "description": "Number of currently selected project filters",
1515
1566
  "fieldName": "projectsFilterSize"
1516
1567
  },
1517
1568
  {
@@ -1519,6 +1570,7 @@
1519
1570
  "type": {
1520
1571
  "text": "number"
1521
1572
  },
1573
+ "description": "Number of currently selected package filters",
1522
1574
  "fieldName": "packagesFilterSize"
1523
1575
  }
1524
1576
  ],
@@ -1537,7 +1589,7 @@
1537
1589
  "name": "GraphCollapsedSidebar",
1538
1590
  "declaration": {
1539
1591
  "name": "GraphCollapsedSidebar",
1540
- "module": "src/ui/components/collapsed-sidebar.ts"
1592
+ "module": "src/ui/components/right-sidebar-collapsed.ts"
1541
1593
  }
1542
1594
  },
1543
1595
  {
@@ -1545,7 +1597,7 @@
1545
1597
  "name": "xcode-graph-collapsed-sidebar",
1546
1598
  "declaration": {
1547
1599
  "name": "GraphCollapsedSidebar",
1548
- "module": "src/ui/components/collapsed-sidebar.ts"
1600
+ "module": "src/ui/components/right-sidebar-collapsed.ts"
1549
1601
  }
1550
1602
  }
1551
1603
  ]
@@ -1924,6 +1976,7 @@
1924
1976
  "type": {
1925
1977
  "text": "number"
1926
1978
  },
1979
+ "description": "Number of direct dependencies (filtered)",
1927
1980
  "attribute": "dependencies-count"
1928
1981
  },
1929
1982
  {
@@ -1932,6 +1985,7 @@
1932
1985
  "type": {
1933
1986
  "text": "number"
1934
1987
  },
1988
+ "description": "Number of direct dependents (filtered)",
1935
1989
  "attribute": "dependents-count"
1936
1990
  },
1937
1991
  {
@@ -1940,6 +1994,7 @@
1940
1994
  "type": {
1941
1995
  "text": "number"
1942
1996
  },
1997
+ "description": "Total number of direct dependencies (unfiltered)",
1943
1998
  "attribute": "total-dependencies-count"
1944
1999
  },
1945
2000
  {
@@ -1948,6 +2003,7 @@
1948
2003
  "type": {
1949
2004
  "text": "number"
1950
2005
  },
2006
+ "description": "Total number of direct dependents (unfiltered)",
1951
2007
  "attribute": "total-dependents-count"
1952
2008
  },
1953
2009
  {
@@ -1956,6 +2012,7 @@
1956
2012
  "type": {
1957
2013
  "text": "number"
1958
2014
  },
2015
+ "description": "Number of transitive dependencies",
1959
2016
  "attribute": "transitive-dependencies-count"
1960
2017
  },
1961
2018
  {
@@ -1964,6 +2021,7 @@
1964
2021
  "type": {
1965
2022
  "text": "number"
1966
2023
  },
2024
+ "description": "Number of transitive dependents",
1967
2025
  "attribute": "transitive-dependents-count"
1968
2026
  },
1969
2027
  {
@@ -1972,6 +2030,7 @@
1972
2030
  "type": {
1973
2031
  "text": "boolean"
1974
2032
  },
2033
+ "description": "Whether this node has high fan-in (many dependents)",
1975
2034
  "attribute": "is-high-fan-in"
1976
2035
  },
1977
2036
  {
@@ -1980,6 +2039,7 @@
1980
2039
  "type": {
1981
2040
  "text": "boolean"
1982
2041
  },
2042
+ "description": "Whether this node has high fan-out (many dependencies)",
1983
2043
  "attribute": "is-high-fan-out"
1984
2044
  },
1985
2045
  {
@@ -1988,6 +2048,7 @@
1988
2048
  "type": {
1989
2049
  "text": "boolean"
1990
2050
  },
2051
+ "description": "Whether the direct dependencies card is toggled on",
1991
2052
  "attribute": "active-direct-deps"
1992
2053
  },
1993
2054
  {
@@ -1996,6 +2057,7 @@
1996
2057
  "type": {
1997
2058
  "text": "boolean"
1998
2059
  },
2060
+ "description": "Whether the transitive dependencies card is toggled on",
1999
2061
  "attribute": "active-transitive-deps"
2000
2062
  },
2001
2063
  {
@@ -2004,6 +2066,7 @@
2004
2066
  "type": {
2005
2067
  "text": "boolean"
2006
2068
  },
2069
+ "description": "Whether the direct dependents card is toggled on",
2007
2070
  "attribute": "active-direct-dependents"
2008
2071
  },
2009
2072
  {
@@ -2012,6 +2075,7 @@
2012
2075
  "type": {
2013
2076
  "text": "boolean"
2014
2077
  },
2078
+ "description": "Whether the transitive dependents card is toggled on",
2015
2079
  "attribute": "active-transitive-dependents"
2016
2080
  },
2017
2081
  {
@@ -2020,6 +2084,7 @@
2020
2084
  "type": {
2021
2085
  "text": "boolean"
2022
2086
  },
2087
+ "description": "Whether the section starts expanded",
2023
2088
  "default": "true",
2024
2089
  "attribute": "expanded"
2025
2090
  },
@@ -2081,6 +2146,7 @@
2081
2146
  "type": {
2082
2147
  "text": "number"
2083
2148
  },
2149
+ "description": "Number of direct dependencies (filtered)",
2084
2150
  "fieldName": "dependenciesCount"
2085
2151
  },
2086
2152
  {
@@ -2088,6 +2154,7 @@
2088
2154
  "type": {
2089
2155
  "text": "number"
2090
2156
  },
2157
+ "description": "Number of direct dependents (filtered)",
2091
2158
  "fieldName": "dependentsCount"
2092
2159
  },
2093
2160
  {
@@ -2095,6 +2162,7 @@
2095
2162
  "type": {
2096
2163
  "text": "number"
2097
2164
  },
2165
+ "description": "Total number of direct dependencies (unfiltered)",
2098
2166
  "fieldName": "totalDependenciesCount"
2099
2167
  },
2100
2168
  {
@@ -2102,6 +2170,7 @@
2102
2170
  "type": {
2103
2171
  "text": "number"
2104
2172
  },
2173
+ "description": "Total number of direct dependents (unfiltered)",
2105
2174
  "fieldName": "totalDependentsCount"
2106
2175
  },
2107
2176
  {
@@ -2109,6 +2178,7 @@
2109
2178
  "type": {
2110
2179
  "text": "number"
2111
2180
  },
2181
+ "description": "Number of transitive dependencies",
2112
2182
  "fieldName": "transitiveDependenciesCount"
2113
2183
  },
2114
2184
  {
@@ -2116,6 +2186,7 @@
2116
2186
  "type": {
2117
2187
  "text": "number"
2118
2188
  },
2189
+ "description": "Number of transitive dependents",
2119
2190
  "fieldName": "transitiveDependentsCount"
2120
2191
  },
2121
2192
  {
@@ -2123,6 +2194,7 @@
2123
2194
  "type": {
2124
2195
  "text": "boolean"
2125
2196
  },
2197
+ "description": "Whether this node has high fan-in (many dependents)",
2126
2198
  "fieldName": "isHighFanIn"
2127
2199
  },
2128
2200
  {
@@ -2130,6 +2202,7 @@
2130
2202
  "type": {
2131
2203
  "text": "boolean"
2132
2204
  },
2205
+ "description": "Whether this node has high fan-out (many dependencies)",
2133
2206
  "fieldName": "isHighFanOut"
2134
2207
  },
2135
2208
  {
@@ -2137,6 +2210,7 @@
2137
2210
  "type": {
2138
2211
  "text": "boolean"
2139
2212
  },
2213
+ "description": "Whether the direct dependencies card is toggled on",
2140
2214
  "fieldName": "activeDirectDeps"
2141
2215
  },
2142
2216
  {
@@ -2144,6 +2218,7 @@
2144
2218
  "type": {
2145
2219
  "text": "boolean"
2146
2220
  },
2221
+ "description": "Whether the transitive dependencies card is toggled on",
2147
2222
  "fieldName": "activeTransitiveDeps"
2148
2223
  },
2149
2224
  {
@@ -2151,6 +2226,7 @@
2151
2226
  "type": {
2152
2227
  "text": "boolean"
2153
2228
  },
2229
+ "description": "Whether the direct dependents card is toggled on",
2154
2230
  "fieldName": "activeDirectDependents"
2155
2231
  },
2156
2232
  {
@@ -2158,6 +2234,7 @@
2158
2234
  "type": {
2159
2235
  "text": "boolean"
2160
2236
  },
2237
+ "description": "Whether the transitive dependents card is toggled on",
2161
2238
  "fieldName": "activeTransitiveDependents"
2162
2239
  },
2163
2240
  {
@@ -2165,6 +2242,7 @@
2165
2242
  "type": {
2166
2243
  "text": "boolean"
2167
2244
  },
2245
+ "description": "Whether the section starts expanded",
2168
2246
  "default": "true",
2169
2247
  "fieldName": "expanded"
2170
2248
  }
@@ -2619,7 +2697,8 @@
2619
2697
  "name": "node",
2620
2698
  "type": {
2621
2699
  "text": "GraphNode"
2622
- }
2700
+ },
2701
+ "description": "The graph node to display in the header"
2623
2702
  },
2624
2703
  {
2625
2704
  "kind": "field",
@@ -2627,6 +2706,7 @@
2627
2706
  "type": {
2628
2707
  "text": "number"
2629
2708
  },
2709
+ "description": "Current canvas zoom level for color adjustments",
2630
2710
  "attribute": "zoom"
2631
2711
  },
2632
2712
  {
@@ -2635,6 +2715,7 @@
2635
2715
  "type": {
2636
2716
  "text": "boolean"
2637
2717
  },
2718
+ "description": "Whether clicking back navigates to the parent cluster instead of closing",
2638
2719
  "default": "true",
2639
2720
  "attribute": "show-cluster-link"
2640
2721
  },
@@ -2666,6 +2747,7 @@
2666
2747
  "type": {
2667
2748
  "text": "number"
2668
2749
  },
2750
+ "description": "Current canvas zoom level for color adjustments",
2669
2751
  "fieldName": "zoom"
2670
2752
  },
2671
2753
  {
@@ -2673,6 +2755,7 @@
2673
2755
  "type": {
2674
2756
  "text": "boolean"
2675
2757
  },
2758
+ "description": "Whether clicking back navigates to the parent cluster instead of closing",
2676
2759
  "default": "true",
2677
2760
  "fieldName": "showClusterLink"
2678
2761
  }
@@ -2804,7 +2887,8 @@
2804
2887
  "name": "node",
2805
2888
  "type": {
2806
2889
  "text": "GraphNode"
2807
- }
2890
+ },
2891
+ "description": "The graph node to display information for"
2808
2892
  },
2809
2893
  {
2810
2894
  "kind": "field",
@@ -2812,6 +2896,7 @@
2812
2896
  "type": {
2813
2897
  "text": "boolean"
2814
2898
  },
2899
+ "description": "Whether the section starts expanded",
2815
2900
  "default": "true",
2816
2901
  "attribute": "expanded"
2817
2902
  },
@@ -2887,6 +2972,7 @@
2887
2972
  "type": {
2888
2973
  "text": "boolean"
2889
2974
  },
2975
+ "description": "Whether the section starts expanded",
2890
2976
  "default": "true",
2891
2977
  "fieldName": "expanded"
2892
2978
  }
@@ -2933,7 +3019,8 @@
2933
3019
  "name": "node",
2934
3020
  "type": {
2935
3021
  "text": "GraphNode"
2936
- }
3022
+ },
3023
+ "description": "The graph node to display in this row"
2937
3024
  },
2938
3025
  {
2939
3026
  "kind": "field",
@@ -2941,6 +3028,7 @@
2941
3028
  "type": {
2942
3029
  "text": "string"
2943
3030
  },
3031
+ "description": "Optional subtitle text shown below the node name",
2944
3032
  "attribute": "subtitle"
2945
3033
  },
2946
3034
  {
@@ -2949,6 +3037,7 @@
2949
3037
  "type": {
2950
3038
  "text": "number"
2951
3039
  },
3040
+ "description": "Current canvas zoom level for color adjustments",
2952
3041
  "default": "1",
2953
3042
  "attribute": "zoom"
2954
3043
  },
@@ -2958,6 +3047,7 @@
2958
3047
  "type": {
2959
3048
  "text": "boolean"
2960
3049
  },
3050
+ "description": "Whether this row is currently selected",
2961
3051
  "attribute": "is-selected"
2962
3052
  },
2963
3053
  {
@@ -3013,6 +3103,7 @@
3013
3103
  "type": {
3014
3104
  "text": "string"
3015
3105
  },
3106
+ "description": "Optional subtitle text shown below the node name",
3016
3107
  "fieldName": "subtitle"
3017
3108
  },
3018
3109
  {
@@ -3020,6 +3111,7 @@
3020
3111
  "type": {
3021
3112
  "text": "number"
3022
3113
  },
3114
+ "description": "Current canvas zoom level for color adjustments",
3023
3115
  "default": "1",
3024
3116
  "fieldName": "zoom"
3025
3117
  },
@@ -3028,6 +3120,7 @@
3028
3120
  "type": {
3029
3121
  "text": "boolean"
3030
3122
  },
3123
+ "description": "Whether this row is currently selected",
3031
3124
  "fieldName": "isSelected"
3032
3125
  }
3033
3126
  ],
@@ -3061,7 +3154,7 @@
3061
3154
  },
3062
3155
  {
3063
3156
  "kind": "javascript-module",
3064
- "path": "src/ui/components/node-list-events.ts",
3157
+ "path": "src/ui/components/node-list-base.ts",
3065
3158
  "declarations": [
3066
3159
  {
3067
3160
  "kind": "class",
@@ -3145,7 +3238,7 @@
3145
3238
  "name": "NodeListEventsBase",
3146
3239
  "declaration": {
3147
3240
  "name": "NodeListEventsBase",
3148
- "module": "src/ui/components/node-list-events.ts"
3241
+ "module": "src/ui/components/node-list-base.ts"
3149
3242
  }
3150
3243
  }
3151
3244
  ]
@@ -3299,7 +3392,7 @@
3299
3392
  "description": "Forward node selection event",
3300
3393
  "inheritedFrom": {
3301
3394
  "name": "NodeListEventsBase",
3302
- "module": "src/ui/components/node-list-events.ts"
3395
+ "module": "src/ui/components/node-list-base.ts"
3303
3396
  }
3304
3397
  },
3305
3398
  {
@@ -3322,7 +3415,7 @@
3322
3415
  "description": "Forward node hover event",
3323
3416
  "inheritedFrom": {
3324
3417
  "name": "NodeListEventsBase",
3325
- "module": "src/ui/components/node-list-events.ts"
3418
+ "module": "src/ui/components/node-list-base.ts"
3326
3419
  }
3327
3420
  },
3328
3421
  {
@@ -3337,7 +3430,7 @@
3337
3430
  "description": "Handle hover end - dispatch with null nodeId",
3338
3431
  "inheritedFrom": {
3339
3432
  "name": "NodeListEventsBase",
3340
- "module": "src/ui/components/node-list-events.ts"
3433
+ "module": "src/ui/components/node-list-base.ts"
3341
3434
  }
3342
3435
  }
3343
3436
  ],
@@ -3350,7 +3443,7 @@
3350
3443
  "description": "Dispatched when a node row is clicked (detail: { node })",
3351
3444
  "inheritedFrom": {
3352
3445
  "name": "NodeListEventsBase",
3353
- "module": "src/ui/components/node-list-events.ts"
3446
+ "module": "src/ui/components/node-list-base.ts"
3354
3447
  }
3355
3448
  },
3356
3449
  {
@@ -3361,7 +3454,7 @@
3361
3454
  "description": "Dispatched on node row hover (detail: { nodeId })",
3362
3455
  "inheritedFrom": {
3363
3456
  "name": "NodeListEventsBase",
3364
- "module": "src/ui/components/node-list-events.ts"
3457
+ "module": "src/ui/components/node-list-base.ts"
3365
3458
  }
3366
3459
  }
3367
3460
  ],
@@ -3414,7 +3507,7 @@
3414
3507
  ],
3415
3508
  "superclass": {
3416
3509
  "name": "NodeListEventsBase",
3417
- "module": "/src/ui/components/node-list-events"
3510
+ "module": "/src/ui/components/node-list-base"
3418
3511
  },
3419
3512
  "summary": "Collapsible node list with section header and kind badges",
3420
3513
  "tagName": "xcode-graph-node-list",
@@ -3455,7 +3548,8 @@
3455
3548
  "privacy": "public",
3456
3549
  "type": {
3457
3550
  "text": "GraphNode"
3458
- }
3551
+ },
3552
+ "description": "The node to display details for"
3459
3553
  },
3460
3554
  {
3461
3555
  "kind": "field",
@@ -3463,7 +3557,8 @@
3463
3557
  "privacy": "public",
3464
3558
  "type": {
3465
3559
  "text": "GraphNode[]"
3466
- }
3560
+ },
3561
+ "description": "All nodes in the graph (for dependency resolution)"
3467
3562
  },
3468
3563
  {
3469
3564
  "kind": "field",
@@ -3471,7 +3566,8 @@
3471
3566
  "privacy": "public",
3472
3567
  "type": {
3473
3568
  "text": "GraphEdge[]"
3474
- }
3569
+ },
3570
+ "description": "All edges in the graph"
3475
3571
  },
3476
3572
  {
3477
3573
  "kind": "field",
@@ -3479,7 +3575,8 @@
3479
3575
  "privacy": "public",
3480
3576
  "type": {
3481
3577
  "text": "GraphEdge[] | undefined"
3482
- }
3578
+ },
3579
+ "description": "Edges remaining after filter application"
3483
3580
  },
3484
3581
  {
3485
3582
  "kind": "field",
@@ -3487,7 +3584,8 @@
3487
3584
  "privacy": "public",
3488
3585
  "type": {
3489
3586
  "text": "Cluster[] | undefined"
3490
- }
3587
+ },
3588
+ "description": "Available clusters for cluster navigation"
3491
3589
  },
3492
3590
  {
3493
3591
  "kind": "field",
@@ -3496,6 +3594,7 @@
3496
3594
  "type": {
3497
3595
  "text": "boolean"
3498
3596
  },
3597
+ "description": "Whether direct dependencies highlighting is active",
3499
3598
  "attribute": "active-direct-deps"
3500
3599
  },
3501
3600
  {
@@ -3505,6 +3604,7 @@
3505
3604
  "type": {
3506
3605
  "text": "boolean"
3507
3606
  },
3607
+ "description": "Whether transitive dependencies highlighting is active",
3508
3608
  "attribute": "active-transitive-deps"
3509
3609
  },
3510
3610
  {
@@ -3514,6 +3614,7 @@
3514
3614
  "type": {
3515
3615
  "text": "boolean"
3516
3616
  },
3617
+ "description": "Whether direct dependents highlighting is active",
3517
3618
  "attribute": "active-direct-dependents"
3518
3619
  },
3519
3620
  {
@@ -3523,6 +3624,7 @@
3523
3624
  "type": {
3524
3625
  "text": "boolean"
3525
3626
  },
3627
+ "description": "Whether transitive dependents highlighting is active",
3526
3628
  "attribute": "active-transitive-dependents"
3527
3629
  },
3528
3630
  {
@@ -3532,6 +3634,7 @@
3532
3634
  "type": {
3533
3635
  "text": "number"
3534
3636
  },
3637
+ "description": "Current canvas zoom level for color adjustments",
3535
3638
  "attribute": "zoom"
3536
3639
  },
3537
3640
  {
@@ -3614,6 +3717,7 @@
3614
3717
  "type": {
3615
3718
  "text": "boolean"
3616
3719
  },
3720
+ "description": "Whether direct dependencies highlighting is active",
3617
3721
  "fieldName": "activeDirectDeps"
3618
3722
  },
3619
3723
  {
@@ -3621,6 +3725,7 @@
3621
3725
  "type": {
3622
3726
  "text": "boolean"
3623
3727
  },
3728
+ "description": "Whether transitive dependencies highlighting is active",
3624
3729
  "fieldName": "activeTransitiveDeps"
3625
3730
  },
3626
3731
  {
@@ -3628,6 +3733,7 @@
3628
3733
  "type": {
3629
3734
  "text": "boolean"
3630
3735
  },
3736
+ "description": "Whether direct dependents highlighting is active",
3631
3737
  "fieldName": "activeDirectDependents"
3632
3738
  },
3633
3739
  {
@@ -3635,6 +3741,7 @@
3635
3741
  "type": {
3636
3742
  "text": "boolean"
3637
3743
  },
3744
+ "description": "Whether transitive dependents highlighting is active",
3638
3745
  "fieldName": "activeTransitiveDependents"
3639
3746
  },
3640
3747
  {
@@ -3642,6 +3749,7 @@
3642
3749
  "type": {
3643
3750
  "text": "number"
3644
3751
  },
3752
+ "description": "Current canvas zoom level for color adjustments",
3645
3753
  "fieldName": "zoom"
3646
3754
  }
3647
3755
  ],
@@ -3919,6 +4027,7 @@
3919
4027
  "type": {
3920
4028
  "text": "string"
3921
4029
  },
4030
+ "description": "Display name of the cluster",
3922
4031
  "attribute": "cluster-name"
3923
4032
  },
3924
4033
  {
@@ -3927,6 +4036,7 @@
3927
4036
  "type": {
3928
4037
  "text": "'package' | 'project'"
3929
4038
  },
4039
+ "description": "Whether this cluster is a package or project",
3930
4040
  "attribute": "cluster-type"
3931
4041
  },
3932
4042
  {
@@ -3935,6 +4045,7 @@
3935
4045
  "type": {
3936
4046
  "text": "string"
3937
4047
  },
4048
+ "description": "Accent color for the cluster icon and badges",
3938
4049
  "attribute": "cluster-color"
3939
4050
  },
3940
4051
  {
@@ -3943,6 +4054,7 @@
3943
4054
  "type": {
3944
4055
  "text": "string"
3945
4056
  },
4057
+ "description": "Filesystem path to the cluster source (used for source type detection and copy)",
3946
4058
  "attribute": "cluster-path"
3947
4059
  },
3948
4060
  {
@@ -3951,6 +4063,7 @@
3951
4063
  "type": {
3952
4064
  "text": "boolean"
3953
4065
  },
4066
+ "description": "Whether the cluster comes from an external dependency",
3954
4067
  "attribute": "is-external"
3955
4068
  },
3956
4069
  {
@@ -4000,6 +4113,7 @@
4000
4113
  "type": {
4001
4114
  "text": "string"
4002
4115
  },
4116
+ "description": "Display name of the cluster",
4003
4117
  "fieldName": "clusterName"
4004
4118
  },
4005
4119
  {
@@ -4007,6 +4121,7 @@
4007
4121
  "type": {
4008
4122
  "text": "'package' | 'project'"
4009
4123
  },
4124
+ "description": "Whether this cluster is a package or project",
4010
4125
  "fieldName": "clusterType"
4011
4126
  },
4012
4127
  {
@@ -4014,6 +4129,7 @@
4014
4129
  "type": {
4015
4130
  "text": "string"
4016
4131
  },
4132
+ "description": "Accent color for the cluster icon and badges",
4017
4133
  "fieldName": "clusterColor"
4018
4134
  },
4019
4135
  {
@@ -4021,6 +4137,7 @@
4021
4137
  "type": {
4022
4138
  "text": "string"
4023
4139
  },
4140
+ "description": "Filesystem path to the cluster source (used for source type detection and copy)",
4024
4141
  "fieldName": "clusterPath"
4025
4142
  },
4026
4143
  {
@@ -4028,6 +4145,7 @@
4028
4145
  "type": {
4029
4146
  "text": "boolean"
4030
4147
  },
4148
+ "description": "Whether the cluster comes from an external dependency",
4031
4149
  "fieldName": "isExternal"
4032
4150
  }
4033
4151
  ],
@@ -4074,6 +4192,7 @@
4074
4192
  "type": {
4075
4193
  "text": "number"
4076
4194
  },
4195
+ "description": "Number of dependencies visible after filtering",
4077
4196
  "attribute": "filtered-dependencies"
4078
4197
  },
4079
4198
  {
@@ -4082,6 +4201,7 @@
4082
4201
  "type": {
4083
4202
  "text": "number"
4084
4203
  },
4204
+ "description": "Total number of dependencies before filtering",
4085
4205
  "attribute": "total-dependencies"
4086
4206
  },
4087
4207
  {
@@ -4090,6 +4210,7 @@
4090
4210
  "type": {
4091
4211
  "text": "number"
4092
4212
  },
4213
+ "description": "Number of dependents visible after filtering",
4093
4214
  "attribute": "filtered-dependents"
4094
4215
  },
4095
4216
  {
@@ -4098,6 +4219,7 @@
4098
4219
  "type": {
4099
4220
  "text": "number"
4100
4221
  },
4222
+ "description": "Total number of dependents before filtering",
4101
4223
  "attribute": "total-dependents"
4102
4224
  },
4103
4225
  {
@@ -4106,6 +4228,7 @@
4106
4228
  "type": {
4107
4229
  "text": "boolean"
4108
4230
  },
4231
+ "description": "Whether the direct dependencies card is toggled on",
4109
4232
  "attribute": "active-direct-deps"
4110
4233
  },
4111
4234
  {
@@ -4114,6 +4237,7 @@
4114
4237
  "type": {
4115
4238
  "text": "boolean"
4116
4239
  },
4240
+ "description": "Whether the direct dependents card is toggled on",
4117
4241
  "attribute": "active-direct-dependents"
4118
4242
  },
4119
4243
  {
@@ -4121,7 +4245,8 @@
4121
4245
  "name": "platforms",
4122
4246
  "type": {
4123
4247
  "text": "Set<string>"
4124
- }
4248
+ },
4249
+ "description": "Set of platform names present in this cluster"
4125
4250
  },
4126
4251
  {
4127
4252
  "kind": "field",
@@ -4137,6 +4262,7 @@
4137
4262
  "type": {
4138
4263
  "text": "boolean"
4139
4264
  },
4265
+ "description": "Whether the section starts expanded",
4140
4266
  "default": "true",
4141
4267
  "attribute": "expanded"
4142
4268
  },
@@ -4205,6 +4331,7 @@
4205
4331
  "type": {
4206
4332
  "text": "number"
4207
4333
  },
4334
+ "description": "Number of dependencies visible after filtering",
4208
4335
  "fieldName": "filteredDependencies"
4209
4336
  },
4210
4337
  {
@@ -4212,6 +4339,7 @@
4212
4339
  "type": {
4213
4340
  "text": "number"
4214
4341
  },
4342
+ "description": "Total number of dependencies before filtering",
4215
4343
  "fieldName": "totalDependencies"
4216
4344
  },
4217
4345
  {
@@ -4219,6 +4347,7 @@
4219
4347
  "type": {
4220
4348
  "text": "number"
4221
4349
  },
4350
+ "description": "Number of dependents visible after filtering",
4222
4351
  "fieldName": "filteredDependents"
4223
4352
  },
4224
4353
  {
@@ -4226,6 +4355,7 @@
4226
4355
  "type": {
4227
4356
  "text": "number"
4228
4357
  },
4358
+ "description": "Total number of dependents before filtering",
4229
4359
  "fieldName": "totalDependents"
4230
4360
  },
4231
4361
  {
@@ -4233,6 +4363,7 @@
4233
4363
  "type": {
4234
4364
  "text": "boolean"
4235
4365
  },
4366
+ "description": "Whether the direct dependencies card is toggled on",
4236
4367
  "fieldName": "activeDirectDeps"
4237
4368
  },
4238
4369
  {
@@ -4240,6 +4371,7 @@
4240
4371
  "type": {
4241
4372
  "text": "boolean"
4242
4373
  },
4374
+ "description": "Whether the direct dependents card is toggled on",
4243
4375
  "fieldName": "activeDirectDependents"
4244
4376
  },
4245
4377
  {
@@ -4247,6 +4379,7 @@
4247
4379
  "type": {
4248
4380
  "text": "boolean"
4249
4381
  },
4382
+ "description": "Whether the section starts expanded",
4250
4383
  "default": "true",
4251
4384
  "fieldName": "expanded"
4252
4385
  }
@@ -4293,14 +4426,16 @@
4293
4426
  "name": "clusterNodes",
4294
4427
  "type": {
4295
4428
  "text": "GraphNode[]"
4296
- }
4429
+ },
4430
+ "description": "All nodes belonging to this cluster"
4297
4431
  },
4298
4432
  {
4299
4433
  "kind": "field",
4300
4434
  "name": "nodesByType",
4301
4435
  "type": {
4302
4436
  "text": "Record<string, GraphNode[]>"
4303
- }
4437
+ },
4438
+ "description": "Nodes grouped by their type (e.g., framework, library)"
4304
4439
  },
4305
4440
  {
4306
4441
  "kind": "field",
@@ -4308,6 +4443,7 @@
4308
4443
  "type": {
4309
4444
  "text": "number"
4310
4445
  },
4446
+ "description": "Number of targets visible after filtering",
4311
4447
  "attribute": "filtered-targets-count"
4312
4448
  },
4313
4449
  {
@@ -4316,6 +4452,7 @@
4316
4452
  "type": {
4317
4453
  "text": "number"
4318
4454
  },
4455
+ "description": "Total number of targets in the cluster",
4319
4456
  "attribute": "total-targets-count"
4320
4457
  },
4321
4458
  {
@@ -4323,7 +4460,8 @@
4323
4460
  "name": "edges",
4324
4461
  "type": {
4325
4462
  "text": "GraphEdge[]"
4326
- }
4463
+ },
4464
+ "description": "All edges in the graph (for dependency counting)"
4327
4465
  },
4328
4466
  {
4329
4467
  "kind": "field",
@@ -4331,6 +4469,7 @@
4331
4469
  "type": {
4332
4470
  "text": "number"
4333
4471
  },
4472
+ "description": "Current canvas zoom level for color adjustments",
4334
4473
  "attribute": "zoom"
4335
4474
  },
4336
4475
  {
@@ -4414,7 +4553,7 @@
4414
4553
  "description": "Forward node selection event",
4415
4554
  "inheritedFrom": {
4416
4555
  "name": "NodeListEventsBase",
4417
- "module": "src/ui/components/node-list-events.ts"
4556
+ "module": "src/ui/components/node-list-base.ts"
4418
4557
  }
4419
4558
  },
4420
4559
  {
@@ -4437,7 +4576,7 @@
4437
4576
  "description": "Forward node hover event",
4438
4577
  "inheritedFrom": {
4439
4578
  "name": "NodeListEventsBase",
4440
- "module": "src/ui/components/node-list-events.ts"
4579
+ "module": "src/ui/components/node-list-base.ts"
4441
4580
  }
4442
4581
  },
4443
4582
  {
@@ -4452,7 +4591,7 @@
4452
4591
  "description": "Handle hover end - dispatch with null nodeId",
4453
4592
  "inheritedFrom": {
4454
4593
  "name": "NodeListEventsBase",
4455
- "module": "src/ui/components/node-list-events.ts"
4594
+ "module": "src/ui/components/node-list-base.ts"
4456
4595
  }
4457
4596
  }
4458
4597
  ],
@@ -4465,7 +4604,7 @@
4465
4604
  "description": "Dispatched when a target is clicked (detail: { node })",
4466
4605
  "inheritedFrom": {
4467
4606
  "name": "NodeListEventsBase",
4468
- "module": "src/ui/components/node-list-events.ts"
4607
+ "module": "src/ui/components/node-list-base.ts"
4469
4608
  }
4470
4609
  },
4471
4610
  {
@@ -4476,7 +4615,7 @@
4476
4615
  "description": "Dispatched on hover (detail: { nodeId })",
4477
4616
  "inheritedFrom": {
4478
4617
  "name": "NodeListEventsBase",
4479
- "module": "src/ui/components/node-list-events.ts"
4618
+ "module": "src/ui/components/node-list-base.ts"
4480
4619
  }
4481
4620
  }
4482
4621
  ],
@@ -4486,6 +4625,7 @@
4486
4625
  "type": {
4487
4626
  "text": "number"
4488
4627
  },
4628
+ "description": "Number of targets visible after filtering",
4489
4629
  "fieldName": "filteredTargetsCount"
4490
4630
  },
4491
4631
  {
@@ -4493,6 +4633,7 @@
4493
4633
  "type": {
4494
4634
  "text": "number"
4495
4635
  },
4636
+ "description": "Total number of targets in the cluster",
4496
4637
  "fieldName": "totalTargetsCount"
4497
4638
  },
4498
4639
  {
@@ -4500,6 +4641,7 @@
4500
4641
  "type": {
4501
4642
  "text": "number"
4502
4643
  },
4644
+ "description": "Current canvas zoom level for color adjustments",
4503
4645
  "fieldName": "zoom"
4504
4646
  },
4505
4647
  {
@@ -4514,7 +4656,7 @@
4514
4656
  ],
4515
4657
  "superclass": {
4516
4658
  "name": "NodeListEventsBase",
4517
- "module": "/src/ui/components/node-list-events"
4659
+ "module": "/src/ui/components/node-list-base"
4518
4660
  },
4519
4661
  "summary": "Collapsible cluster targets list grouped by node type",
4520
4662
  "tagName": "xcode-graph-cluster-targets-list",
@@ -4554,35 +4696,40 @@
4554
4696
  "name": "cluster",
4555
4697
  "type": {
4556
4698
  "text": "Cluster"
4557
- }
4699
+ },
4700
+ "description": "The cluster to display details for"
4558
4701
  },
4559
4702
  {
4560
4703
  "kind": "field",
4561
4704
  "name": "clusterNodes",
4562
4705
  "type": {
4563
4706
  "text": "GraphNode[]"
4564
- }
4707
+ },
4708
+ "description": "Nodes belonging to this cluster"
4565
4709
  },
4566
4710
  {
4567
4711
  "kind": "field",
4568
4712
  "name": "allNodes",
4569
4713
  "type": {
4570
4714
  "text": "GraphNode[]"
4571
- }
4715
+ },
4716
+ "description": "All nodes in the graph (for dependency resolution)"
4572
4717
  },
4573
4718
  {
4574
4719
  "kind": "field",
4575
4720
  "name": "edges",
4576
4721
  "type": {
4577
4722
  "text": "GraphEdge[]"
4578
- }
4723
+ },
4724
+ "description": "All edges in the graph"
4579
4725
  },
4580
4726
  {
4581
4727
  "kind": "field",
4582
4728
  "name": "filteredEdges",
4583
4729
  "type": {
4584
4730
  "text": "GraphEdge[] | undefined"
4585
- }
4731
+ },
4732
+ "description": "Edges remaining after filter application"
4586
4733
  },
4587
4734
  {
4588
4735
  "kind": "field",
@@ -4590,6 +4737,7 @@
4590
4737
  "type": {
4591
4738
  "text": "boolean"
4592
4739
  },
4740
+ "description": "Whether direct dependencies highlighting is active",
4593
4741
  "attribute": "active-direct-deps"
4594
4742
  },
4595
4743
  {
@@ -4598,6 +4746,7 @@
4598
4746
  "type": {
4599
4747
  "text": "boolean"
4600
4748
  },
4749
+ "description": "Whether direct dependents highlighting is active",
4601
4750
  "attribute": "active-direct-dependents"
4602
4751
  },
4603
4752
  {
@@ -4606,6 +4755,7 @@
4606
4755
  "type": {
4607
4756
  "text": "number"
4608
4757
  },
4758
+ "description": "Current canvas zoom level for color adjustments",
4609
4759
  "attribute": "zoom"
4610
4760
  },
4611
4761
  {
@@ -4683,6 +4833,7 @@
4683
4833
  "type": {
4684
4834
  "text": "boolean"
4685
4835
  },
4836
+ "description": "Whether direct dependencies highlighting is active",
4686
4837
  "fieldName": "activeDirectDeps"
4687
4838
  },
4688
4839
  {
@@ -4690,6 +4841,7 @@
4690
4841
  "type": {
4691
4842
  "text": "boolean"
4692
4843
  },
4844
+ "description": "Whether direct dependents highlighting is active",
4693
4845
  "fieldName": "activeDirectDependents"
4694
4846
  },
4695
4847
  {
@@ -4697,6 +4849,7 @@
4697
4849
  "type": {
4698
4850
  "text": "number"
4699
4851
  },
4852
+ "description": "Current canvas zoom level for color adjustments",
4700
4853
  "fieldName": "zoom"
4701
4854
  }
4702
4855
  ],
@@ -4950,6 +5103,7 @@
4950
5103
  "type": {
4951
5104
  "text": "string"
4952
5105
  },
5106
+ "description": "Unique section identifier",
4953
5107
  "attribute": "id"
4954
5108
  },
4955
5109
  {
@@ -4958,6 +5112,7 @@
4958
5112
  "type": {
4959
5113
  "text": "string"
4960
5114
  },
5115
+ "description": "Display title for the section header",
4961
5116
  "attribute": "title"
4962
5117
  },
4963
5118
  {
@@ -4966,6 +5121,7 @@
4966
5121
  "type": {
4967
5122
  "text": "string"
4968
5123
  },
5124
+ "description": "Icon name for the section header slot",
4969
5125
  "attribute": "icon-name"
4970
5126
  },
4971
5127
  {
@@ -4974,6 +5130,7 @@
4974
5130
  "type": {
4975
5131
  "text": "boolean"
4976
5132
  },
5133
+ "description": "Whether the section is currently expanded",
4977
5134
  "attribute": "is-expanded"
4978
5135
  },
4979
5136
  {
@@ -4981,14 +5138,16 @@
4981
5138
  "name": "items",
4982
5139
  "type": {
4983
5140
  "text": "FilterItem[]"
4984
- }
5141
+ },
5142
+ "description": "Filter items to display as toggleable checkboxes"
4985
5143
  },
4986
5144
  {
4987
5145
  "kind": "field",
4988
5146
  "name": "selectedItems",
4989
5147
  "type": {
4990
5148
  "text": "Set<string>"
4991
- }
5149
+ },
5150
+ "description": "Set of currently selected item keys"
4992
5151
  },
4993
5152
  {
4994
5153
  "kind": "field",
@@ -4996,6 +5155,7 @@
4996
5155
  "type": {
4997
5156
  "text": "FilterType"
4998
5157
  },
5158
+ "description": "The type of filter this section controls",
4999
5159
  "attribute": "filter-type",
5000
5160
  "expandedType": {
5001
5161
  "text": "'nodeType' | 'platform' | 'project' | 'package'"
@@ -5007,6 +5167,7 @@
5007
5167
  "type": {
5008
5168
  "text": "number"
5009
5169
  },
5170
+ "description": "Current canvas zoom level for color adjustments",
5010
5171
  "attribute": "zoom"
5011
5172
  },
5012
5173
  {
@@ -5114,6 +5275,7 @@
5114
5275
  "type": {
5115
5276
  "text": "string"
5116
5277
  },
5278
+ "description": "Unique section identifier",
5117
5279
  "fieldName": "id"
5118
5280
  },
5119
5281
  {
@@ -5121,6 +5283,7 @@
5121
5283
  "type": {
5122
5284
  "text": "string"
5123
5285
  },
5286
+ "description": "Display title for the section header",
5124
5287
  "fieldName": "title"
5125
5288
  },
5126
5289
  {
@@ -5128,6 +5291,7 @@
5128
5291
  "type": {
5129
5292
  "text": "string"
5130
5293
  },
5294
+ "description": "Icon name for the section header slot",
5131
5295
  "fieldName": "iconName"
5132
5296
  },
5133
5297
  {
@@ -5135,6 +5299,7 @@
5135
5299
  "type": {
5136
5300
  "text": "boolean"
5137
5301
  },
5302
+ "description": "Whether the section is currently expanded",
5138
5303
  "fieldName": "isExpanded"
5139
5304
  },
5140
5305
  {
@@ -5142,6 +5307,7 @@
5142
5307
  "type": {
5143
5308
  "text": "FilterType"
5144
5309
  },
5310
+ "description": "The type of filter this section controls",
5145
5311
  "fieldName": "filterType",
5146
5312
  "expandedType": {
5147
5313
  "text": "'nodeType' | 'platform' | 'project' | 'package'"
@@ -5152,6 +5318,7 @@
5152
5318
  "type": {
5153
5319
  "text": "number"
5154
5320
  },
5321
+ "description": "Current canvas zoom level for color adjustments",
5155
5322
  "fieldName": "zoom"
5156
5323
  }
5157
5324
  ],
@@ -5278,35 +5445,40 @@
5278
5445
  "name": "allNodes",
5279
5446
  "type": {
5280
5447
  "text": "GraphNode[]"
5281
- }
5448
+ },
5449
+ "description": "All nodes in the graph (unfiltered)"
5282
5450
  },
5283
5451
  {
5284
5452
  "kind": "field",
5285
5453
  "name": "allEdges",
5286
5454
  "type": {
5287
5455
  "text": "GraphEdge[]"
5288
- }
5456
+ },
5457
+ "description": "All edges in the graph (unfiltered)"
5289
5458
  },
5290
5459
  {
5291
5460
  "kind": "field",
5292
5461
  "name": "filteredNodes",
5293
5462
  "type": {
5294
5463
  "text": "GraphNode[]"
5295
- }
5464
+ },
5465
+ "description": "Nodes remaining after filter and search application"
5296
5466
  },
5297
5467
  {
5298
5468
  "kind": "field",
5299
5469
  "name": "filteredEdges",
5300
5470
  "type": {
5301
5471
  "text": "GraphEdge[]"
5302
- }
5472
+ },
5473
+ "description": "Edges remaining after filter and search application"
5303
5474
  },
5304
5475
  {
5305
5476
  "kind": "field",
5306
5477
  "name": "clusters",
5307
5478
  "type": {
5308
5479
  "text": "Cluster[] | undefined"
5309
- }
5480
+ },
5481
+ "description": "Available clusters from the layout engine"
5310
5482
  },
5311
5483
  {
5312
5484
  "kind": "field",
@@ -5646,63 +5818,72 @@
5646
5818
  "name": "displayNodes",
5647
5819
  "type": {
5648
5820
  "text": "GraphNode[]"
5649
- }
5821
+ },
5822
+ "description": "Nodes to render on the canvas (after search/filter/highlight processing)"
5650
5823
  },
5651
5824
  {
5652
5825
  "kind": "field",
5653
5826
  "name": "displayEdges",
5654
5827
  "type": {
5655
5828
  "text": "GraphEdge[]"
5656
- }
5829
+ },
5830
+ "description": "Edges to render on the canvas (after search/filter/highlight processing)"
5657
5831
  },
5658
5832
  {
5659
5833
  "kind": "field",
5660
5834
  "name": "filteredNodes",
5661
5835
  "type": {
5662
5836
  "text": "GraphNode[]"
5663
- }
5837
+ },
5838
+ "description": "Nodes remaining after filter application (for sidebar stats)"
5664
5839
  },
5665
5840
  {
5666
5841
  "kind": "field",
5667
5842
  "name": "filteredEdges",
5668
5843
  "type": {
5669
5844
  "text": "GraphEdge[]"
5670
- }
5845
+ },
5846
+ "description": "Edges remaining after filter application (for sidebar stats)"
5671
5847
  },
5672
5848
  {
5673
5849
  "kind": "field",
5674
5850
  "name": "allNodes",
5675
5851
  "type": {
5676
5852
  "text": "GraphNode[]"
5677
- }
5853
+ },
5854
+ "description": "All nodes in the graph (unfiltered, for sidebar filter computation)"
5678
5855
  },
5679
5856
  {
5680
5857
  "kind": "field",
5681
5858
  "name": "allEdges",
5682
5859
  "type": {
5683
5860
  "text": "GraphEdge[]"
5684
- }
5861
+ },
5862
+ "description": "All edges in the graph (unfiltered, for sidebar filter computation)"
5685
5863
  },
5686
5864
  {
5687
5865
  "kind": "field",
5688
5866
  "name": "clusters",
5689
5867
  "type": {
5690
5868
  "text": "Cluster[] | undefined"
5691
- }
5869
+ },
5870
+ "description": "Available clusters from the layout engine"
5692
5871
  },
5693
5872
  {
5694
5873
  "kind": "field",
5695
5874
  "name": "transitiveDeps",
5696
5875
  "type": {
5697
5876
  "text": "TransitiveResult"
5698
- }
5877
+ },
5878
+ "description": "Transitive dependency chain for the selected node"
5699
5879
  },
5700
5880
  {
5701
5881
  "kind": "field",
5702
5882
  "name": "transitiveDependents",
5703
5883
  "type": {
5704
5884
  "text": "TransitiveResult"
5705
- }
5885
+ },
5886
+ "description": "Transitive dependent chain for the selected node"
5706
5887
  },
5707
5888
  {
5708
5889
  "kind": "method",
@@ -5833,6 +6014,7 @@
5833
6014
  "type": {
5834
6015
  "text": "AppError | null"
5835
6016
  },
6017
+ "description": "The error to display in this toast",
5836
6018
  "default": "null"
5837
6019
  },
5838
6020
  {
@@ -5841,6 +6023,7 @@
5841
6023
  "type": {
5842
6024
  "text": "boolean"
5843
6025
  },
6026
+ "description": "Whether the toast is currently visible (triggers slide-in animation)",
5844
6027
  "default": "false",
5845
6028
  "attribute": "visible",
5846
6029
  "reflects": true
@@ -5888,6 +6071,7 @@
5888
6071
  "type": {
5889
6072
  "text": "boolean"
5890
6073
  },
6074
+ "description": "Whether the toast is currently visible (triggers slide-in animation)",
5891
6075
  "default": "false",
5892
6076
  "fieldName": "visible"
5893
6077
  }
@@ -5922,7 +6106,7 @@
5922
6106
  },
5923
6107
  {
5924
6108
  "kind": "javascript-module",
5925
- "path": "src/ui/components/error-notification-container.ts",
6109
+ "path": "src/ui/components/toast-container.ts",
5926
6110
  "declarations": [
5927
6111
  {
5928
6112
  "kind": "class",
@@ -5968,7 +6152,7 @@
5968
6152
  ],
5969
6153
  "superclass": {
5970
6154
  "name": "SignalWatcherLitElement",
5971
- "module": "src/ui/components/error-notification-container.ts"
6155
+ "module": "src/ui/components/toast-container.ts"
5972
6156
  },
5973
6157
  "summary": "Error toast notification stack manager",
5974
6158
  "tagName": "xcode-graph-error-notification-container",
@@ -5981,7 +6165,7 @@
5981
6165
  "name": "GraphErrorNotificationContainer",
5982
6166
  "declaration": {
5983
6167
  "name": "GraphErrorNotificationContainer",
5984
- "module": "src/ui/components/error-notification-container.ts"
6168
+ "module": "src/ui/components/toast-container.ts"
5985
6169
  }
5986
6170
  },
5987
6171
  {
@@ -5989,14 +6173,145 @@
5989
6173
  "name": "xcode-graph-error-notification-container",
5990
6174
  "declaration": {
5991
6175
  "name": "GraphErrorNotificationContainer",
5992
- "module": "src/ui/components/error-notification-container.ts"
6176
+ "module": "src/ui/components/toast-container.ts"
5993
6177
  }
5994
6178
  }
5995
6179
  ]
5996
6180
  },
5997
6181
  {
5998
6182
  "kind": "javascript-module",
5999
- "path": "src/components/graph-app.ts",
6183
+ "path": "src/ui/components/file-upload.ts",
6184
+ "declarations": [
6185
+ {
6186
+ "kind": "class",
6187
+ "description": "Overlay button for loading a Tuist graph JSON file via file picker or drag-and-drop.",
6188
+ "name": "GraphFileUpload",
6189
+ "members": [
6190
+ {
6191
+ "kind": "field",
6192
+ "name": "isDragOver",
6193
+ "type": {
6194
+ "text": "boolean"
6195
+ },
6196
+ "privacy": "private",
6197
+ "default": "false"
6198
+ },
6199
+ {
6200
+ "kind": "method",
6201
+ "name": "handleClick",
6202
+ "privacy": "private"
6203
+ },
6204
+ {
6205
+ "kind": "method",
6206
+ "name": "handleKeyDown",
6207
+ "privacy": "private",
6208
+ "parameters": [
6209
+ {
6210
+ "name": "e",
6211
+ "type": {
6212
+ "text": "KeyboardEvent"
6213
+ }
6214
+ }
6215
+ ]
6216
+ },
6217
+ {
6218
+ "kind": "method",
6219
+ "name": "handleFileChange",
6220
+ "privacy": "private",
6221
+ "parameters": [
6222
+ {
6223
+ "name": "e",
6224
+ "type": {
6225
+ "text": "Event"
6226
+ }
6227
+ }
6228
+ ]
6229
+ },
6230
+ {
6231
+ "kind": "method",
6232
+ "name": "handleDragOver",
6233
+ "privacy": "private",
6234
+ "parameters": [
6235
+ {
6236
+ "name": "e",
6237
+ "type": {
6238
+ "text": "DragEvent"
6239
+ }
6240
+ }
6241
+ ]
6242
+ },
6243
+ {
6244
+ "kind": "method",
6245
+ "name": "handleDragLeave",
6246
+ "privacy": "private"
6247
+ },
6248
+ {
6249
+ "kind": "method",
6250
+ "name": "handleDrop",
6251
+ "privacy": "private",
6252
+ "parameters": [
6253
+ {
6254
+ "name": "e",
6255
+ "type": {
6256
+ "text": "DragEvent"
6257
+ }
6258
+ }
6259
+ ]
6260
+ },
6261
+ {
6262
+ "kind": "method",
6263
+ "name": "readFile",
6264
+ "privacy": "private",
6265
+ "parameters": [
6266
+ {
6267
+ "name": "file",
6268
+ "type": {
6269
+ "text": "File"
6270
+ }
6271
+ }
6272
+ ]
6273
+ }
6274
+ ],
6275
+ "events": [
6276
+ {
6277
+ "name": "graph-file-loaded",
6278
+ "type": {
6279
+ "text": "CustomEvent"
6280
+ },
6281
+ "description": "Dispatched when a valid JSON file is loaded (detail: { raw: unknown })"
6282
+ }
6283
+ ],
6284
+ "superclass": {
6285
+ "name": "LitElement",
6286
+ "package": "lit"
6287
+ },
6288
+ "summary": "File upload button with drag-and-drop support",
6289
+ "tagName": "xcode-graph-file-upload",
6290
+ "customElement": true
6291
+ }
6292
+ ],
6293
+ "exports": [
6294
+ {
6295
+ "kind": "js",
6296
+ "name": "GraphFileUpload",
6297
+ "declaration": {
6298
+ "name": "GraphFileUpload",
6299
+ "module": "src/ui/components/file-upload.ts"
6300
+ }
6301
+ },
6302
+ {
6303
+ "kind": "custom-element-definition",
6304
+ "name": "xcode-graph-file-upload",
6305
+ "declaration": {
6306
+ "name": "GraphFileUpload",
6307
+ "module": "src/ui/components/file-upload.ts"
6308
+ }
6309
+ }
6310
+ ]
6311
+ },
6312
+ {
6313
+ "kind": "javascript-module",
6314
+ "path": "src/components/xcode-graph.ts",
6000
6315
  "declarations": [
6001
6316
  {
6002
6317
  "kind": "class",
@@ -6008,20 +6323,44 @@
6008
6323
  "name": "nodes",
6009
6324
  "type": {
6010
6325
  "text": "GraphNode[]"
6011
- }
6326
+ },
6327
+ "description": "Graph nodes to visualize"
6012
6328
  },
6013
6329
  {
6014
6330
  "kind": "field",
6015
6331
  "name": "edges",
6016
6332
  "type": {
6017
6333
  "text": "GraphEdge[]"
6018
- }
6334
+ },
6335
+ "description": "Graph edges connecting the nodes"
6019
6336
  },
6020
6337
  {
6021
6338
  "kind": "field",
6022
6339
  "name": "layoutOptions",
6023
6340
  "type": {
6024
6341
  "text": "LayoutOptions | undefined"
6342
+ },
6343
+ "description": "Optional layout configuration for ELK hierarchical layout"
6344
+ },
6345
+ {
6346
+ "kind": "field",
6347
+ "name": "showUpload",
6348
+ "type": {
6349
+ "text": "boolean"
6350
+ },
6351
+ "description": "Whether to show the file upload overlay for loading graph JSON",
6352
+ "attribute": "show-upload"
6353
+ },
6354
+ {
6355
+ "kind": "field",
6356
+ "name": "colorScheme",
6357
+ "type": {
6358
+ "text": "ColorScheme"
6359
+ },
6360
+ "description": "Color scheme preference. Set to `'light'` or `'dark'` to force a mode,\nor `'auto'` (default) to follow the user's system preference.",
6361
+ "attribute": "color-scheme",
6362
+ "expandedType": {
6363
+ "text": "'light' | 'dark' | 'auto'"
6025
6364
  }
6026
6365
  },
6027
6366
  {
@@ -6051,6 +6390,15 @@
6051
6390
  "privacy": "private",
6052
6391
  "default": "false"
6053
6392
  },
6393
+ {
6394
+ "kind": "field",
6395
+ "name": "mediaQueryCleanup",
6396
+ "type": {
6397
+ "text": "(() => void) | null"
6398
+ },
6399
+ "privacy": "private",
6400
+ "default": "null"
6401
+ },
6054
6402
  {
6055
6403
  "kind": "method",
6056
6404
  "name": "refreshGraphData",
@@ -6070,6 +6418,34 @@
6070
6418
  }
6071
6419
  ]
6072
6420
  },
6421
+ {
6422
+ "kind": "method",
6423
+ "name": "applyColorScheme",
6424
+ "privacy": "private",
6425
+ "return": {
6426
+ "type": {
6427
+ "text": "void"
6428
+ }
6429
+ }
6430
+ },
6431
+ {
6432
+ "kind": "method",
6433
+ "name": "setThemeAttribute",
6434
+ "privacy": "private",
6435
+ "return": {
6436
+ "type": {
6437
+ "text": "void"
6438
+ }
6439
+ },
6440
+ "parameters": [
6441
+ {
6442
+ "name": "theme",
6443
+ "type": {
6444
+ "text": "'light' | 'dark'"
6445
+ }
6446
+ }
6447
+ ]
6448
+ },
6073
6449
  {
6074
6450
  "kind": "method",
6075
6451
  "name": "seedData",
@@ -6086,7 +6462,7 @@
6086
6462
  "privacy": "public",
6087
6463
  "return": {
6088
6464
  "type": {
6089
- "text": "void"
6465
+ "text": "Promise<void>"
6090
6466
  }
6091
6467
  },
6092
6468
  "parameters": [
@@ -6097,12 +6473,46 @@
6097
6473
  }
6098
6474
  }
6099
6475
  ],
6100
- "description": "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."
6476
+ "description": "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."
6477
+ },
6478
+ {
6479
+ "kind": "method",
6480
+ "name": "handleFileLoaded",
6481
+ "privacy": "private",
6482
+ "parameters": [
6483
+ {
6484
+ "name": "e",
6485
+ "type": {
6486
+ "text": "CustomEvent<{ raw: unknown }>"
6487
+ }
6488
+ }
6489
+ ]
6490
+ }
6491
+ ],
6492
+ "attributes": [
6493
+ {
6494
+ "name": "show-upload",
6495
+ "type": {
6496
+ "text": "boolean"
6497
+ },
6498
+ "description": "Whether to show the file upload overlay for loading graph JSON",
6499
+ "fieldName": "showUpload"
6500
+ },
6501
+ {
6502
+ "name": "color-scheme",
6503
+ "type": {
6504
+ "text": "ColorScheme"
6505
+ },
6506
+ "description": "Color scheme preference. Set to `'light'` or `'dark'` to force a mode,\nor `'auto'` (default) to follow the user's system preference.",
6507
+ "fieldName": "colorScheme",
6508
+ "expandedType": {
6509
+ "text": "'light' | 'dark' | 'auto'"
6510
+ }
6101
6511
  }
6102
6512
  ],
6103
6513
  "superclass": {
6104
6514
  "name": "SignalWatcherLitElement",
6105
- "module": "src/components/graph-app.ts"
6515
+ "module": "src/components/xcode-graph.ts"
6106
6516
  },
6107
6517
  "summary": "Embeddable graph visualization entry point",
6108
6518
  "tagName": "xcode-graph",
@@ -6115,7 +6525,7 @@
6115
6525
  "name": "GraphApp",
6116
6526
  "declaration": {
6117
6527
  "name": "GraphApp",
6118
- "module": "src/components/graph-app.ts"
6528
+ "module": "src/components/xcode-graph.ts"
6119
6529
  }
6120
6530
  },
6121
6531
  {
@@ -6123,7 +6533,7 @@
6123
6533
  "name": "xcode-graph",
6124
6534
  "declaration": {
6125
6535
  "name": "GraphApp",
6126
- "module": "src/components/graph-app.ts"
6536
+ "module": "src/components/xcode-graph.ts"
6127
6537
  }
6128
6538
  }
6129
6539
  ]
@@ -7048,6 +7458,7 @@
7048
7458
  "type": {
7049
7459
  "text": "string[][]"
7050
7460
  },
7461
+ "description": "Array of circular dependency cycles, each cycle is a list of node names",
7051
7462
  "default": "[]"
7052
7463
  },
7053
7464
  {
@@ -7358,6 +7769,7 @@
7358
7769
  "type": {
7359
7770
  "text": "boolean"
7360
7771
  },
7772
+ "description": "Whether the sidebar is currently collapsed",
7361
7773
  "attribute": "collapsed",
7362
7774
  "reflects": true
7363
7775
  },
@@ -7367,6 +7779,7 @@
7367
7779
  "type": {
7368
7780
  "text": "boolean"
7369
7781
  },
7782
+ "description": "Whether the sidebar should start collapsed on first render",
7370
7783
  "attribute": "defaultCollapsed"
7371
7784
  },
7372
7785
  {
@@ -7421,6 +7834,7 @@
7421
7834
  "type": {
7422
7835
  "text": "boolean"
7423
7836
  },
7837
+ "description": "Whether the sidebar is currently collapsed",
7424
7838
  "fieldName": "collapsed"
7425
7839
  },
7426
7840
  {
@@ -7428,6 +7842,7 @@
7428
7842
  "type": {
7429
7843
  "text": "boolean"
7430
7844
  },
7845
+ "description": "Whether the sidebar should start collapsed on first render",
7431
7846
  "fieldName": "defaultCollapsed"
7432
7847
  },
7433
7848
  {