xcode-graph 0.1.1 → 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/README.md +266 -44
- package/custom-elements.json +903 -437
- package/dist/elk-worker.js +104592 -0
- package/dist/elk.bundled.js +5907 -5981
- package/dist/micro-layout.worker.js +1420 -0
- package/dist/xcode-graph.js +25192 -13833
- package/dist/xcode-graph.service.js +12 -1
- package/package.json +32 -46
- package/vscode.css-custom-data.json +0 -5
- package/vscode.html-custom-data.json +10 -20
- package/web-types.json +23 -46
- package/dist/flow.js +0 -883
package/custom-elements.json
CHANGED
|
@@ -59,12 +59,14 @@
|
|
|
59
59
|
"text": "KeyboardEvent"
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
|
-
]
|
|
62
|
+
],
|
|
63
|
+
"description": "Handles arrow key navigation, Home/End, and Enter/Space selection within the node tree."
|
|
63
64
|
},
|
|
64
65
|
{
|
|
65
66
|
"kind": "method",
|
|
66
67
|
"name": "focusCurrentNode",
|
|
67
|
-
"privacy": "private"
|
|
68
|
+
"privacy": "private",
|
|
69
|
+
"description": "Moves DOM focus to the tree item at the current focused index."
|
|
68
70
|
},
|
|
69
71
|
{
|
|
70
72
|
"kind": "method",
|
|
@@ -102,7 +104,7 @@
|
|
|
102
104
|
"privacy": "private",
|
|
103
105
|
"return": {
|
|
104
106
|
"type": {
|
|
105
|
-
"text": "
|
|
107
|
+
"text": ""
|
|
106
108
|
}
|
|
107
109
|
},
|
|
108
110
|
"parameters": [
|
|
@@ -110,9 +112,11 @@
|
|
|
110
112
|
"name": "node",
|
|
111
113
|
"type": {
|
|
112
114
|
"text": "GraphNode"
|
|
113
|
-
}
|
|
115
|
+
},
|
|
116
|
+
"description": "The graph node to describe."
|
|
114
117
|
}
|
|
115
|
-
]
|
|
118
|
+
],
|
|
119
|
+
"description": "Builds a human-readable description of a node for screen readers."
|
|
116
120
|
},
|
|
117
121
|
{
|
|
118
122
|
"kind": "method",
|
|
@@ -175,9 +179,18 @@
|
|
|
175
179
|
"declarations": [
|
|
176
180
|
{
|
|
177
181
|
"kind": "class",
|
|
178
|
-
"description": "
|
|
182
|
+
"description": "Canvas2D graph visualization component. Renders nodes, edges, and clusters\nusing raw Canvas2D with pan, zoom, and interactive selection support.",
|
|
179
183
|
"name": "GraphCanvas",
|
|
180
184
|
"members": [
|
|
185
|
+
{
|
|
186
|
+
"kind": "field",
|
|
187
|
+
"name": "CANVAS_PROPS",
|
|
188
|
+
"privacy": "private",
|
|
189
|
+
"static": true,
|
|
190
|
+
"readonly": true,
|
|
191
|
+
"default": "new Set([ 'nodes', 'edges', 'selectedNode', 'selectedCluster', 'searchQuery', 'viewMode', 'enableAnimation', 'showDirectDeps', 'showTransitiveDeps', 'showDirectDependents', 'showTransitiveDependents', ])",
|
|
192
|
+
"description": "Properties that affect canvas rendering — other Lit properties (e.g. internal state) don't need a render."
|
|
193
|
+
},
|
|
181
194
|
{
|
|
182
195
|
"kind": "field",
|
|
183
196
|
"name": "nodes",
|
|
@@ -220,8 +233,8 @@
|
|
|
220
233
|
"type": {
|
|
221
234
|
"text": "string | null"
|
|
222
235
|
},
|
|
223
|
-
"
|
|
224
|
-
"
|
|
236
|
+
"default": "null",
|
|
237
|
+
"description": "Currently hovered node ID — plain field, only used for canvas rendering."
|
|
225
238
|
},
|
|
226
239
|
{
|
|
227
240
|
"kind": "field",
|
|
@@ -229,7 +242,7 @@
|
|
|
229
242
|
"type": {
|
|
230
243
|
"text": "string"
|
|
231
244
|
},
|
|
232
|
-
"description": "Active search query
|
|
245
|
+
"description": "Active search query — attribute-bound from parent via search-query=\"...\"",
|
|
233
246
|
"default": "''",
|
|
234
247
|
"attribute": "search-query"
|
|
235
248
|
},
|
|
@@ -239,18 +252,28 @@
|
|
|
239
252
|
"type": {
|
|
240
253
|
"text": "ViewMode"
|
|
241
254
|
},
|
|
242
|
-
"description": "Display mode
|
|
243
|
-
"attribute": "view-mode"
|
|
255
|
+
"description": "Display mode — attribute-bound from parent via view-mode=\"...\"",
|
|
256
|
+
"attribute": "view-mode",
|
|
257
|
+
"parsedType": {
|
|
258
|
+
"text": "'full' | 'focused' | 'path' | 'dependents' | 'both'"
|
|
259
|
+
}
|
|
244
260
|
},
|
|
245
261
|
{
|
|
246
262
|
"kind": "field",
|
|
247
|
-
"name": "
|
|
263
|
+
"name": "_zoom",
|
|
248
264
|
"type": {
|
|
249
265
|
"text": "number"
|
|
250
266
|
},
|
|
251
|
-
"
|
|
267
|
+
"privacy": "private",
|
|
252
268
|
"default": "1",
|
|
253
|
-
"
|
|
269
|
+
"description": "Current zoom level.\nUses a plain field + setter to trigger canvas re-render without a full\nLit update cycle, which was causing lag during wheel-zoom."
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"kind": "field",
|
|
273
|
+
"name": "zoom",
|
|
274
|
+
"type": {
|
|
275
|
+
"text": "number"
|
|
276
|
+
}
|
|
254
277
|
},
|
|
255
278
|
{
|
|
256
279
|
"kind": "field",
|
|
@@ -268,7 +291,7 @@
|
|
|
268
291
|
"type": {
|
|
269
292
|
"text": "TransitiveResult | undefined"
|
|
270
293
|
},
|
|
271
|
-
"description": "Transitive dependency chain for
|
|
294
|
+
"description": "Transitive dependency chain — plain field, only used for canvas rendering."
|
|
272
295
|
},
|
|
273
296
|
{
|
|
274
297
|
"kind": "field",
|
|
@@ -276,7 +299,7 @@
|
|
|
276
299
|
"type": {
|
|
277
300
|
"text": "TransitiveResult | undefined"
|
|
278
301
|
},
|
|
279
|
-
"description": "Transitive dependent chain for
|
|
302
|
+
"description": "Transitive dependent chain — plain field, only used for canvas rendering."
|
|
280
303
|
},
|
|
281
304
|
{
|
|
282
305
|
"kind": "field",
|
|
@@ -284,7 +307,10 @@
|
|
|
284
307
|
"type": {
|
|
285
308
|
"text": "PreviewFilter | undefined"
|
|
286
309
|
},
|
|
287
|
-
"description": "Active filter preview
|
|
310
|
+
"description": "Active filter preview — plain field, only used for canvas rendering.",
|
|
311
|
+
"parsedType": {
|
|
312
|
+
"text": "null | { type: 'platform' | 'origin' | 'project' | 'nodeType' | 'package' | 'cluster', value: string } | undefined"
|
|
313
|
+
}
|
|
288
314
|
},
|
|
289
315
|
{
|
|
290
316
|
"kind": "field",
|
|
@@ -292,7 +318,7 @@
|
|
|
292
318
|
"type": {
|
|
293
319
|
"text": "boolean"
|
|
294
320
|
},
|
|
295
|
-
"description": "Whether to highlight direct dependency edges",
|
|
321
|
+
"description": "Whether to highlight direct dependency edges — attribute-bound via ?show-direct-deps",
|
|
296
322
|
"default": "false",
|
|
297
323
|
"attribute": "show-direct-deps"
|
|
298
324
|
},
|
|
@@ -302,7 +328,7 @@
|
|
|
302
328
|
"type": {
|
|
303
329
|
"text": "boolean"
|
|
304
330
|
},
|
|
305
|
-
"description": "Whether to highlight transitive dependency edges",
|
|
331
|
+
"description": "Whether to highlight transitive dependency edges — attribute-bound via ?show-transitive-deps",
|
|
306
332
|
"default": "false",
|
|
307
333
|
"attribute": "show-transitive-deps"
|
|
308
334
|
},
|
|
@@ -312,7 +338,7 @@
|
|
|
312
338
|
"type": {
|
|
313
339
|
"text": "boolean"
|
|
314
340
|
},
|
|
315
|
-
"description": "Whether to highlight direct dependent edges",
|
|
341
|
+
"description": "Whether to highlight direct dependent edges — attribute-bound via ?show-direct-dependents",
|
|
316
342
|
"default": "false",
|
|
317
343
|
"attribute": "show-direct-dependents"
|
|
318
344
|
},
|
|
@@ -322,7 +348,7 @@
|
|
|
322
348
|
"type": {
|
|
323
349
|
"text": "boolean"
|
|
324
350
|
},
|
|
325
|
-
"description": "Whether to highlight transitive dependent edges",
|
|
351
|
+
"description": "Whether to highlight transitive dependent edges — attribute-bound via ?show-transitive-dependents",
|
|
326
352
|
"default": "false",
|
|
327
353
|
"attribute": "show-transitive-dependents"
|
|
328
354
|
},
|
|
@@ -332,24 +358,25 @@
|
|
|
332
358
|
"type": {
|
|
333
359
|
"text": "Set<string>"
|
|
334
360
|
},
|
|
335
|
-
"
|
|
336
|
-
"
|
|
361
|
+
"default": "new Set()",
|
|
362
|
+
"description": "Set of node IDs that should be visually dimmed"
|
|
337
363
|
},
|
|
338
364
|
{
|
|
339
365
|
"kind": "field",
|
|
340
|
-
"name": "
|
|
366
|
+
"name": "containerEl",
|
|
341
367
|
"type": {
|
|
342
|
-
"text": "
|
|
368
|
+
"text": "HTMLDivElement"
|
|
343
369
|
},
|
|
344
370
|
"privacy": "private"
|
|
345
371
|
},
|
|
346
372
|
{
|
|
347
373
|
"kind": "field",
|
|
348
|
-
"name": "
|
|
374
|
+
"name": "scene",
|
|
349
375
|
"type": {
|
|
350
|
-
"text": "
|
|
376
|
+
"text": "CanvasScene | null"
|
|
351
377
|
},
|
|
352
|
-
"privacy": "private"
|
|
378
|
+
"privacy": "private",
|
|
379
|
+
"default": "null"
|
|
353
380
|
},
|
|
354
381
|
{
|
|
355
382
|
"kind": "field",
|
|
@@ -360,62 +387,51 @@
|
|
|
360
387
|
},
|
|
361
388
|
{
|
|
362
389
|
"kind": "field",
|
|
363
|
-
"name": "
|
|
390
|
+
"name": "resizeObserver",
|
|
391
|
+
"type": {
|
|
392
|
+
"text": "ResizeObserver | null"
|
|
393
|
+
},
|
|
364
394
|
"privacy": "private",
|
|
365
|
-
"
|
|
366
|
-
"default": "new ResizeController(this, { callback: () => this.resizeCanvas(), })"
|
|
395
|
+
"default": "null"
|
|
367
396
|
},
|
|
368
397
|
{
|
|
369
398
|
"kind": "field",
|
|
370
|
-
"name": "
|
|
399
|
+
"name": "resizeRafId",
|
|
400
|
+
"type": {
|
|
401
|
+
"text": "number | null"
|
|
402
|
+
},
|
|
371
403
|
"privacy": "private",
|
|
372
|
-
"
|
|
373
|
-
"default": "new IntersectionController(this, { callback: (entries) => entries.some((e) => e.isIntersecting), })"
|
|
404
|
+
"default": "null"
|
|
374
405
|
},
|
|
375
406
|
{
|
|
376
407
|
"kind": "field",
|
|
377
|
-
"name": "
|
|
408
|
+
"name": "intersectionObserver",
|
|
378
409
|
"type": {
|
|
379
|
-
"text": "
|
|
410
|
+
"text": "IntersectionObserver | null"
|
|
380
411
|
},
|
|
381
412
|
"privacy": "private",
|
|
382
|
-
"default": "
|
|
413
|
+
"default": "null"
|
|
383
414
|
},
|
|
384
415
|
{
|
|
385
416
|
"kind": "field",
|
|
386
|
-
"name": "
|
|
417
|
+
"name": "_isVisible",
|
|
418
|
+
"type": {
|
|
419
|
+
"text": "boolean"
|
|
420
|
+
},
|
|
387
421
|
"privacy": "private",
|
|
388
|
-
"default": "
|
|
422
|
+
"default": "true"
|
|
389
423
|
},
|
|
390
424
|
{
|
|
391
425
|
"kind": "field",
|
|
392
|
-
"name": "
|
|
426
|
+
"name": "manualNodePositions",
|
|
393
427
|
"privacy": "private",
|
|
394
428
|
"default": "new Map<string, { x: number; y: number }>()"
|
|
395
429
|
},
|
|
396
430
|
{
|
|
397
431
|
"kind": "field",
|
|
398
|
-
"name": "
|
|
399
|
-
"privacy": "private",
|
|
400
|
-
"default": "new Map<string, Path2D>()"
|
|
401
|
-
},
|
|
402
|
-
{
|
|
403
|
-
"kind": "field",
|
|
404
|
-
"name": "edgePathCache",
|
|
405
|
-
"privacy": "private",
|
|
406
|
-
"default": "new Map<string, Path2D>()"
|
|
407
|
-
},
|
|
408
|
-
{
|
|
409
|
-
"kind": "field",
|
|
410
|
-
"name": "nodeWeights",
|
|
411
|
-
"privacy": "private",
|
|
412
|
-
"default": "new Map<string, number>()"
|
|
413
|
-
},
|
|
414
|
-
{
|
|
415
|
-
"kind": "field",
|
|
416
|
-
"name": "nodeMap",
|
|
432
|
+
"name": "manualClusterPositions",
|
|
417
433
|
"privacy": "private",
|
|
418
|
-
"default": "new Map<string,
|
|
434
|
+
"default": "new Map<string, { x: number; y: number }>()"
|
|
419
435
|
},
|
|
420
436
|
{
|
|
421
437
|
"kind": "field",
|
|
@@ -426,24 +442,6 @@
|
|
|
426
442
|
"privacy": "private",
|
|
427
443
|
"default": "null"
|
|
428
444
|
},
|
|
429
|
-
{
|
|
430
|
-
"kind": "field",
|
|
431
|
-
"name": "routedEdgeMapCache",
|
|
432
|
-
"type": {
|
|
433
|
-
"text": "Map<string, RoutedEdge> | null"
|
|
434
|
-
},
|
|
435
|
-
"privacy": "private",
|
|
436
|
-
"default": "null"
|
|
437
|
-
},
|
|
438
|
-
{
|
|
439
|
-
"kind": "field",
|
|
440
|
-
"name": "lastRoutedEdgesRef",
|
|
441
|
-
"type": {
|
|
442
|
-
"text": "RoutedEdge[] | undefined"
|
|
443
|
-
},
|
|
444
|
-
"privacy": "private",
|
|
445
|
-
"default": "undefined"
|
|
446
|
-
},
|
|
447
445
|
{
|
|
448
446
|
"kind": "field",
|
|
449
447
|
"name": "theme",
|
|
@@ -457,7 +455,7 @@
|
|
|
457
455
|
"name": "animationLoop",
|
|
458
456
|
"privacy": "private",
|
|
459
457
|
"readonly": true,
|
|
460
|
-
"default": "new AnimationLoopController(this, { onRender: (timestamp, dt) => this.onFrame(timestamp, dt), shouldAnimate: () => this.isAnimating, isVisible: () => this.
|
|
458
|
+
"default": "new AnimationLoopController(this, { onRender: (timestamp, dt) => this.onFrame(timestamp, dt), shouldAnimate: () => this.isAnimating, isVisible: () => this._isVisible, })"
|
|
461
459
|
},
|
|
462
460
|
{
|
|
463
461
|
"kind": "field",
|
|
@@ -496,18 +494,7 @@
|
|
|
496
494
|
"kind": "field",
|
|
497
495
|
"name": "fadingOutNodes",
|
|
498
496
|
"privacy": "private",
|
|
499
|
-
"default": "new Map<string,
|
|
500
|
-
},
|
|
501
|
-
{
|
|
502
|
-
"kind": "field",
|
|
503
|
-
"name": "FADE_OUT_DURATION",
|
|
504
|
-
"type": {
|
|
505
|
-
"text": "number"
|
|
506
|
-
},
|
|
507
|
-
"privacy": "private",
|
|
508
|
-
"static": true,
|
|
509
|
-
"readonly": true,
|
|
510
|
-
"default": "250"
|
|
497
|
+
"default": "new Map<string, FadingNode>()"
|
|
511
498
|
},
|
|
512
499
|
{
|
|
513
500
|
"kind": "method",
|
|
@@ -520,22 +507,14 @@
|
|
|
520
507
|
"text": "PropertyValues<this>"
|
|
521
508
|
}
|
|
522
509
|
}
|
|
523
|
-
]
|
|
524
|
-
|
|
525
|
-
{
|
|
526
|
-
"kind": "method",
|
|
527
|
-
"name": "updatePathCache",
|
|
528
|
-
"privacy": "private"
|
|
529
|
-
},
|
|
530
|
-
{
|
|
531
|
-
"kind": "method",
|
|
532
|
-
"name": "rebuildNodeMap",
|
|
533
|
-
"privacy": "private"
|
|
510
|
+
],
|
|
511
|
+
"description": "Detects nodes removed between updates and queues them for fade-out animation."
|
|
534
512
|
},
|
|
535
513
|
{
|
|
536
514
|
"kind": "method",
|
|
537
515
|
"name": "updateNodeAlphaTargets",
|
|
538
|
-
"privacy": "private"
|
|
516
|
+
"privacy": "private",
|
|
517
|
+
"description": "Updates opacity animation targets based on current selection and cluster state."
|
|
539
518
|
},
|
|
540
519
|
{
|
|
541
520
|
"kind": "method",
|
|
@@ -545,27 +524,14 @@
|
|
|
545
524
|
"type": {
|
|
546
525
|
"text": "Set<string>"
|
|
547
526
|
}
|
|
548
|
-
}
|
|
549
|
-
|
|
550
|
-
{
|
|
551
|
-
"kind": "method",
|
|
552
|
-
"name": "getRoutedEdgeMap",
|
|
553
|
-
"privacy": "private",
|
|
554
|
-
"return": {
|
|
555
|
-
"type": {
|
|
556
|
-
"text": "Map<string, RoutedEdge>"
|
|
557
|
-
}
|
|
558
|
-
}
|
|
559
|
-
},
|
|
560
|
-
{
|
|
561
|
-
"kind": "field",
|
|
562
|
-
"name": "getPathForNode",
|
|
563
|
-
"privacy": "private"
|
|
527
|
+
},
|
|
528
|
+
"description": "Returns the cached set of node IDs connected to the selected node."
|
|
564
529
|
},
|
|
565
530
|
{
|
|
566
531
|
"kind": "method",
|
|
567
532
|
"name": "centerGraph",
|
|
568
|
-
"privacy": "private"
|
|
533
|
+
"privacy": "private",
|
|
534
|
+
"description": "Centers the pan offset to the middle of the component's bounding rectangle."
|
|
569
535
|
},
|
|
570
536
|
{
|
|
571
537
|
"kind": "method",
|
|
@@ -574,22 +540,20 @@
|
|
|
574
540
|
"type": {
|
|
575
541
|
"text": "void"
|
|
576
542
|
}
|
|
577
|
-
}
|
|
543
|
+
},
|
|
544
|
+
"description": "Adjusts zoom and pan so that all clusters fit within the visible viewport."
|
|
578
545
|
},
|
|
579
546
|
{
|
|
580
547
|
"kind": "method",
|
|
581
|
-
"name": "
|
|
548
|
+
"name": "scheduleResize",
|
|
582
549
|
"privacy": "private",
|
|
583
|
-
"
|
|
584
|
-
"type": {
|
|
585
|
-
"text": "InteractionContext"
|
|
586
|
-
}
|
|
587
|
-
}
|
|
550
|
+
"description": "Debounces resize via rAF so the scene resize and re-render happen\nin the same frame, preventing visible flashes during CSS transitions."
|
|
588
551
|
},
|
|
589
552
|
{
|
|
590
553
|
"kind": "method",
|
|
591
|
-
"name": "
|
|
592
|
-
"privacy": "private"
|
|
554
|
+
"name": "resizeScene",
|
|
555
|
+
"privacy": "private",
|
|
556
|
+
"description": "Resizes the canvas to match the element dimensions."
|
|
593
557
|
},
|
|
594
558
|
{
|
|
595
559
|
"kind": "field",
|
|
@@ -598,33 +562,14 @@
|
|
|
598
562
|
},
|
|
599
563
|
{
|
|
600
564
|
"kind": "field",
|
|
601
|
-
"name": "
|
|
602
|
-
"privacy": "private"
|
|
603
|
-
},
|
|
604
|
-
{
|
|
605
|
-
"kind": "field",
|
|
606
|
-
"name": "handleCanvasMouseMove",
|
|
607
|
-
"privacy": "private"
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
"kind": "field",
|
|
611
|
-
"name": "handleCanvasMouseUp",
|
|
612
|
-
"privacy": "private"
|
|
613
|
-
},
|
|
614
|
-
{
|
|
615
|
-
"kind": "field",
|
|
616
|
-
"name": "handleCanvasWheel",
|
|
617
|
-
"privacy": "private"
|
|
618
|
-
},
|
|
619
|
-
{
|
|
620
|
-
"kind": "field",
|
|
621
|
-
"name": "handleCanvasKeyDown",
|
|
565
|
+
"name": "handleContainerKeyDown",
|
|
622
566
|
"privacy": "private"
|
|
623
567
|
},
|
|
624
568
|
{
|
|
625
569
|
"kind": "method",
|
|
626
570
|
"name": "requestRender",
|
|
627
|
-
"privacy": "private"
|
|
571
|
+
"privacy": "private",
|
|
572
|
+
"description": "Schedules a canvas render on the next animation frame."
|
|
628
573
|
},
|
|
629
574
|
{
|
|
630
575
|
"kind": "method",
|
|
@@ -649,32 +594,19 @@
|
|
|
649
594
|
}
|
|
650
595
|
}
|
|
651
596
|
],
|
|
652
|
-
"description": "Frame callback invoked by AnimationLoopController when a render is needed.\nHandles animation ticking and delegates to
|
|
597
|
+
"description": "Frame callback invoked by AnimationLoopController when a render is needed.\nHandles animation ticking and delegates to renderScene()."
|
|
653
598
|
},
|
|
654
599
|
{
|
|
655
600
|
"kind": "method",
|
|
656
601
|
"name": "updateAnimatingState",
|
|
657
|
-
"privacy": "private"
|
|
658
|
-
|
|
659
|
-
{
|
|
660
|
-
"kind": "method",
|
|
661
|
-
"name": "renderCanvas",
|
|
662
|
-
"privacy": "private"
|
|
602
|
+
"privacy": "private",
|
|
603
|
+
"description": "Recalculates whether the animation loop should remain active based on current state."
|
|
663
604
|
},
|
|
664
605
|
{
|
|
665
606
|
"kind": "method",
|
|
666
|
-
"name": "
|
|
667
|
-
"privacy": "private"
|
|
668
|
-
|
|
669
|
-
{
|
|
670
|
-
"kind": "field",
|
|
671
|
-
"name": "getMousePos",
|
|
672
|
-
"privacy": "private"
|
|
673
|
-
},
|
|
674
|
-
{
|
|
675
|
-
"kind": "field",
|
|
676
|
-
"name": "screenToWorld",
|
|
677
|
-
"privacy": "private"
|
|
607
|
+
"name": "renderScene",
|
|
608
|
+
"privacy": "private",
|
|
609
|
+
"description": "Builds the scene config and delegates rendering to the canvas scene."
|
|
678
610
|
}
|
|
679
611
|
],
|
|
680
612
|
"events": [
|
|
@@ -723,7 +655,7 @@
|
|
|
723
655
|
"type": {
|
|
724
656
|
"text": "string"
|
|
725
657
|
},
|
|
726
|
-
"description": "Active search query
|
|
658
|
+
"description": "Active search query — attribute-bound from parent via search-query=\"...\"",
|
|
727
659
|
"default": "''",
|
|
728
660
|
"fieldName": "searchQuery"
|
|
729
661
|
},
|
|
@@ -732,17 +664,11 @@
|
|
|
732
664
|
"type": {
|
|
733
665
|
"text": "ViewMode"
|
|
734
666
|
},
|
|
735
|
-
"description": "Display mode
|
|
736
|
-
"fieldName": "viewMode"
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
"type": {
|
|
741
|
-
"text": "number"
|
|
742
|
-
},
|
|
743
|
-
"description": "Current zoom level (affects color saturation and label visibility)",
|
|
744
|
-
"default": "1",
|
|
745
|
-
"fieldName": "zoom"
|
|
667
|
+
"description": "Display mode — attribute-bound from parent via view-mode=\"...\"",
|
|
668
|
+
"fieldName": "viewMode",
|
|
669
|
+
"parsedType": {
|
|
670
|
+
"text": "'full' | 'focused' | 'path' | 'dependents' | 'both'"
|
|
671
|
+
}
|
|
746
672
|
},
|
|
747
673
|
{
|
|
748
674
|
"name": "enable-animation",
|
|
@@ -758,7 +684,7 @@
|
|
|
758
684
|
"type": {
|
|
759
685
|
"text": "boolean"
|
|
760
686
|
},
|
|
761
|
-
"description": "Whether to highlight direct dependency edges",
|
|
687
|
+
"description": "Whether to highlight direct dependency edges — attribute-bound via ?show-direct-deps",
|
|
762
688
|
"default": "false",
|
|
763
689
|
"fieldName": "showDirectDeps"
|
|
764
690
|
},
|
|
@@ -767,7 +693,7 @@
|
|
|
767
693
|
"type": {
|
|
768
694
|
"text": "boolean"
|
|
769
695
|
},
|
|
770
|
-
"description": "Whether to highlight transitive dependency edges",
|
|
696
|
+
"description": "Whether to highlight transitive dependency edges — attribute-bound via ?show-transitive-deps",
|
|
771
697
|
"default": "false",
|
|
772
698
|
"fieldName": "showTransitiveDeps"
|
|
773
699
|
},
|
|
@@ -776,7 +702,7 @@
|
|
|
776
702
|
"type": {
|
|
777
703
|
"text": "boolean"
|
|
778
704
|
},
|
|
779
|
-
"description": "Whether to highlight direct dependent edges",
|
|
705
|
+
"description": "Whether to highlight direct dependent edges — attribute-bound via ?show-direct-dependents",
|
|
780
706
|
"default": "false",
|
|
781
707
|
"fieldName": "showDirectDependents"
|
|
782
708
|
},
|
|
@@ -785,7 +711,7 @@
|
|
|
785
711
|
"type": {
|
|
786
712
|
"text": "boolean"
|
|
787
713
|
},
|
|
788
|
-
"description": "Whether to highlight transitive dependent edges",
|
|
714
|
+
"description": "Whether to highlight transitive dependent edges — attribute-bound via ?show-transitive-dependents",
|
|
789
715
|
"default": "false",
|
|
790
716
|
"fieldName": "showTransitiveDependents"
|
|
791
717
|
}
|
|
@@ -794,7 +720,7 @@
|
|
|
794
720
|
"name": "LitElement",
|
|
795
721
|
"package": "lit"
|
|
796
722
|
},
|
|
797
|
-
"summary": "
|
|
723
|
+
"summary": "Canvas2D interactive graph visualization",
|
|
798
724
|
"tagName": "xcode-graph-canvas",
|
|
799
725
|
"customElement": true
|
|
800
726
|
}
|
|
@@ -899,17 +825,20 @@
|
|
|
899
825
|
{
|
|
900
826
|
"kind": "method",
|
|
901
827
|
"name": "handleZoomIn",
|
|
902
|
-
"privacy": "private"
|
|
828
|
+
"privacy": "private",
|
|
829
|
+
"description": "Steps zoom to the next predefined level and dispatches a 'zoom-step' event."
|
|
903
830
|
},
|
|
904
831
|
{
|
|
905
832
|
"kind": "method",
|
|
906
833
|
"name": "handleZoomOut",
|
|
907
|
-
"privacy": "private"
|
|
834
|
+
"privacy": "private",
|
|
835
|
+
"description": "Steps zoom to the previous predefined level and dispatches a 'zoom-step' event."
|
|
908
836
|
},
|
|
909
837
|
{
|
|
910
838
|
"kind": "method",
|
|
911
839
|
"name": "handleZoomReset",
|
|
912
|
-
"privacy": "private"
|
|
840
|
+
"privacy": "private",
|
|
841
|
+
"description": "Dispatches a 'zoom-reset' event to fit the graph to the viewport."
|
|
913
842
|
},
|
|
914
843
|
{
|
|
915
844
|
"kind": "method",
|
|
@@ -922,7 +851,8 @@
|
|
|
922
851
|
"text": "WheelEvent"
|
|
923
852
|
}
|
|
924
853
|
}
|
|
925
|
-
]
|
|
854
|
+
],
|
|
855
|
+
"description": "Stops wheel events from propagating to the canvas zoom handler."
|
|
926
856
|
},
|
|
927
857
|
{
|
|
928
858
|
"kind": "method",
|
|
@@ -935,7 +865,8 @@
|
|
|
935
865
|
"text": "MouseEvent"
|
|
936
866
|
}
|
|
937
867
|
}
|
|
938
|
-
]
|
|
868
|
+
],
|
|
869
|
+
"description": "Stops mousedown events from propagating to the canvas drag handler."
|
|
939
870
|
}
|
|
940
871
|
],
|
|
941
872
|
"events": [
|
|
@@ -1164,7 +1095,7 @@
|
|
|
1164
1095
|
"description": "Button variant style",
|
|
1165
1096
|
"default": "'ghost'",
|
|
1166
1097
|
"attribute": "variant",
|
|
1167
|
-
"
|
|
1098
|
+
"parsedType": {
|
|
1168
1099
|
"text": "'ghost' | 'subtle' | 'solid'"
|
|
1169
1100
|
}
|
|
1170
1101
|
},
|
|
@@ -1177,7 +1108,7 @@
|
|
|
1177
1108
|
"description": "Button color scheme",
|
|
1178
1109
|
"default": "'neutral'",
|
|
1179
1110
|
"attribute": "color",
|
|
1180
|
-
"
|
|
1111
|
+
"parsedType": {
|
|
1181
1112
|
"text": "'neutral' | 'primary' | 'destructive'"
|
|
1182
1113
|
}
|
|
1183
1114
|
},
|
|
@@ -1190,7 +1121,7 @@
|
|
|
1190
1121
|
"description": "Button size",
|
|
1191
1122
|
"default": "'md'",
|
|
1192
1123
|
"attribute": "size",
|
|
1193
|
-
"
|
|
1124
|
+
"parsedType": {
|
|
1194
1125
|
"text": "'sm' | 'md'"
|
|
1195
1126
|
}
|
|
1196
1127
|
},
|
|
@@ -1224,7 +1155,7 @@
|
|
|
1224
1155
|
"description": "Button variant style",
|
|
1225
1156
|
"default": "'ghost'",
|
|
1226
1157
|
"fieldName": "variant",
|
|
1227
|
-
"
|
|
1158
|
+
"parsedType": {
|
|
1228
1159
|
"text": "'ghost' | 'subtle' | 'solid'"
|
|
1229
1160
|
}
|
|
1230
1161
|
},
|
|
@@ -1236,7 +1167,7 @@
|
|
|
1236
1167
|
"description": "Button color scheme",
|
|
1237
1168
|
"default": "'neutral'",
|
|
1238
1169
|
"fieldName": "color",
|
|
1239
|
-
"
|
|
1170
|
+
"parsedType": {
|
|
1240
1171
|
"text": "'neutral' | 'primary' | 'destructive'"
|
|
1241
1172
|
}
|
|
1242
1173
|
},
|
|
@@ -1248,7 +1179,7 @@
|
|
|
1248
1179
|
"description": "Button size",
|
|
1249
1180
|
"default": "'md'",
|
|
1250
1181
|
"fieldName": "size",
|
|
1251
|
-
"
|
|
1182
|
+
"parsedType": {
|
|
1252
1183
|
"text": "'sm' | 'md'"
|
|
1253
1184
|
}
|
|
1254
1185
|
},
|
|
@@ -1338,7 +1269,8 @@
|
|
|
1338
1269
|
{
|
|
1339
1270
|
"kind": "method",
|
|
1340
1271
|
"name": "handleToggle",
|
|
1341
|
-
"privacy": "private"
|
|
1272
|
+
"privacy": "private",
|
|
1273
|
+
"description": "Dispatches the toggle-collapse event when the collapse button is clicked"
|
|
1342
1274
|
}
|
|
1343
1275
|
],
|
|
1344
1276
|
"events": [
|
|
@@ -1508,27 +1440,8 @@
|
|
|
1508
1440
|
"text": "string"
|
|
1509
1441
|
}
|
|
1510
1442
|
}
|
|
1511
|
-
]
|
|
1512
|
-
|
|
1513
|
-
{
|
|
1514
|
-
"kind": "method",
|
|
1515
|
-
"name": "renderProductTypesIcon",
|
|
1516
|
-
"privacy": "private"
|
|
1517
|
-
},
|
|
1518
|
-
{
|
|
1519
|
-
"kind": "method",
|
|
1520
|
-
"name": "renderPlatformsIcon",
|
|
1521
|
-
"privacy": "private"
|
|
1522
|
-
},
|
|
1523
|
-
{
|
|
1524
|
-
"kind": "method",
|
|
1525
|
-
"name": "renderProjectsIcon",
|
|
1526
|
-
"privacy": "private"
|
|
1527
|
-
},
|
|
1528
|
-
{
|
|
1529
|
-
"kind": "method",
|
|
1530
|
-
"name": "renderPackagesIcon",
|
|
1531
|
-
"privacy": "private"
|
|
1443
|
+
],
|
|
1444
|
+
"description": "Dispatches an event to expand the sidebar to the given filter section"
|
|
1532
1445
|
}
|
|
1533
1446
|
],
|
|
1534
1447
|
"events": [
|
|
@@ -1725,7 +1638,8 @@
|
|
|
1725
1638
|
{
|
|
1726
1639
|
"kind": "method",
|
|
1727
1640
|
"name": "toggleExpanded",
|
|
1728
|
-
"privacy": "private"
|
|
1641
|
+
"privacy": "private",
|
|
1642
|
+
"description": "Toggles the expanded/collapsed state"
|
|
1729
1643
|
},
|
|
1730
1644
|
{
|
|
1731
1645
|
"kind": "field",
|
|
@@ -1753,7 +1667,8 @@
|
|
|
1753
1667
|
"type": {
|
|
1754
1668
|
"text": "TemplateResult | typeof nothing"
|
|
1755
1669
|
}
|
|
1756
|
-
}
|
|
1670
|
+
},
|
|
1671
|
+
"description": "Renders the code signing settings subsection"
|
|
1757
1672
|
},
|
|
1758
1673
|
{
|
|
1759
1674
|
"kind": "method",
|
|
@@ -1763,7 +1678,8 @@
|
|
|
1763
1678
|
"type": {
|
|
1764
1679
|
"text": "TemplateResult | typeof nothing"
|
|
1765
1680
|
}
|
|
1766
|
-
}
|
|
1681
|
+
},
|
|
1682
|
+
"description": "Renders the expanded build settings content"
|
|
1767
1683
|
}
|
|
1768
1684
|
],
|
|
1769
1685
|
"attributes": [
|
|
@@ -1811,7 +1727,7 @@
|
|
|
1811
1727
|
"declarations": [
|
|
1812
1728
|
{
|
|
1813
1729
|
"kind": "class",
|
|
1814
|
-
"description": "Reusable stats card component for displaying metrics.\
|
|
1730
|
+
"description": "Reusable stats card component for displaying metrics.\nCan be toggleable for interactive highlight controls.",
|
|
1815
1731
|
"name": "GraphStatsCard",
|
|
1816
1732
|
"members": [
|
|
1817
1733
|
{
|
|
@@ -1871,7 +1787,8 @@
|
|
|
1871
1787
|
{
|
|
1872
1788
|
"kind": "method",
|
|
1873
1789
|
"name": "handleClick",
|
|
1874
|
-
"privacy": "private"
|
|
1790
|
+
"privacy": "private",
|
|
1791
|
+
"description": "Dispatches card-toggle event when the card is toggleable and clicked"
|
|
1875
1792
|
}
|
|
1876
1793
|
],
|
|
1877
1794
|
"events": [
|
|
@@ -2100,7 +2017,8 @@
|
|
|
2100
2017
|
{
|
|
2101
2018
|
"kind": "method",
|
|
2102
2019
|
"name": "toggleExpanded",
|
|
2103
|
-
"privacy": "private"
|
|
2020
|
+
"privacy": "private",
|
|
2021
|
+
"description": "Toggles the section expanded/collapsed state"
|
|
2104
2022
|
},
|
|
2105
2023
|
{
|
|
2106
2024
|
"kind": "method",
|
|
@@ -2113,7 +2031,8 @@
|
|
|
2113
2031
|
"text": "string"
|
|
2114
2032
|
}
|
|
2115
2033
|
}
|
|
2116
|
-
]
|
|
2034
|
+
],
|
|
2035
|
+
"description": "Dispatches a toggle event for the specified metric card"
|
|
2117
2036
|
}
|
|
2118
2037
|
],
|
|
2119
2038
|
"events": [
|
|
@@ -2303,10 +2222,6 @@
|
|
|
2303
2222
|
{
|
|
2304
2223
|
"description": "Border color on hover (computed from color prop)",
|
|
2305
2224
|
"name": "--badge-border-hover"
|
|
2306
|
-
},
|
|
2307
|
-
{
|
|
2308
|
-
"description": "Glow color on hover (computed from color prop)",
|
|
2309
|
-
"name": "--badge-glow"
|
|
2310
2225
|
}
|
|
2311
2226
|
],
|
|
2312
2227
|
"members": [
|
|
@@ -2337,7 +2252,7 @@
|
|
|
2337
2252
|
"description": "Badge shape variant\n- 'pill': Fully rounded (radii-full)\n- 'rounded': Small border radius (radii-sm)\n- 'accent': Small radius with left accent border",
|
|
2338
2253
|
"default": "'pill'",
|
|
2339
2254
|
"attribute": "variant",
|
|
2340
|
-
"
|
|
2255
|
+
"parsedType": {
|
|
2341
2256
|
"text": "'pill' | 'rounded' | 'accent'"
|
|
2342
2257
|
}
|
|
2343
2258
|
},
|
|
@@ -2350,7 +2265,7 @@
|
|
|
2350
2265
|
"description": "Badge size\n- 'sm': Smaller text (xs), monospace font\n- 'md': Medium text (sm), body font",
|
|
2351
2266
|
"default": "'md'",
|
|
2352
2267
|
"attribute": "size",
|
|
2353
|
-
"
|
|
2268
|
+
"parsedType": {
|
|
2354
2269
|
"text": "'sm' | 'md'"
|
|
2355
2270
|
}
|
|
2356
2271
|
},
|
|
@@ -2363,16 +2278,6 @@
|
|
|
2363
2278
|
"description": "Whether the badge has interactive hover states",
|
|
2364
2279
|
"default": "false",
|
|
2365
2280
|
"attribute": "interactive"
|
|
2366
|
-
},
|
|
2367
|
-
{
|
|
2368
|
-
"kind": "field",
|
|
2369
|
-
"name": "glow",
|
|
2370
|
-
"type": {
|
|
2371
|
-
"text": "boolean"
|
|
2372
|
-
},
|
|
2373
|
-
"description": "Whether to show glow effect on hover",
|
|
2374
|
-
"default": "false",
|
|
2375
|
-
"attribute": "glow"
|
|
2376
2281
|
}
|
|
2377
2282
|
],
|
|
2378
2283
|
"attributes": [
|
|
@@ -2400,7 +2305,7 @@
|
|
|
2400
2305
|
"description": "Badge shape variant\n- 'pill': Fully rounded (radii-full)\n- 'rounded': Small border radius (radii-sm)\n- 'accent': Small radius with left accent border",
|
|
2401
2306
|
"default": "'pill'",
|
|
2402
2307
|
"fieldName": "variant",
|
|
2403
|
-
"
|
|
2308
|
+
"parsedType": {
|
|
2404
2309
|
"text": "'pill' | 'rounded' | 'accent'"
|
|
2405
2310
|
}
|
|
2406
2311
|
},
|
|
@@ -2412,7 +2317,7 @@
|
|
|
2412
2317
|
"description": "Badge size\n- 'sm': Smaller text (xs), monospace font\n- 'md': Medium text (sm), body font",
|
|
2413
2318
|
"default": "'md'",
|
|
2414
2319
|
"fieldName": "size",
|
|
2415
|
-
"
|
|
2320
|
+
"parsedType": {
|
|
2416
2321
|
"text": "'sm' | 'md'"
|
|
2417
2322
|
}
|
|
2418
2323
|
},
|
|
@@ -2424,15 +2329,6 @@
|
|
|
2424
2329
|
"description": "Whether the badge has interactive hover states",
|
|
2425
2330
|
"default": "false",
|
|
2426
2331
|
"fieldName": "interactive"
|
|
2427
|
-
},
|
|
2428
|
-
{
|
|
2429
|
-
"name": "glow",
|
|
2430
|
-
"type": {
|
|
2431
|
-
"text": "boolean"
|
|
2432
|
-
},
|
|
2433
|
-
"description": "Whether to show glow effect on hover",
|
|
2434
|
-
"default": "false",
|
|
2435
|
-
"fieldName": "glow"
|
|
2436
2332
|
}
|
|
2437
2333
|
],
|
|
2438
2334
|
"superclass": {
|
|
@@ -2506,7 +2402,7 @@
|
|
|
2506
2402
|
"type": {
|
|
2507
2403
|
"text": "string"
|
|
2508
2404
|
},
|
|
2509
|
-
"description": "Theme color for the icon box
|
|
2405
|
+
"description": "Theme color for the icon box",
|
|
2510
2406
|
"attribute": "color"
|
|
2511
2407
|
},
|
|
2512
2408
|
{
|
|
@@ -2522,7 +2418,8 @@
|
|
|
2522
2418
|
{
|
|
2523
2419
|
"kind": "method",
|
|
2524
2420
|
"name": "handleBack",
|
|
2525
|
-
"privacy": "private"
|
|
2421
|
+
"privacy": "private",
|
|
2422
|
+
"description": "Handles back button click and dispatches back event"
|
|
2526
2423
|
}
|
|
2527
2424
|
],
|
|
2528
2425
|
"events": [
|
|
@@ -2556,7 +2453,7 @@
|
|
|
2556
2453
|
"type": {
|
|
2557
2454
|
"text": "string"
|
|
2558
2455
|
},
|
|
2559
|
-
"description": "Theme color for the icon box
|
|
2456
|
+
"description": "Theme color for the icon box",
|
|
2560
2457
|
"fieldName": "color"
|
|
2561
2458
|
},
|
|
2562
2459
|
{
|
|
@@ -2633,7 +2530,8 @@
|
|
|
2633
2530
|
"type": {
|
|
2634
2531
|
"text": "{ prefix: string; value: string; color: string }"
|
|
2635
2532
|
}
|
|
2636
|
-
}
|
|
2533
|
+
},
|
|
2534
|
+
"description": "Splits the tag into prefix and value, returning the associated color"
|
|
2637
2535
|
}
|
|
2638
2536
|
],
|
|
2639
2537
|
"attributes": [
|
|
@@ -2722,7 +2620,8 @@
|
|
|
2722
2620
|
{
|
|
2723
2621
|
"kind": "method",
|
|
2724
2622
|
"name": "handleBack",
|
|
2725
|
-
"privacy": "private"
|
|
2623
|
+
"privacy": "private",
|
|
2624
|
+
"description": "Handles back navigation to parent cluster or dispatches close event"
|
|
2726
2625
|
}
|
|
2727
2626
|
],
|
|
2728
2627
|
"events": [
|
|
@@ -2826,12 +2725,14 @@
|
|
|
2826
2725
|
{
|
|
2827
2726
|
"kind": "method",
|
|
2828
2727
|
"name": "renderPlatformTargets",
|
|
2829
|
-
"privacy": "private"
|
|
2728
|
+
"privacy": "private",
|
|
2729
|
+
"description": "Renders platform minimum OS version badges"
|
|
2830
2730
|
},
|
|
2831
2731
|
{
|
|
2832
2732
|
"kind": "method",
|
|
2833
2733
|
"name": "renderDestinations",
|
|
2834
|
-
"privacy": "private"
|
|
2734
|
+
"privacy": "private",
|
|
2735
|
+
"description": "Renders destination device type badges"
|
|
2835
2736
|
}
|
|
2836
2737
|
],
|
|
2837
2738
|
"attributes": [
|
|
@@ -2921,7 +2822,8 @@
|
|
|
2921
2822
|
{
|
|
2922
2823
|
"kind": "method",
|
|
2923
2824
|
"name": "toggleExpanded",
|
|
2924
|
-
"privacy": "private"
|
|
2825
|
+
"privacy": "private",
|
|
2826
|
+
"description": "Toggles the section expanded/collapsed state"
|
|
2925
2827
|
},
|
|
2926
2828
|
{
|
|
2927
2829
|
"kind": "field",
|
|
@@ -2953,7 +2855,8 @@
|
|
|
2953
2855
|
{
|
|
2954
2856
|
"kind": "method",
|
|
2955
2857
|
"name": "renderForeignBuild",
|
|
2956
|
-
"privacy": "private"
|
|
2858
|
+
"privacy": "private",
|
|
2859
|
+
"description": "Renders the foreign build details section if present"
|
|
2957
2860
|
},
|
|
2958
2861
|
{
|
|
2959
2862
|
"kind": "method",
|
|
@@ -2963,7 +2866,8 @@
|
|
|
2963
2866
|
"type": {
|
|
2964
2867
|
"text": "TemplateResult"
|
|
2965
2868
|
}
|
|
2966
|
-
}
|
|
2869
|
+
},
|
|
2870
|
+
"description": "Renders the expanded node info rows and subsections"
|
|
2967
2871
|
}
|
|
2968
2872
|
],
|
|
2969
2873
|
"attributes": [
|
|
@@ -3011,7 +2915,7 @@
|
|
|
3011
2915
|
"declarations": [
|
|
3012
2916
|
{
|
|
3013
2917
|
"kind": "class",
|
|
3014
|
-
"description": "Reusable row component for displaying nodes in lists
|
|
2918
|
+
"description": "Reusable row component for displaying nodes in lists.",
|
|
3015
2919
|
"name": "GraphListItemRow",
|
|
3016
2920
|
"members": [
|
|
3017
2921
|
{
|
|
@@ -3061,17 +2965,20 @@
|
|
|
3061
2965
|
{
|
|
3062
2966
|
"kind": "method",
|
|
3063
2967
|
"name": "handleClick",
|
|
3064
|
-
"privacy": "private"
|
|
2968
|
+
"privacy": "private",
|
|
2969
|
+
"description": "Handles row click and dispatches row-select event"
|
|
3065
2970
|
},
|
|
3066
2971
|
{
|
|
3067
2972
|
"kind": "method",
|
|
3068
2973
|
"name": "handleMouseEnter",
|
|
3069
|
-
"privacy": "private"
|
|
2974
|
+
"privacy": "private",
|
|
2975
|
+
"description": "Handles mouse enter and dispatches row-hover event"
|
|
3070
2976
|
},
|
|
3071
2977
|
{
|
|
3072
2978
|
"kind": "method",
|
|
3073
2979
|
"name": "handleMouseLeave",
|
|
3074
|
-
"privacy": "private"
|
|
2980
|
+
"privacy": "private",
|
|
2981
|
+
"description": "Handles mouse leave and dispatches row-hover-end event"
|
|
3075
2982
|
}
|
|
3076
2983
|
],
|
|
3077
2984
|
"events": [
|
|
@@ -3330,7 +3237,8 @@
|
|
|
3330
3237
|
{
|
|
3331
3238
|
"kind": "method",
|
|
3332
3239
|
"name": "toggleExpanded",
|
|
3333
|
-
"privacy": "private"
|
|
3240
|
+
"privacy": "private",
|
|
3241
|
+
"description": "Toggles the list expanded/collapsed state"
|
|
3334
3242
|
},
|
|
3335
3243
|
{
|
|
3336
3244
|
"kind": "field",
|
|
@@ -3339,38 +3247,22 @@
|
|
|
3339
3247
|
"text": "NodeWithEdge[]"
|
|
3340
3248
|
},
|
|
3341
3249
|
"privacy": "private",
|
|
3250
|
+
"description": "Returns the resolved item list, supporting both items and legacy nodes props",
|
|
3342
3251
|
"readonly": true
|
|
3343
3252
|
},
|
|
3344
3253
|
{
|
|
3345
3254
|
"kind": "method",
|
|
3346
|
-
"name": "
|
|
3255
|
+
"name": "renderKindBadge",
|
|
3347
3256
|
"privacy": "private",
|
|
3348
|
-
"return": {
|
|
3349
|
-
"type": {
|
|
3350
|
-
"text": "string"
|
|
3351
|
-
}
|
|
3352
|
-
},
|
|
3353
3257
|
"parameters": [
|
|
3354
3258
|
{
|
|
3355
|
-
"name": "
|
|
3259
|
+
"name": "item",
|
|
3356
3260
|
"type": {
|
|
3357
|
-
"text": "
|
|
3261
|
+
"text": "NodeWithEdge"
|
|
3358
3262
|
}
|
|
3359
3263
|
}
|
|
3360
|
-
]
|
|
3361
|
-
|
|
3362
|
-
{
|
|
3363
|
-
"kind": "method",
|
|
3364
|
-
"name": "renderKindBadge",
|
|
3365
|
-
"privacy": "private",
|
|
3366
|
-
"parameters": [
|
|
3367
|
-
{
|
|
3368
|
-
"name": "item",
|
|
3369
|
-
"type": {
|
|
3370
|
-
"text": "NodeWithEdge"
|
|
3371
|
-
}
|
|
3372
|
-
}
|
|
3373
|
-
]
|
|
3264
|
+
],
|
|
3265
|
+
"description": "Renders a dependency kind badge for the given item"
|
|
3374
3266
|
},
|
|
3375
3267
|
{
|
|
3376
3268
|
"kind": "method",
|
|
@@ -3642,7 +3534,7 @@
|
|
|
3642
3534
|
"name": "focusTrap",
|
|
3643
3535
|
"privacy": "private",
|
|
3644
3536
|
"readonly": true,
|
|
3645
|
-
"default": "new FocusTrapController(this, { isActive: () =>
|
|
3537
|
+
"default": "new FocusTrapController(this, { isActive: () => Boolean(this.node), onDeactivate: () => this.bubbleEvent('close'), escapeDeactivates: true, clickOutsideDeactivates: true, })"
|
|
3646
3538
|
},
|
|
3647
3539
|
{
|
|
3648
3540
|
"kind": "field",
|
|
@@ -3668,7 +3560,8 @@
|
|
|
3668
3560
|
"text": "unknown"
|
|
3669
3561
|
}
|
|
3670
3562
|
}
|
|
3671
|
-
]
|
|
3563
|
+
],
|
|
3564
|
+
"description": "Dispatches a composed bubbling custom event with the given name and detail"
|
|
3672
3565
|
}
|
|
3673
3566
|
],
|
|
3674
3567
|
"events": [
|
|
@@ -3916,7 +3809,8 @@
|
|
|
3916
3809
|
{
|
|
3917
3810
|
"kind": "method",
|
|
3918
3811
|
"name": "toggleExpanded",
|
|
3919
|
-
"privacy": "private"
|
|
3812
|
+
"privacy": "private",
|
|
3813
|
+
"description": "Toggles the expanded/collapsed state"
|
|
3920
3814
|
},
|
|
3921
3815
|
{
|
|
3922
3816
|
"kind": "field",
|
|
@@ -4083,7 +3977,8 @@
|
|
|
4083
3977
|
"type": {
|
|
4084
3978
|
"text": "SourceType"
|
|
4085
3979
|
}
|
|
4086
|
-
}
|
|
3980
|
+
},
|
|
3981
|
+
"description": "Determines the source type (Local/Registry/Git) from the cluster path"
|
|
4087
3982
|
},
|
|
4088
3983
|
{
|
|
4089
3984
|
"kind": "method",
|
|
@@ -4093,12 +3988,14 @@
|
|
|
4093
3988
|
"type": {
|
|
4094
3989
|
"text": "string"
|
|
4095
3990
|
}
|
|
4096
|
-
}
|
|
3991
|
+
},
|
|
3992
|
+
"description": "Extracts a shortened display path from the full cluster path"
|
|
4097
3993
|
},
|
|
4098
3994
|
{
|
|
4099
3995
|
"kind": "method",
|
|
4100
3996
|
"name": "handleCopyPath",
|
|
4101
|
-
"privacy": "private"
|
|
3997
|
+
"privacy": "private",
|
|
3998
|
+
"description": "Copies the full cluster path to the clipboard"
|
|
4102
3999
|
}
|
|
4103
4000
|
],
|
|
4104
4001
|
"events": [
|
|
@@ -4278,7 +4175,8 @@
|
|
|
4278
4175
|
{
|
|
4279
4176
|
"kind": "method",
|
|
4280
4177
|
"name": "toggleExpanded",
|
|
4281
|
-
"privacy": "private"
|
|
4178
|
+
"privacy": "private",
|
|
4179
|
+
"description": "Toggles the expanded/collapsed state"
|
|
4282
4180
|
},
|
|
4283
4181
|
{
|
|
4284
4182
|
"kind": "method",
|
|
@@ -4291,12 +4189,14 @@
|
|
|
4291
4189
|
"text": "string"
|
|
4292
4190
|
}
|
|
4293
4191
|
}
|
|
4294
|
-
]
|
|
4192
|
+
],
|
|
4193
|
+
"description": "Dispatches a toggle event for the given stats card"
|
|
4295
4194
|
},
|
|
4296
4195
|
{
|
|
4297
4196
|
"kind": "method",
|
|
4298
4197
|
"name": "renderTargetBreakdown",
|
|
4299
|
-
"privacy": "private"
|
|
4198
|
+
"privacy": "private",
|
|
4199
|
+
"description": "Renders the target type breakdown badges"
|
|
4300
4200
|
},
|
|
4301
4201
|
{
|
|
4302
4202
|
"kind": "method",
|
|
@@ -4306,7 +4206,8 @@
|
|
|
4306
4206
|
"type": {
|
|
4307
4207
|
"text": "TemplateResult"
|
|
4308
4208
|
}
|
|
4309
|
-
}
|
|
4209
|
+
},
|
|
4210
|
+
"description": "Renders the expanded stats content with cards and breakdowns"
|
|
4310
4211
|
}
|
|
4311
4212
|
],
|
|
4312
4213
|
"events": [
|
|
@@ -4494,7 +4395,8 @@
|
|
|
4494
4395
|
{
|
|
4495
4396
|
"kind": "method",
|
|
4496
4397
|
"name": "toggleExpanded",
|
|
4497
|
-
"privacy": "private"
|
|
4398
|
+
"privacy": "private",
|
|
4399
|
+
"description": "Toggles the expanded/collapsed state"
|
|
4498
4400
|
},
|
|
4499
4401
|
{
|
|
4500
4402
|
"kind": "field",
|
|
@@ -4513,7 +4415,8 @@
|
|
|
4513
4415
|
"type": {
|
|
4514
4416
|
"text": "ClusterListItem[]"
|
|
4515
4417
|
}
|
|
4516
|
-
}
|
|
4418
|
+
},
|
|
4419
|
+
"description": "Builds a flat list of headers and nodes for virtualized rendering"
|
|
4517
4420
|
},
|
|
4518
4421
|
{
|
|
4519
4422
|
"kind": "method",
|
|
@@ -4531,7 +4434,8 @@
|
|
|
4531
4434
|
"text": "{\n dependencies: number;\n dependents: number;\n }"
|
|
4532
4435
|
}
|
|
4533
4436
|
}
|
|
4534
|
-
]
|
|
4437
|
+
],
|
|
4438
|
+
"description": "Formats dependency and dependent counts into a subtitle string"
|
|
4535
4439
|
},
|
|
4536
4440
|
{
|
|
4537
4441
|
"kind": "method",
|
|
@@ -4763,7 +4667,7 @@
|
|
|
4763
4667
|
"name": "focusTrap",
|
|
4764
4668
|
"privacy": "private",
|
|
4765
4669
|
"readonly": true,
|
|
4766
|
-
"default": "new FocusTrapController(this, { isActive: () =>
|
|
4670
|
+
"default": "new FocusTrapController(this, { isActive: () => Boolean(this.cluster), onDeactivate: () => this.bubbleEvent('close'), escapeDeactivates: true, clickOutsideDeactivates: true, })"
|
|
4767
4671
|
},
|
|
4768
4672
|
{
|
|
4769
4673
|
"kind": "field",
|
|
@@ -4804,7 +4708,8 @@
|
|
|
4804
4708
|
"text": "unknown"
|
|
4805
4709
|
}
|
|
4806
4710
|
}
|
|
4807
|
-
]
|
|
4711
|
+
],
|
|
4712
|
+
"description": "Dispatches a bubbling composed custom event"
|
|
4808
4713
|
}
|
|
4809
4714
|
],
|
|
4810
4715
|
"events": [
|
|
@@ -4902,7 +4807,8 @@
|
|
|
4902
4807
|
{
|
|
4903
4808
|
"kind": "method",
|
|
4904
4809
|
"name": "handleClick",
|
|
4905
|
-
"privacy": "private"
|
|
4810
|
+
"privacy": "private",
|
|
4811
|
+
"description": "Handles the click event and dispatches clear-filters"
|
|
4906
4812
|
}
|
|
4907
4813
|
],
|
|
4908
4814
|
"events": [
|
|
@@ -4958,7 +4864,7 @@
|
|
|
4958
4864
|
"declarations": [
|
|
4959
4865
|
{
|
|
4960
4866
|
"kind": "class",
|
|
4961
|
-
"description": "Input field for filtering nodes by name/text search
|
|
4867
|
+
"description": "Input field for filtering nodes by name/text search.",
|
|
4962
4868
|
"name": "GraphSearchBar",
|
|
4963
4869
|
"members": [
|
|
4964
4870
|
{
|
|
@@ -5007,12 +4913,14 @@
|
|
|
5007
4913
|
"text": "Event"
|
|
5008
4914
|
}
|
|
5009
4915
|
}
|
|
5010
|
-
]
|
|
4916
|
+
],
|
|
4917
|
+
"description": "Dispatches search-change with the current input value"
|
|
5011
4918
|
},
|
|
5012
4919
|
{
|
|
5013
4920
|
"kind": "method",
|
|
5014
4921
|
"name": "handleClear",
|
|
5015
|
-
"privacy": "private"
|
|
4922
|
+
"privacy": "private",
|
|
4923
|
+
"description": "Dispatches search-clear to reset the search input"
|
|
5016
4924
|
},
|
|
5017
4925
|
{
|
|
5018
4926
|
"kind": "method",
|
|
@@ -5025,7 +4933,8 @@
|
|
|
5025
4933
|
"text": "KeyboardEvent"
|
|
5026
4934
|
}
|
|
5027
4935
|
}
|
|
5028
|
-
]
|
|
4936
|
+
],
|
|
4937
|
+
"description": "Clears the search and blurs the input when Escape is pressed"
|
|
5029
4938
|
}
|
|
5030
4939
|
],
|
|
5031
4940
|
"events": [
|
|
@@ -5157,8 +5066,8 @@
|
|
|
5157
5066
|
},
|
|
5158
5067
|
"description": "The type of filter this section controls",
|
|
5159
5068
|
"attribute": "filter-type",
|
|
5160
|
-
"
|
|
5161
|
-
"text": "'
|
|
5069
|
+
"parsedType": {
|
|
5070
|
+
"text": "'platform' | 'project' | 'nodeType' | 'package'"
|
|
5162
5071
|
}
|
|
5163
5072
|
},
|
|
5164
5073
|
{
|
|
@@ -5173,7 +5082,8 @@
|
|
|
5173
5082
|
{
|
|
5174
5083
|
"kind": "method",
|
|
5175
5084
|
"name": "handleToggle",
|
|
5176
|
-
"privacy": "private"
|
|
5085
|
+
"privacy": "private",
|
|
5086
|
+
"description": "Dispatches section-toggle event when header is clicked"
|
|
5177
5087
|
},
|
|
5178
5088
|
{
|
|
5179
5089
|
"kind": "method",
|
|
@@ -5192,7 +5102,8 @@
|
|
|
5192
5102
|
"text": "boolean"
|
|
5193
5103
|
}
|
|
5194
5104
|
}
|
|
5195
|
-
]
|
|
5105
|
+
],
|
|
5106
|
+
"description": "Dispatches item-toggle event when a checkbox item is toggled"
|
|
5196
5107
|
},
|
|
5197
5108
|
{
|
|
5198
5109
|
"kind": "method",
|
|
@@ -5205,7 +5116,8 @@
|
|
|
5205
5116
|
"text": "FilterItem | null"
|
|
5206
5117
|
}
|
|
5207
5118
|
}
|
|
5208
|
-
]
|
|
5119
|
+
],
|
|
5120
|
+
"description": "Dispatches preview-change event on item hover for filter preview"
|
|
5209
5121
|
},
|
|
5210
5122
|
{
|
|
5211
5123
|
"kind": "method",
|
|
@@ -5230,7 +5142,8 @@
|
|
|
5230
5142
|
"text": "string"
|
|
5231
5143
|
}
|
|
5232
5144
|
}
|
|
5233
|
-
]
|
|
5145
|
+
],
|
|
5146
|
+
"description": "Renders the appropriate icon for a filter item based on filter type"
|
|
5234
5147
|
},
|
|
5235
5148
|
{
|
|
5236
5149
|
"kind": "method",
|
|
@@ -5243,7 +5156,8 @@
|
|
|
5243
5156
|
"text": "FilterItem"
|
|
5244
5157
|
}
|
|
5245
5158
|
}
|
|
5246
|
-
]
|
|
5159
|
+
],
|
|
5160
|
+
"description": "Renders a single filter item as a toggleable button"
|
|
5247
5161
|
}
|
|
5248
5162
|
],
|
|
5249
5163
|
"events": [
|
|
@@ -5309,8 +5223,8 @@
|
|
|
5309
5223
|
},
|
|
5310
5224
|
"description": "The type of filter this section controls",
|
|
5311
5225
|
"fieldName": "filterType",
|
|
5312
|
-
"
|
|
5313
|
-
"text": "'
|
|
5226
|
+
"parsedType": {
|
|
5227
|
+
"text": "'platform' | 'project' | 'nodeType' | 'package'"
|
|
5314
5228
|
}
|
|
5315
5229
|
},
|
|
5316
5230
|
{
|
|
@@ -5371,17 +5285,8 @@
|
|
|
5371
5285
|
{
|
|
5372
5286
|
"kind": "method",
|
|
5373
5287
|
"name": "handleClearFilters",
|
|
5374
|
-
"privacy": "private"
|
|
5375
|
-
|
|
5376
|
-
{
|
|
5377
|
-
"kind": "method",
|
|
5378
|
-
"name": "renderSearchIcon",
|
|
5379
|
-
"privacy": "private"
|
|
5380
|
-
},
|
|
5381
|
-
{
|
|
5382
|
-
"kind": "method",
|
|
5383
|
-
"name": "renderClearIcon",
|
|
5384
|
-
"privacy": "private"
|
|
5288
|
+
"privacy": "private",
|
|
5289
|
+
"description": "Handles the clear filters button click"
|
|
5385
5290
|
}
|
|
5386
5291
|
],
|
|
5387
5292
|
"events": [
|
|
@@ -5514,7 +5419,8 @@
|
|
|
5514
5419
|
"text": "string | null"
|
|
5515
5420
|
}
|
|
5516
5421
|
}
|
|
5517
|
-
]
|
|
5422
|
+
],
|
|
5423
|
+
"description": "Finds an existing cluster or synthesizes one from matching nodes"
|
|
5518
5424
|
},
|
|
5519
5425
|
{
|
|
5520
5426
|
"kind": "field",
|
|
@@ -5555,12 +5461,14 @@
|
|
|
5555
5461
|
"text": "string"
|
|
5556
5462
|
}
|
|
5557
5463
|
}
|
|
5558
|
-
]
|
|
5464
|
+
],
|
|
5465
|
+
"description": "Updates the global search query signal when the search bar value changes."
|
|
5559
5466
|
},
|
|
5560
5467
|
{
|
|
5561
5468
|
"kind": "method",
|
|
5562
5469
|
"name": "handleClearFilters",
|
|
5563
|
-
"privacy": "private"
|
|
5470
|
+
"privacy": "private",
|
|
5471
|
+
"description": "Resets all filters and clears the search query"
|
|
5564
5472
|
},
|
|
5565
5473
|
{
|
|
5566
5474
|
"kind": "method",
|
|
@@ -5585,7 +5493,8 @@
|
|
|
5585
5493
|
"text": "boolean"
|
|
5586
5494
|
}
|
|
5587
5495
|
}
|
|
5588
|
-
]
|
|
5496
|
+
],
|
|
5497
|
+
"description": "Toggles a single filter item on or off within its filter category"
|
|
5589
5498
|
},
|
|
5590
5499
|
{
|
|
5591
5500
|
"kind": "method",
|
|
@@ -5598,12 +5507,14 @@
|
|
|
5598
5507
|
"text": "PreviewFilter"
|
|
5599
5508
|
}
|
|
5600
5509
|
}
|
|
5601
|
-
]
|
|
5510
|
+
],
|
|
5511
|
+
"description": "Updates the global preview filter signal to highlight matching nodes on the canvas."
|
|
5602
5512
|
},
|
|
5603
5513
|
{
|
|
5604
5514
|
"kind": "method",
|
|
5605
5515
|
"name": "handleToggleCollapse",
|
|
5606
|
-
"privacy": "private"
|
|
5516
|
+
"privacy": "private",
|
|
5517
|
+
"description": "Toggles the sidebar between collapsed and expanded states"
|
|
5607
5518
|
},
|
|
5608
5519
|
{
|
|
5609
5520
|
"kind": "method",
|
|
@@ -5616,7 +5527,8 @@
|
|
|
5616
5527
|
"text": "SidebarSection"
|
|
5617
5528
|
}
|
|
5618
5529
|
}
|
|
5619
|
-
]
|
|
5530
|
+
],
|
|
5531
|
+
"description": "Toggles a filter section between expanded and collapsed"
|
|
5620
5532
|
},
|
|
5621
5533
|
{
|
|
5622
5534
|
"kind": "method",
|
|
@@ -5629,7 +5541,8 @@
|
|
|
5629
5541
|
"text": "SidebarSection"
|
|
5630
5542
|
}
|
|
5631
5543
|
}
|
|
5632
|
-
]
|
|
5544
|
+
],
|
|
5545
|
+
"description": "Expands the sidebar, clears selection, and scrolls to the given filter section"
|
|
5633
5546
|
},
|
|
5634
5547
|
{
|
|
5635
5548
|
"kind": "method",
|
|
@@ -5642,7 +5555,8 @@
|
|
|
5642
5555
|
"text": "ReturnType<typeof filters.get>"
|
|
5643
5556
|
}
|
|
5644
5557
|
}
|
|
5645
|
-
]
|
|
5558
|
+
],
|
|
5559
|
+
"description": "Renders the collapsed sidebar icon bar with filter badges"
|
|
5646
5560
|
},
|
|
5647
5561
|
{
|
|
5648
5562
|
"kind": "method",
|
|
@@ -5667,7 +5581,8 @@
|
|
|
5667
5581
|
"text": "{\n activeDirectDeps: boolean;\n activeTransitiveDeps: boolean;\n activeDirectDependents: boolean;\n activeTransitiveDependents: boolean;\n }"
|
|
5668
5582
|
}
|
|
5669
5583
|
}
|
|
5670
|
-
]
|
|
5584
|
+
],
|
|
5585
|
+
"description": "Renders the node details panel with dependency highlight toggles"
|
|
5671
5586
|
},
|
|
5672
5587
|
{
|
|
5673
5588
|
"kind": "method",
|
|
@@ -5692,7 +5607,8 @@
|
|
|
5692
5607
|
"text": "{\n activeDirectDeps: boolean;\n activeDirectDependents: boolean;\n }"
|
|
5693
5608
|
}
|
|
5694
5609
|
}
|
|
5695
|
-
]
|
|
5610
|
+
],
|
|
5611
|
+
"description": "Renders the cluster details panel with dependency highlight toggles"
|
|
5696
5612
|
},
|
|
5697
5613
|
{
|
|
5698
5614
|
"kind": "method",
|
|
@@ -5705,7 +5621,8 @@
|
|
|
5705
5621
|
"text": "FilterViewOptions"
|
|
5706
5622
|
}
|
|
5707
5623
|
}
|
|
5708
|
-
]
|
|
5624
|
+
],
|
|
5625
|
+
"description": "Renders the filter view with search bar, stats, and filter sections"
|
|
5709
5626
|
},
|
|
5710
5627
|
{
|
|
5711
5628
|
"kind": "method",
|
|
@@ -5736,17 +5653,20 @@
|
|
|
5736
5653
|
"text": "FilterItemsGroup"
|
|
5737
5654
|
}
|
|
5738
5655
|
}
|
|
5739
|
-
]
|
|
5656
|
+
],
|
|
5657
|
+
"description": "Renders the product types, platforms, projects, and packages filter sections"
|
|
5740
5658
|
},
|
|
5741
5659
|
{
|
|
5742
5660
|
"kind": "method",
|
|
5743
5661
|
"name": "handleBackToFilters",
|
|
5744
|
-
"privacy": "private"
|
|
5662
|
+
"privacy": "private",
|
|
5663
|
+
"description": "Clears both node and cluster selection to return to the filter view."
|
|
5745
5664
|
},
|
|
5746
5665
|
{
|
|
5747
5666
|
"kind": "method",
|
|
5748
5667
|
"name": "renderDetailsToolbar",
|
|
5749
|
-
"privacy": "private"
|
|
5668
|
+
"privacy": "private",
|
|
5669
|
+
"description": "Renders the toolbar with back-to-filters breadcrumb and collapse button"
|
|
5750
5670
|
},
|
|
5751
5671
|
{
|
|
5752
5672
|
"kind": "method",
|
|
@@ -5759,7 +5679,8 @@
|
|
|
5759
5679
|
"text": "ExpandedContentOptions"
|
|
5760
5680
|
}
|
|
5761
5681
|
}
|
|
5762
|
-
]
|
|
5682
|
+
],
|
|
5683
|
+
"description": "Renders expanded content: node details, cluster details, or filter view"
|
|
5763
5684
|
}
|
|
5764
5685
|
],
|
|
5765
5686
|
"superclass": {
|
|
@@ -6036,7 +5957,8 @@
|
|
|
6036
5957
|
"type": {
|
|
6037
5958
|
"text": "void"
|
|
6038
5959
|
}
|
|
6039
|
-
}
|
|
5960
|
+
},
|
|
5961
|
+
"description": "Handles the dismiss event with slide-out animation"
|
|
6040
5962
|
},
|
|
6041
5963
|
{
|
|
6042
5964
|
"kind": "method",
|
|
@@ -6046,7 +5968,8 @@
|
|
|
6046
5968
|
"type": {
|
|
6047
5969
|
"text": "void"
|
|
6048
5970
|
}
|
|
6049
|
-
}
|
|
5971
|
+
},
|
|
5972
|
+
"description": "Handles the action button click"
|
|
6050
5973
|
}
|
|
6051
5974
|
],
|
|
6052
5975
|
"events": [
|
|
@@ -6129,7 +6052,8 @@
|
|
|
6129
6052
|
"text": "CustomEvent<{ errorId: string }>"
|
|
6130
6053
|
}
|
|
6131
6054
|
}
|
|
6132
|
-
]
|
|
6055
|
+
],
|
|
6056
|
+
"description": "Dismisses an error toast by forwarding the error ID to the error service."
|
|
6133
6057
|
},
|
|
6134
6058
|
{
|
|
6135
6059
|
"kind": "method",
|
|
@@ -6147,7 +6071,8 @@
|
|
|
6147
6071
|
"text": "CustomEvent<{ error: AppError }>"
|
|
6148
6072
|
}
|
|
6149
6073
|
}
|
|
6150
|
-
]
|
|
6074
|
+
],
|
|
6075
|
+
"description": "Executes the action associated with an error toast (e.g. retry)."
|
|
6151
6076
|
}
|
|
6152
6077
|
],
|
|
6153
6078
|
"superclass": {
|
|
@@ -6199,7 +6124,8 @@
|
|
|
6199
6124
|
{
|
|
6200
6125
|
"kind": "method",
|
|
6201
6126
|
"name": "handleClick",
|
|
6202
|
-
"privacy": "private"
|
|
6127
|
+
"privacy": "private",
|
|
6128
|
+
"description": "Opens the hidden file input dialog"
|
|
6203
6129
|
},
|
|
6204
6130
|
{
|
|
6205
6131
|
"kind": "method",
|
|
@@ -6212,7 +6138,8 @@
|
|
|
6212
6138
|
"text": "KeyboardEvent"
|
|
6213
6139
|
}
|
|
6214
6140
|
}
|
|
6215
|
-
]
|
|
6141
|
+
],
|
|
6142
|
+
"description": "Handles keyboard activation (Enter/Space) to open file dialog"
|
|
6216
6143
|
},
|
|
6217
6144
|
{
|
|
6218
6145
|
"kind": "method",
|
|
@@ -6225,7 +6152,8 @@
|
|
|
6225
6152
|
"text": "Event"
|
|
6226
6153
|
}
|
|
6227
6154
|
}
|
|
6228
|
-
]
|
|
6155
|
+
],
|
|
6156
|
+
"description": "Handles file input change and reads the selected file"
|
|
6229
6157
|
},
|
|
6230
6158
|
{
|
|
6231
6159
|
"kind": "method",
|
|
@@ -6238,12 +6166,14 @@
|
|
|
6238
6166
|
"text": "DragEvent"
|
|
6239
6167
|
}
|
|
6240
6168
|
}
|
|
6241
|
-
]
|
|
6169
|
+
],
|
|
6170
|
+
"description": "Handles dragover to enable drop and show visual feedback"
|
|
6242
6171
|
},
|
|
6243
6172
|
{
|
|
6244
6173
|
"kind": "method",
|
|
6245
6174
|
"name": "handleDragLeave",
|
|
6246
|
-
"privacy": "private"
|
|
6175
|
+
"privacy": "private",
|
|
6176
|
+
"description": "Handles dragleave to reset visual feedback"
|
|
6247
6177
|
},
|
|
6248
6178
|
{
|
|
6249
6179
|
"kind": "method",
|
|
@@ -6256,7 +6186,8 @@
|
|
|
6256
6186
|
"text": "DragEvent"
|
|
6257
6187
|
}
|
|
6258
6188
|
}
|
|
6259
|
-
]
|
|
6189
|
+
],
|
|
6190
|
+
"description": "Handles file drop and reads the dropped file"
|
|
6260
6191
|
},
|
|
6261
6192
|
{
|
|
6262
6193
|
"kind": "method",
|
|
@@ -6269,7 +6200,8 @@
|
|
|
6269
6200
|
"text": "File"
|
|
6270
6201
|
}
|
|
6271
6202
|
}
|
|
6272
|
-
]
|
|
6203
|
+
],
|
|
6204
|
+
"description": "Reads a file as text, parses JSON, and dispatches graph-file-loaded event"
|
|
6273
6205
|
}
|
|
6274
6206
|
],
|
|
6275
6207
|
"events": [
|
|
@@ -6359,7 +6291,7 @@
|
|
|
6359
6291
|
},
|
|
6360
6292
|
"description": "Color scheme preference. Set to `'light'` or `'dark'` to force a mode,\nor `'auto'` (default) to follow the user's system preference.",
|
|
6361
6293
|
"attribute": "color-scheme",
|
|
6362
|
-
"
|
|
6294
|
+
"parsedType": {
|
|
6363
6295
|
"text": "'light' | 'dark' | 'auto'"
|
|
6364
6296
|
}
|
|
6365
6297
|
},
|
|
@@ -6416,7 +6348,8 @@
|
|
|
6416
6348
|
"text": "GraphEdge[]"
|
|
6417
6349
|
}
|
|
6418
6350
|
}
|
|
6419
|
-
]
|
|
6351
|
+
],
|
|
6352
|
+
"description": "Recomputes graph services and circular dependency analysis when data changes."
|
|
6420
6353
|
},
|
|
6421
6354
|
{
|
|
6422
6355
|
"kind": "method",
|
|
@@ -6444,7 +6377,8 @@
|
|
|
6444
6377
|
"text": "'light' | 'dark'"
|
|
6445
6378
|
}
|
|
6446
6379
|
}
|
|
6447
|
-
]
|
|
6380
|
+
],
|
|
6381
|
+
"description": "Sets the `data-theme` attribute on the host element to the given theme."
|
|
6448
6382
|
},
|
|
6449
6383
|
{
|
|
6450
6384
|
"kind": "method",
|
|
@@ -6454,7 +6388,8 @@
|
|
|
6454
6388
|
"type": {
|
|
6455
6389
|
"text": "void"
|
|
6456
6390
|
}
|
|
6457
|
-
}
|
|
6391
|
+
},
|
|
6392
|
+
"description": "Pushes current nodes and edges into global signals and refreshes the graph data service."
|
|
6458
6393
|
},
|
|
6459
6394
|
{
|
|
6460
6395
|
"kind": "method",
|
|
@@ -6486,7 +6421,8 @@
|
|
|
6486
6421
|
"text": "CustomEvent<{ raw: unknown }>"
|
|
6487
6422
|
}
|
|
6488
6423
|
}
|
|
6489
|
-
]
|
|
6424
|
+
],
|
|
6425
|
+
"description": "Handles the `graph-file-loaded` event from the file upload component."
|
|
6490
6426
|
}
|
|
6491
6427
|
],
|
|
6492
6428
|
"attributes": [
|
|
@@ -6505,7 +6441,7 @@
|
|
|
6505
6441
|
},
|
|
6506
6442
|
"description": "Color scheme preference. Set to `'light'` or `'dark'` to force a mode,\nor `'auto'` (default) to follow the user's system preference.",
|
|
6507
6443
|
"fieldName": "colorScheme",
|
|
6508
|
-
"
|
|
6444
|
+
"parsedType": {
|
|
6509
6445
|
"text": "'light' | 'dark' | 'auto'"
|
|
6510
6446
|
}
|
|
6511
6447
|
}
|
|
@@ -6538,6 +6474,29 @@
|
|
|
6538
6474
|
}
|
|
6539
6475
|
]
|
|
6540
6476
|
},
|
|
6477
|
+
{
|
|
6478
|
+
"kind": "javascript-module",
|
|
6479
|
+
"path": "src/components/index.ts",
|
|
6480
|
+
"declarations": [],
|
|
6481
|
+
"exports": [
|
|
6482
|
+
{
|
|
6483
|
+
"kind": "js",
|
|
6484
|
+
"name": "ColorScheme",
|
|
6485
|
+
"declaration": {
|
|
6486
|
+
"name": "ColorScheme",
|
|
6487
|
+
"module": "./xcode-graph"
|
|
6488
|
+
}
|
|
6489
|
+
},
|
|
6490
|
+
{
|
|
6491
|
+
"kind": "js",
|
|
6492
|
+
"name": "GraphApp",
|
|
6493
|
+
"declaration": {
|
|
6494
|
+
"name": "GraphApp",
|
|
6495
|
+
"module": "./xcode-graph"
|
|
6496
|
+
}
|
|
6497
|
+
}
|
|
6498
|
+
]
|
|
6499
|
+
},
|
|
6541
6500
|
{
|
|
6542
6501
|
"kind": "javascript-module",
|
|
6543
6502
|
"path": "src/graph/components/graph-edge.ts",
|
|
@@ -6630,7 +6589,8 @@
|
|
|
6630
6589
|
{
|
|
6631
6590
|
"kind": "method",
|
|
6632
6591
|
"name": "resolveEdgeProps",
|
|
6633
|
-
"privacy": "private"
|
|
6592
|
+
"privacy": "private",
|
|
6593
|
+
"description": "Resolves edge properties by merging declared values with defaults."
|
|
6634
6594
|
}
|
|
6635
6595
|
],
|
|
6636
6596
|
"attributes": [
|
|
@@ -6739,7 +6699,7 @@
|
|
|
6739
6699
|
"declarations": [
|
|
6740
6700
|
{
|
|
6741
6701
|
"kind": "class",
|
|
6742
|
-
"description": "",
|
|
6702
|
+
"description": "Generates and renders a cached parallax starfield on a canvas.",
|
|
6743
6703
|
"name": "Starfield",
|
|
6744
6704
|
"members": [
|
|
6745
6705
|
{
|
|
@@ -6925,7 +6885,7 @@
|
|
|
6925
6885
|
"privacy": "private",
|
|
6926
6886
|
"return": {
|
|
6927
6887
|
"type": {
|
|
6928
|
-
"text": "
|
|
6888
|
+
"text": ""
|
|
6929
6889
|
}
|
|
6930
6890
|
},
|
|
6931
6891
|
"parameters": [
|
|
@@ -6933,33 +6893,39 @@
|
|
|
6933
6893
|
"name": "isBright",
|
|
6934
6894
|
"type": {
|
|
6935
6895
|
"text": "boolean"
|
|
6936
|
-
}
|
|
6896
|
+
},
|
|
6897
|
+
"description": "Whether the star should use bright star parameters."
|
|
6937
6898
|
},
|
|
6938
6899
|
{
|
|
6939
6900
|
"name": "spanX",
|
|
6940
6901
|
"type": {
|
|
6941
6902
|
"text": "number"
|
|
6942
|
-
}
|
|
6903
|
+
},
|
|
6904
|
+
"description": "Horizontal spawn region width."
|
|
6943
6905
|
},
|
|
6944
6906
|
{
|
|
6945
6907
|
"name": "spanY",
|
|
6946
6908
|
"type": {
|
|
6947
6909
|
"text": "number"
|
|
6948
|
-
}
|
|
6910
|
+
},
|
|
6911
|
+
"description": "Vertical spawn region height."
|
|
6949
6912
|
},
|
|
6950
6913
|
{
|
|
6951
6914
|
"name": "offsetX",
|
|
6952
6915
|
"type": {
|
|
6953
6916
|
"text": "number"
|
|
6954
|
-
}
|
|
6917
|
+
},
|
|
6918
|
+
"description": "Horizontal offset to center the spawn region."
|
|
6955
6919
|
},
|
|
6956
6920
|
{
|
|
6957
6921
|
"name": "offsetY",
|
|
6958
6922
|
"type": {
|
|
6959
6923
|
"text": "number"
|
|
6960
|
-
}
|
|
6924
|
+
},
|
|
6925
|
+
"description": "Vertical offset to center the spawn region."
|
|
6961
6926
|
}
|
|
6962
|
-
]
|
|
6927
|
+
],
|
|
6928
|
+
"description": "Creates a single star with randomized position, size, opacity, and color."
|
|
6963
6929
|
},
|
|
6964
6930
|
{
|
|
6965
6931
|
"kind": "method",
|
|
@@ -6975,15 +6941,18 @@
|
|
|
6975
6941
|
"name": "panX",
|
|
6976
6942
|
"type": {
|
|
6977
6943
|
"text": "number"
|
|
6978
|
-
}
|
|
6944
|
+
},
|
|
6945
|
+
"description": "Rounded camera X offset in world space."
|
|
6979
6946
|
},
|
|
6980
6947
|
{
|
|
6981
6948
|
"name": "panY",
|
|
6982
6949
|
"type": {
|
|
6983
6950
|
"text": "number"
|
|
6984
|
-
}
|
|
6951
|
+
},
|
|
6952
|
+
"description": "Rounded camera Y offset in world space."
|
|
6985
6953
|
}
|
|
6986
|
-
]
|
|
6954
|
+
],
|
|
6955
|
+
"description": "Renders all stars with parallax offsets to an OffscreenCanvas cache."
|
|
6987
6956
|
},
|
|
6988
6957
|
{
|
|
6989
6958
|
"kind": "field",
|
|
@@ -7056,6 +7025,101 @@
|
|
|
7056
7025
|
}
|
|
7057
7026
|
]
|
|
7058
7027
|
},
|
|
7028
|
+
{
|
|
7029
|
+
"kind": "javascript-module",
|
|
7030
|
+
"path": "src/graph/components/index.ts",
|
|
7031
|
+
"declarations": [],
|
|
7032
|
+
"exports": [
|
|
7033
|
+
{
|
|
7034
|
+
"kind": "js",
|
|
7035
|
+
"name": "*",
|
|
7036
|
+
"declaration": {
|
|
7037
|
+
"name": "*",
|
|
7038
|
+
"module": "src/graph/components/canvas"
|
|
7039
|
+
}
|
|
7040
|
+
},
|
|
7041
|
+
{
|
|
7042
|
+
"kind": "js",
|
|
7043
|
+
"name": "GraphCanvas",
|
|
7044
|
+
"declaration": {
|
|
7045
|
+
"name": "GraphCanvas",
|
|
7046
|
+
"module": "./graph-canvas"
|
|
7047
|
+
}
|
|
7048
|
+
},
|
|
7049
|
+
{
|
|
7050
|
+
"kind": "js",
|
|
7051
|
+
"name": "GraphEdge",
|
|
7052
|
+
"declaration": {
|
|
7053
|
+
"name": "GraphEdge",
|
|
7054
|
+
"module": "./graph-edge"
|
|
7055
|
+
}
|
|
7056
|
+
},
|
|
7057
|
+
{
|
|
7058
|
+
"kind": "js",
|
|
7059
|
+
"name": "GraphHiddenDom",
|
|
7060
|
+
"declaration": {
|
|
7061
|
+
"name": "GraphHiddenDom",
|
|
7062
|
+
"module": "./graph-hidden-dom"
|
|
7063
|
+
}
|
|
7064
|
+
},
|
|
7065
|
+
{
|
|
7066
|
+
"kind": "js",
|
|
7067
|
+
"name": "GraphBackground",
|
|
7068
|
+
"declaration": {
|
|
7069
|
+
"name": "GraphBackground",
|
|
7070
|
+
"module": "./graph-overlays"
|
|
7071
|
+
}
|
|
7072
|
+
},
|
|
7073
|
+
{
|
|
7074
|
+
"kind": "js",
|
|
7075
|
+
"name": "GraphControls",
|
|
7076
|
+
"declaration": {
|
|
7077
|
+
"name": "GraphControls",
|
|
7078
|
+
"module": "./graph-overlays"
|
|
7079
|
+
}
|
|
7080
|
+
},
|
|
7081
|
+
{
|
|
7082
|
+
"kind": "js",
|
|
7083
|
+
"name": "GraphEmptyStateOverlay",
|
|
7084
|
+
"declaration": {
|
|
7085
|
+
"name": "GraphEmptyStateOverlay",
|
|
7086
|
+
"module": "./graph-overlays"
|
|
7087
|
+
}
|
|
7088
|
+
},
|
|
7089
|
+
{
|
|
7090
|
+
"kind": "js",
|
|
7091
|
+
"name": "GraphInstructions",
|
|
7092
|
+
"declaration": {
|
|
7093
|
+
"name": "GraphInstructions",
|
|
7094
|
+
"module": "./graph-overlays"
|
|
7095
|
+
}
|
|
7096
|
+
},
|
|
7097
|
+
{
|
|
7098
|
+
"kind": "js",
|
|
7099
|
+
"name": "Star",
|
|
7100
|
+
"declaration": {
|
|
7101
|
+
"name": "Star",
|
|
7102
|
+
"module": "./starfield"
|
|
7103
|
+
}
|
|
7104
|
+
},
|
|
7105
|
+
{
|
|
7106
|
+
"kind": "js",
|
|
7107
|
+
"name": "StarfieldOptions",
|
|
7108
|
+
"declaration": {
|
|
7109
|
+
"name": "StarfieldOptions",
|
|
7110
|
+
"module": "./starfield"
|
|
7111
|
+
}
|
|
7112
|
+
},
|
|
7113
|
+
{
|
|
7114
|
+
"kind": "js",
|
|
7115
|
+
"name": "Starfield",
|
|
7116
|
+
"declaration": {
|
|
7117
|
+
"name": "Starfield",
|
|
7118
|
+
"module": "./starfield"
|
|
7119
|
+
}
|
|
7120
|
+
}
|
|
7121
|
+
]
|
|
7122
|
+
},
|
|
7059
7123
|
{
|
|
7060
7124
|
"kind": "javascript-module",
|
|
7061
7125
|
"path": "src/ui/components/action-button.ts",
|
|
@@ -7093,8 +7157,8 @@
|
|
|
7093
7157
|
"description": "Button color variant",
|
|
7094
7158
|
"default": "'neutral'",
|
|
7095
7159
|
"attribute": "variant",
|
|
7096
|
-
"
|
|
7097
|
-
"text": "'
|
|
7160
|
+
"parsedType": {
|
|
7161
|
+
"text": "'neutral' | 'primary' | 'success' | 'warning'"
|
|
7098
7162
|
}
|
|
7099
7163
|
},
|
|
7100
7164
|
{
|
|
@@ -7137,8 +7201,8 @@
|
|
|
7137
7201
|
"description": "Button color variant",
|
|
7138
7202
|
"default": "'neutral'",
|
|
7139
7203
|
"fieldName": "variant",
|
|
7140
|
-
"
|
|
7141
|
-
"text": "'
|
|
7204
|
+
"parsedType": {
|
|
7205
|
+
"text": "'neutral' | 'primary' | 'success' | 'warning'"
|
|
7142
7206
|
}
|
|
7143
7207
|
},
|
|
7144
7208
|
{
|
|
@@ -7233,8 +7297,8 @@
|
|
|
7233
7297
|
"description": "Alert variant (determines color scheme)",
|
|
7234
7298
|
"default": "'info'",
|
|
7235
7299
|
"attribute": "variant",
|
|
7236
|
-
"
|
|
7237
|
-
"text": "'
|
|
7300
|
+
"parsedType": {
|
|
7301
|
+
"text": "'success' | 'warning' | 'error' | 'info'"
|
|
7238
7302
|
}
|
|
7239
7303
|
},
|
|
7240
7304
|
{
|
|
@@ -7279,7 +7343,8 @@
|
|
|
7279
7343
|
{
|
|
7280
7344
|
"kind": "method",
|
|
7281
7345
|
"name": "handleDismiss",
|
|
7282
|
-
"privacy": "private"
|
|
7346
|
+
"privacy": "private",
|
|
7347
|
+
"description": "Handles the dismiss event and hides the banner"
|
|
7283
7348
|
}
|
|
7284
7349
|
],
|
|
7285
7350
|
"events": [
|
|
@@ -7300,8 +7365,8 @@
|
|
|
7300
7365
|
"description": "Alert variant (determines color scheme)",
|
|
7301
7366
|
"default": "'info'",
|
|
7302
7367
|
"fieldName": "variant",
|
|
7303
|
-
"
|
|
7304
|
-
"text": "'
|
|
7368
|
+
"parsedType": {
|
|
7369
|
+
"text": "'success' | 'warning' | 'error' | 'info'"
|
|
7305
7370
|
}
|
|
7306
7371
|
},
|
|
7307
7372
|
{
|
|
@@ -7366,7 +7431,7 @@
|
|
|
7366
7431
|
"declarations": [
|
|
7367
7432
|
{
|
|
7368
7433
|
"kind": "class",
|
|
7369
|
-
"description": "Displays package/project badge with
|
|
7434
|
+
"description": "Displays package/project badge with accent styling and monospace typography.\nWrapper around graph-badge with container styling.",
|
|
7370
7435
|
"name": "GraphClusterTypeBadge",
|
|
7371
7436
|
"members": [
|
|
7372
7437
|
{
|
|
@@ -7482,37 +7547,21 @@
|
|
|
7482
7547
|
{
|
|
7483
7548
|
"kind": "method",
|
|
7484
7549
|
"name": "handleToggleExpand",
|
|
7485
|
-
"privacy": "private"
|
|
7550
|
+
"privacy": "private",
|
|
7551
|
+
"description": "Toggles the expanded details view"
|
|
7486
7552
|
},
|
|
7487
7553
|
{
|
|
7488
7554
|
"kind": "method",
|
|
7489
7555
|
"name": "handleDismiss",
|
|
7490
|
-
"privacy": "private"
|
|
7491
|
-
},
|
|
7492
|
-
{
|
|
7493
|
-
"kind": "method",
|
|
7494
|
-
"name": "formatCycle",
|
|
7495
7556
|
"privacy": "private",
|
|
7496
|
-
"
|
|
7497
|
-
|
|
7498
|
-
|
|
7499
|
-
|
|
7500
|
-
|
|
7501
|
-
"
|
|
7502
|
-
|
|
7503
|
-
|
|
7504
|
-
"type": {
|
|
7505
|
-
"text": "string[]"
|
|
7506
|
-
}
|
|
7507
|
-
}
|
|
7508
|
-
]
|
|
7509
|
-
}
|
|
7510
|
-
],
|
|
7511
|
-
"events": [
|
|
7512
|
-
{
|
|
7513
|
-
"name": "dismiss",
|
|
7514
|
-
"type": {
|
|
7515
|
-
"text": "CustomEvent"
|
|
7557
|
+
"description": "Handles the dismiss event and hides the warning"
|
|
7558
|
+
}
|
|
7559
|
+
],
|
|
7560
|
+
"events": [
|
|
7561
|
+
{
|
|
7562
|
+
"name": "dismiss",
|
|
7563
|
+
"type": {
|
|
7564
|
+
"text": "CustomEvent"
|
|
7516
7565
|
},
|
|
7517
7566
|
"description": "Dispatched when the warning is dismissed"
|
|
7518
7567
|
}
|
|
@@ -7563,8 +7612,8 @@
|
|
|
7563
7612
|
"description": "The icon name to render",
|
|
7564
7613
|
"default": "'product-types'",
|
|
7565
7614
|
"attribute": "name",
|
|
7566
|
-
"
|
|
7567
|
-
"text": "'
|
|
7615
|
+
"parsedType": {
|
|
7616
|
+
"text": "'platforms' | 'projects' | 'packages' | 'product-types'"
|
|
7568
7617
|
}
|
|
7569
7618
|
},
|
|
7570
7619
|
{
|
|
@@ -7580,22 +7629,26 @@
|
|
|
7580
7629
|
{
|
|
7581
7630
|
"kind": "method",
|
|
7582
7631
|
"name": "renderProductTypes",
|
|
7583
|
-
"privacy": "private"
|
|
7632
|
+
"privacy": "private",
|
|
7633
|
+
"description": "Renders the product types grid icon"
|
|
7584
7634
|
},
|
|
7585
7635
|
{
|
|
7586
7636
|
"kind": "method",
|
|
7587
7637
|
"name": "renderPlatforms",
|
|
7588
|
-
"privacy": "private"
|
|
7638
|
+
"privacy": "private",
|
|
7639
|
+
"description": "Renders the platforms grid icon"
|
|
7589
7640
|
},
|
|
7590
7641
|
{
|
|
7591
7642
|
"kind": "method",
|
|
7592
7643
|
"name": "renderProjects",
|
|
7593
|
-
"privacy": "private"
|
|
7644
|
+
"privacy": "private",
|
|
7645
|
+
"description": "Renders the projects folder icon"
|
|
7594
7646
|
},
|
|
7595
7647
|
{
|
|
7596
7648
|
"kind": "method",
|
|
7597
7649
|
"name": "renderPackages",
|
|
7598
|
-
"privacy": "private"
|
|
7650
|
+
"privacy": "private",
|
|
7651
|
+
"description": "Renders the packages box icon"
|
|
7599
7652
|
}
|
|
7600
7653
|
],
|
|
7601
7654
|
"attributes": [
|
|
@@ -7607,8 +7660,8 @@
|
|
|
7607
7660
|
"description": "The icon name to render",
|
|
7608
7661
|
"default": "'product-types'",
|
|
7609
7662
|
"fieldName": "name",
|
|
7610
|
-
"
|
|
7611
|
-
"text": "'
|
|
7663
|
+
"parsedType": {
|
|
7664
|
+
"text": "'platforms' | 'projects' | 'packages' | 'product-types'"
|
|
7612
7665
|
}
|
|
7613
7666
|
},
|
|
7614
7667
|
{
|
|
@@ -7649,31 +7702,403 @@
|
|
|
7649
7702
|
}
|
|
7650
7703
|
]
|
|
7651
7704
|
},
|
|
7705
|
+
{
|
|
7706
|
+
"kind": "javascript-module",
|
|
7707
|
+
"path": "src/ui/components/index.ts",
|
|
7708
|
+
"declarations": [],
|
|
7709
|
+
"exports": [
|
|
7710
|
+
{
|
|
7711
|
+
"kind": "js",
|
|
7712
|
+
"name": "ActionButtonVariant",
|
|
7713
|
+
"declaration": {
|
|
7714
|
+
"name": "ActionButtonVariant",
|
|
7715
|
+
"module": "./action-button"
|
|
7716
|
+
}
|
|
7717
|
+
},
|
|
7718
|
+
{
|
|
7719
|
+
"kind": "js",
|
|
7720
|
+
"name": "GraphActionButton",
|
|
7721
|
+
"declaration": {
|
|
7722
|
+
"name": "GraphActionButton",
|
|
7723
|
+
"module": "./action-button"
|
|
7724
|
+
}
|
|
7725
|
+
},
|
|
7726
|
+
{
|
|
7727
|
+
"kind": "js",
|
|
7728
|
+
"name": "AlertBannerVariant",
|
|
7729
|
+
"declaration": {
|
|
7730
|
+
"name": "AlertBannerVariant",
|
|
7731
|
+
"module": "./alert-banner"
|
|
7732
|
+
}
|
|
7733
|
+
},
|
|
7734
|
+
{
|
|
7735
|
+
"kind": "js",
|
|
7736
|
+
"name": "GraphAlertBanner",
|
|
7737
|
+
"declaration": {
|
|
7738
|
+
"name": "GraphAlertBanner",
|
|
7739
|
+
"module": "./alert-banner"
|
|
7740
|
+
}
|
|
7741
|
+
},
|
|
7742
|
+
{
|
|
7743
|
+
"kind": "js",
|
|
7744
|
+
"name": "BadgeSize",
|
|
7745
|
+
"declaration": {
|
|
7746
|
+
"name": "BadgeSize",
|
|
7747
|
+
"module": "./badge"
|
|
7748
|
+
}
|
|
7749
|
+
},
|
|
7750
|
+
{
|
|
7751
|
+
"kind": "js",
|
|
7752
|
+
"name": "BadgeVariant",
|
|
7753
|
+
"declaration": {
|
|
7754
|
+
"name": "BadgeVariant",
|
|
7755
|
+
"module": "./badge"
|
|
7756
|
+
}
|
|
7757
|
+
},
|
|
7758
|
+
{
|
|
7759
|
+
"kind": "js",
|
|
7760
|
+
"name": "GraphBadge",
|
|
7761
|
+
"declaration": {
|
|
7762
|
+
"name": "GraphBadge",
|
|
7763
|
+
"module": "./badge"
|
|
7764
|
+
}
|
|
7765
|
+
},
|
|
7766
|
+
{
|
|
7767
|
+
"kind": "js",
|
|
7768
|
+
"name": "GraphBuildSettings",
|
|
7769
|
+
"declaration": {
|
|
7770
|
+
"name": "GraphBuildSettings",
|
|
7771
|
+
"module": "./build-settings"
|
|
7772
|
+
}
|
|
7773
|
+
},
|
|
7774
|
+
{
|
|
7775
|
+
"kind": "js",
|
|
7776
|
+
"name": "GraphClearFiltersButton",
|
|
7777
|
+
"declaration": {
|
|
7778
|
+
"name": "GraphClearFiltersButton",
|
|
7779
|
+
"module": "./clear-filters-button"
|
|
7780
|
+
}
|
|
7781
|
+
},
|
|
7782
|
+
{
|
|
7783
|
+
"kind": "js",
|
|
7784
|
+
"name": "GraphClusterComposition",
|
|
7785
|
+
"declaration": {
|
|
7786
|
+
"name": "GraphClusterComposition",
|
|
7787
|
+
"module": "./cluster-composition"
|
|
7788
|
+
}
|
|
7789
|
+
},
|
|
7790
|
+
{
|
|
7791
|
+
"kind": "js",
|
|
7792
|
+
"name": "GraphClusterDetailsPanel",
|
|
7793
|
+
"declaration": {
|
|
7794
|
+
"name": "GraphClusterDetailsPanel",
|
|
7795
|
+
"module": "./cluster-details-panel"
|
|
7796
|
+
}
|
|
7797
|
+
},
|
|
7798
|
+
{
|
|
7799
|
+
"kind": "js",
|
|
7800
|
+
"name": "GraphClusterHeader",
|
|
7801
|
+
"declaration": {
|
|
7802
|
+
"name": "GraphClusterHeader",
|
|
7803
|
+
"module": "./cluster-header"
|
|
7804
|
+
}
|
|
7805
|
+
},
|
|
7806
|
+
{
|
|
7807
|
+
"kind": "js",
|
|
7808
|
+
"name": "GraphClusterStats",
|
|
7809
|
+
"declaration": {
|
|
7810
|
+
"name": "GraphClusterStats",
|
|
7811
|
+
"module": "./cluster-stats"
|
|
7812
|
+
}
|
|
7813
|
+
},
|
|
7814
|
+
{
|
|
7815
|
+
"kind": "js",
|
|
7816
|
+
"name": "GraphClusterTargetsList",
|
|
7817
|
+
"declaration": {
|
|
7818
|
+
"name": "GraphClusterTargetsList",
|
|
7819
|
+
"module": "./cluster-targets-list"
|
|
7820
|
+
}
|
|
7821
|
+
},
|
|
7822
|
+
{
|
|
7823
|
+
"kind": "js",
|
|
7824
|
+
"name": "GraphClusterTypeBadge",
|
|
7825
|
+
"declaration": {
|
|
7826
|
+
"name": "GraphClusterTypeBadge",
|
|
7827
|
+
"module": "./cluster-type-badge"
|
|
7828
|
+
}
|
|
7829
|
+
},
|
|
7830
|
+
{
|
|
7831
|
+
"kind": "js",
|
|
7832
|
+
"name": "GraphCycleWarning",
|
|
7833
|
+
"declaration": {
|
|
7834
|
+
"name": "GraphCycleWarning",
|
|
7835
|
+
"module": "./cycle-warning"
|
|
7836
|
+
}
|
|
7837
|
+
},
|
|
7838
|
+
{
|
|
7839
|
+
"kind": "js",
|
|
7840
|
+
"name": "GraphDeploymentTargets",
|
|
7841
|
+
"declaration": {
|
|
7842
|
+
"name": "GraphDeploymentTargets",
|
|
7843
|
+
"module": "./deployment-targets"
|
|
7844
|
+
}
|
|
7845
|
+
},
|
|
7846
|
+
{
|
|
7847
|
+
"kind": "js",
|
|
7848
|
+
"name": "GraphEmptyState",
|
|
7849
|
+
"declaration": {
|
|
7850
|
+
"name": "GraphEmptyState",
|
|
7851
|
+
"module": "./empty-state"
|
|
7852
|
+
}
|
|
7853
|
+
},
|
|
7854
|
+
{
|
|
7855
|
+
"kind": "js",
|
|
7856
|
+
"name": "GraphErrorToast",
|
|
7857
|
+
"declaration": {
|
|
7858
|
+
"name": "GraphErrorToast",
|
|
7859
|
+
"module": "./error-toast"
|
|
7860
|
+
}
|
|
7861
|
+
},
|
|
7862
|
+
{
|
|
7863
|
+
"kind": "js",
|
|
7864
|
+
"name": "GraphFileUpload",
|
|
7865
|
+
"declaration": {
|
|
7866
|
+
"name": "GraphFileUpload",
|
|
7867
|
+
"module": "./file-upload"
|
|
7868
|
+
}
|
|
7869
|
+
},
|
|
7870
|
+
{
|
|
7871
|
+
"kind": "js",
|
|
7872
|
+
"name": "FilterIconName",
|
|
7873
|
+
"declaration": {
|
|
7874
|
+
"name": "FilterIconName",
|
|
7875
|
+
"module": "./filter-icon"
|
|
7876
|
+
}
|
|
7877
|
+
},
|
|
7878
|
+
{
|
|
7879
|
+
"kind": "js",
|
|
7880
|
+
"name": "GraphFilterIcon",
|
|
7881
|
+
"declaration": {
|
|
7882
|
+
"name": "GraphFilterIcon",
|
|
7883
|
+
"module": "./filter-icon"
|
|
7884
|
+
}
|
|
7885
|
+
},
|
|
7886
|
+
{
|
|
7887
|
+
"kind": "js",
|
|
7888
|
+
"name": "FilterItem",
|
|
7889
|
+
"declaration": {
|
|
7890
|
+
"name": "FilterItem",
|
|
7891
|
+
"module": "./filter-section"
|
|
7892
|
+
}
|
|
7893
|
+
},
|
|
7894
|
+
{
|
|
7895
|
+
"kind": "js",
|
|
7896
|
+
"name": "FilterType",
|
|
7897
|
+
"declaration": {
|
|
7898
|
+
"name": "FilterType",
|
|
7899
|
+
"module": "./filter-section"
|
|
7900
|
+
}
|
|
7901
|
+
},
|
|
7902
|
+
{
|
|
7903
|
+
"kind": "js",
|
|
7904
|
+
"name": "GraphFilterSection",
|
|
7905
|
+
"declaration": {
|
|
7906
|
+
"name": "GraphFilterSection",
|
|
7907
|
+
"module": "./filter-section"
|
|
7908
|
+
}
|
|
7909
|
+
},
|
|
7910
|
+
{
|
|
7911
|
+
"kind": "js",
|
|
7912
|
+
"name": "IconButtonColor",
|
|
7913
|
+
"declaration": {
|
|
7914
|
+
"name": "IconButtonColor",
|
|
7915
|
+
"module": "./icon-button"
|
|
7916
|
+
}
|
|
7917
|
+
},
|
|
7918
|
+
{
|
|
7919
|
+
"kind": "js",
|
|
7920
|
+
"name": "IconButtonSize",
|
|
7921
|
+
"declaration": {
|
|
7922
|
+
"name": "IconButtonSize",
|
|
7923
|
+
"module": "./icon-button"
|
|
7924
|
+
}
|
|
7925
|
+
},
|
|
7926
|
+
{
|
|
7927
|
+
"kind": "js",
|
|
7928
|
+
"name": "IconButtonVariant",
|
|
7929
|
+
"declaration": {
|
|
7930
|
+
"name": "IconButtonVariant",
|
|
7931
|
+
"module": "./icon-button"
|
|
7932
|
+
}
|
|
7933
|
+
},
|
|
7934
|
+
{
|
|
7935
|
+
"kind": "js",
|
|
7936
|
+
"name": "GraphIconButton",
|
|
7937
|
+
"declaration": {
|
|
7938
|
+
"name": "GraphIconButton",
|
|
7939
|
+
"module": "./icon-button"
|
|
7940
|
+
}
|
|
7941
|
+
},
|
|
7942
|
+
{
|
|
7943
|
+
"kind": "js",
|
|
7944
|
+
"name": "GraphInfoRow",
|
|
7945
|
+
"declaration": {
|
|
7946
|
+
"name": "GraphInfoRow",
|
|
7947
|
+
"module": "./info-row"
|
|
7948
|
+
}
|
|
7949
|
+
},
|
|
7950
|
+
{
|
|
7951
|
+
"kind": "js",
|
|
7952
|
+
"name": "GraphListItemRow",
|
|
7953
|
+
"declaration": {
|
|
7954
|
+
"name": "GraphListItemRow",
|
|
7955
|
+
"module": "./list-item-row"
|
|
7956
|
+
}
|
|
7957
|
+
},
|
|
7958
|
+
{
|
|
7959
|
+
"kind": "js",
|
|
7960
|
+
"name": "GraphMetricsSection",
|
|
7961
|
+
"declaration": {
|
|
7962
|
+
"name": "GraphMetricsSection",
|
|
7963
|
+
"module": "./metrics-section"
|
|
7964
|
+
}
|
|
7965
|
+
},
|
|
7966
|
+
{
|
|
7967
|
+
"kind": "js",
|
|
7968
|
+
"name": "GraphNodeDetailsPanel",
|
|
7969
|
+
"declaration": {
|
|
7970
|
+
"name": "GraphNodeDetailsPanel",
|
|
7971
|
+
"module": "./node-details-panel"
|
|
7972
|
+
}
|
|
7973
|
+
},
|
|
7974
|
+
{
|
|
7975
|
+
"kind": "js",
|
|
7976
|
+
"name": "GraphNodeHeader",
|
|
7977
|
+
"declaration": {
|
|
7978
|
+
"name": "GraphNodeHeader",
|
|
7979
|
+
"module": "./node-header"
|
|
7980
|
+
}
|
|
7981
|
+
},
|
|
7982
|
+
{
|
|
7983
|
+
"kind": "js",
|
|
7984
|
+
"name": "GraphNodeInfo",
|
|
7985
|
+
"declaration": {
|
|
7986
|
+
"name": "GraphNodeInfo",
|
|
7987
|
+
"module": "./node-info"
|
|
7988
|
+
}
|
|
7989
|
+
},
|
|
7990
|
+
{
|
|
7991
|
+
"kind": "js",
|
|
7992
|
+
"name": "GraphNodeList",
|
|
7993
|
+
"declaration": {
|
|
7994
|
+
"name": "GraphNodeList",
|
|
7995
|
+
"module": "./node-list"
|
|
7996
|
+
}
|
|
7997
|
+
},
|
|
7998
|
+
{
|
|
7999
|
+
"kind": "js",
|
|
8000
|
+
"name": "NodeListEventsBase",
|
|
8001
|
+
"declaration": {
|
|
8002
|
+
"name": "NodeListEventsBase",
|
|
8003
|
+
"module": "./node-list-base"
|
|
8004
|
+
}
|
|
8005
|
+
},
|
|
8006
|
+
{
|
|
8007
|
+
"kind": "js",
|
|
8008
|
+
"name": "GraphPanelHeader",
|
|
8009
|
+
"declaration": {
|
|
8010
|
+
"name": "GraphPanelHeader",
|
|
8011
|
+
"module": "./panel-header"
|
|
8012
|
+
}
|
|
8013
|
+
},
|
|
8014
|
+
{
|
|
8015
|
+
"kind": "js",
|
|
8016
|
+
"name": "GraphRightSidebar",
|
|
8017
|
+
"declaration": {
|
|
8018
|
+
"name": "GraphRightSidebar",
|
|
8019
|
+
"module": "./right-sidebar"
|
|
8020
|
+
}
|
|
8021
|
+
},
|
|
8022
|
+
{
|
|
8023
|
+
"kind": "js",
|
|
8024
|
+
"name": "GraphCollapsedSidebar",
|
|
8025
|
+
"declaration": {
|
|
8026
|
+
"name": "GraphCollapsedSidebar",
|
|
8027
|
+
"module": "./right-sidebar-collapsed"
|
|
8028
|
+
}
|
|
8029
|
+
},
|
|
8030
|
+
{
|
|
8031
|
+
"kind": "js",
|
|
8032
|
+
"name": "GraphRightSidebarHeader",
|
|
8033
|
+
"declaration": {
|
|
8034
|
+
"name": "GraphRightSidebarHeader",
|
|
8035
|
+
"module": "./right-sidebar-header"
|
|
8036
|
+
}
|
|
8037
|
+
},
|
|
8038
|
+
{
|
|
8039
|
+
"kind": "js",
|
|
8040
|
+
"name": "GraphSearchBar",
|
|
8041
|
+
"declaration": {
|
|
8042
|
+
"name": "GraphSearchBar",
|
|
8043
|
+
"module": "./search-bar"
|
|
8044
|
+
}
|
|
8045
|
+
},
|
|
8046
|
+
{
|
|
8047
|
+
"kind": "js",
|
|
8048
|
+
"name": "GraphSectionHeader",
|
|
8049
|
+
"declaration": {
|
|
8050
|
+
"name": "GraphSectionHeader",
|
|
8051
|
+
"module": "./section-header"
|
|
8052
|
+
}
|
|
8053
|
+
},
|
|
8054
|
+
{
|
|
8055
|
+
"kind": "js",
|
|
8056
|
+
"name": "GraphSidebarCollapseIcon",
|
|
8057
|
+
"declaration": {
|
|
8058
|
+
"name": "GraphSidebarCollapseIcon",
|
|
8059
|
+
"module": "./sidebar-collapse-icon"
|
|
8060
|
+
}
|
|
8061
|
+
},
|
|
8062
|
+
{
|
|
8063
|
+
"kind": "js",
|
|
8064
|
+
"name": "GraphStatsCard",
|
|
8065
|
+
"declaration": {
|
|
8066
|
+
"name": "GraphStatsCard",
|
|
8067
|
+
"module": "./stats-card"
|
|
8068
|
+
}
|
|
8069
|
+
},
|
|
8070
|
+
{
|
|
8071
|
+
"kind": "js",
|
|
8072
|
+
"name": "GraphTagBadge",
|
|
8073
|
+
"declaration": {
|
|
8074
|
+
"name": "GraphTagBadge",
|
|
8075
|
+
"module": "./tag-badge"
|
|
8076
|
+
}
|
|
8077
|
+
},
|
|
8078
|
+
{
|
|
8079
|
+
"kind": "js",
|
|
8080
|
+
"name": "GraphErrorNotificationContainer",
|
|
8081
|
+
"declaration": {
|
|
8082
|
+
"name": "GraphErrorNotificationContainer",
|
|
8083
|
+
"module": "./toast-container"
|
|
8084
|
+
}
|
|
8085
|
+
}
|
|
8086
|
+
]
|
|
8087
|
+
},
|
|
7652
8088
|
{
|
|
7653
8089
|
"kind": "javascript-module",
|
|
7654
8090
|
"path": "src/ui/layout/header.ts",
|
|
7655
8091
|
"declarations": [
|
|
7656
8092
|
{
|
|
7657
8093
|
"kind": "class",
|
|
7658
|
-
"description": "Top header component with
|
|
8094
|
+
"description": "Top header component with logo and breadcrumb navigation.",
|
|
7659
8095
|
"name": "GraphHeader",
|
|
7660
|
-
"members": [
|
|
7661
|
-
{
|
|
7662
|
-
"kind": "method",
|
|
7663
|
-
"name": "renderSelectorIcon",
|
|
7664
|
-
"privacy": "private"
|
|
7665
|
-
},
|
|
7666
|
-
{
|
|
7667
|
-
"kind": "method",
|
|
7668
|
-
"name": "renderSlashIcon",
|
|
7669
|
-
"privacy": "private"
|
|
7670
|
-
}
|
|
7671
|
-
],
|
|
8096
|
+
"members": [],
|
|
7672
8097
|
"superclass": {
|
|
7673
8098
|
"name": "LitElement",
|
|
7674
8099
|
"package": "lit"
|
|
7675
8100
|
},
|
|
7676
|
-
"summary": "
|
|
8101
|
+
"summary": "Application header bar",
|
|
7677
8102
|
"tagName": "xcode-graph-header",
|
|
7678
8103
|
"customElement": true
|
|
7679
8104
|
}
|
|
@@ -7760,7 +8185,7 @@
|
|
|
7760
8185
|
"declarations": [
|
|
7761
8186
|
{
|
|
7762
8187
|
"kind": "class",
|
|
7763
|
-
"description": "Left sidebar navigation with
|
|
8188
|
+
"description": "Left sidebar navigation with tab items.",
|
|
7764
8189
|
"name": "GraphSidebar",
|
|
7765
8190
|
"members": [
|
|
7766
8191
|
{
|
|
@@ -7811,12 +8236,14 @@
|
|
|
7811
8236
|
"text": "ActiveTabType"
|
|
7812
8237
|
}
|
|
7813
8238
|
}
|
|
7814
|
-
]
|
|
8239
|
+
],
|
|
8240
|
+
"description": "Dispatches a tab-change event when a navigation item is clicked"
|
|
7815
8241
|
},
|
|
7816
8242
|
{
|
|
7817
8243
|
"kind": "method",
|
|
7818
8244
|
"name": "toggleCollapse",
|
|
7819
|
-
"privacy": "private"
|
|
8245
|
+
"privacy": "private",
|
|
8246
|
+
"description": "Toggles the sidebar between collapsed and expanded states"
|
|
7820
8247
|
}
|
|
7821
8248
|
],
|
|
7822
8249
|
"events": [
|
|
@@ -7889,6 +8316,45 @@
|
|
|
7889
8316
|
}
|
|
7890
8317
|
}
|
|
7891
8318
|
]
|
|
8319
|
+
},
|
|
8320
|
+
{
|
|
8321
|
+
"kind": "javascript-module",
|
|
8322
|
+
"path": "src/ui/layout/index.ts",
|
|
8323
|
+
"declarations": [],
|
|
8324
|
+
"exports": [
|
|
8325
|
+
{
|
|
8326
|
+
"kind": "js",
|
|
8327
|
+
"name": "GraphTab",
|
|
8328
|
+
"declaration": {
|
|
8329
|
+
"name": "GraphTab",
|
|
8330
|
+
"module": "./graph-tab"
|
|
8331
|
+
}
|
|
8332
|
+
},
|
|
8333
|
+
{
|
|
8334
|
+
"kind": "js",
|
|
8335
|
+
"name": "GraphHeader",
|
|
8336
|
+
"declaration": {
|
|
8337
|
+
"name": "GraphHeader",
|
|
8338
|
+
"module": "./header"
|
|
8339
|
+
}
|
|
8340
|
+
},
|
|
8341
|
+
{
|
|
8342
|
+
"kind": "js",
|
|
8343
|
+
"name": "GraphPlaceholderTab",
|
|
8344
|
+
"declaration": {
|
|
8345
|
+
"name": "GraphPlaceholderTab",
|
|
8346
|
+
"module": "./placeholder-tab"
|
|
8347
|
+
}
|
|
8348
|
+
},
|
|
8349
|
+
{
|
|
8350
|
+
"kind": "js",
|
|
8351
|
+
"name": "GraphSidebar",
|
|
8352
|
+
"declaration": {
|
|
8353
|
+
"name": "GraphSidebar",
|
|
8354
|
+
"module": "./sidebar"
|
|
8355
|
+
}
|
|
8356
|
+
}
|
|
8357
|
+
]
|
|
7892
8358
|
}
|
|
7893
8359
|
]
|
|
7894
8360
|
}
|