xcode-graph 0.1.1 → 0.2.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.
- package/README.md +266 -44
- package/custom-elements.json +902 -427
- package/dist/chunk.js +14 -0
- package/dist/elk-api.js +196 -0
- package/dist/elk-worker.js +24 -0
- package/dist/graph.types.js +23 -0
- package/dist/micro-layout.worker.js +1 -0
- package/dist/xcode-graph.service.js +2787 -4878
- package/dist/xcodegraph.js +19712 -1
- package/package.json +32 -49
- package/vscode.css-custom-data.json +0 -5
- package/vscode.html-custom-data.json +10 -20
- package/web-types.json +23 -46
- package/dist/elk.bundled.js +0 -6700
- package/dist/flow.js +0 -883
- package/dist/xcode-graph.js +0 -17150
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,60 @@
|
|
|
360
387
|
},
|
|
361
388
|
{
|
|
362
389
|
"kind": "field",
|
|
363
|
-
"name": "
|
|
364
|
-
"privacy": "private",
|
|
365
|
-
"readonly": true,
|
|
366
|
-
"default": "new ResizeController(this, { callback: () => this.resizeCanvas(), })"
|
|
367
|
-
},
|
|
368
|
-
{
|
|
369
|
-
"kind": "field",
|
|
370
|
-
"name": "_visibility",
|
|
371
|
-
"privacy": "private",
|
|
372
|
-
"readonly": true,
|
|
373
|
-
"default": "new IntersectionController(this, { callback: (entries) => entries.some((e) => e.isIntersecting), })"
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
"kind": "field",
|
|
377
|
-
"name": "interactionState",
|
|
390
|
+
"name": "resizeObserver",
|
|
378
391
|
"type": {
|
|
379
|
-
"text": "
|
|
392
|
+
"text": "ResizeObserver | null"
|
|
380
393
|
},
|
|
381
394
|
"privacy": "private",
|
|
382
|
-
"default": "
|
|
395
|
+
"default": "null"
|
|
383
396
|
},
|
|
384
397
|
{
|
|
385
398
|
"kind": "field",
|
|
386
|
-
"name": "
|
|
399
|
+
"name": "resizeRafId",
|
|
400
|
+
"type": {
|
|
401
|
+
"text": "number | null"
|
|
402
|
+
},
|
|
387
403
|
"privacy": "private",
|
|
388
|
-
"default": "
|
|
404
|
+
"default": "null"
|
|
389
405
|
},
|
|
390
406
|
{
|
|
391
407
|
"kind": "field",
|
|
392
|
-
"name": "
|
|
408
|
+
"name": "themeObserver",
|
|
409
|
+
"type": {
|
|
410
|
+
"text": "MutationObserver | null"
|
|
411
|
+
},
|
|
393
412
|
"privacy": "private",
|
|
394
|
-
"default": "
|
|
413
|
+
"default": "null"
|
|
395
414
|
},
|
|
396
415
|
{
|
|
397
416
|
"kind": "field",
|
|
398
|
-
"name": "
|
|
417
|
+
"name": "intersectionObserver",
|
|
418
|
+
"type": {
|
|
419
|
+
"text": "IntersectionObserver | null"
|
|
420
|
+
},
|
|
399
421
|
"privacy": "private",
|
|
400
|
-
"default": "
|
|
422
|
+
"default": "null"
|
|
401
423
|
},
|
|
402
424
|
{
|
|
403
425
|
"kind": "field",
|
|
404
|
-
"name": "
|
|
426
|
+
"name": "_isVisible",
|
|
427
|
+
"type": {
|
|
428
|
+
"text": "boolean"
|
|
429
|
+
},
|
|
405
430
|
"privacy": "private",
|
|
406
|
-
"default": "
|
|
431
|
+
"default": "true"
|
|
407
432
|
},
|
|
408
433
|
{
|
|
409
434
|
"kind": "field",
|
|
410
|
-
"name": "
|
|
435
|
+
"name": "manualNodePositions",
|
|
411
436
|
"privacy": "private",
|
|
412
|
-
"default": "new Map<string, number>()"
|
|
437
|
+
"default": "new Map<string, { x: number; y: number }>()"
|
|
413
438
|
},
|
|
414
439
|
{
|
|
415
440
|
"kind": "field",
|
|
416
|
-
"name": "
|
|
441
|
+
"name": "manualClusterPositions",
|
|
417
442
|
"privacy": "private",
|
|
418
|
-
"default": "new Map<string,
|
|
443
|
+
"default": "new Map<string, { x: number; y: number }>()"
|
|
419
444
|
},
|
|
420
445
|
{
|
|
421
446
|
"kind": "field",
|
|
@@ -426,24 +451,6 @@
|
|
|
426
451
|
"privacy": "private",
|
|
427
452
|
"default": "null"
|
|
428
453
|
},
|
|
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
454
|
{
|
|
448
455
|
"kind": "field",
|
|
449
456
|
"name": "theme",
|
|
@@ -457,7 +464,7 @@
|
|
|
457
464
|
"name": "animationLoop",
|
|
458
465
|
"privacy": "private",
|
|
459
466
|
"readonly": true,
|
|
460
|
-
"default": "new AnimationLoopController(this, { onRender: (timestamp, dt) => this.onFrame(timestamp, dt), shouldAnimate: () => this.isAnimating, isVisible: () => this.
|
|
467
|
+
"default": "new AnimationLoopController(this, { onRender: (timestamp, dt) => this.onFrame(timestamp, dt), shouldAnimate: () => this.isAnimating, isVisible: () => this._isVisible, })"
|
|
461
468
|
},
|
|
462
469
|
{
|
|
463
470
|
"kind": "field",
|
|
@@ -496,18 +503,7 @@
|
|
|
496
503
|
"kind": "field",
|
|
497
504
|
"name": "fadingOutNodes",
|
|
498
505
|
"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"
|
|
506
|
+
"default": "new Map<string, FadingNode>()"
|
|
511
507
|
},
|
|
512
508
|
{
|
|
513
509
|
"kind": "method",
|
|
@@ -520,22 +516,14 @@
|
|
|
520
516
|
"text": "PropertyValues<this>"
|
|
521
517
|
}
|
|
522
518
|
}
|
|
523
|
-
]
|
|
524
|
-
|
|
525
|
-
{
|
|
526
|
-
"kind": "method",
|
|
527
|
-
"name": "updatePathCache",
|
|
528
|
-
"privacy": "private"
|
|
529
|
-
},
|
|
530
|
-
{
|
|
531
|
-
"kind": "method",
|
|
532
|
-
"name": "rebuildNodeMap",
|
|
533
|
-
"privacy": "private"
|
|
519
|
+
],
|
|
520
|
+
"description": "Detects nodes removed between updates and queues them for fade-out animation."
|
|
534
521
|
},
|
|
535
522
|
{
|
|
536
523
|
"kind": "method",
|
|
537
524
|
"name": "updateNodeAlphaTargets",
|
|
538
|
-
"privacy": "private"
|
|
525
|
+
"privacy": "private",
|
|
526
|
+
"description": "Updates opacity animation targets based on current selection and cluster state."
|
|
539
527
|
},
|
|
540
528
|
{
|
|
541
529
|
"kind": "method",
|
|
@@ -545,27 +533,14 @@
|
|
|
545
533
|
"type": {
|
|
546
534
|
"text": "Set<string>"
|
|
547
535
|
}
|
|
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"
|
|
536
|
+
},
|
|
537
|
+
"description": "Returns the cached set of node IDs connected to the selected node."
|
|
564
538
|
},
|
|
565
539
|
{
|
|
566
540
|
"kind": "method",
|
|
567
541
|
"name": "centerGraph",
|
|
568
|
-
"privacy": "private"
|
|
542
|
+
"privacy": "private",
|
|
543
|
+
"description": "Centers the pan offset to the middle of the component's bounding rectangle."
|
|
569
544
|
},
|
|
570
545
|
{
|
|
571
546
|
"kind": "method",
|
|
@@ -574,22 +549,20 @@
|
|
|
574
549
|
"type": {
|
|
575
550
|
"text": "void"
|
|
576
551
|
}
|
|
577
|
-
}
|
|
552
|
+
},
|
|
553
|
+
"description": "Adjusts zoom and pan so that all clusters fit within the visible viewport."
|
|
578
554
|
},
|
|
579
555
|
{
|
|
580
556
|
"kind": "method",
|
|
581
|
-
"name": "
|
|
557
|
+
"name": "scheduleResize",
|
|
582
558
|
"privacy": "private",
|
|
583
|
-
"
|
|
584
|
-
"type": {
|
|
585
|
-
"text": "InteractionContext"
|
|
586
|
-
}
|
|
587
|
-
}
|
|
559
|
+
"description": "Debounces resize via rAF so the scene resize and re-render happen\nin the same frame, preventing visible flashes during CSS transitions."
|
|
588
560
|
},
|
|
589
561
|
{
|
|
590
562
|
"kind": "method",
|
|
591
|
-
"name": "
|
|
592
|
-
"privacy": "private"
|
|
563
|
+
"name": "resizeScene",
|
|
564
|
+
"privacy": "private",
|
|
565
|
+
"description": "Resizes the canvas to match the element dimensions."
|
|
593
566
|
},
|
|
594
567
|
{
|
|
595
568
|
"kind": "field",
|
|
@@ -598,33 +571,14 @@
|
|
|
598
571
|
},
|
|
599
572
|
{
|
|
600
573
|
"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",
|
|
574
|
+
"name": "handleContainerKeyDown",
|
|
622
575
|
"privacy": "private"
|
|
623
576
|
},
|
|
624
577
|
{
|
|
625
578
|
"kind": "method",
|
|
626
579
|
"name": "requestRender",
|
|
627
|
-
"privacy": "private"
|
|
580
|
+
"privacy": "private",
|
|
581
|
+
"description": "Schedules a canvas render on the next animation frame."
|
|
628
582
|
},
|
|
629
583
|
{
|
|
630
584
|
"kind": "method",
|
|
@@ -649,32 +603,19 @@
|
|
|
649
603
|
}
|
|
650
604
|
}
|
|
651
605
|
],
|
|
652
|
-
"description": "Frame callback invoked by AnimationLoopController when a render is needed.\nHandles animation ticking and delegates to
|
|
606
|
+
"description": "Frame callback invoked by AnimationLoopController when a render is needed.\nHandles animation ticking and delegates to renderScene()."
|
|
653
607
|
},
|
|
654
608
|
{
|
|
655
609
|
"kind": "method",
|
|
656
610
|
"name": "updateAnimatingState",
|
|
657
|
-
"privacy": "private"
|
|
658
|
-
|
|
659
|
-
{
|
|
660
|
-
"kind": "method",
|
|
661
|
-
"name": "renderCanvas",
|
|
662
|
-
"privacy": "private"
|
|
611
|
+
"privacy": "private",
|
|
612
|
+
"description": "Recalculates whether the animation loop should remain active based on current state."
|
|
663
613
|
},
|
|
664
614
|
{
|
|
665
615
|
"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"
|
|
616
|
+
"name": "renderScene",
|
|
617
|
+
"privacy": "private",
|
|
618
|
+
"description": "Builds the scene config and delegates rendering to the canvas scene."
|
|
678
619
|
}
|
|
679
620
|
],
|
|
680
621
|
"events": [
|
|
@@ -723,7 +664,7 @@
|
|
|
723
664
|
"type": {
|
|
724
665
|
"text": "string"
|
|
725
666
|
},
|
|
726
|
-
"description": "Active search query
|
|
667
|
+
"description": "Active search query — attribute-bound from parent via search-query=\"...\"",
|
|
727
668
|
"default": "''",
|
|
728
669
|
"fieldName": "searchQuery"
|
|
729
670
|
},
|
|
@@ -732,17 +673,11 @@
|
|
|
732
673
|
"type": {
|
|
733
674
|
"text": "ViewMode"
|
|
734
675
|
},
|
|
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"
|
|
676
|
+
"description": "Display mode — attribute-bound from parent via view-mode=\"...\"",
|
|
677
|
+
"fieldName": "viewMode",
|
|
678
|
+
"parsedType": {
|
|
679
|
+
"text": "'full' | 'focused' | 'path' | 'dependents' | 'both'"
|
|
680
|
+
}
|
|
746
681
|
},
|
|
747
682
|
{
|
|
748
683
|
"name": "enable-animation",
|
|
@@ -758,7 +693,7 @@
|
|
|
758
693
|
"type": {
|
|
759
694
|
"text": "boolean"
|
|
760
695
|
},
|
|
761
|
-
"description": "Whether to highlight direct dependency edges",
|
|
696
|
+
"description": "Whether to highlight direct dependency edges — attribute-bound via ?show-direct-deps",
|
|
762
697
|
"default": "false",
|
|
763
698
|
"fieldName": "showDirectDeps"
|
|
764
699
|
},
|
|
@@ -767,7 +702,7 @@
|
|
|
767
702
|
"type": {
|
|
768
703
|
"text": "boolean"
|
|
769
704
|
},
|
|
770
|
-
"description": "Whether to highlight transitive dependency edges",
|
|
705
|
+
"description": "Whether to highlight transitive dependency edges — attribute-bound via ?show-transitive-deps",
|
|
771
706
|
"default": "false",
|
|
772
707
|
"fieldName": "showTransitiveDeps"
|
|
773
708
|
},
|
|
@@ -776,7 +711,7 @@
|
|
|
776
711
|
"type": {
|
|
777
712
|
"text": "boolean"
|
|
778
713
|
},
|
|
779
|
-
"description": "Whether to highlight direct dependent edges",
|
|
714
|
+
"description": "Whether to highlight direct dependent edges — attribute-bound via ?show-direct-dependents",
|
|
780
715
|
"default": "false",
|
|
781
716
|
"fieldName": "showDirectDependents"
|
|
782
717
|
},
|
|
@@ -785,7 +720,7 @@
|
|
|
785
720
|
"type": {
|
|
786
721
|
"text": "boolean"
|
|
787
722
|
},
|
|
788
|
-
"description": "Whether to highlight transitive dependent edges",
|
|
723
|
+
"description": "Whether to highlight transitive dependent edges — attribute-bound via ?show-transitive-dependents",
|
|
789
724
|
"default": "false",
|
|
790
725
|
"fieldName": "showTransitiveDependents"
|
|
791
726
|
}
|
|
@@ -794,7 +729,7 @@
|
|
|
794
729
|
"name": "LitElement",
|
|
795
730
|
"package": "lit"
|
|
796
731
|
},
|
|
797
|
-
"summary": "
|
|
732
|
+
"summary": "Canvas2D interactive graph visualization",
|
|
798
733
|
"tagName": "xcode-graph-canvas",
|
|
799
734
|
"customElement": true
|
|
800
735
|
}
|
|
@@ -899,17 +834,20 @@
|
|
|
899
834
|
{
|
|
900
835
|
"kind": "method",
|
|
901
836
|
"name": "handleZoomIn",
|
|
902
|
-
"privacy": "private"
|
|
837
|
+
"privacy": "private",
|
|
838
|
+
"description": "Steps zoom to the next predefined level and dispatches a 'zoom-step' event."
|
|
903
839
|
},
|
|
904
840
|
{
|
|
905
841
|
"kind": "method",
|
|
906
842
|
"name": "handleZoomOut",
|
|
907
|
-
"privacy": "private"
|
|
843
|
+
"privacy": "private",
|
|
844
|
+
"description": "Steps zoom to the previous predefined level and dispatches a 'zoom-step' event."
|
|
908
845
|
},
|
|
909
846
|
{
|
|
910
847
|
"kind": "method",
|
|
911
848
|
"name": "handleZoomReset",
|
|
912
|
-
"privacy": "private"
|
|
849
|
+
"privacy": "private",
|
|
850
|
+
"description": "Dispatches a 'zoom-reset' event to fit the graph to the viewport."
|
|
913
851
|
},
|
|
914
852
|
{
|
|
915
853
|
"kind": "method",
|
|
@@ -922,7 +860,8 @@
|
|
|
922
860
|
"text": "WheelEvent"
|
|
923
861
|
}
|
|
924
862
|
}
|
|
925
|
-
]
|
|
863
|
+
],
|
|
864
|
+
"description": "Stops wheel events from propagating to the canvas zoom handler."
|
|
926
865
|
},
|
|
927
866
|
{
|
|
928
867
|
"kind": "method",
|
|
@@ -935,7 +874,8 @@
|
|
|
935
874
|
"text": "MouseEvent"
|
|
936
875
|
}
|
|
937
876
|
}
|
|
938
|
-
]
|
|
877
|
+
],
|
|
878
|
+
"description": "Stops mousedown events from propagating to the canvas drag handler."
|
|
939
879
|
}
|
|
940
880
|
],
|
|
941
881
|
"events": [
|
|
@@ -1164,7 +1104,7 @@
|
|
|
1164
1104
|
"description": "Button variant style",
|
|
1165
1105
|
"default": "'ghost'",
|
|
1166
1106
|
"attribute": "variant",
|
|
1167
|
-
"
|
|
1107
|
+
"parsedType": {
|
|
1168
1108
|
"text": "'ghost' | 'subtle' | 'solid'"
|
|
1169
1109
|
}
|
|
1170
1110
|
},
|
|
@@ -1177,7 +1117,7 @@
|
|
|
1177
1117
|
"description": "Button color scheme",
|
|
1178
1118
|
"default": "'neutral'",
|
|
1179
1119
|
"attribute": "color",
|
|
1180
|
-
"
|
|
1120
|
+
"parsedType": {
|
|
1181
1121
|
"text": "'neutral' | 'primary' | 'destructive'"
|
|
1182
1122
|
}
|
|
1183
1123
|
},
|
|
@@ -1190,7 +1130,7 @@
|
|
|
1190
1130
|
"description": "Button size",
|
|
1191
1131
|
"default": "'md'",
|
|
1192
1132
|
"attribute": "size",
|
|
1193
|
-
"
|
|
1133
|
+
"parsedType": {
|
|
1194
1134
|
"text": "'sm' | 'md'"
|
|
1195
1135
|
}
|
|
1196
1136
|
},
|
|
@@ -1224,7 +1164,7 @@
|
|
|
1224
1164
|
"description": "Button variant style",
|
|
1225
1165
|
"default": "'ghost'",
|
|
1226
1166
|
"fieldName": "variant",
|
|
1227
|
-
"
|
|
1167
|
+
"parsedType": {
|
|
1228
1168
|
"text": "'ghost' | 'subtle' | 'solid'"
|
|
1229
1169
|
}
|
|
1230
1170
|
},
|
|
@@ -1236,7 +1176,7 @@
|
|
|
1236
1176
|
"description": "Button color scheme",
|
|
1237
1177
|
"default": "'neutral'",
|
|
1238
1178
|
"fieldName": "color",
|
|
1239
|
-
"
|
|
1179
|
+
"parsedType": {
|
|
1240
1180
|
"text": "'neutral' | 'primary' | 'destructive'"
|
|
1241
1181
|
}
|
|
1242
1182
|
},
|
|
@@ -1248,7 +1188,7 @@
|
|
|
1248
1188
|
"description": "Button size",
|
|
1249
1189
|
"default": "'md'",
|
|
1250
1190
|
"fieldName": "size",
|
|
1251
|
-
"
|
|
1191
|
+
"parsedType": {
|
|
1252
1192
|
"text": "'sm' | 'md'"
|
|
1253
1193
|
}
|
|
1254
1194
|
},
|
|
@@ -1338,7 +1278,8 @@
|
|
|
1338
1278
|
{
|
|
1339
1279
|
"kind": "method",
|
|
1340
1280
|
"name": "handleToggle",
|
|
1341
|
-
"privacy": "private"
|
|
1281
|
+
"privacy": "private",
|
|
1282
|
+
"description": "Dispatches the toggle-collapse event when the collapse button is clicked"
|
|
1342
1283
|
}
|
|
1343
1284
|
],
|
|
1344
1285
|
"events": [
|
|
@@ -1508,27 +1449,8 @@
|
|
|
1508
1449
|
"text": "string"
|
|
1509
1450
|
}
|
|
1510
1451
|
}
|
|
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"
|
|
1452
|
+
],
|
|
1453
|
+
"description": "Dispatches an event to expand the sidebar to the given filter section"
|
|
1532
1454
|
}
|
|
1533
1455
|
],
|
|
1534
1456
|
"events": [
|
|
@@ -1725,7 +1647,8 @@
|
|
|
1725
1647
|
{
|
|
1726
1648
|
"kind": "method",
|
|
1727
1649
|
"name": "toggleExpanded",
|
|
1728
|
-
"privacy": "private"
|
|
1650
|
+
"privacy": "private",
|
|
1651
|
+
"description": "Toggles the expanded/collapsed state"
|
|
1729
1652
|
},
|
|
1730
1653
|
{
|
|
1731
1654
|
"kind": "field",
|
|
@@ -1753,7 +1676,8 @@
|
|
|
1753
1676
|
"type": {
|
|
1754
1677
|
"text": "TemplateResult | typeof nothing"
|
|
1755
1678
|
}
|
|
1756
|
-
}
|
|
1679
|
+
},
|
|
1680
|
+
"description": "Renders the code signing settings subsection"
|
|
1757
1681
|
},
|
|
1758
1682
|
{
|
|
1759
1683
|
"kind": "method",
|
|
@@ -1763,7 +1687,8 @@
|
|
|
1763
1687
|
"type": {
|
|
1764
1688
|
"text": "TemplateResult | typeof nothing"
|
|
1765
1689
|
}
|
|
1766
|
-
}
|
|
1690
|
+
},
|
|
1691
|
+
"description": "Renders the expanded build settings content"
|
|
1767
1692
|
}
|
|
1768
1693
|
],
|
|
1769
1694
|
"attributes": [
|
|
@@ -1811,7 +1736,7 @@
|
|
|
1811
1736
|
"declarations": [
|
|
1812
1737
|
{
|
|
1813
1738
|
"kind": "class",
|
|
1814
|
-
"description": "Reusable stats card component for displaying metrics.\
|
|
1739
|
+
"description": "Reusable stats card component for displaying metrics.\nCan be toggleable for interactive highlight controls.",
|
|
1815
1740
|
"name": "GraphStatsCard",
|
|
1816
1741
|
"members": [
|
|
1817
1742
|
{
|
|
@@ -1871,7 +1796,8 @@
|
|
|
1871
1796
|
{
|
|
1872
1797
|
"kind": "method",
|
|
1873
1798
|
"name": "handleClick",
|
|
1874
|
-
"privacy": "private"
|
|
1799
|
+
"privacy": "private",
|
|
1800
|
+
"description": "Dispatches card-toggle event when the card is toggleable and clicked"
|
|
1875
1801
|
}
|
|
1876
1802
|
],
|
|
1877
1803
|
"events": [
|
|
@@ -2100,7 +2026,8 @@
|
|
|
2100
2026
|
{
|
|
2101
2027
|
"kind": "method",
|
|
2102
2028
|
"name": "toggleExpanded",
|
|
2103
|
-
"privacy": "private"
|
|
2029
|
+
"privacy": "private",
|
|
2030
|
+
"description": "Toggles the section expanded/collapsed state"
|
|
2104
2031
|
},
|
|
2105
2032
|
{
|
|
2106
2033
|
"kind": "method",
|
|
@@ -2113,7 +2040,8 @@
|
|
|
2113
2040
|
"text": "string"
|
|
2114
2041
|
}
|
|
2115
2042
|
}
|
|
2116
|
-
]
|
|
2043
|
+
],
|
|
2044
|
+
"description": "Dispatches a toggle event for the specified metric card"
|
|
2117
2045
|
}
|
|
2118
2046
|
],
|
|
2119
2047
|
"events": [
|
|
@@ -2303,10 +2231,6 @@
|
|
|
2303
2231
|
{
|
|
2304
2232
|
"description": "Border color on hover (computed from color prop)",
|
|
2305
2233
|
"name": "--badge-border-hover"
|
|
2306
|
-
},
|
|
2307
|
-
{
|
|
2308
|
-
"description": "Glow color on hover (computed from color prop)",
|
|
2309
|
-
"name": "--badge-glow"
|
|
2310
2234
|
}
|
|
2311
2235
|
],
|
|
2312
2236
|
"members": [
|
|
@@ -2337,7 +2261,7 @@
|
|
|
2337
2261
|
"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
2262
|
"default": "'pill'",
|
|
2339
2263
|
"attribute": "variant",
|
|
2340
|
-
"
|
|
2264
|
+
"parsedType": {
|
|
2341
2265
|
"text": "'pill' | 'rounded' | 'accent'"
|
|
2342
2266
|
}
|
|
2343
2267
|
},
|
|
@@ -2350,7 +2274,7 @@
|
|
|
2350
2274
|
"description": "Badge size\n- 'sm': Smaller text (xs), monospace font\n- 'md': Medium text (sm), body font",
|
|
2351
2275
|
"default": "'md'",
|
|
2352
2276
|
"attribute": "size",
|
|
2353
|
-
"
|
|
2277
|
+
"parsedType": {
|
|
2354
2278
|
"text": "'sm' | 'md'"
|
|
2355
2279
|
}
|
|
2356
2280
|
},
|
|
@@ -2363,16 +2287,6 @@
|
|
|
2363
2287
|
"description": "Whether the badge has interactive hover states",
|
|
2364
2288
|
"default": "false",
|
|
2365
2289
|
"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
2290
|
}
|
|
2377
2291
|
],
|
|
2378
2292
|
"attributes": [
|
|
@@ -2400,7 +2314,7 @@
|
|
|
2400
2314
|
"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
2315
|
"default": "'pill'",
|
|
2402
2316
|
"fieldName": "variant",
|
|
2403
|
-
"
|
|
2317
|
+
"parsedType": {
|
|
2404
2318
|
"text": "'pill' | 'rounded' | 'accent'"
|
|
2405
2319
|
}
|
|
2406
2320
|
},
|
|
@@ -2412,7 +2326,7 @@
|
|
|
2412
2326
|
"description": "Badge size\n- 'sm': Smaller text (xs), monospace font\n- 'md': Medium text (sm), body font",
|
|
2413
2327
|
"default": "'md'",
|
|
2414
2328
|
"fieldName": "size",
|
|
2415
|
-
"
|
|
2329
|
+
"parsedType": {
|
|
2416
2330
|
"text": "'sm' | 'md'"
|
|
2417
2331
|
}
|
|
2418
2332
|
},
|
|
@@ -2424,15 +2338,6 @@
|
|
|
2424
2338
|
"description": "Whether the badge has interactive hover states",
|
|
2425
2339
|
"default": "false",
|
|
2426
2340
|
"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
2341
|
}
|
|
2437
2342
|
],
|
|
2438
2343
|
"superclass": {
|
|
@@ -2506,7 +2411,7 @@
|
|
|
2506
2411
|
"type": {
|
|
2507
2412
|
"text": "string"
|
|
2508
2413
|
},
|
|
2509
|
-
"description": "Theme color for the icon box
|
|
2414
|
+
"description": "Theme color for the icon box",
|
|
2510
2415
|
"attribute": "color"
|
|
2511
2416
|
},
|
|
2512
2417
|
{
|
|
@@ -2522,7 +2427,8 @@
|
|
|
2522
2427
|
{
|
|
2523
2428
|
"kind": "method",
|
|
2524
2429
|
"name": "handleBack",
|
|
2525
|
-
"privacy": "private"
|
|
2430
|
+
"privacy": "private",
|
|
2431
|
+
"description": "Handles back button click and dispatches back event"
|
|
2526
2432
|
}
|
|
2527
2433
|
],
|
|
2528
2434
|
"events": [
|
|
@@ -2556,7 +2462,7 @@
|
|
|
2556
2462
|
"type": {
|
|
2557
2463
|
"text": "string"
|
|
2558
2464
|
},
|
|
2559
|
-
"description": "Theme color for the icon box
|
|
2465
|
+
"description": "Theme color for the icon box",
|
|
2560
2466
|
"fieldName": "color"
|
|
2561
2467
|
},
|
|
2562
2468
|
{
|
|
@@ -2633,7 +2539,8 @@
|
|
|
2633
2539
|
"type": {
|
|
2634
2540
|
"text": "{ prefix: string; value: string; color: string }"
|
|
2635
2541
|
}
|
|
2636
|
-
}
|
|
2542
|
+
},
|
|
2543
|
+
"description": "Splits the tag into prefix and value, returning the associated color"
|
|
2637
2544
|
}
|
|
2638
2545
|
],
|
|
2639
2546
|
"attributes": [
|
|
@@ -2722,7 +2629,8 @@
|
|
|
2722
2629
|
{
|
|
2723
2630
|
"kind": "method",
|
|
2724
2631
|
"name": "handleBack",
|
|
2725
|
-
"privacy": "private"
|
|
2632
|
+
"privacy": "private",
|
|
2633
|
+
"description": "Handles back navigation to parent cluster or dispatches close event"
|
|
2726
2634
|
}
|
|
2727
2635
|
],
|
|
2728
2636
|
"events": [
|
|
@@ -2826,12 +2734,14 @@
|
|
|
2826
2734
|
{
|
|
2827
2735
|
"kind": "method",
|
|
2828
2736
|
"name": "renderPlatformTargets",
|
|
2829
|
-
"privacy": "private"
|
|
2737
|
+
"privacy": "private",
|
|
2738
|
+
"description": "Renders platform minimum OS version badges"
|
|
2830
2739
|
},
|
|
2831
2740
|
{
|
|
2832
2741
|
"kind": "method",
|
|
2833
2742
|
"name": "renderDestinations",
|
|
2834
|
-
"privacy": "private"
|
|
2743
|
+
"privacy": "private",
|
|
2744
|
+
"description": "Renders destination device type badges"
|
|
2835
2745
|
}
|
|
2836
2746
|
],
|
|
2837
2747
|
"attributes": [
|
|
@@ -2921,7 +2831,8 @@
|
|
|
2921
2831
|
{
|
|
2922
2832
|
"kind": "method",
|
|
2923
2833
|
"name": "toggleExpanded",
|
|
2924
|
-
"privacy": "private"
|
|
2834
|
+
"privacy": "private",
|
|
2835
|
+
"description": "Toggles the section expanded/collapsed state"
|
|
2925
2836
|
},
|
|
2926
2837
|
{
|
|
2927
2838
|
"kind": "field",
|
|
@@ -2953,7 +2864,8 @@
|
|
|
2953
2864
|
{
|
|
2954
2865
|
"kind": "method",
|
|
2955
2866
|
"name": "renderForeignBuild",
|
|
2956
|
-
"privacy": "private"
|
|
2867
|
+
"privacy": "private",
|
|
2868
|
+
"description": "Renders the foreign build details section if present"
|
|
2957
2869
|
},
|
|
2958
2870
|
{
|
|
2959
2871
|
"kind": "method",
|
|
@@ -2963,7 +2875,8 @@
|
|
|
2963
2875
|
"type": {
|
|
2964
2876
|
"text": "TemplateResult"
|
|
2965
2877
|
}
|
|
2966
|
-
}
|
|
2878
|
+
},
|
|
2879
|
+
"description": "Renders the expanded node info rows and subsections"
|
|
2967
2880
|
}
|
|
2968
2881
|
],
|
|
2969
2882
|
"attributes": [
|
|
@@ -3011,7 +2924,7 @@
|
|
|
3011
2924
|
"declarations": [
|
|
3012
2925
|
{
|
|
3013
2926
|
"kind": "class",
|
|
3014
|
-
"description": "Reusable row component for displaying nodes in lists
|
|
2927
|
+
"description": "Reusable row component for displaying nodes in lists.",
|
|
3015
2928
|
"name": "GraphListItemRow",
|
|
3016
2929
|
"members": [
|
|
3017
2930
|
{
|
|
@@ -3061,17 +2974,20 @@
|
|
|
3061
2974
|
{
|
|
3062
2975
|
"kind": "method",
|
|
3063
2976
|
"name": "handleClick",
|
|
3064
|
-
"privacy": "private"
|
|
2977
|
+
"privacy": "private",
|
|
2978
|
+
"description": "Handles row click and dispatches row-select event"
|
|
3065
2979
|
},
|
|
3066
2980
|
{
|
|
3067
2981
|
"kind": "method",
|
|
3068
2982
|
"name": "handleMouseEnter",
|
|
3069
|
-
"privacy": "private"
|
|
2983
|
+
"privacy": "private",
|
|
2984
|
+
"description": "Handles mouse enter and dispatches row-hover event"
|
|
3070
2985
|
},
|
|
3071
2986
|
{
|
|
3072
2987
|
"kind": "method",
|
|
3073
2988
|
"name": "handleMouseLeave",
|
|
3074
|
-
"privacy": "private"
|
|
2989
|
+
"privacy": "private",
|
|
2990
|
+
"description": "Handles mouse leave and dispatches row-hover-end event"
|
|
3075
2991
|
}
|
|
3076
2992
|
],
|
|
3077
2993
|
"events": [
|
|
@@ -3330,7 +3246,8 @@
|
|
|
3330
3246
|
{
|
|
3331
3247
|
"kind": "method",
|
|
3332
3248
|
"name": "toggleExpanded",
|
|
3333
|
-
"privacy": "private"
|
|
3249
|
+
"privacy": "private",
|
|
3250
|
+
"description": "Toggles the list expanded/collapsed state"
|
|
3334
3251
|
},
|
|
3335
3252
|
{
|
|
3336
3253
|
"kind": "field",
|
|
@@ -3339,38 +3256,22 @@
|
|
|
3339
3256
|
"text": "NodeWithEdge[]"
|
|
3340
3257
|
},
|
|
3341
3258
|
"privacy": "private",
|
|
3259
|
+
"description": "Returns the resolved item list, supporting both items and legacy nodes props",
|
|
3342
3260
|
"readonly": true
|
|
3343
3261
|
},
|
|
3344
3262
|
{
|
|
3345
3263
|
"kind": "method",
|
|
3346
|
-
"name": "
|
|
3264
|
+
"name": "renderKindBadge",
|
|
3347
3265
|
"privacy": "private",
|
|
3348
|
-
"return": {
|
|
3349
|
-
"type": {
|
|
3350
|
-
"text": "string"
|
|
3351
|
-
}
|
|
3352
|
-
},
|
|
3353
3266
|
"parameters": [
|
|
3354
3267
|
{
|
|
3355
|
-
"name": "
|
|
3268
|
+
"name": "item",
|
|
3356
3269
|
"type": {
|
|
3357
|
-
"text": "
|
|
3270
|
+
"text": "NodeWithEdge"
|
|
3358
3271
|
}
|
|
3359
3272
|
}
|
|
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
|
-
]
|
|
3273
|
+
],
|
|
3274
|
+
"description": "Renders a dependency kind badge for the given item"
|
|
3374
3275
|
},
|
|
3375
3276
|
{
|
|
3376
3277
|
"kind": "method",
|
|
@@ -3642,7 +3543,7 @@
|
|
|
3642
3543
|
"name": "focusTrap",
|
|
3643
3544
|
"privacy": "private",
|
|
3644
3545
|
"readonly": true,
|
|
3645
|
-
"default": "new FocusTrapController(this, { isActive: () =>
|
|
3546
|
+
"default": "new FocusTrapController(this, { isActive: () => Boolean(this.node), onDeactivate: () => this.bubbleEvent('close'), escapeDeactivates: true, clickOutsideDeactivates: true, })"
|
|
3646
3547
|
},
|
|
3647
3548
|
{
|
|
3648
3549
|
"kind": "field",
|
|
@@ -3668,7 +3569,8 @@
|
|
|
3668
3569
|
"text": "unknown"
|
|
3669
3570
|
}
|
|
3670
3571
|
}
|
|
3671
|
-
]
|
|
3572
|
+
],
|
|
3573
|
+
"description": "Dispatches a composed bubbling custom event with the given name and detail"
|
|
3672
3574
|
}
|
|
3673
3575
|
],
|
|
3674
3576
|
"events": [
|
|
@@ -3916,7 +3818,8 @@
|
|
|
3916
3818
|
{
|
|
3917
3819
|
"kind": "method",
|
|
3918
3820
|
"name": "toggleExpanded",
|
|
3919
|
-
"privacy": "private"
|
|
3821
|
+
"privacy": "private",
|
|
3822
|
+
"description": "Toggles the expanded/collapsed state"
|
|
3920
3823
|
},
|
|
3921
3824
|
{
|
|
3922
3825
|
"kind": "field",
|
|
@@ -4083,7 +3986,8 @@
|
|
|
4083
3986
|
"type": {
|
|
4084
3987
|
"text": "SourceType"
|
|
4085
3988
|
}
|
|
4086
|
-
}
|
|
3989
|
+
},
|
|
3990
|
+
"description": "Determines the source type (Local/Registry/Git) from the cluster path"
|
|
4087
3991
|
},
|
|
4088
3992
|
{
|
|
4089
3993
|
"kind": "method",
|
|
@@ -4093,12 +3997,14 @@
|
|
|
4093
3997
|
"type": {
|
|
4094
3998
|
"text": "string"
|
|
4095
3999
|
}
|
|
4096
|
-
}
|
|
4000
|
+
},
|
|
4001
|
+
"description": "Extracts a shortened display path from the full cluster path"
|
|
4097
4002
|
},
|
|
4098
4003
|
{
|
|
4099
4004
|
"kind": "method",
|
|
4100
4005
|
"name": "handleCopyPath",
|
|
4101
|
-
"privacy": "private"
|
|
4006
|
+
"privacy": "private",
|
|
4007
|
+
"description": "Copies the full cluster path to the clipboard"
|
|
4102
4008
|
}
|
|
4103
4009
|
],
|
|
4104
4010
|
"events": [
|
|
@@ -4278,7 +4184,8 @@
|
|
|
4278
4184
|
{
|
|
4279
4185
|
"kind": "method",
|
|
4280
4186
|
"name": "toggleExpanded",
|
|
4281
|
-
"privacy": "private"
|
|
4187
|
+
"privacy": "private",
|
|
4188
|
+
"description": "Toggles the expanded/collapsed state"
|
|
4282
4189
|
},
|
|
4283
4190
|
{
|
|
4284
4191
|
"kind": "method",
|
|
@@ -4291,12 +4198,14 @@
|
|
|
4291
4198
|
"text": "string"
|
|
4292
4199
|
}
|
|
4293
4200
|
}
|
|
4294
|
-
]
|
|
4201
|
+
],
|
|
4202
|
+
"description": "Dispatches a toggle event for the given stats card"
|
|
4295
4203
|
},
|
|
4296
4204
|
{
|
|
4297
4205
|
"kind": "method",
|
|
4298
4206
|
"name": "renderTargetBreakdown",
|
|
4299
|
-
"privacy": "private"
|
|
4207
|
+
"privacy": "private",
|
|
4208
|
+
"description": "Renders the target type breakdown badges"
|
|
4300
4209
|
},
|
|
4301
4210
|
{
|
|
4302
4211
|
"kind": "method",
|
|
@@ -4306,7 +4215,8 @@
|
|
|
4306
4215
|
"type": {
|
|
4307
4216
|
"text": "TemplateResult"
|
|
4308
4217
|
}
|
|
4309
|
-
}
|
|
4218
|
+
},
|
|
4219
|
+
"description": "Renders the expanded stats content with cards and breakdowns"
|
|
4310
4220
|
}
|
|
4311
4221
|
],
|
|
4312
4222
|
"events": [
|
|
@@ -4494,7 +4404,8 @@
|
|
|
4494
4404
|
{
|
|
4495
4405
|
"kind": "method",
|
|
4496
4406
|
"name": "toggleExpanded",
|
|
4497
|
-
"privacy": "private"
|
|
4407
|
+
"privacy": "private",
|
|
4408
|
+
"description": "Toggles the expanded/collapsed state"
|
|
4498
4409
|
},
|
|
4499
4410
|
{
|
|
4500
4411
|
"kind": "field",
|
|
@@ -4513,7 +4424,8 @@
|
|
|
4513
4424
|
"type": {
|
|
4514
4425
|
"text": "ClusterListItem[]"
|
|
4515
4426
|
}
|
|
4516
|
-
}
|
|
4427
|
+
},
|
|
4428
|
+
"description": "Builds a flat list of headers and nodes for virtualized rendering"
|
|
4517
4429
|
},
|
|
4518
4430
|
{
|
|
4519
4431
|
"kind": "method",
|
|
@@ -4531,7 +4443,8 @@
|
|
|
4531
4443
|
"text": "{\n dependencies: number;\n dependents: number;\n }"
|
|
4532
4444
|
}
|
|
4533
4445
|
}
|
|
4534
|
-
]
|
|
4446
|
+
],
|
|
4447
|
+
"description": "Formats dependency and dependent counts into a subtitle string"
|
|
4535
4448
|
},
|
|
4536
4449
|
{
|
|
4537
4450
|
"kind": "method",
|
|
@@ -4763,7 +4676,7 @@
|
|
|
4763
4676
|
"name": "focusTrap",
|
|
4764
4677
|
"privacy": "private",
|
|
4765
4678
|
"readonly": true,
|
|
4766
|
-
"default": "new FocusTrapController(this, { isActive: () =>
|
|
4679
|
+
"default": "new FocusTrapController(this, { isActive: () => Boolean(this.cluster), onDeactivate: () => this.bubbleEvent('close'), escapeDeactivates: true, clickOutsideDeactivates: true, })"
|
|
4767
4680
|
},
|
|
4768
4681
|
{
|
|
4769
4682
|
"kind": "field",
|
|
@@ -4804,7 +4717,8 @@
|
|
|
4804
4717
|
"text": "unknown"
|
|
4805
4718
|
}
|
|
4806
4719
|
}
|
|
4807
|
-
]
|
|
4720
|
+
],
|
|
4721
|
+
"description": "Dispatches a bubbling composed custom event"
|
|
4808
4722
|
}
|
|
4809
4723
|
],
|
|
4810
4724
|
"events": [
|
|
@@ -4902,7 +4816,8 @@
|
|
|
4902
4816
|
{
|
|
4903
4817
|
"kind": "method",
|
|
4904
4818
|
"name": "handleClick",
|
|
4905
|
-
"privacy": "private"
|
|
4819
|
+
"privacy": "private",
|
|
4820
|
+
"description": "Handles the click event and dispatches clear-filters"
|
|
4906
4821
|
}
|
|
4907
4822
|
],
|
|
4908
4823
|
"events": [
|
|
@@ -4958,7 +4873,7 @@
|
|
|
4958
4873
|
"declarations": [
|
|
4959
4874
|
{
|
|
4960
4875
|
"kind": "class",
|
|
4961
|
-
"description": "Input field for filtering nodes by name/text search
|
|
4876
|
+
"description": "Input field for filtering nodes by name/text search.",
|
|
4962
4877
|
"name": "GraphSearchBar",
|
|
4963
4878
|
"members": [
|
|
4964
4879
|
{
|
|
@@ -5007,12 +4922,14 @@
|
|
|
5007
4922
|
"text": "Event"
|
|
5008
4923
|
}
|
|
5009
4924
|
}
|
|
5010
|
-
]
|
|
4925
|
+
],
|
|
4926
|
+
"description": "Dispatches search-change with the current input value"
|
|
5011
4927
|
},
|
|
5012
4928
|
{
|
|
5013
4929
|
"kind": "method",
|
|
5014
4930
|
"name": "handleClear",
|
|
5015
|
-
"privacy": "private"
|
|
4931
|
+
"privacy": "private",
|
|
4932
|
+
"description": "Dispatches search-clear to reset the search input"
|
|
5016
4933
|
},
|
|
5017
4934
|
{
|
|
5018
4935
|
"kind": "method",
|
|
@@ -5025,7 +4942,8 @@
|
|
|
5025
4942
|
"text": "KeyboardEvent"
|
|
5026
4943
|
}
|
|
5027
4944
|
}
|
|
5028
|
-
]
|
|
4945
|
+
],
|
|
4946
|
+
"description": "Clears the search and blurs the input when Escape is pressed"
|
|
5029
4947
|
}
|
|
5030
4948
|
],
|
|
5031
4949
|
"events": [
|
|
@@ -5157,8 +5075,8 @@
|
|
|
5157
5075
|
},
|
|
5158
5076
|
"description": "The type of filter this section controls",
|
|
5159
5077
|
"attribute": "filter-type",
|
|
5160
|
-
"
|
|
5161
|
-
"text": "'
|
|
5078
|
+
"parsedType": {
|
|
5079
|
+
"text": "'platform' | 'project' | 'nodeType' | 'package'"
|
|
5162
5080
|
}
|
|
5163
5081
|
},
|
|
5164
5082
|
{
|
|
@@ -5173,7 +5091,8 @@
|
|
|
5173
5091
|
{
|
|
5174
5092
|
"kind": "method",
|
|
5175
5093
|
"name": "handleToggle",
|
|
5176
|
-
"privacy": "private"
|
|
5094
|
+
"privacy": "private",
|
|
5095
|
+
"description": "Dispatches section-toggle event when header is clicked"
|
|
5177
5096
|
},
|
|
5178
5097
|
{
|
|
5179
5098
|
"kind": "method",
|
|
@@ -5192,7 +5111,8 @@
|
|
|
5192
5111
|
"text": "boolean"
|
|
5193
5112
|
}
|
|
5194
5113
|
}
|
|
5195
|
-
]
|
|
5114
|
+
],
|
|
5115
|
+
"description": "Dispatches item-toggle event when a checkbox item is toggled"
|
|
5196
5116
|
},
|
|
5197
5117
|
{
|
|
5198
5118
|
"kind": "method",
|
|
@@ -5205,7 +5125,8 @@
|
|
|
5205
5125
|
"text": "FilterItem | null"
|
|
5206
5126
|
}
|
|
5207
5127
|
}
|
|
5208
|
-
]
|
|
5128
|
+
],
|
|
5129
|
+
"description": "Dispatches preview-change event on item hover for filter preview"
|
|
5209
5130
|
},
|
|
5210
5131
|
{
|
|
5211
5132
|
"kind": "method",
|
|
@@ -5230,7 +5151,8 @@
|
|
|
5230
5151
|
"text": "string"
|
|
5231
5152
|
}
|
|
5232
5153
|
}
|
|
5233
|
-
]
|
|
5154
|
+
],
|
|
5155
|
+
"description": "Renders the appropriate icon for a filter item based on filter type"
|
|
5234
5156
|
},
|
|
5235
5157
|
{
|
|
5236
5158
|
"kind": "method",
|
|
@@ -5243,7 +5165,8 @@
|
|
|
5243
5165
|
"text": "FilterItem"
|
|
5244
5166
|
}
|
|
5245
5167
|
}
|
|
5246
|
-
]
|
|
5168
|
+
],
|
|
5169
|
+
"description": "Renders a single filter item as a toggleable button"
|
|
5247
5170
|
}
|
|
5248
5171
|
],
|
|
5249
5172
|
"events": [
|
|
@@ -5309,8 +5232,8 @@
|
|
|
5309
5232
|
},
|
|
5310
5233
|
"description": "The type of filter this section controls",
|
|
5311
5234
|
"fieldName": "filterType",
|
|
5312
|
-
"
|
|
5313
|
-
"text": "'
|
|
5235
|
+
"parsedType": {
|
|
5236
|
+
"text": "'platform' | 'project' | 'nodeType' | 'package'"
|
|
5314
5237
|
}
|
|
5315
5238
|
},
|
|
5316
5239
|
{
|
|
@@ -5371,17 +5294,8 @@
|
|
|
5371
5294
|
{
|
|
5372
5295
|
"kind": "method",
|
|
5373
5296
|
"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"
|
|
5297
|
+
"privacy": "private",
|
|
5298
|
+
"description": "Handles the clear filters button click"
|
|
5385
5299
|
}
|
|
5386
5300
|
],
|
|
5387
5301
|
"events": [
|
|
@@ -5514,7 +5428,8 @@
|
|
|
5514
5428
|
"text": "string | null"
|
|
5515
5429
|
}
|
|
5516
5430
|
}
|
|
5517
|
-
]
|
|
5431
|
+
],
|
|
5432
|
+
"description": "Finds an existing cluster or synthesizes one from matching nodes"
|
|
5518
5433
|
},
|
|
5519
5434
|
{
|
|
5520
5435
|
"kind": "field",
|
|
@@ -5555,12 +5470,14 @@
|
|
|
5555
5470
|
"text": "string"
|
|
5556
5471
|
}
|
|
5557
5472
|
}
|
|
5558
|
-
]
|
|
5473
|
+
],
|
|
5474
|
+
"description": "Updates the global search query signal when the search bar value changes."
|
|
5559
5475
|
},
|
|
5560
5476
|
{
|
|
5561
5477
|
"kind": "method",
|
|
5562
5478
|
"name": "handleClearFilters",
|
|
5563
|
-
"privacy": "private"
|
|
5479
|
+
"privacy": "private",
|
|
5480
|
+
"description": "Resets all filters and clears the search query"
|
|
5564
5481
|
},
|
|
5565
5482
|
{
|
|
5566
5483
|
"kind": "method",
|
|
@@ -5585,7 +5502,8 @@
|
|
|
5585
5502
|
"text": "boolean"
|
|
5586
5503
|
}
|
|
5587
5504
|
}
|
|
5588
|
-
]
|
|
5505
|
+
],
|
|
5506
|
+
"description": "Toggles a single filter item on or off within its filter category"
|
|
5589
5507
|
},
|
|
5590
5508
|
{
|
|
5591
5509
|
"kind": "method",
|
|
@@ -5598,12 +5516,14 @@
|
|
|
5598
5516
|
"text": "PreviewFilter"
|
|
5599
5517
|
}
|
|
5600
5518
|
}
|
|
5601
|
-
]
|
|
5519
|
+
],
|
|
5520
|
+
"description": "Updates the global preview filter signal to highlight matching nodes on the canvas."
|
|
5602
5521
|
},
|
|
5603
5522
|
{
|
|
5604
5523
|
"kind": "method",
|
|
5605
5524
|
"name": "handleToggleCollapse",
|
|
5606
|
-
"privacy": "private"
|
|
5525
|
+
"privacy": "private",
|
|
5526
|
+
"description": "Toggles the sidebar between collapsed and expanded states"
|
|
5607
5527
|
},
|
|
5608
5528
|
{
|
|
5609
5529
|
"kind": "method",
|
|
@@ -5616,7 +5536,8 @@
|
|
|
5616
5536
|
"text": "SidebarSection"
|
|
5617
5537
|
}
|
|
5618
5538
|
}
|
|
5619
|
-
]
|
|
5539
|
+
],
|
|
5540
|
+
"description": "Toggles a filter section between expanded and collapsed"
|
|
5620
5541
|
},
|
|
5621
5542
|
{
|
|
5622
5543
|
"kind": "method",
|
|
@@ -5629,7 +5550,8 @@
|
|
|
5629
5550
|
"text": "SidebarSection"
|
|
5630
5551
|
}
|
|
5631
5552
|
}
|
|
5632
|
-
]
|
|
5553
|
+
],
|
|
5554
|
+
"description": "Expands the sidebar, clears selection, and scrolls to the given filter section"
|
|
5633
5555
|
},
|
|
5634
5556
|
{
|
|
5635
5557
|
"kind": "method",
|
|
@@ -5642,7 +5564,8 @@
|
|
|
5642
5564
|
"text": "ReturnType<typeof filters.get>"
|
|
5643
5565
|
}
|
|
5644
5566
|
}
|
|
5645
|
-
]
|
|
5567
|
+
],
|
|
5568
|
+
"description": "Renders the collapsed sidebar icon bar with filter badges"
|
|
5646
5569
|
},
|
|
5647
5570
|
{
|
|
5648
5571
|
"kind": "method",
|
|
@@ -5667,7 +5590,8 @@
|
|
|
5667
5590
|
"text": "{\n activeDirectDeps: boolean;\n activeTransitiveDeps: boolean;\n activeDirectDependents: boolean;\n activeTransitiveDependents: boolean;\n }"
|
|
5668
5591
|
}
|
|
5669
5592
|
}
|
|
5670
|
-
]
|
|
5593
|
+
],
|
|
5594
|
+
"description": "Renders the node details panel with dependency highlight toggles"
|
|
5671
5595
|
},
|
|
5672
5596
|
{
|
|
5673
5597
|
"kind": "method",
|
|
@@ -5692,7 +5616,8 @@
|
|
|
5692
5616
|
"text": "{\n activeDirectDeps: boolean;\n activeDirectDependents: boolean;\n }"
|
|
5693
5617
|
}
|
|
5694
5618
|
}
|
|
5695
|
-
]
|
|
5619
|
+
],
|
|
5620
|
+
"description": "Renders the cluster details panel with dependency highlight toggles"
|
|
5696
5621
|
},
|
|
5697
5622
|
{
|
|
5698
5623
|
"kind": "method",
|
|
@@ -5705,7 +5630,8 @@
|
|
|
5705
5630
|
"text": "FilterViewOptions"
|
|
5706
5631
|
}
|
|
5707
5632
|
}
|
|
5708
|
-
]
|
|
5633
|
+
],
|
|
5634
|
+
"description": "Renders the filter view with search bar, stats, and filter sections"
|
|
5709
5635
|
},
|
|
5710
5636
|
{
|
|
5711
5637
|
"kind": "method",
|
|
@@ -5736,17 +5662,20 @@
|
|
|
5736
5662
|
"text": "FilterItemsGroup"
|
|
5737
5663
|
}
|
|
5738
5664
|
}
|
|
5739
|
-
]
|
|
5665
|
+
],
|
|
5666
|
+
"description": "Renders the product types, platforms, projects, and packages filter sections"
|
|
5740
5667
|
},
|
|
5741
5668
|
{
|
|
5742
5669
|
"kind": "method",
|
|
5743
5670
|
"name": "handleBackToFilters",
|
|
5744
|
-
"privacy": "private"
|
|
5671
|
+
"privacy": "private",
|
|
5672
|
+
"description": "Clears both node and cluster selection to return to the filter view."
|
|
5745
5673
|
},
|
|
5746
5674
|
{
|
|
5747
5675
|
"kind": "method",
|
|
5748
5676
|
"name": "renderDetailsToolbar",
|
|
5749
|
-
"privacy": "private"
|
|
5677
|
+
"privacy": "private",
|
|
5678
|
+
"description": "Renders the toolbar with back-to-filters breadcrumb and collapse button"
|
|
5750
5679
|
},
|
|
5751
5680
|
{
|
|
5752
5681
|
"kind": "method",
|
|
@@ -5759,7 +5688,8 @@
|
|
|
5759
5688
|
"text": "ExpandedContentOptions"
|
|
5760
5689
|
}
|
|
5761
5690
|
}
|
|
5762
|
-
]
|
|
5691
|
+
],
|
|
5692
|
+
"description": "Renders expanded content: node details, cluster details, or filter view"
|
|
5763
5693
|
}
|
|
5764
5694
|
],
|
|
5765
5695
|
"superclass": {
|
|
@@ -6036,7 +5966,8 @@
|
|
|
6036
5966
|
"type": {
|
|
6037
5967
|
"text": "void"
|
|
6038
5968
|
}
|
|
6039
|
-
}
|
|
5969
|
+
},
|
|
5970
|
+
"description": "Handles the dismiss event with slide-out animation"
|
|
6040
5971
|
},
|
|
6041
5972
|
{
|
|
6042
5973
|
"kind": "method",
|
|
@@ -6046,7 +5977,8 @@
|
|
|
6046
5977
|
"type": {
|
|
6047
5978
|
"text": "void"
|
|
6048
5979
|
}
|
|
6049
|
-
}
|
|
5980
|
+
},
|
|
5981
|
+
"description": "Handles the action button click"
|
|
6050
5982
|
}
|
|
6051
5983
|
],
|
|
6052
5984
|
"events": [
|
|
@@ -6129,7 +6061,8 @@
|
|
|
6129
6061
|
"text": "CustomEvent<{ errorId: string }>"
|
|
6130
6062
|
}
|
|
6131
6063
|
}
|
|
6132
|
-
]
|
|
6064
|
+
],
|
|
6065
|
+
"description": "Dismisses an error toast by forwarding the error ID to the error service."
|
|
6133
6066
|
},
|
|
6134
6067
|
{
|
|
6135
6068
|
"kind": "method",
|
|
@@ -6147,7 +6080,8 @@
|
|
|
6147
6080
|
"text": "CustomEvent<{ error: AppError }>"
|
|
6148
6081
|
}
|
|
6149
6082
|
}
|
|
6150
|
-
]
|
|
6083
|
+
],
|
|
6084
|
+
"description": "Executes the action associated with an error toast (e.g. retry)."
|
|
6151
6085
|
}
|
|
6152
6086
|
],
|
|
6153
6087
|
"superclass": {
|
|
@@ -6199,7 +6133,8 @@
|
|
|
6199
6133
|
{
|
|
6200
6134
|
"kind": "method",
|
|
6201
6135
|
"name": "handleClick",
|
|
6202
|
-
"privacy": "private"
|
|
6136
|
+
"privacy": "private",
|
|
6137
|
+
"description": "Opens the hidden file input dialog"
|
|
6203
6138
|
},
|
|
6204
6139
|
{
|
|
6205
6140
|
"kind": "method",
|
|
@@ -6212,7 +6147,8 @@
|
|
|
6212
6147
|
"text": "KeyboardEvent"
|
|
6213
6148
|
}
|
|
6214
6149
|
}
|
|
6215
|
-
]
|
|
6150
|
+
],
|
|
6151
|
+
"description": "Handles keyboard activation (Enter/Space) to open file dialog"
|
|
6216
6152
|
},
|
|
6217
6153
|
{
|
|
6218
6154
|
"kind": "method",
|
|
@@ -6225,7 +6161,8 @@
|
|
|
6225
6161
|
"text": "Event"
|
|
6226
6162
|
}
|
|
6227
6163
|
}
|
|
6228
|
-
]
|
|
6164
|
+
],
|
|
6165
|
+
"description": "Handles file input change and reads the selected file"
|
|
6229
6166
|
},
|
|
6230
6167
|
{
|
|
6231
6168
|
"kind": "method",
|
|
@@ -6238,12 +6175,14 @@
|
|
|
6238
6175
|
"text": "DragEvent"
|
|
6239
6176
|
}
|
|
6240
6177
|
}
|
|
6241
|
-
]
|
|
6178
|
+
],
|
|
6179
|
+
"description": "Handles dragover to enable drop and show visual feedback"
|
|
6242
6180
|
},
|
|
6243
6181
|
{
|
|
6244
6182
|
"kind": "method",
|
|
6245
6183
|
"name": "handleDragLeave",
|
|
6246
|
-
"privacy": "private"
|
|
6184
|
+
"privacy": "private",
|
|
6185
|
+
"description": "Handles dragleave to reset visual feedback"
|
|
6247
6186
|
},
|
|
6248
6187
|
{
|
|
6249
6188
|
"kind": "method",
|
|
@@ -6256,7 +6195,8 @@
|
|
|
6256
6195
|
"text": "DragEvent"
|
|
6257
6196
|
}
|
|
6258
6197
|
}
|
|
6259
|
-
]
|
|
6198
|
+
],
|
|
6199
|
+
"description": "Handles file drop and reads the dropped file"
|
|
6260
6200
|
},
|
|
6261
6201
|
{
|
|
6262
6202
|
"kind": "method",
|
|
@@ -6269,7 +6209,8 @@
|
|
|
6269
6209
|
"text": "File"
|
|
6270
6210
|
}
|
|
6271
6211
|
}
|
|
6272
|
-
]
|
|
6212
|
+
],
|
|
6213
|
+
"description": "Reads a file as text, parses JSON, and dispatches graph-file-loaded event"
|
|
6273
6214
|
}
|
|
6274
6215
|
],
|
|
6275
6216
|
"events": [
|
|
@@ -6359,7 +6300,7 @@
|
|
|
6359
6300
|
},
|
|
6360
6301
|
"description": "Color scheme preference. Set to `'light'` or `'dark'` to force a mode,\nor `'auto'` (default) to follow the user's system preference.",
|
|
6361
6302
|
"attribute": "color-scheme",
|
|
6362
|
-
"
|
|
6303
|
+
"parsedType": {
|
|
6363
6304
|
"text": "'light' | 'dark' | 'auto'"
|
|
6364
6305
|
}
|
|
6365
6306
|
},
|
|
@@ -6416,7 +6357,8 @@
|
|
|
6416
6357
|
"text": "GraphEdge[]"
|
|
6417
6358
|
}
|
|
6418
6359
|
}
|
|
6419
|
-
]
|
|
6360
|
+
],
|
|
6361
|
+
"description": "Recomputes graph services and circular dependency analysis when data changes."
|
|
6420
6362
|
},
|
|
6421
6363
|
{
|
|
6422
6364
|
"kind": "method",
|
|
@@ -6444,7 +6386,8 @@
|
|
|
6444
6386
|
"text": "'light' | 'dark'"
|
|
6445
6387
|
}
|
|
6446
6388
|
}
|
|
6447
|
-
]
|
|
6389
|
+
],
|
|
6390
|
+
"description": "Sets the `data-theme` attribute on the host element to the given theme."
|
|
6448
6391
|
},
|
|
6449
6392
|
{
|
|
6450
6393
|
"kind": "method",
|
|
@@ -6454,7 +6397,8 @@
|
|
|
6454
6397
|
"type": {
|
|
6455
6398
|
"text": "void"
|
|
6456
6399
|
}
|
|
6457
|
-
}
|
|
6400
|
+
},
|
|
6401
|
+
"description": "Pushes current nodes and edges into global signals and refreshes the graph data service."
|
|
6458
6402
|
},
|
|
6459
6403
|
{
|
|
6460
6404
|
"kind": "method",
|
|
@@ -6486,7 +6430,8 @@
|
|
|
6486
6430
|
"text": "CustomEvent<{ raw: unknown }>"
|
|
6487
6431
|
}
|
|
6488
6432
|
}
|
|
6489
|
-
]
|
|
6433
|
+
],
|
|
6434
|
+
"description": "Handles the `graph-file-loaded` event from the file upload component."
|
|
6490
6435
|
}
|
|
6491
6436
|
],
|
|
6492
6437
|
"attributes": [
|
|
@@ -6505,7 +6450,7 @@
|
|
|
6505
6450
|
},
|
|
6506
6451
|
"description": "Color scheme preference. Set to `'light'` or `'dark'` to force a mode,\nor `'auto'` (default) to follow the user's system preference.",
|
|
6507
6452
|
"fieldName": "colorScheme",
|
|
6508
|
-
"
|
|
6453
|
+
"parsedType": {
|
|
6509
6454
|
"text": "'light' | 'dark' | 'auto'"
|
|
6510
6455
|
}
|
|
6511
6456
|
}
|
|
@@ -6538,6 +6483,29 @@
|
|
|
6538
6483
|
}
|
|
6539
6484
|
]
|
|
6540
6485
|
},
|
|
6486
|
+
{
|
|
6487
|
+
"kind": "javascript-module",
|
|
6488
|
+
"path": "src/components/index.ts",
|
|
6489
|
+
"declarations": [],
|
|
6490
|
+
"exports": [
|
|
6491
|
+
{
|
|
6492
|
+
"kind": "js",
|
|
6493
|
+
"name": "ColorScheme",
|
|
6494
|
+
"declaration": {
|
|
6495
|
+
"name": "ColorScheme",
|
|
6496
|
+
"module": "./xcode-graph"
|
|
6497
|
+
}
|
|
6498
|
+
},
|
|
6499
|
+
{
|
|
6500
|
+
"kind": "js",
|
|
6501
|
+
"name": "GraphApp",
|
|
6502
|
+
"declaration": {
|
|
6503
|
+
"name": "GraphApp",
|
|
6504
|
+
"module": "./xcode-graph"
|
|
6505
|
+
}
|
|
6506
|
+
}
|
|
6507
|
+
]
|
|
6508
|
+
},
|
|
6541
6509
|
{
|
|
6542
6510
|
"kind": "javascript-module",
|
|
6543
6511
|
"path": "src/graph/components/graph-edge.ts",
|
|
@@ -6630,7 +6598,8 @@
|
|
|
6630
6598
|
{
|
|
6631
6599
|
"kind": "method",
|
|
6632
6600
|
"name": "resolveEdgeProps",
|
|
6633
|
-
"privacy": "private"
|
|
6601
|
+
"privacy": "private",
|
|
6602
|
+
"description": "Resolves edge properties by merging declared values with defaults."
|
|
6634
6603
|
}
|
|
6635
6604
|
],
|
|
6636
6605
|
"attributes": [
|
|
@@ -6739,7 +6708,7 @@
|
|
|
6739
6708
|
"declarations": [
|
|
6740
6709
|
{
|
|
6741
6710
|
"kind": "class",
|
|
6742
|
-
"description": "",
|
|
6711
|
+
"description": "Generates and renders a cached parallax starfield on a canvas.",
|
|
6743
6712
|
"name": "Starfield",
|
|
6744
6713
|
"members": [
|
|
6745
6714
|
{
|
|
@@ -6925,7 +6894,7 @@
|
|
|
6925
6894
|
"privacy": "private",
|
|
6926
6895
|
"return": {
|
|
6927
6896
|
"type": {
|
|
6928
|
-
"text": "
|
|
6897
|
+
"text": ""
|
|
6929
6898
|
}
|
|
6930
6899
|
},
|
|
6931
6900
|
"parameters": [
|
|
@@ -6933,33 +6902,39 @@
|
|
|
6933
6902
|
"name": "isBright",
|
|
6934
6903
|
"type": {
|
|
6935
6904
|
"text": "boolean"
|
|
6936
|
-
}
|
|
6905
|
+
},
|
|
6906
|
+
"description": "Whether the star should use bright star parameters."
|
|
6937
6907
|
},
|
|
6938
6908
|
{
|
|
6939
6909
|
"name": "spanX",
|
|
6940
6910
|
"type": {
|
|
6941
6911
|
"text": "number"
|
|
6942
|
-
}
|
|
6912
|
+
},
|
|
6913
|
+
"description": "Horizontal spawn region width."
|
|
6943
6914
|
},
|
|
6944
6915
|
{
|
|
6945
6916
|
"name": "spanY",
|
|
6946
6917
|
"type": {
|
|
6947
6918
|
"text": "number"
|
|
6948
|
-
}
|
|
6919
|
+
},
|
|
6920
|
+
"description": "Vertical spawn region height."
|
|
6949
6921
|
},
|
|
6950
6922
|
{
|
|
6951
6923
|
"name": "offsetX",
|
|
6952
6924
|
"type": {
|
|
6953
6925
|
"text": "number"
|
|
6954
|
-
}
|
|
6926
|
+
},
|
|
6927
|
+
"description": "Horizontal offset to center the spawn region."
|
|
6955
6928
|
},
|
|
6956
6929
|
{
|
|
6957
6930
|
"name": "offsetY",
|
|
6958
6931
|
"type": {
|
|
6959
6932
|
"text": "number"
|
|
6960
|
-
}
|
|
6933
|
+
},
|
|
6934
|
+
"description": "Vertical offset to center the spawn region."
|
|
6961
6935
|
}
|
|
6962
|
-
]
|
|
6936
|
+
],
|
|
6937
|
+
"description": "Creates a single star with randomized position, size, opacity, and color."
|
|
6963
6938
|
},
|
|
6964
6939
|
{
|
|
6965
6940
|
"kind": "method",
|
|
@@ -6975,15 +6950,18 @@
|
|
|
6975
6950
|
"name": "panX",
|
|
6976
6951
|
"type": {
|
|
6977
6952
|
"text": "number"
|
|
6978
|
-
}
|
|
6953
|
+
},
|
|
6954
|
+
"description": "Rounded camera X offset in world space."
|
|
6979
6955
|
},
|
|
6980
6956
|
{
|
|
6981
6957
|
"name": "panY",
|
|
6982
6958
|
"type": {
|
|
6983
6959
|
"text": "number"
|
|
6984
|
-
}
|
|
6960
|
+
},
|
|
6961
|
+
"description": "Rounded camera Y offset in world space."
|
|
6985
6962
|
}
|
|
6986
|
-
]
|
|
6963
|
+
],
|
|
6964
|
+
"description": "Renders all stars with parallax offsets to an OffscreenCanvas cache."
|
|
6987
6965
|
},
|
|
6988
6966
|
{
|
|
6989
6967
|
"kind": "field",
|
|
@@ -7056,6 +7034,101 @@
|
|
|
7056
7034
|
}
|
|
7057
7035
|
]
|
|
7058
7036
|
},
|
|
7037
|
+
{
|
|
7038
|
+
"kind": "javascript-module",
|
|
7039
|
+
"path": "src/graph/components/index.ts",
|
|
7040
|
+
"declarations": [],
|
|
7041
|
+
"exports": [
|
|
7042
|
+
{
|
|
7043
|
+
"kind": "js",
|
|
7044
|
+
"name": "*",
|
|
7045
|
+
"declaration": {
|
|
7046
|
+
"name": "*",
|
|
7047
|
+
"module": "src/graph/components/canvas"
|
|
7048
|
+
}
|
|
7049
|
+
},
|
|
7050
|
+
{
|
|
7051
|
+
"kind": "js",
|
|
7052
|
+
"name": "GraphCanvas",
|
|
7053
|
+
"declaration": {
|
|
7054
|
+
"name": "GraphCanvas",
|
|
7055
|
+
"module": "./graph-canvas"
|
|
7056
|
+
}
|
|
7057
|
+
},
|
|
7058
|
+
{
|
|
7059
|
+
"kind": "js",
|
|
7060
|
+
"name": "GraphEdge",
|
|
7061
|
+
"declaration": {
|
|
7062
|
+
"name": "GraphEdge",
|
|
7063
|
+
"module": "./graph-edge"
|
|
7064
|
+
}
|
|
7065
|
+
},
|
|
7066
|
+
{
|
|
7067
|
+
"kind": "js",
|
|
7068
|
+
"name": "GraphHiddenDom",
|
|
7069
|
+
"declaration": {
|
|
7070
|
+
"name": "GraphHiddenDom",
|
|
7071
|
+
"module": "./graph-hidden-dom"
|
|
7072
|
+
}
|
|
7073
|
+
},
|
|
7074
|
+
{
|
|
7075
|
+
"kind": "js",
|
|
7076
|
+
"name": "GraphBackground",
|
|
7077
|
+
"declaration": {
|
|
7078
|
+
"name": "GraphBackground",
|
|
7079
|
+
"module": "./graph-overlays"
|
|
7080
|
+
}
|
|
7081
|
+
},
|
|
7082
|
+
{
|
|
7083
|
+
"kind": "js",
|
|
7084
|
+
"name": "GraphControls",
|
|
7085
|
+
"declaration": {
|
|
7086
|
+
"name": "GraphControls",
|
|
7087
|
+
"module": "./graph-overlays"
|
|
7088
|
+
}
|
|
7089
|
+
},
|
|
7090
|
+
{
|
|
7091
|
+
"kind": "js",
|
|
7092
|
+
"name": "GraphEmptyStateOverlay",
|
|
7093
|
+
"declaration": {
|
|
7094
|
+
"name": "GraphEmptyStateOverlay",
|
|
7095
|
+
"module": "./graph-overlays"
|
|
7096
|
+
}
|
|
7097
|
+
},
|
|
7098
|
+
{
|
|
7099
|
+
"kind": "js",
|
|
7100
|
+
"name": "GraphInstructions",
|
|
7101
|
+
"declaration": {
|
|
7102
|
+
"name": "GraphInstructions",
|
|
7103
|
+
"module": "./graph-overlays"
|
|
7104
|
+
}
|
|
7105
|
+
},
|
|
7106
|
+
{
|
|
7107
|
+
"kind": "js",
|
|
7108
|
+
"name": "Star",
|
|
7109
|
+
"declaration": {
|
|
7110
|
+
"name": "Star",
|
|
7111
|
+
"module": "./starfield"
|
|
7112
|
+
}
|
|
7113
|
+
},
|
|
7114
|
+
{
|
|
7115
|
+
"kind": "js",
|
|
7116
|
+
"name": "StarfieldOptions",
|
|
7117
|
+
"declaration": {
|
|
7118
|
+
"name": "StarfieldOptions",
|
|
7119
|
+
"module": "./starfield"
|
|
7120
|
+
}
|
|
7121
|
+
},
|
|
7122
|
+
{
|
|
7123
|
+
"kind": "js",
|
|
7124
|
+
"name": "Starfield",
|
|
7125
|
+
"declaration": {
|
|
7126
|
+
"name": "Starfield",
|
|
7127
|
+
"module": "./starfield"
|
|
7128
|
+
}
|
|
7129
|
+
}
|
|
7130
|
+
]
|
|
7131
|
+
},
|
|
7059
7132
|
{
|
|
7060
7133
|
"kind": "javascript-module",
|
|
7061
7134
|
"path": "src/ui/components/action-button.ts",
|
|
@@ -7093,8 +7166,8 @@
|
|
|
7093
7166
|
"description": "Button color variant",
|
|
7094
7167
|
"default": "'neutral'",
|
|
7095
7168
|
"attribute": "variant",
|
|
7096
|
-
"
|
|
7097
|
-
"text": "'
|
|
7169
|
+
"parsedType": {
|
|
7170
|
+
"text": "'neutral' | 'primary' | 'success' | 'warning'"
|
|
7098
7171
|
}
|
|
7099
7172
|
},
|
|
7100
7173
|
{
|
|
@@ -7137,8 +7210,8 @@
|
|
|
7137
7210
|
"description": "Button color variant",
|
|
7138
7211
|
"default": "'neutral'",
|
|
7139
7212
|
"fieldName": "variant",
|
|
7140
|
-
"
|
|
7141
|
-
"text": "'
|
|
7213
|
+
"parsedType": {
|
|
7214
|
+
"text": "'neutral' | 'primary' | 'success' | 'warning'"
|
|
7142
7215
|
}
|
|
7143
7216
|
},
|
|
7144
7217
|
{
|
|
@@ -7233,8 +7306,8 @@
|
|
|
7233
7306
|
"description": "Alert variant (determines color scheme)",
|
|
7234
7307
|
"default": "'info'",
|
|
7235
7308
|
"attribute": "variant",
|
|
7236
|
-
"
|
|
7237
|
-
"text": "'
|
|
7309
|
+
"parsedType": {
|
|
7310
|
+
"text": "'success' | 'warning' | 'error' | 'info'"
|
|
7238
7311
|
}
|
|
7239
7312
|
},
|
|
7240
7313
|
{
|
|
@@ -7279,7 +7352,8 @@
|
|
|
7279
7352
|
{
|
|
7280
7353
|
"kind": "method",
|
|
7281
7354
|
"name": "handleDismiss",
|
|
7282
|
-
"privacy": "private"
|
|
7355
|
+
"privacy": "private",
|
|
7356
|
+
"description": "Handles the dismiss event and hides the banner"
|
|
7283
7357
|
}
|
|
7284
7358
|
],
|
|
7285
7359
|
"events": [
|
|
@@ -7300,8 +7374,8 @@
|
|
|
7300
7374
|
"description": "Alert variant (determines color scheme)",
|
|
7301
7375
|
"default": "'info'",
|
|
7302
7376
|
"fieldName": "variant",
|
|
7303
|
-
"
|
|
7304
|
-
"text": "'
|
|
7377
|
+
"parsedType": {
|
|
7378
|
+
"text": "'success' | 'warning' | 'error' | 'info'"
|
|
7305
7379
|
}
|
|
7306
7380
|
},
|
|
7307
7381
|
{
|
|
@@ -7366,7 +7440,7 @@
|
|
|
7366
7440
|
"declarations": [
|
|
7367
7441
|
{
|
|
7368
7442
|
"kind": "class",
|
|
7369
|
-
"description": "Displays package/project badge with
|
|
7443
|
+
"description": "Displays package/project badge with accent styling and monospace typography.\nWrapper around graph-badge with container styling.",
|
|
7370
7444
|
"name": "GraphClusterTypeBadge",
|
|
7371
7445
|
"members": [
|
|
7372
7446
|
{
|
|
@@ -7482,30 +7556,14 @@
|
|
|
7482
7556
|
{
|
|
7483
7557
|
"kind": "method",
|
|
7484
7558
|
"name": "handleToggleExpand",
|
|
7485
|
-
"privacy": "private"
|
|
7559
|
+
"privacy": "private",
|
|
7560
|
+
"description": "Toggles the expanded details view"
|
|
7486
7561
|
},
|
|
7487
7562
|
{
|
|
7488
7563
|
"kind": "method",
|
|
7489
7564
|
"name": "handleDismiss",
|
|
7490
|
-
"privacy": "private"
|
|
7491
|
-
},
|
|
7492
|
-
{
|
|
7493
|
-
"kind": "method",
|
|
7494
|
-
"name": "formatCycle",
|
|
7495
7565
|
"privacy": "private",
|
|
7496
|
-
"
|
|
7497
|
-
"type": {
|
|
7498
|
-
"text": "string"
|
|
7499
|
-
}
|
|
7500
|
-
},
|
|
7501
|
-
"parameters": [
|
|
7502
|
-
{
|
|
7503
|
-
"name": "cycle",
|
|
7504
|
-
"type": {
|
|
7505
|
-
"text": "string[]"
|
|
7506
|
-
}
|
|
7507
|
-
}
|
|
7508
|
-
]
|
|
7566
|
+
"description": "Handles the dismiss event and hides the warning"
|
|
7509
7567
|
}
|
|
7510
7568
|
],
|
|
7511
7569
|
"events": [
|
|
@@ -7563,8 +7621,8 @@
|
|
|
7563
7621
|
"description": "The icon name to render",
|
|
7564
7622
|
"default": "'product-types'",
|
|
7565
7623
|
"attribute": "name",
|
|
7566
|
-
"
|
|
7567
|
-
"text": "'
|
|
7624
|
+
"parsedType": {
|
|
7625
|
+
"text": "'platforms' | 'projects' | 'packages' | 'product-types'"
|
|
7568
7626
|
}
|
|
7569
7627
|
},
|
|
7570
7628
|
{
|
|
@@ -7580,22 +7638,26 @@
|
|
|
7580
7638
|
{
|
|
7581
7639
|
"kind": "method",
|
|
7582
7640
|
"name": "renderProductTypes",
|
|
7583
|
-
"privacy": "private"
|
|
7641
|
+
"privacy": "private",
|
|
7642
|
+
"description": "Renders the product types grid icon"
|
|
7584
7643
|
},
|
|
7585
7644
|
{
|
|
7586
7645
|
"kind": "method",
|
|
7587
7646
|
"name": "renderPlatforms",
|
|
7588
|
-
"privacy": "private"
|
|
7647
|
+
"privacy": "private",
|
|
7648
|
+
"description": "Renders the platforms grid icon"
|
|
7589
7649
|
},
|
|
7590
7650
|
{
|
|
7591
7651
|
"kind": "method",
|
|
7592
7652
|
"name": "renderProjects",
|
|
7593
|
-
"privacy": "private"
|
|
7653
|
+
"privacy": "private",
|
|
7654
|
+
"description": "Renders the projects folder icon"
|
|
7594
7655
|
},
|
|
7595
7656
|
{
|
|
7596
7657
|
"kind": "method",
|
|
7597
7658
|
"name": "renderPackages",
|
|
7598
|
-
"privacy": "private"
|
|
7659
|
+
"privacy": "private",
|
|
7660
|
+
"description": "Renders the packages box icon"
|
|
7599
7661
|
}
|
|
7600
7662
|
],
|
|
7601
7663
|
"attributes": [
|
|
@@ -7607,8 +7669,8 @@
|
|
|
7607
7669
|
"description": "The icon name to render",
|
|
7608
7670
|
"default": "'product-types'",
|
|
7609
7671
|
"fieldName": "name",
|
|
7610
|
-
"
|
|
7611
|
-
"text": "'
|
|
7672
|
+
"parsedType": {
|
|
7673
|
+
"text": "'platforms' | 'projects' | 'packages' | 'product-types'"
|
|
7612
7674
|
}
|
|
7613
7675
|
},
|
|
7614
7676
|
{
|
|
@@ -7649,31 +7711,403 @@
|
|
|
7649
7711
|
}
|
|
7650
7712
|
]
|
|
7651
7713
|
},
|
|
7714
|
+
{
|
|
7715
|
+
"kind": "javascript-module",
|
|
7716
|
+
"path": "src/ui/components/index.ts",
|
|
7717
|
+
"declarations": [],
|
|
7718
|
+
"exports": [
|
|
7719
|
+
{
|
|
7720
|
+
"kind": "js",
|
|
7721
|
+
"name": "ActionButtonVariant",
|
|
7722
|
+
"declaration": {
|
|
7723
|
+
"name": "ActionButtonVariant",
|
|
7724
|
+
"module": "./action-button"
|
|
7725
|
+
}
|
|
7726
|
+
},
|
|
7727
|
+
{
|
|
7728
|
+
"kind": "js",
|
|
7729
|
+
"name": "GraphActionButton",
|
|
7730
|
+
"declaration": {
|
|
7731
|
+
"name": "GraphActionButton",
|
|
7732
|
+
"module": "./action-button"
|
|
7733
|
+
}
|
|
7734
|
+
},
|
|
7735
|
+
{
|
|
7736
|
+
"kind": "js",
|
|
7737
|
+
"name": "AlertBannerVariant",
|
|
7738
|
+
"declaration": {
|
|
7739
|
+
"name": "AlertBannerVariant",
|
|
7740
|
+
"module": "./alert-banner"
|
|
7741
|
+
}
|
|
7742
|
+
},
|
|
7743
|
+
{
|
|
7744
|
+
"kind": "js",
|
|
7745
|
+
"name": "GraphAlertBanner",
|
|
7746
|
+
"declaration": {
|
|
7747
|
+
"name": "GraphAlertBanner",
|
|
7748
|
+
"module": "./alert-banner"
|
|
7749
|
+
}
|
|
7750
|
+
},
|
|
7751
|
+
{
|
|
7752
|
+
"kind": "js",
|
|
7753
|
+
"name": "BadgeSize",
|
|
7754
|
+
"declaration": {
|
|
7755
|
+
"name": "BadgeSize",
|
|
7756
|
+
"module": "./badge"
|
|
7757
|
+
}
|
|
7758
|
+
},
|
|
7759
|
+
{
|
|
7760
|
+
"kind": "js",
|
|
7761
|
+
"name": "BadgeVariant",
|
|
7762
|
+
"declaration": {
|
|
7763
|
+
"name": "BadgeVariant",
|
|
7764
|
+
"module": "./badge"
|
|
7765
|
+
}
|
|
7766
|
+
},
|
|
7767
|
+
{
|
|
7768
|
+
"kind": "js",
|
|
7769
|
+
"name": "GraphBadge",
|
|
7770
|
+
"declaration": {
|
|
7771
|
+
"name": "GraphBadge",
|
|
7772
|
+
"module": "./badge"
|
|
7773
|
+
}
|
|
7774
|
+
},
|
|
7775
|
+
{
|
|
7776
|
+
"kind": "js",
|
|
7777
|
+
"name": "GraphBuildSettings",
|
|
7778
|
+
"declaration": {
|
|
7779
|
+
"name": "GraphBuildSettings",
|
|
7780
|
+
"module": "./build-settings"
|
|
7781
|
+
}
|
|
7782
|
+
},
|
|
7783
|
+
{
|
|
7784
|
+
"kind": "js",
|
|
7785
|
+
"name": "GraphClearFiltersButton",
|
|
7786
|
+
"declaration": {
|
|
7787
|
+
"name": "GraphClearFiltersButton",
|
|
7788
|
+
"module": "./clear-filters-button"
|
|
7789
|
+
}
|
|
7790
|
+
},
|
|
7791
|
+
{
|
|
7792
|
+
"kind": "js",
|
|
7793
|
+
"name": "GraphClusterComposition",
|
|
7794
|
+
"declaration": {
|
|
7795
|
+
"name": "GraphClusterComposition",
|
|
7796
|
+
"module": "./cluster-composition"
|
|
7797
|
+
}
|
|
7798
|
+
},
|
|
7799
|
+
{
|
|
7800
|
+
"kind": "js",
|
|
7801
|
+
"name": "GraphClusterDetailsPanel",
|
|
7802
|
+
"declaration": {
|
|
7803
|
+
"name": "GraphClusterDetailsPanel",
|
|
7804
|
+
"module": "./cluster-details-panel"
|
|
7805
|
+
}
|
|
7806
|
+
},
|
|
7807
|
+
{
|
|
7808
|
+
"kind": "js",
|
|
7809
|
+
"name": "GraphClusterHeader",
|
|
7810
|
+
"declaration": {
|
|
7811
|
+
"name": "GraphClusterHeader",
|
|
7812
|
+
"module": "./cluster-header"
|
|
7813
|
+
}
|
|
7814
|
+
},
|
|
7815
|
+
{
|
|
7816
|
+
"kind": "js",
|
|
7817
|
+
"name": "GraphClusterStats",
|
|
7818
|
+
"declaration": {
|
|
7819
|
+
"name": "GraphClusterStats",
|
|
7820
|
+
"module": "./cluster-stats"
|
|
7821
|
+
}
|
|
7822
|
+
},
|
|
7823
|
+
{
|
|
7824
|
+
"kind": "js",
|
|
7825
|
+
"name": "GraphClusterTargetsList",
|
|
7826
|
+
"declaration": {
|
|
7827
|
+
"name": "GraphClusterTargetsList",
|
|
7828
|
+
"module": "./cluster-targets-list"
|
|
7829
|
+
}
|
|
7830
|
+
},
|
|
7831
|
+
{
|
|
7832
|
+
"kind": "js",
|
|
7833
|
+
"name": "GraphClusterTypeBadge",
|
|
7834
|
+
"declaration": {
|
|
7835
|
+
"name": "GraphClusterTypeBadge",
|
|
7836
|
+
"module": "./cluster-type-badge"
|
|
7837
|
+
}
|
|
7838
|
+
},
|
|
7839
|
+
{
|
|
7840
|
+
"kind": "js",
|
|
7841
|
+
"name": "GraphCycleWarning",
|
|
7842
|
+
"declaration": {
|
|
7843
|
+
"name": "GraphCycleWarning",
|
|
7844
|
+
"module": "./cycle-warning"
|
|
7845
|
+
}
|
|
7846
|
+
},
|
|
7847
|
+
{
|
|
7848
|
+
"kind": "js",
|
|
7849
|
+
"name": "GraphDeploymentTargets",
|
|
7850
|
+
"declaration": {
|
|
7851
|
+
"name": "GraphDeploymentTargets",
|
|
7852
|
+
"module": "./deployment-targets"
|
|
7853
|
+
}
|
|
7854
|
+
},
|
|
7855
|
+
{
|
|
7856
|
+
"kind": "js",
|
|
7857
|
+
"name": "GraphEmptyState",
|
|
7858
|
+
"declaration": {
|
|
7859
|
+
"name": "GraphEmptyState",
|
|
7860
|
+
"module": "./empty-state"
|
|
7861
|
+
}
|
|
7862
|
+
},
|
|
7863
|
+
{
|
|
7864
|
+
"kind": "js",
|
|
7865
|
+
"name": "GraphErrorToast",
|
|
7866
|
+
"declaration": {
|
|
7867
|
+
"name": "GraphErrorToast",
|
|
7868
|
+
"module": "./error-toast"
|
|
7869
|
+
}
|
|
7870
|
+
},
|
|
7871
|
+
{
|
|
7872
|
+
"kind": "js",
|
|
7873
|
+
"name": "GraphFileUpload",
|
|
7874
|
+
"declaration": {
|
|
7875
|
+
"name": "GraphFileUpload",
|
|
7876
|
+
"module": "./file-upload"
|
|
7877
|
+
}
|
|
7878
|
+
},
|
|
7879
|
+
{
|
|
7880
|
+
"kind": "js",
|
|
7881
|
+
"name": "FilterIconName",
|
|
7882
|
+
"declaration": {
|
|
7883
|
+
"name": "FilterIconName",
|
|
7884
|
+
"module": "./filter-icon"
|
|
7885
|
+
}
|
|
7886
|
+
},
|
|
7887
|
+
{
|
|
7888
|
+
"kind": "js",
|
|
7889
|
+
"name": "GraphFilterIcon",
|
|
7890
|
+
"declaration": {
|
|
7891
|
+
"name": "GraphFilterIcon",
|
|
7892
|
+
"module": "./filter-icon"
|
|
7893
|
+
}
|
|
7894
|
+
},
|
|
7895
|
+
{
|
|
7896
|
+
"kind": "js",
|
|
7897
|
+
"name": "FilterItem",
|
|
7898
|
+
"declaration": {
|
|
7899
|
+
"name": "FilterItem",
|
|
7900
|
+
"module": "./filter-section"
|
|
7901
|
+
}
|
|
7902
|
+
},
|
|
7903
|
+
{
|
|
7904
|
+
"kind": "js",
|
|
7905
|
+
"name": "FilterType",
|
|
7906
|
+
"declaration": {
|
|
7907
|
+
"name": "FilterType",
|
|
7908
|
+
"module": "./filter-section"
|
|
7909
|
+
}
|
|
7910
|
+
},
|
|
7911
|
+
{
|
|
7912
|
+
"kind": "js",
|
|
7913
|
+
"name": "GraphFilterSection",
|
|
7914
|
+
"declaration": {
|
|
7915
|
+
"name": "GraphFilterSection",
|
|
7916
|
+
"module": "./filter-section"
|
|
7917
|
+
}
|
|
7918
|
+
},
|
|
7919
|
+
{
|
|
7920
|
+
"kind": "js",
|
|
7921
|
+
"name": "IconButtonColor",
|
|
7922
|
+
"declaration": {
|
|
7923
|
+
"name": "IconButtonColor",
|
|
7924
|
+
"module": "./icon-button"
|
|
7925
|
+
}
|
|
7926
|
+
},
|
|
7927
|
+
{
|
|
7928
|
+
"kind": "js",
|
|
7929
|
+
"name": "IconButtonSize",
|
|
7930
|
+
"declaration": {
|
|
7931
|
+
"name": "IconButtonSize",
|
|
7932
|
+
"module": "./icon-button"
|
|
7933
|
+
}
|
|
7934
|
+
},
|
|
7935
|
+
{
|
|
7936
|
+
"kind": "js",
|
|
7937
|
+
"name": "IconButtonVariant",
|
|
7938
|
+
"declaration": {
|
|
7939
|
+
"name": "IconButtonVariant",
|
|
7940
|
+
"module": "./icon-button"
|
|
7941
|
+
}
|
|
7942
|
+
},
|
|
7943
|
+
{
|
|
7944
|
+
"kind": "js",
|
|
7945
|
+
"name": "GraphIconButton",
|
|
7946
|
+
"declaration": {
|
|
7947
|
+
"name": "GraphIconButton",
|
|
7948
|
+
"module": "./icon-button"
|
|
7949
|
+
}
|
|
7950
|
+
},
|
|
7951
|
+
{
|
|
7952
|
+
"kind": "js",
|
|
7953
|
+
"name": "GraphInfoRow",
|
|
7954
|
+
"declaration": {
|
|
7955
|
+
"name": "GraphInfoRow",
|
|
7956
|
+
"module": "./info-row"
|
|
7957
|
+
}
|
|
7958
|
+
},
|
|
7959
|
+
{
|
|
7960
|
+
"kind": "js",
|
|
7961
|
+
"name": "GraphListItemRow",
|
|
7962
|
+
"declaration": {
|
|
7963
|
+
"name": "GraphListItemRow",
|
|
7964
|
+
"module": "./list-item-row"
|
|
7965
|
+
}
|
|
7966
|
+
},
|
|
7967
|
+
{
|
|
7968
|
+
"kind": "js",
|
|
7969
|
+
"name": "GraphMetricsSection",
|
|
7970
|
+
"declaration": {
|
|
7971
|
+
"name": "GraphMetricsSection",
|
|
7972
|
+
"module": "./metrics-section"
|
|
7973
|
+
}
|
|
7974
|
+
},
|
|
7975
|
+
{
|
|
7976
|
+
"kind": "js",
|
|
7977
|
+
"name": "GraphNodeDetailsPanel",
|
|
7978
|
+
"declaration": {
|
|
7979
|
+
"name": "GraphNodeDetailsPanel",
|
|
7980
|
+
"module": "./node-details-panel"
|
|
7981
|
+
}
|
|
7982
|
+
},
|
|
7983
|
+
{
|
|
7984
|
+
"kind": "js",
|
|
7985
|
+
"name": "GraphNodeHeader",
|
|
7986
|
+
"declaration": {
|
|
7987
|
+
"name": "GraphNodeHeader",
|
|
7988
|
+
"module": "./node-header"
|
|
7989
|
+
}
|
|
7990
|
+
},
|
|
7991
|
+
{
|
|
7992
|
+
"kind": "js",
|
|
7993
|
+
"name": "GraphNodeInfo",
|
|
7994
|
+
"declaration": {
|
|
7995
|
+
"name": "GraphNodeInfo",
|
|
7996
|
+
"module": "./node-info"
|
|
7997
|
+
}
|
|
7998
|
+
},
|
|
7999
|
+
{
|
|
8000
|
+
"kind": "js",
|
|
8001
|
+
"name": "GraphNodeList",
|
|
8002
|
+
"declaration": {
|
|
8003
|
+
"name": "GraphNodeList",
|
|
8004
|
+
"module": "./node-list"
|
|
8005
|
+
}
|
|
8006
|
+
},
|
|
8007
|
+
{
|
|
8008
|
+
"kind": "js",
|
|
8009
|
+
"name": "NodeListEventsBase",
|
|
8010
|
+
"declaration": {
|
|
8011
|
+
"name": "NodeListEventsBase",
|
|
8012
|
+
"module": "./node-list-base"
|
|
8013
|
+
}
|
|
8014
|
+
},
|
|
8015
|
+
{
|
|
8016
|
+
"kind": "js",
|
|
8017
|
+
"name": "GraphPanelHeader",
|
|
8018
|
+
"declaration": {
|
|
8019
|
+
"name": "GraphPanelHeader",
|
|
8020
|
+
"module": "./panel-header"
|
|
8021
|
+
}
|
|
8022
|
+
},
|
|
8023
|
+
{
|
|
8024
|
+
"kind": "js",
|
|
8025
|
+
"name": "GraphRightSidebar",
|
|
8026
|
+
"declaration": {
|
|
8027
|
+
"name": "GraphRightSidebar",
|
|
8028
|
+
"module": "./right-sidebar"
|
|
8029
|
+
}
|
|
8030
|
+
},
|
|
8031
|
+
{
|
|
8032
|
+
"kind": "js",
|
|
8033
|
+
"name": "GraphCollapsedSidebar",
|
|
8034
|
+
"declaration": {
|
|
8035
|
+
"name": "GraphCollapsedSidebar",
|
|
8036
|
+
"module": "./right-sidebar-collapsed"
|
|
8037
|
+
}
|
|
8038
|
+
},
|
|
8039
|
+
{
|
|
8040
|
+
"kind": "js",
|
|
8041
|
+
"name": "GraphRightSidebarHeader",
|
|
8042
|
+
"declaration": {
|
|
8043
|
+
"name": "GraphRightSidebarHeader",
|
|
8044
|
+
"module": "./right-sidebar-header"
|
|
8045
|
+
}
|
|
8046
|
+
},
|
|
8047
|
+
{
|
|
8048
|
+
"kind": "js",
|
|
8049
|
+
"name": "GraphSearchBar",
|
|
8050
|
+
"declaration": {
|
|
8051
|
+
"name": "GraphSearchBar",
|
|
8052
|
+
"module": "./search-bar"
|
|
8053
|
+
}
|
|
8054
|
+
},
|
|
8055
|
+
{
|
|
8056
|
+
"kind": "js",
|
|
8057
|
+
"name": "GraphSectionHeader",
|
|
8058
|
+
"declaration": {
|
|
8059
|
+
"name": "GraphSectionHeader",
|
|
8060
|
+
"module": "./section-header"
|
|
8061
|
+
}
|
|
8062
|
+
},
|
|
8063
|
+
{
|
|
8064
|
+
"kind": "js",
|
|
8065
|
+
"name": "GraphSidebarCollapseIcon",
|
|
8066
|
+
"declaration": {
|
|
8067
|
+
"name": "GraphSidebarCollapseIcon",
|
|
8068
|
+
"module": "./sidebar-collapse-icon"
|
|
8069
|
+
}
|
|
8070
|
+
},
|
|
8071
|
+
{
|
|
8072
|
+
"kind": "js",
|
|
8073
|
+
"name": "GraphStatsCard",
|
|
8074
|
+
"declaration": {
|
|
8075
|
+
"name": "GraphStatsCard",
|
|
8076
|
+
"module": "./stats-card"
|
|
8077
|
+
}
|
|
8078
|
+
},
|
|
8079
|
+
{
|
|
8080
|
+
"kind": "js",
|
|
8081
|
+
"name": "GraphTagBadge",
|
|
8082
|
+
"declaration": {
|
|
8083
|
+
"name": "GraphTagBadge",
|
|
8084
|
+
"module": "./tag-badge"
|
|
8085
|
+
}
|
|
8086
|
+
},
|
|
8087
|
+
{
|
|
8088
|
+
"kind": "js",
|
|
8089
|
+
"name": "GraphErrorNotificationContainer",
|
|
8090
|
+
"declaration": {
|
|
8091
|
+
"name": "GraphErrorNotificationContainer",
|
|
8092
|
+
"module": "./toast-container"
|
|
8093
|
+
}
|
|
8094
|
+
}
|
|
8095
|
+
]
|
|
8096
|
+
},
|
|
7652
8097
|
{
|
|
7653
8098
|
"kind": "javascript-module",
|
|
7654
8099
|
"path": "src/ui/layout/header.ts",
|
|
7655
8100
|
"declarations": [
|
|
7656
8101
|
{
|
|
7657
8102
|
"kind": "class",
|
|
7658
|
-
"description": "Top header component with
|
|
8103
|
+
"description": "Top header component with logo and breadcrumb navigation.",
|
|
7659
8104
|
"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
|
-
],
|
|
8105
|
+
"members": [],
|
|
7672
8106
|
"superclass": {
|
|
7673
8107
|
"name": "LitElement",
|
|
7674
8108
|
"package": "lit"
|
|
7675
8109
|
},
|
|
7676
|
-
"summary": "
|
|
8110
|
+
"summary": "Application header bar",
|
|
7677
8111
|
"tagName": "xcode-graph-header",
|
|
7678
8112
|
"customElement": true
|
|
7679
8113
|
}
|
|
@@ -7760,7 +8194,7 @@
|
|
|
7760
8194
|
"declarations": [
|
|
7761
8195
|
{
|
|
7762
8196
|
"kind": "class",
|
|
7763
|
-
"description": "Left sidebar navigation with
|
|
8197
|
+
"description": "Left sidebar navigation with tab items.",
|
|
7764
8198
|
"name": "GraphSidebar",
|
|
7765
8199
|
"members": [
|
|
7766
8200
|
{
|
|
@@ -7811,12 +8245,14 @@
|
|
|
7811
8245
|
"text": "ActiveTabType"
|
|
7812
8246
|
}
|
|
7813
8247
|
}
|
|
7814
|
-
]
|
|
8248
|
+
],
|
|
8249
|
+
"description": "Dispatches a tab-change event when a navigation item is clicked"
|
|
7815
8250
|
},
|
|
7816
8251
|
{
|
|
7817
8252
|
"kind": "method",
|
|
7818
8253
|
"name": "toggleCollapse",
|
|
7819
|
-
"privacy": "private"
|
|
8254
|
+
"privacy": "private",
|
|
8255
|
+
"description": "Toggles the sidebar between collapsed and expanded states"
|
|
7820
8256
|
}
|
|
7821
8257
|
],
|
|
7822
8258
|
"events": [
|
|
@@ -7889,6 +8325,45 @@
|
|
|
7889
8325
|
}
|
|
7890
8326
|
}
|
|
7891
8327
|
]
|
|
8328
|
+
},
|
|
8329
|
+
{
|
|
8330
|
+
"kind": "javascript-module",
|
|
8331
|
+
"path": "src/ui/layout/index.ts",
|
|
8332
|
+
"declarations": [],
|
|
8333
|
+
"exports": [
|
|
8334
|
+
{
|
|
8335
|
+
"kind": "js",
|
|
8336
|
+
"name": "GraphTab",
|
|
8337
|
+
"declaration": {
|
|
8338
|
+
"name": "GraphTab",
|
|
8339
|
+
"module": "./graph-tab"
|
|
8340
|
+
}
|
|
8341
|
+
},
|
|
8342
|
+
{
|
|
8343
|
+
"kind": "js",
|
|
8344
|
+
"name": "GraphHeader",
|
|
8345
|
+
"declaration": {
|
|
8346
|
+
"name": "GraphHeader",
|
|
8347
|
+
"module": "./header"
|
|
8348
|
+
}
|
|
8349
|
+
},
|
|
8350
|
+
{
|
|
8351
|
+
"kind": "js",
|
|
8352
|
+
"name": "GraphPlaceholderTab",
|
|
8353
|
+
"declaration": {
|
|
8354
|
+
"name": "GraphPlaceholderTab",
|
|
8355
|
+
"module": "./placeholder-tab"
|
|
8356
|
+
}
|
|
8357
|
+
},
|
|
8358
|
+
{
|
|
8359
|
+
"kind": "js",
|
|
8360
|
+
"name": "GraphSidebar",
|
|
8361
|
+
"declaration": {
|
|
8362
|
+
"name": "GraphSidebar",
|
|
8363
|
+
"module": "./sidebar"
|
|
8364
|
+
}
|
|
8365
|
+
}
|
|
8366
|
+
]
|
|
7892
8367
|
}
|
|
7893
8368
|
]
|
|
7894
8369
|
}
|