@memberjunction/ng-task-graph-editor 6.1.0-edge.1 → 6.1.0-edge.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +180 -4
- package/README.md +197 -0
- package/dist/lib/debug-variables.d.ts +27 -0
- package/dist/lib/debug-variables.d.ts.map +1 -0
- package/dist/lib/debug-variables.js +96 -0
- package/dist/lib/debug-variables.js.map +1 -0
- package/dist/lib/pane-split.d.ts +11 -0
- package/dist/lib/pane-split.d.ts.map +1 -0
- package/dist/lib/pane-split.js +36 -0
- package/dist/lib/pane-split.js.map +1 -0
- package/dist/lib/task-graph-canvas-adapter.d.ts +142 -7
- package/dist/lib/task-graph-canvas-adapter.d.ts.map +1 -1
- package/dist/lib/task-graph-canvas-adapter.js +319 -44
- package/dist/lib/task-graph-canvas-adapter.js.map +1 -1
- package/dist/lib/task-graph-debug-toolbar.component.d.ts +27 -0
- package/dist/lib/task-graph-debug-toolbar.component.d.ts.map +1 -0
- package/dist/lib/task-graph-debug-toolbar.component.js +153 -0
- package/dist/lib/task-graph-debug-toolbar.component.js.map +1 -0
- package/dist/lib/task-graph-debugger.component.d.ts +96 -0
- package/dist/lib/task-graph-debugger.component.d.ts.map +1 -0
- package/dist/lib/task-graph-debugger.component.js +371 -0
- package/dist/lib/task-graph-debugger.component.js.map +1 -0
- package/dist/lib/task-graph-editor.component.d.ts +144 -5
- package/dist/lib/task-graph-editor.component.d.ts.map +1 -1
- package/dist/lib/task-graph-editor.component.js +321 -26
- package/dist/lib/task-graph-editor.component.js.map +1 -1
- package/dist/lib/task-graph-editor.module.d.ts +10 -5
- package/dist/lib/task-graph-editor.module.d.ts.map +1 -1
- package/dist/lib/task-graph-editor.module.js +53 -5
- package/dist/lib/task-graph-editor.module.js.map +1 -1
- package/dist/lib/task-graph-properties-panel.component.d.ts +34 -8
- package/dist/lib/task-graph-properties-panel.component.d.ts.map +1 -1
- package/dist/lib/task-graph-properties-panel.component.js +164 -45
- package/dist/lib/task-graph-properties-panel.component.js.map +1 -1
- package/dist/lib/task-graph-run-prefs.d.ts +34 -0
- package/dist/lib/task-graph-run-prefs.d.ts.map +1 -0
- package/dist/lib/task-graph-run-prefs.js +67 -0
- package/dist/lib/task-graph-run-prefs.js.map +1 -0
- package/dist/lib/task-graph-run-view.component.d.ts +290 -0
- package/dist/lib/task-graph-run-view.component.d.ts.map +1 -0
- package/dist/lib/task-graph-run-view.component.js +826 -0
- package/dist/lib/task-graph-run-view.component.js.map +1 -0
- package/dist/lib/task-graph-runtime-source.d.ts +7 -1
- package/dist/lib/task-graph-runtime-source.d.ts.map +1 -1
- package/dist/lib/task-graph-runtime-source.js +14 -2
- package/dist/lib/task-graph-runtime-source.js.map +1 -1
- package/dist/lib/task-graph-variables.component.d.ts +23 -0
- package/dist/lib/task-graph-variables.component.d.ts.map +1 -0
- package/dist/lib/task-graph-variables.component.js +192 -0
- package/dist/lib/task-graph-variables.component.js.map +1 -0
- package/dist/lib/workflow-debug-host.d.ts +23 -0
- package/dist/lib/workflow-debug-host.d.ts.map +1 -0
- package/dist/lib/workflow-debug-host.js +101 -0
- package/dist/lib/workflow-debug-host.js.map +1 -0
- package/dist/public-api.d.ts +8 -0
- package/dist/public-api.d.ts.map +1 -1
- package/dist/public-api.js +8 -0
- package/dist/public-api.js.map +1 -1
- package/package.json +11 -9
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview Watching a graph that is running, on the canvas its author drew on.
|
|
3
|
+
*
|
|
4
|
+
* **Why this is a component and not three.** A run needs rendering in at least three places — inside
|
|
5
|
+
* an Agent Run, inside the test harness, and on a standalone workflow-runs screen — and every one of
|
|
6
|
+
* them wants the identical thing: the graph, with live status, laid out legibly, with a node you can
|
|
7
|
+
* click. Three implementations would be three chances to render the same run differently, and the
|
|
8
|
+
* one that matters most (is that branch grey because it was *not taken*, or because it *broke*?) is
|
|
9
|
+
* exactly the distinction a second implementation gets wrong.
|
|
10
|
+
*
|
|
11
|
+
* **What it owns and what it doesn't.** It owns data acquisition — reading `MJ: Tasks` and
|
|
12
|
+
* `MJ: Task Dependencies` through the host's provider — and geometry. It does not navigate: a
|
|
13
|
+
* widgets-layer component cannot know whether it sits inside Explorer, so selecting a node emits an
|
|
14
|
+
* event and the host decides what "open the agent run" means. That boundary is the whole reason
|
|
15
|
+
* this can live beside the editor rather than in Explorer.
|
|
16
|
+
*
|
|
17
|
+
* @module @memberjunction/ng-task-graph-editor
|
|
18
|
+
*/
|
|
19
|
+
import { ChangeDetectorRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
20
|
+
import { BaseAngularComponent } from '@memberjunction/ng-base-types';
|
|
21
|
+
import { MJTaskEntity } from '@memberjunction/core-entities';
|
|
22
|
+
import { type TaskGraphRunPrefs } from './task-graph-run-prefs';
|
|
23
|
+
import { type GraphNodePosition, type TaskGraphSpec } from '@memberjunction/ai-core-plus';
|
|
24
|
+
import type { TaskGraphDebugOverlay, TaskGraphRuntimeStatus } from './task-graph-canvas-adapter';
|
|
25
|
+
import type { TaskGraphSelectionChangedEventArgs } from './task-graph-editor-events';
|
|
26
|
+
import type { FlowAfterContextMenuActionEventArgs, FlowBeforeContextMenuEventArgs, FlowConnection, FlowToolbarAlign, FlowToolbarVisibility } from '@memberjunction/ng-flow-editor';
|
|
27
|
+
import * as i0 from "@angular/core";
|
|
28
|
+
/** What the host learns when someone clicks a step. */
|
|
29
|
+
export type TaskGraphRunNodeSelectedEvent = {
|
|
30
|
+
/** The `MJ: Tasks` row id. */
|
|
31
|
+
TaskID: string;
|
|
32
|
+
Task: MJTaskEntity | null;
|
|
33
|
+
};
|
|
34
|
+
/** What the host learns when someone clicks a path. */
|
|
35
|
+
export type TaskGraphRunConnectionSelectedEvent = {
|
|
36
|
+
/** The `MJ: Task Dependencies` row id, when the projection carried one. */
|
|
37
|
+
EdgeID: string | null;
|
|
38
|
+
FromTaskID: string;
|
|
39
|
+
ToTaskID: string;
|
|
40
|
+
Condition?: string;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* One live dispatcher frame, as the HOST hands it in.
|
|
44
|
+
*
|
|
45
|
+
* Structural on purpose: the widget must not import the transport (`GraphQLDataProvider`'s
|
|
46
|
+
* `TaskGraphFrameEvent` satisfies this shape as-is), and the host owns the subscription — this
|
|
47
|
+
* component only renders what it is handed, which is the widgets-layer rule that keeps it embeddable
|
|
48
|
+
* anywhere. Fields beyond these are ignored, so a newer server cannot break an older widget.
|
|
49
|
+
*/
|
|
50
|
+
export type TaskGraphRunFrame = {
|
|
51
|
+
kind: string;
|
|
52
|
+
taskId?: string;
|
|
53
|
+
taskName?: string;
|
|
54
|
+
status?: string;
|
|
55
|
+
progressMessage?: string;
|
|
56
|
+
progressPercent?: number;
|
|
57
|
+
reason?: string;
|
|
58
|
+
edgeId?: string;
|
|
59
|
+
dependsOnTaskId?: string;
|
|
60
|
+
conditionText?: string;
|
|
61
|
+
claimEvent?: string;
|
|
62
|
+
claimedBy?: string;
|
|
63
|
+
verdict?: string;
|
|
64
|
+
passNumber?: number;
|
|
65
|
+
eligibleCount?: number;
|
|
66
|
+
heldCount?: number;
|
|
67
|
+
claimedCount?: number;
|
|
68
|
+
};
|
|
69
|
+
export declare class TaskGraphRunViewComponent extends BaseAngularComponent implements OnDestroy {
|
|
70
|
+
private cdr;
|
|
71
|
+
/**
|
|
72
|
+
* The graph to watch — the parent `MJ: Tasks` row that represents it.
|
|
73
|
+
*
|
|
74
|
+
* Setter-based rather than `ngOnChanges`, matching the editor beside it: the reaction is
|
|
75
|
+
* explicit and costs nothing on unrelated change-detection passes.
|
|
76
|
+
*/
|
|
77
|
+
set ParentTaskID(value: string | null);
|
|
78
|
+
get ParentTaskID(): string | null;
|
|
79
|
+
/** Name shown on the compiled graph. Purely cosmetic; the rows carry the truth. */
|
|
80
|
+
WorkflowName: string;
|
|
81
|
+
/**
|
|
82
|
+
* Keep re-reading while the graph is still moving.
|
|
83
|
+
*
|
|
84
|
+
* Off by default: most hosts show a finished run, and a component that polls by default would
|
|
85
|
+
* have every historical run quietly issuing queries forever.
|
|
86
|
+
*/
|
|
87
|
+
LiveUpdates: boolean;
|
|
88
|
+
/** How often to re-read while live. Seconds, not milliseconds — this is a human-scale view. */
|
|
89
|
+
PollIntervalSeconds: number;
|
|
90
|
+
/** Height of the canvas. Hosts embed this in very different amounts of space. */
|
|
91
|
+
Height: string;
|
|
92
|
+
/**
|
|
93
|
+
* Whether the canvas legend shows. **Off by default here**, unlike the editor.
|
|
94
|
+
*
|
|
95
|
+
* The legend explains the authoring vocabulary — what a conditional edge means, what a duplicate
|
|
96
|
+
* default looks like. That is what someone drawing a graph needs. A run view answers a different
|
|
97
|
+
* question, "what happened", which the legend helps with not at all while covering a corner of
|
|
98
|
+
* the canvas the graph is usually occupying.
|
|
99
|
+
*/
|
|
100
|
+
ShowLegend: boolean;
|
|
101
|
+
/**
|
|
102
|
+
* Whether the canvas toolbar rides above the graph.
|
|
103
|
+
*
|
|
104
|
+
* Debug and other run hosts leave this on and set `ToolbarVisibility` to `minimized` so the
|
|
105
|
+
* graph is the picture, not a floating tool strip. The chip in the corner restores the bar.
|
|
106
|
+
*/
|
|
107
|
+
ShowToolbar: boolean;
|
|
108
|
+
ToolbarVisibility: FlowToolbarVisibility;
|
|
109
|
+
ToolbarAlign: FlowToolbarAlign;
|
|
110
|
+
/**
|
|
111
|
+
* The latest live dispatcher frame, handed in by the host.
|
|
112
|
+
*
|
|
113
|
+
* The host owns the subscription (`GraphQLDataProvider.TaskGraphFrames` or anything shaped like
|
|
114
|
+
* it) and binds each arrival here; the widget folds it into the overlay. Frames are advisory —
|
|
115
|
+
* a task frame patches the node's status in place for sub-second feedback, and the frames that
|
|
116
|
+
* imply CASCADES (a skip, a block, settlement) trigger a debounced row reload, because the
|
|
117
|
+
* dispatcher's propagation writes rows this component cannot infer from one frame. Rows remain
|
|
118
|
+
* the truth; the existing poll (if enabled) remains the safety net.
|
|
119
|
+
*/
|
|
120
|
+
set LiveFrame(frame: TaskGraphRunFrame | null);
|
|
121
|
+
/**
|
|
122
|
+
* Replay: render the run as it stood at this moment, reconstructed from each step's
|
|
123
|
+
* `StartedAt`/`CompletedAt`. Null (the default) renders the present. A step that had not
|
|
124
|
+
* started reads Pending; one mid-flight reads In Progress; one already finished reads its
|
|
125
|
+
* final status — the same three answers the rows would have given a viewer at that time.
|
|
126
|
+
*/
|
|
127
|
+
set ReplayAt(value: Date | null);
|
|
128
|
+
get ReplayAt(): Date | null;
|
|
129
|
+
/**
|
|
130
|
+
* Armed breakpoint task IDs, from the parent row's `$.debug.breakpoints`. Empty by default so
|
|
131
|
+
* embeds (agent-run timeline, test harness) never grow debugger chrome they did not ask for.
|
|
132
|
+
*/
|
|
133
|
+
set Breakpoints(value: readonly string[]);
|
|
134
|
+
get Breakpoints(): readonly string[];
|
|
135
|
+
/** The step a breakpoint actually stopped on. */
|
|
136
|
+
set PausedAtTaskID(value: string | null);
|
|
137
|
+
get PausedAtTaskID(): string | null;
|
|
138
|
+
/**
|
|
139
|
+
* The graph is claim-gated. Combined with `PausedAtTaskID` so start-paused (no specific
|
|
140
|
+
* step yet) can still light the entry node as waiting.
|
|
141
|
+
*/
|
|
142
|
+
set GraphPaused(value: boolean);
|
|
143
|
+
get GraphPaused(): boolean;
|
|
144
|
+
/** Operator-forced edge verdicts, keyed by `MJ: Task Dependencies` row ID. */
|
|
145
|
+
set EdgeOverrides(value: Readonly<Record<string, 'true' | 'false'>>);
|
|
146
|
+
get EdgeOverrides(): Readonly<Record<string, 'true' | 'false'>>;
|
|
147
|
+
/**
|
|
148
|
+
* Whether this host may arm/disarm breakpoints from the selected-step control.
|
|
149
|
+
* Off by default — the run view also renders where those controls would be wrong.
|
|
150
|
+
*/
|
|
151
|
+
AllowBreakpointEditing: boolean;
|
|
152
|
+
/** Compact debug key under the summary line. Off unless the host is a debugger. */
|
|
153
|
+
ShowDebugLegend: boolean;
|
|
154
|
+
/** VS Code VARIABLES pane to the left of the canvas. Off unless the host is debugging. */
|
|
155
|
+
ShowVariables: boolean;
|
|
156
|
+
/** The parent bag's `data` / `context` roots, for the Invocation scope. */
|
|
157
|
+
Invocation: {
|
|
158
|
+
data?: unknown;
|
|
159
|
+
context?: unknown;
|
|
160
|
+
} | null;
|
|
161
|
+
NodeSelected: EventEmitter<TaskGraphRunNodeSelectedEvent>;
|
|
162
|
+
/** The legend was toggled from the toolbar, so a host can remember the choice. */
|
|
163
|
+
LegendToggled: EventEmitter<boolean>;
|
|
164
|
+
/** Emitted once, when every step has reached a terminal status. */
|
|
165
|
+
Settled: EventEmitter<void>;
|
|
166
|
+
/** A connection was clicked. `EdgeID` is the dependency row id when the projection carried one. */
|
|
167
|
+
ConnectionSelected: EventEmitter<TaskGraphRunConnectionSelectedEvent>;
|
|
168
|
+
/** Intent only — the host owns `SetBreakpoints`. */
|
|
169
|
+
BreakpointToggled: EventEmitter<{
|
|
170
|
+
TaskID: string;
|
|
171
|
+
Enabled: boolean;
|
|
172
|
+
}>;
|
|
173
|
+
/** Intent only — the host owns `OverrideEdge`. */
|
|
174
|
+
EdgeOverrideRequested: EventEmitter<{
|
|
175
|
+
EdgeID: string;
|
|
176
|
+
Verdict: "true" | "false" | null;
|
|
177
|
+
}>;
|
|
178
|
+
/** What each running step says it is doing, from `NodeProgress` frames. Keyed by task row id. */
|
|
179
|
+
LiveActivity: Map<string, {
|
|
180
|
+
Message: string;
|
|
181
|
+
Percent?: number;
|
|
182
|
+
}>;
|
|
183
|
+
/** The last step the person selected, so the breakpoint control has a target. */
|
|
184
|
+
SelectedTaskID: string | null;
|
|
185
|
+
/** Stable overlay object — rebuilt only when debug inputs change, so the editor does not re-project every CD cycle. */
|
|
186
|
+
Overlay: TaskGraphDebugOverlay;
|
|
187
|
+
private breakpoints;
|
|
188
|
+
private pausedAtTaskID;
|
|
189
|
+
private graphPaused;
|
|
190
|
+
private edgeOverrides;
|
|
191
|
+
/** `Settled` is once-per-parent — a finished poll must not re-fire the host. */
|
|
192
|
+
private settledEmitted;
|
|
193
|
+
/** Left data pane + split sizes. One JSON bag in `MJ: User Settings`. */
|
|
194
|
+
get Prefs(): TaskGraphRunPrefs;
|
|
195
|
+
private prefsStore;
|
|
196
|
+
Spec: TaskGraphSpec | null;
|
|
197
|
+
RuntimeStatus: TaskGraphRuntimeStatus | null;
|
|
198
|
+
Positions: Map<string, GraphNodePosition>;
|
|
199
|
+
IsLoading: boolean;
|
|
200
|
+
ErrorMessage: string | null;
|
|
201
|
+
/** Rows by id, so a selection event can hand the host the whole task rather than an id. */
|
|
202
|
+
private taskByID;
|
|
203
|
+
private parentTaskID;
|
|
204
|
+
private replayAt;
|
|
205
|
+
private pollTimer;
|
|
206
|
+
private frameReloadTimer;
|
|
207
|
+
private destroyed;
|
|
208
|
+
constructor(cdr: ChangeDetectorRef);
|
|
209
|
+
get InvocationPaneOpen(): boolean;
|
|
210
|
+
get InvocationPaneSize(): number;
|
|
211
|
+
get CanvasPaneSize(): number;
|
|
212
|
+
OnToggleInvocation(): void;
|
|
213
|
+
OnInvocationSplitDragEnd(sizes: readonly (number | '*')[]): void;
|
|
214
|
+
ngOnDestroy(): void;
|
|
215
|
+
/** Steps in a terminal state, for the host's summary line. Uses the same map the canvas paints. */
|
|
216
|
+
get CompletedCount(): number;
|
|
217
|
+
get TotalCount(): number;
|
|
218
|
+
get SkippedCount(): number;
|
|
219
|
+
get RunningCount(): number;
|
|
220
|
+
get IsSettled(): boolean;
|
|
221
|
+
/**
|
|
222
|
+
* A node was selected on the canvas.
|
|
223
|
+
*
|
|
224
|
+
* The projected `tempId` IS the task id, so the row lookup is exact — and handing the host the
|
|
225
|
+
* whole task rather than an id spares every host from re-reading a row this component already
|
|
226
|
+
* holds.
|
|
227
|
+
*/
|
|
228
|
+
OnSelectionChanged(args: TaskGraphSelectionChangedEventArgs): void;
|
|
229
|
+
OnConnectionSelected(connection: FlowConnection | null): void;
|
|
230
|
+
private countRuntime;
|
|
231
|
+
get HasSelectedBreakpoint(): boolean;
|
|
232
|
+
get SelectedTaskName(): string;
|
|
233
|
+
get WaitingStepName(): string;
|
|
234
|
+
get SelectedTask(): MJTaskEntity | null;
|
|
235
|
+
OnToggleSelectedBreakpoint(): void;
|
|
236
|
+
/** Debug attaches here: replace Edit/Remove with breakpoint / path-override items. */
|
|
237
|
+
OnBeforeContextMenu(event: FlowBeforeContextMenuEventArgs): void;
|
|
238
|
+
OnAfterContextMenuAction(event: FlowAfterContextMenuActionEventArgs): void;
|
|
239
|
+
private hasBreakpoint;
|
|
240
|
+
OnDebugHotkey(event: KeyboardEvent): void;
|
|
241
|
+
private rebuildOverlay;
|
|
242
|
+
private emitSettledOnce;
|
|
243
|
+
/**
|
|
244
|
+
* Reads the graph and projects it onto the canvas.
|
|
245
|
+
*
|
|
246
|
+
* `BypassCache` throughout: a run view exists to show what is true *now*, and the whole point of
|
|
247
|
+
* the poll is to see a status that changed a second ago. A cached read would render a stale graph
|
|
248
|
+
* that looks authoritative.
|
|
249
|
+
*/
|
|
250
|
+
private load;
|
|
251
|
+
/** Rows → spec + runtime + geometry. */
|
|
252
|
+
private project;
|
|
253
|
+
/** Re-derives the overlay for the current replay position (or the present) from held rows. */
|
|
254
|
+
private applyReplay;
|
|
255
|
+
/** The overlay as it stood at `moment`, from each row's own timestamps. */
|
|
256
|
+
private statusAt;
|
|
257
|
+
/**
|
|
258
|
+
* The author's arrangement where there is one, a computed layout everywhere else.
|
|
259
|
+
*
|
|
260
|
+
* Mixing the two per-node rather than choosing one for the whole graph: a workflow whose author
|
|
261
|
+
* positioned some steps and left others where they fell should keep the positions they chose.
|
|
262
|
+
* A wholly unpositioned graph — the normal case for anything an agent emitted — is laid out
|
|
263
|
+
* entirely by the algorithm.
|
|
264
|
+
*/
|
|
265
|
+
private resolvePositions;
|
|
266
|
+
private isSettled;
|
|
267
|
+
/**
|
|
268
|
+
* Folds one live frame into the overlay.
|
|
269
|
+
*
|
|
270
|
+
* Direct status frames patch in place — a new `RuntimeStatus` object, because the canvas is
|
|
271
|
+
* OnPush and mutation would render nothing. Frames whose consequences the dispatcher computes
|
|
272
|
+
* across the whole graph (skips cascade, blocks propagate, settlement rolls up) reload the rows
|
|
273
|
+
* instead: inferring a cascade client-side would be a second implementation of the engine's
|
|
274
|
+
* rules, free to drift.
|
|
275
|
+
*/
|
|
276
|
+
private foldFrame;
|
|
277
|
+
/** One reload per burst of cascade frames, not one per frame. */
|
|
278
|
+
private scheduleFrameReload;
|
|
279
|
+
private schedulePoll;
|
|
280
|
+
private stopPolling;
|
|
281
|
+
private fail;
|
|
282
|
+
/** Canvas extent, so a host can size its container to the graph rather than guessing. */
|
|
283
|
+
get GraphBounds(): {
|
|
284
|
+
Width: number;
|
|
285
|
+
Height: number;
|
|
286
|
+
};
|
|
287
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TaskGraphRunViewComponent, never>;
|
|
288
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TaskGraphRunViewComponent, "mj-task-graph-run-view", never, { "ParentTaskID": { "alias": "ParentTaskID"; "required": false; }; "WorkflowName": { "alias": "WorkflowName"; "required": false; }; "LiveUpdates": { "alias": "LiveUpdates"; "required": false; }; "PollIntervalSeconds": { "alias": "PollIntervalSeconds"; "required": false; }; "Height": { "alias": "Height"; "required": false; }; "ShowLegend": { "alias": "ShowLegend"; "required": false; }; "ShowToolbar": { "alias": "ShowToolbar"; "required": false; }; "ToolbarVisibility": { "alias": "ToolbarVisibility"; "required": false; }; "ToolbarAlign": { "alias": "ToolbarAlign"; "required": false; }; "LiveFrame": { "alias": "LiveFrame"; "required": false; }; "ReplayAt": { "alias": "ReplayAt"; "required": false; }; "Breakpoints": { "alias": "Breakpoints"; "required": false; }; "PausedAtTaskID": { "alias": "PausedAtTaskID"; "required": false; }; "GraphPaused": { "alias": "GraphPaused"; "required": false; }; "EdgeOverrides": { "alias": "EdgeOverrides"; "required": false; }; "AllowBreakpointEditing": { "alias": "AllowBreakpointEditing"; "required": false; }; "ShowDebugLegend": { "alias": "ShowDebugLegend"; "required": false; }; "ShowVariables": { "alias": "ShowVariables"; "required": false; }; "Invocation": { "alias": "Invocation"; "required": false; }; }, { "NodeSelected": "NodeSelected"; "LegendToggled": "LegendToggled"; "Settled": "Settled"; "ConnectionSelected": "ConnectionSelected"; "BreakpointToggled": "BreakpointToggled"; "EdgeOverrideRequested": "EdgeOverrideRequested"; }, never, never, false, never>;
|
|
289
|
+
}
|
|
290
|
+
//# sourceMappingURL=task-graph-run-view.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-graph-run-view.component.d.ts","sourceRoot":"","sources":["../../src/lib/task-graph-run-view.component.ts"],"names":[],"mappings":"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"}
|