@uipath/apollo-react 4.34.0 → 4.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/canvas/components/BaseCanvas/index.cjs +25 -15
- package/dist/canvas/components/BaseCanvas/index.d.ts +1 -0
- package/dist/canvas/components/BaseCanvas/index.d.ts.map +1 -1
- package/dist/canvas/components/BaseCanvas/index.js +1 -0
- package/dist/canvas/components/BaseNode/BaseNode.cjs +3 -1
- package/dist/canvas/components/BaseNode/BaseNode.d.ts.map +1 -1
- package/dist/canvas/components/BaseNode/BaseNode.js +3 -1
- package/dist/canvas/components/BaseNode/BaseNodeConfigContext.d.ts +3 -1
- package/dist/canvas/components/BaseNode/BaseNodeConfigContext.d.ts.map +1 -1
- package/dist/canvas/components/ButtonHandle/ButtonHandle.cjs +30 -1
- package/dist/canvas/components/ButtonHandle/ButtonHandle.d.ts +11 -1
- package/dist/canvas/components/ButtonHandle/ButtonHandle.d.ts.map +1 -1
- package/dist/canvas/components/ButtonHandle/ButtonHandle.js +30 -1
- package/dist/canvas/components/ButtonHandle/HandleButton.cjs +3 -1
- package/dist/canvas/components/ButtonHandle/HandleButton.d.ts +3 -1
- package/dist/canvas/components/ButtonHandle/HandleButton.d.ts.map +1 -1
- package/dist/canvas/components/ButtonHandle/HandleButton.js +3 -1
- package/dist/canvas/components/ButtonHandle/useButtonHandles.cjs +6 -2
- package/dist/canvas/components/ButtonHandle/useButtonHandles.d.ts +4 -2
- package/dist/canvas/components/ButtonHandle/useButtonHandles.d.ts.map +1 -1
- package/dist/canvas/components/ButtonHandle/useButtonHandles.js +6 -2
- package/dist/canvas/components/CaseFlow/case-flow.manifest.cjs +12 -0
- package/dist/canvas/components/CaseFlow/case-flow.manifest.d.ts.map +1 -1
- package/dist/canvas/components/CaseFlow/case-flow.manifest.js +12 -0
- package/dist/canvas/components/CaseFlow/index.cjs +42 -0
- package/dist/canvas/components/CaseFlow/index.d.ts +2 -0
- package/dist/canvas/components/CaseFlow/index.d.ts.map +1 -0
- package/dist/canvas/components/CaseFlow/index.js +2 -0
- package/dist/canvas/components/LoopNode/LoopNode.cjs +9 -3
- package/dist/canvas/components/LoopNode/LoopNode.d.ts.map +1 -1
- package/dist/canvas/components/LoopNode/LoopNode.js +9 -3
- package/dist/canvas/components/LoopNode/LoopNode.types.d.ts +10 -0
- package/dist/canvas/components/LoopNode/LoopNode.types.d.ts.map +1 -1
- package/dist/canvas/components/LoopNode/LoopNodeExecutionCount.cjs +370 -0
- package/dist/canvas/components/LoopNode/LoopNodeExecutionCount.d.ts +8 -0
- package/dist/canvas/components/LoopNode/LoopNodeExecutionCount.d.ts.map +1 -0
- package/dist/canvas/components/LoopNode/LoopNodeExecutionCount.js +333 -0
- package/dist/canvas/components/LoopNode/index.cjs +15 -8
- package/dist/canvas/components/LoopNode/index.d.ts +1 -0
- package/dist/canvas/components/LoopNode/index.d.ts.map +1 -1
- package/dist/canvas/components/LoopNode/index.js +1 -0
- package/dist/canvas/components/index.cjs +43 -36
- package/dist/canvas/components/index.d.ts +1 -0
- package/dist/canvas/components/index.d.ts.map +1 -1
- package/dist/canvas/components/index.js +1 -0
- package/dist/canvas/locales/en.cjs +1 -1
- package/dist/canvas/locales/en.d.ts.map +1 -1
- package/dist/canvas/locales/en.js +1 -1
- package/dist/canvas/styles/tailwind.canvas.css +1 -1
- package/dist/canvas/utils/CanvasEventBus.d.ts +13 -2
- package/dist/canvas/utils/CanvasEventBus.d.ts.map +1 -1
- package/dist/canvas/utils/manifest-resolver.d.ts +3 -1
- package/dist/canvas/utils/manifest-resolver.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { cn } from "@uipath/apollo-wind";
|
|
3
|
+
import { useRef, useState } from "react";
|
|
4
|
+
import { useSafeLingui } from "../../../i18n/index.js";
|
|
5
|
+
import { ElementStatusValues } from "../../types/execution.js";
|
|
6
|
+
import { CanvasIcon } from "../../utils/icon-registry.js";
|
|
7
|
+
import { clamp } from "../../utils/NodeUtils.js";
|
|
8
|
+
function stopEvent(e) {
|
|
9
|
+
e.stopPropagation();
|
|
10
|
+
}
|
|
11
|
+
function getIterationStatusColor(status) {
|
|
12
|
+
switch(status){
|
|
13
|
+
case ElementStatusValues.Completed:
|
|
14
|
+
return '#22c55e';
|
|
15
|
+
case ElementStatusValues.Failed:
|
|
16
|
+
return '#ef4444';
|
|
17
|
+
case ElementStatusValues.InProgress:
|
|
18
|
+
return '#f59e0b';
|
|
19
|
+
case ElementStatusValues.Paused:
|
|
20
|
+
return '#a855f7';
|
|
21
|
+
case ElementStatusValues.Cancelled:
|
|
22
|
+
return '#94a3b8';
|
|
23
|
+
default:
|
|
24
|
+
return 'currentColor';
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
function LoopNodeExecutionCount({ state, size = 'full' }) {
|
|
28
|
+
const { activeIndex, total, onActiveIndexChange, disabled, isAll, onAllChange, iterationStatuses } = state;
|
|
29
|
+
const { _ } = useSafeLingui();
|
|
30
|
+
const [isEditing, setIsEditing] = useState(false);
|
|
31
|
+
const [inputValue, setInputValue] = useState('');
|
|
32
|
+
const inputRef = useRef(null);
|
|
33
|
+
const safeTotal = Number.isFinite(total) && total > 0 ? total : 1;
|
|
34
|
+
const safeActiveIndex = clamp(Number.isFinite(activeIndex) && activeIndex >= 0 ? activeIndex : 0, 0, safeTotal - 1);
|
|
35
|
+
const canInteract = !disabled && 'function' == typeof onActiveIndexChange;
|
|
36
|
+
const visibleIndex = safeActiveIndex + 1;
|
|
37
|
+
const currentStatus = iterationStatuses?.get(safeActiveIndex);
|
|
38
|
+
const firstFailedIndex = iterationStatuses ? [
|
|
39
|
+
...iterationStatuses.entries()
|
|
40
|
+
].find(([, s])=>s === ElementStatusValues.Failed)?.[0] : void 0;
|
|
41
|
+
const completedCount = iterationStatuses ? [
|
|
42
|
+
...iterationStatuses.values()
|
|
43
|
+
].filter((s)=>s === ElementStatusValues.Completed).length : void 0;
|
|
44
|
+
const failedCount = iterationStatuses ? [
|
|
45
|
+
...iterationStatuses.values()
|
|
46
|
+
].filter((s)=>s === ElementStatusValues.Failed).length : 0;
|
|
47
|
+
const handlePrev = (e)=>{
|
|
48
|
+
e.stopPropagation();
|
|
49
|
+
if (canInteract && !isAll && safeActiveIndex > 0) onActiveIndexChange?.(safeActiveIndex - 1);
|
|
50
|
+
};
|
|
51
|
+
const handleNext = (e)=>{
|
|
52
|
+
e.stopPropagation();
|
|
53
|
+
if (canInteract && !isAll && safeActiveIndex < safeTotal - 1) onActiveIndexChange?.(safeActiveIndex + 1);
|
|
54
|
+
};
|
|
55
|
+
const toggleAll = (e)=>{
|
|
56
|
+
e.stopPropagation();
|
|
57
|
+
if (disabled) return;
|
|
58
|
+
onAllChange(!isAll);
|
|
59
|
+
};
|
|
60
|
+
const handleJumpToFailed = (e)=>{
|
|
61
|
+
e.stopPropagation();
|
|
62
|
+
if (void 0 !== firstFailedIndex) onActiveIndexChange?.(firstFailedIndex);
|
|
63
|
+
};
|
|
64
|
+
const startEdit = (e)=>{
|
|
65
|
+
e.stopPropagation();
|
|
66
|
+
if (!canInteract || isAll || isEditing) return;
|
|
67
|
+
setInputValue(String(visibleIndex));
|
|
68
|
+
setIsEditing(true);
|
|
69
|
+
requestAnimationFrame(()=>inputRef.current?.select());
|
|
70
|
+
};
|
|
71
|
+
const commitEdit = ()=>{
|
|
72
|
+
const parsed = parseInt(inputValue, 10);
|
|
73
|
+
if (!Number.isNaN(parsed)) onActiveIndexChange?.(clamp(parsed, 1, safeTotal) - 1);
|
|
74
|
+
setIsEditing(false);
|
|
75
|
+
};
|
|
76
|
+
const handleInputKeyDown = (e)=>{
|
|
77
|
+
e.stopPropagation();
|
|
78
|
+
if ('Enter' === e.key) commitEdit();
|
|
79
|
+
if ('Escape' === e.key) setIsEditing(false);
|
|
80
|
+
};
|
|
81
|
+
const canGoPrev = canInteract && !isAll && safeActiveIndex > 0;
|
|
82
|
+
const canGoNext = canInteract && !isAll && safeActiveIndex < safeTotal - 1;
|
|
83
|
+
if ('minimal' === size) return /*#__PURE__*/ jsx("div", {
|
|
84
|
+
className: "nodrag nopan pointer-events-auto flex items-center",
|
|
85
|
+
onPointerDown: stopEvent,
|
|
86
|
+
onMouseDown: stopEvent,
|
|
87
|
+
children: /*#__PURE__*/ jsx("div", {
|
|
88
|
+
className: "flex h-6 items-center gap-0.5 rounded-full border border-border bg-surface px-2 text-[11px] font-semibold leading-none shadow-sm",
|
|
89
|
+
children: isAll ? void 0 !== completedCount ? /*#__PURE__*/ jsxs(Fragment, {
|
|
90
|
+
children: [
|
|
91
|
+
/*#__PURE__*/ jsxs("span", {
|
|
92
|
+
style: {
|
|
93
|
+
color: getIterationStatusColor(ElementStatusValues.Completed)
|
|
94
|
+
},
|
|
95
|
+
children: [
|
|
96
|
+
"✓",
|
|
97
|
+
completedCount
|
|
98
|
+
]
|
|
99
|
+
}),
|
|
100
|
+
failedCount > 0 && /*#__PURE__*/ jsxs("span", {
|
|
101
|
+
style: {
|
|
102
|
+
color: getIterationStatusColor(ElementStatusValues.Failed)
|
|
103
|
+
},
|
|
104
|
+
children: [
|
|
105
|
+
' ',
|
|
106
|
+
"✗",
|
|
107
|
+
failedCount
|
|
108
|
+
]
|
|
109
|
+
})
|
|
110
|
+
]
|
|
111
|
+
}) : /*#__PURE__*/ jsxs(Fragment, {
|
|
112
|
+
children: [
|
|
113
|
+
/*#__PURE__*/ jsx("span", {
|
|
114
|
+
className: "opacity-60",
|
|
115
|
+
children: "Σ"
|
|
116
|
+
}),
|
|
117
|
+
/*#__PURE__*/ jsx("span", {
|
|
118
|
+
className: "ml-0.5",
|
|
119
|
+
children: safeTotal
|
|
120
|
+
})
|
|
121
|
+
]
|
|
122
|
+
}) : /*#__PURE__*/ jsxs(Fragment, {
|
|
123
|
+
children: [
|
|
124
|
+
currentStatus && /*#__PURE__*/ jsx("span", {
|
|
125
|
+
className: "h-1.5 w-1.5 shrink-0 rounded-full",
|
|
126
|
+
style: {
|
|
127
|
+
backgroundColor: getIterationStatusColor(currentStatus)
|
|
128
|
+
}
|
|
129
|
+
}),
|
|
130
|
+
/*#__PURE__*/ jsx("span", {
|
|
131
|
+
children: visibleIndex
|
|
132
|
+
}),
|
|
133
|
+
/*#__PURE__*/ jsx("span", {
|
|
134
|
+
className: "px-0.5 opacity-60",
|
|
135
|
+
children: "/"
|
|
136
|
+
}),
|
|
137
|
+
/*#__PURE__*/ jsx("span", {
|
|
138
|
+
children: safeTotal
|
|
139
|
+
})
|
|
140
|
+
]
|
|
141
|
+
})
|
|
142
|
+
})
|
|
143
|
+
});
|
|
144
|
+
return /*#__PURE__*/ jsxs("div", {
|
|
145
|
+
className: "nodrag nopan pointer-events-auto flex items-center gap-1.5",
|
|
146
|
+
onPointerDown: stopEvent,
|
|
147
|
+
onMouseDown: stopEvent,
|
|
148
|
+
onDoubleClick: stopEvent,
|
|
149
|
+
children: [
|
|
150
|
+
/*#__PURE__*/ jsxs("div", {
|
|
151
|
+
className: "nodrag nopan flex h-6 items-stretch overflow-hidden rounded-full border border-border bg-surface shadow-sm",
|
|
152
|
+
children: [
|
|
153
|
+
/*#__PURE__*/ jsx("button", {
|
|
154
|
+
type: "button",
|
|
155
|
+
onClick: toggleAll,
|
|
156
|
+
onPointerDown: stopEvent,
|
|
157
|
+
onMouseDown: stopEvent,
|
|
158
|
+
disabled: disabled,
|
|
159
|
+
"aria-pressed": isAll,
|
|
160
|
+
"aria-label": _({
|
|
161
|
+
id: 'loop-node.execution-count.show-aggregate',
|
|
162
|
+
message: 'Show aggregate across all iterations'
|
|
163
|
+
}),
|
|
164
|
+
className: cn('nodrag nopan select-none px-2.5 text-[11px] font-semibold leading-none transition-colors', isAll ? 'bg-surface-overlay text-foreground' : 'text-foreground hover:bg-surface-hover', disabled && 'cursor-not-allowed opacity-50'),
|
|
165
|
+
children: "All"
|
|
166
|
+
}),
|
|
167
|
+
/*#__PURE__*/ jsx("div", {
|
|
168
|
+
className: "w-px shrink-0 bg-border"
|
|
169
|
+
}),
|
|
170
|
+
isAll ? /*#__PURE__*/ jsx("button", {
|
|
171
|
+
type: "button",
|
|
172
|
+
onClick: toggleAll,
|
|
173
|
+
onPointerDown: stopEvent,
|
|
174
|
+
onMouseDown: stopEvent,
|
|
175
|
+
disabled: disabled,
|
|
176
|
+
className: cn('nodrag nopan flex items-center gap-1.5 px-2.5 text-[11px] font-semibold leading-none transition-colors hover:bg-surface-overlay', disabled && 'cursor-not-allowed opacity-50'),
|
|
177
|
+
"aria-label": _({
|
|
178
|
+
id: 'loop-node.execution-count.return-to-individual',
|
|
179
|
+
message: 'Return to individual iteration view'
|
|
180
|
+
}),
|
|
181
|
+
title: _({
|
|
182
|
+
id: 'loop-node.execution-count.click-to-return',
|
|
183
|
+
message: 'Click to return to individual iteration view'
|
|
184
|
+
}),
|
|
185
|
+
children: void 0 !== completedCount ? /*#__PURE__*/ jsxs(Fragment, {
|
|
186
|
+
children: [
|
|
187
|
+
/*#__PURE__*/ jsxs("span", {
|
|
188
|
+
style: {
|
|
189
|
+
color: getIterationStatusColor(ElementStatusValues.Completed)
|
|
190
|
+
},
|
|
191
|
+
children: [
|
|
192
|
+
"✓ ",
|
|
193
|
+
completedCount
|
|
194
|
+
]
|
|
195
|
+
}),
|
|
196
|
+
failedCount > 0 && /*#__PURE__*/ jsxs("span", {
|
|
197
|
+
style: {
|
|
198
|
+
color: getIterationStatusColor(ElementStatusValues.Failed)
|
|
199
|
+
},
|
|
200
|
+
children: [
|
|
201
|
+
"✗ ",
|
|
202
|
+
failedCount
|
|
203
|
+
]
|
|
204
|
+
})
|
|
205
|
+
]
|
|
206
|
+
}) : /*#__PURE__*/ jsxs(Fragment, {
|
|
207
|
+
children: [
|
|
208
|
+
/*#__PURE__*/ jsx("span", {
|
|
209
|
+
"aria-hidden": true,
|
|
210
|
+
className: "opacity-60",
|
|
211
|
+
children: "Σ"
|
|
212
|
+
}),
|
|
213
|
+
/*#__PURE__*/ jsx("span", {
|
|
214
|
+
children: safeTotal
|
|
215
|
+
})
|
|
216
|
+
]
|
|
217
|
+
})
|
|
218
|
+
}) : /*#__PURE__*/ jsxs("div", {
|
|
219
|
+
className: "flex items-stretch",
|
|
220
|
+
children: [
|
|
221
|
+
'full' === size && /*#__PURE__*/ jsx("button", {
|
|
222
|
+
type: "button",
|
|
223
|
+
className: cn('nodrag nopan flex w-5 items-center justify-center text-foreground transition-opacity', canGoPrev ? 'cursor-pointer hover:bg-surface-overlay' : 'cursor-not-allowed opacity-40'),
|
|
224
|
+
disabled: !canGoPrev,
|
|
225
|
+
"aria-label": _({
|
|
226
|
+
id: 'loop-node.execution-count.previous-iteration',
|
|
227
|
+
message: 'Previous iteration'
|
|
228
|
+
}),
|
|
229
|
+
onClick: handlePrev,
|
|
230
|
+
onPointerDown: stopEvent,
|
|
231
|
+
onMouseDown: stopEvent,
|
|
232
|
+
children: /*#__PURE__*/ jsx(CanvasIcon, {
|
|
233
|
+
icon: "chevron-left",
|
|
234
|
+
size: 12
|
|
235
|
+
})
|
|
236
|
+
}),
|
|
237
|
+
/*#__PURE__*/ jsx("span", {
|
|
238
|
+
className: cn('flex min-w-10 select-none items-center justify-center gap-0.5 text-[11px] font-semibold leading-none', 'full' === size ? 'px-1' : 'px-2.5', canInteract && !isEditing && 'cursor-pointer hover:text-foreground-accent'),
|
|
239
|
+
onClick: startEdit,
|
|
240
|
+
title: canInteract ? _({
|
|
241
|
+
id: 'loop-node.execution-count.click-to-jump',
|
|
242
|
+
message: 'Click to jump to a specific iteration'
|
|
243
|
+
}) : void 0,
|
|
244
|
+
children: isEditing ? /*#__PURE__*/ jsxs(Fragment, {
|
|
245
|
+
children: [
|
|
246
|
+
/*#__PURE__*/ jsx("input", {
|
|
247
|
+
ref: inputRef,
|
|
248
|
+
type: "number",
|
|
249
|
+
min: 1,
|
|
250
|
+
max: safeTotal,
|
|
251
|
+
value: inputValue,
|
|
252
|
+
onChange: (e)=>setInputValue(e.target.value),
|
|
253
|
+
onBlur: commitEdit,
|
|
254
|
+
onKeyDown: handleInputKeyDown,
|
|
255
|
+
onPointerDown: stopEvent,
|
|
256
|
+
className: "w-7 appearance-none bg-transparent text-center text-[11px] font-semibold leading-none outline-none [&::-webkit-inner-spin-button]:appearance-none [&::-webkit-outer-spin-button]:appearance-none border-b border-foreground-accent"
|
|
257
|
+
}),
|
|
258
|
+
/*#__PURE__*/ jsx("span", {
|
|
259
|
+
className: "px-0.5 opacity-60",
|
|
260
|
+
children: "/"
|
|
261
|
+
}),
|
|
262
|
+
/*#__PURE__*/ jsx("span", {
|
|
263
|
+
children: safeTotal
|
|
264
|
+
})
|
|
265
|
+
]
|
|
266
|
+
}) : /*#__PURE__*/ jsxs(Fragment, {
|
|
267
|
+
children: [
|
|
268
|
+
currentStatus && /*#__PURE__*/ jsx("span", {
|
|
269
|
+
className: "h-1.5 w-1.5 shrink-0 rounded-full",
|
|
270
|
+
style: {
|
|
271
|
+
backgroundColor: getIterationStatusColor(currentStatus)
|
|
272
|
+
}
|
|
273
|
+
}),
|
|
274
|
+
/*#__PURE__*/ jsx("span", {
|
|
275
|
+
children: visibleIndex
|
|
276
|
+
}),
|
|
277
|
+
/*#__PURE__*/ jsx("span", {
|
|
278
|
+
className: "px-0.5 opacity-60",
|
|
279
|
+
children: "/"
|
|
280
|
+
}),
|
|
281
|
+
/*#__PURE__*/ jsx("span", {
|
|
282
|
+
children: safeTotal
|
|
283
|
+
})
|
|
284
|
+
]
|
|
285
|
+
})
|
|
286
|
+
}),
|
|
287
|
+
'full' === size && /*#__PURE__*/ jsx("button", {
|
|
288
|
+
type: "button",
|
|
289
|
+
className: cn('nodrag nopan flex w-5 items-center justify-center text-foreground transition-opacity', canGoNext ? 'cursor-pointer hover:bg-surface-overlay' : 'cursor-not-allowed opacity-40'),
|
|
290
|
+
disabled: !canGoNext,
|
|
291
|
+
"aria-label": _({
|
|
292
|
+
id: 'loop-node.execution-count.next-iteration',
|
|
293
|
+
message: 'Next iteration'
|
|
294
|
+
}),
|
|
295
|
+
onClick: handleNext,
|
|
296
|
+
onPointerDown: stopEvent,
|
|
297
|
+
onMouseDown: stopEvent,
|
|
298
|
+
children: /*#__PURE__*/ jsx(CanvasIcon, {
|
|
299
|
+
icon: "chevron-right",
|
|
300
|
+
size: 12
|
|
301
|
+
})
|
|
302
|
+
})
|
|
303
|
+
]
|
|
304
|
+
})
|
|
305
|
+
]
|
|
306
|
+
}),
|
|
307
|
+
void 0 !== firstFailedIndex && !isAll && canInteract && /*#__PURE__*/ jsx("button", {
|
|
308
|
+
type: "button",
|
|
309
|
+
className: "nodrag nopan inline-flex h-6 w-6 items-center justify-center rounded-full border border-border bg-surface shadow-sm transition-colors hover:border-red-400",
|
|
310
|
+
onClick: handleJumpToFailed,
|
|
311
|
+
onPointerDown: stopEvent,
|
|
312
|
+
onMouseDown: stopEvent,
|
|
313
|
+
"aria-label": _({
|
|
314
|
+
id: 'loop-node.execution-count.jump-to-failed',
|
|
315
|
+
message: 'Jump to first failed iteration'
|
|
316
|
+
}),
|
|
317
|
+
title: _({
|
|
318
|
+
id: 'loop-node.execution-count.jump-to-iteration',
|
|
319
|
+
message: 'Jump to iteration {iterationNumber} (failed)',
|
|
320
|
+
values: {
|
|
321
|
+
iterationNumber: firstFailedIndex + 1
|
|
322
|
+
}
|
|
323
|
+
}),
|
|
324
|
+
children: /*#__PURE__*/ jsx(CanvasIcon, {
|
|
325
|
+
icon: "crosshair",
|
|
326
|
+
size: 12,
|
|
327
|
+
color: getIterationStatusColor(ElementStatusValues.Failed)
|
|
328
|
+
})
|
|
329
|
+
})
|
|
330
|
+
]
|
|
331
|
+
});
|
|
332
|
+
}
|
|
333
|
+
export { LoopNodeExecutionCount, getIterationStatusColor };
|
|
@@ -11,6 +11,9 @@ var __webpack_modules__ = {
|
|
|
11
11
|
},
|
|
12
12
|
"./LoopNode.types" (module) {
|
|
13
13
|
module.exports = require("./LoopNode.types.cjs");
|
|
14
|
+
},
|
|
15
|
+
"./LoopNodeExecutionCount" (module) {
|
|
16
|
+
module.exports = require("./LoopNodeExecutionCount.cjs");
|
|
14
17
|
}
|
|
15
18
|
};
|
|
16
19
|
var __webpack_module_cache__ = {};
|
|
@@ -56,21 +59,25 @@ function __webpack_require__(moduleId) {
|
|
|
56
59
|
var __webpack_exports__ = {};
|
|
57
60
|
(()=>{
|
|
58
61
|
__webpack_require__.r(__webpack_exports__);
|
|
59
|
-
var
|
|
62
|
+
var _LoopNodeExecutionCount__rspack_import_0 = __webpack_require__("./LoopNodeExecutionCount");
|
|
63
|
+
var __rspack_reexport = {};
|
|
64
|
+
for(const __rspack_import_key in _LoopNodeExecutionCount__rspack_import_0)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_LoopNodeExecutionCount__rspack_import_0[__rspack_import_key];
|
|
65
|
+
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
66
|
+
var _LoopCanvasNode__rspack_import_1 = __webpack_require__("./LoopCanvasNode");
|
|
60
67
|
var __rspack_reexport = {};
|
|
61
|
-
for(const __rspack_import_key in
|
|
68
|
+
for(const __rspack_import_key in _LoopCanvasNode__rspack_import_1)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_LoopCanvasNode__rspack_import_1[__rspack_import_key];
|
|
62
69
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
63
|
-
var
|
|
70
|
+
var _LoopNode__rspack_import_2 = __webpack_require__("./LoopNode?d3ac");
|
|
64
71
|
var __rspack_reexport = {};
|
|
65
|
-
for(const __rspack_import_key in
|
|
72
|
+
for(const __rspack_import_key in _LoopNode__rspack_import_2)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_LoopNode__rspack_import_2[__rspack_import_key];
|
|
66
73
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
67
|
-
var
|
|
74
|
+
var _LoopNode_helpers__rspack_import_3 = __webpack_require__("./LoopNode.helpers");
|
|
68
75
|
var __rspack_reexport = {};
|
|
69
|
-
for(const __rspack_import_key in
|
|
76
|
+
for(const __rspack_import_key in _LoopNode_helpers__rspack_import_3)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_LoopNode_helpers__rspack_import_3[__rspack_import_key];
|
|
70
77
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
71
|
-
var
|
|
78
|
+
var _LoopNode_types__rspack_import_4 = __webpack_require__("./LoopNode.types");
|
|
72
79
|
var __rspack_reexport = {};
|
|
73
|
-
for(const __rspack_import_key in
|
|
80
|
+
for(const __rspack_import_key in _LoopNode_types__rspack_import_4)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_LoopNode_types__rspack_import_4[__rspack_import_key];
|
|
74
81
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
75
82
|
})();
|
|
76
83
|
for(var __rspack_i in __webpack_exports__)exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/LoopNode/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/LoopNode/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC"}
|
|
@@ -24,6 +24,9 @@ var __webpack_modules__ = {
|
|
|
24
24
|
"./CanvasZoomControls" (module) {
|
|
25
25
|
module.exports = require("./CanvasZoomControls/index.cjs");
|
|
26
26
|
},
|
|
27
|
+
"./CaseFlow" (module) {
|
|
28
|
+
module.exports = require("./CaseFlow/index.cjs");
|
|
29
|
+
},
|
|
27
30
|
"./CodedAgent" (module) {
|
|
28
31
|
module.exports = require("./CodedAgent/index.cjs");
|
|
29
32
|
},
|
|
@@ -154,77 +157,81 @@ var __webpack_exports__ = {};
|
|
|
154
157
|
var __rspack_reexport = {};
|
|
155
158
|
for(const __rspack_import_key in _CanvasZoomControls__rspack_import_7)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_CanvasZoomControls__rspack_import_7[__rspack_import_key];
|
|
156
159
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
157
|
-
var
|
|
160
|
+
var _CaseFlow__rspack_import_8 = __webpack_require__("./CaseFlow");
|
|
161
|
+
var __rspack_reexport = {};
|
|
162
|
+
for(const __rspack_import_key in _CaseFlow__rspack_import_8)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_CaseFlow__rspack_import_8[__rspack_import_key];
|
|
163
|
+
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
164
|
+
var _CodedAgent__rspack_import_9 = __webpack_require__("./CodedAgent");
|
|
158
165
|
var __rspack_reexport = {};
|
|
159
|
-
for(const __rspack_import_key in
|
|
166
|
+
for(const __rspack_import_key in _CodedAgent__rspack_import_9)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_CodedAgent__rspack_import_9[__rspack_import_key];
|
|
160
167
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
161
|
-
var
|
|
168
|
+
var _Edges__rspack_import_10 = __webpack_require__("./Edges");
|
|
162
169
|
var __rspack_reexport = {};
|
|
163
|
-
for(const __rspack_import_key in
|
|
170
|
+
for(const __rspack_import_key in _Edges__rspack_import_10)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_Edges__rspack_import_10[__rspack_import_key];
|
|
164
171
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
165
|
-
var
|
|
172
|
+
var _ExecutionStatusIcon__rspack_import_11 = __webpack_require__("./ExecutionStatusIcon");
|
|
166
173
|
var __rspack_reexport = {};
|
|
167
|
-
for(const __rspack_import_key in
|
|
174
|
+
for(const __rspack_import_key in _ExecutionStatusIcon__rspack_import_11)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_ExecutionStatusIcon__rspack_import_11[__rspack_import_key];
|
|
168
175
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
169
|
-
var
|
|
176
|
+
var _FloatingCanvasPanel__rspack_import_12 = __webpack_require__("./FloatingCanvasPanel");
|
|
170
177
|
var __rspack_reexport = {};
|
|
171
|
-
for(const __rspack_import_key in
|
|
178
|
+
for(const __rspack_import_key in _FloatingCanvasPanel__rspack_import_12)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_FloatingCanvasPanel__rspack_import_12[__rspack_import_key];
|
|
172
179
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
173
|
-
var
|
|
180
|
+
var _GroupNode__rspack_import_13 = __webpack_require__("./GroupNode");
|
|
174
181
|
var __rspack_reexport = {};
|
|
175
|
-
for(const __rspack_import_key in
|
|
182
|
+
for(const __rspack_import_key in _GroupNode__rspack_import_13)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_GroupNode__rspack_import_13[__rspack_import_key];
|
|
176
183
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
177
|
-
var
|
|
184
|
+
var _HierarchicalCanvas__rspack_import_14 = __webpack_require__("./HierarchicalCanvas");
|
|
178
185
|
var __rspack_reexport = {};
|
|
179
|
-
for(const __rspack_import_key in
|
|
186
|
+
for(const __rspack_import_key in _HierarchicalCanvas__rspack_import_14)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_HierarchicalCanvas__rspack_import_14[__rspack_import_key];
|
|
180
187
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
181
|
-
var
|
|
188
|
+
var _LoopNode__rspack_import_15 = __webpack_require__("./LoopNode?4ffc");
|
|
182
189
|
var __rspack_reexport = {};
|
|
183
|
-
for(const __rspack_import_key in
|
|
190
|
+
for(const __rspack_import_key in _LoopNode__rspack_import_15)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_LoopNode__rspack_import_15[__rspack_import_key];
|
|
184
191
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
185
|
-
var
|
|
192
|
+
var _MiniCanvasNavigator__rspack_import_16 = __webpack_require__("./MiniCanvasNavigator?564d");
|
|
186
193
|
var __rspack_reexport = {};
|
|
187
|
-
for(const __rspack_import_key in
|
|
194
|
+
for(const __rspack_import_key in _MiniCanvasNavigator__rspack_import_16)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_MiniCanvasNavigator__rspack_import_16[__rspack_import_key];
|
|
188
195
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
189
|
-
var
|
|
196
|
+
var _NodeContextMenu__rspack_import_17 = __webpack_require__("./NodeContextMenu");
|
|
190
197
|
var __rspack_reexport = {};
|
|
191
|
-
for(const __rspack_import_key in
|
|
198
|
+
for(const __rspack_import_key in _NodeContextMenu__rspack_import_17)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_NodeContextMenu__rspack_import_17[__rspack_import_key];
|
|
192
199
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
193
|
-
var
|
|
200
|
+
var _NodeInspector__rspack_import_18 = __webpack_require__("./NodeInspector");
|
|
194
201
|
var __rspack_reexport = {};
|
|
195
|
-
for(const __rspack_import_key in
|
|
202
|
+
for(const __rspack_import_key in _NodeInspector__rspack_import_18)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_NodeInspector__rspack_import_18[__rspack_import_key];
|
|
196
203
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
197
|
-
var
|
|
204
|
+
var _NodePropertiesPanel__rspack_import_19 = __webpack_require__("./NodePropertiesPanel?a3e8");
|
|
198
205
|
var __rspack_reexport = {};
|
|
199
|
-
for(const __rspack_import_key in
|
|
206
|
+
for(const __rspack_import_key in _NodePropertiesPanel__rspack_import_19)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_NodePropertiesPanel__rspack_import_19[__rspack_import_key];
|
|
200
207
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
201
|
-
var
|
|
208
|
+
var _shared__rspack_import_20 = __webpack_require__("./shared");
|
|
202
209
|
var __rspack_reexport = {};
|
|
203
|
-
for(const __rspack_import_key in
|
|
210
|
+
for(const __rspack_import_key in _shared__rspack_import_20)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_shared__rspack_import_20[__rspack_import_key];
|
|
204
211
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
205
|
-
var
|
|
212
|
+
var _StageNode__rspack_import_21 = __webpack_require__("./StageNode");
|
|
206
213
|
var __rspack_reexport = {};
|
|
207
|
-
for(const __rspack_import_key in
|
|
214
|
+
for(const __rspack_import_key in _StageNode__rspack_import_21)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_StageNode__rspack_import_21[__rspack_import_key];
|
|
208
215
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
209
|
-
var
|
|
216
|
+
var _StickyNoteNode__rspack_import_22 = __webpack_require__("./StickyNoteNode?d2a3");
|
|
210
217
|
var __rspack_reexport = {};
|
|
211
|
-
for(const __rspack_import_key in
|
|
218
|
+
for(const __rspack_import_key in _StickyNoteNode__rspack_import_22)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_StickyNoteNode__rspack_import_22[__rspack_import_key];
|
|
212
219
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
213
|
-
var
|
|
220
|
+
var _TaskIcon__rspack_import_23 = __webpack_require__("./TaskIcon");
|
|
214
221
|
var __rspack_reexport = {};
|
|
215
|
-
for(const __rspack_import_key in
|
|
222
|
+
for(const __rspack_import_key in _TaskIcon__rspack_import_23)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_TaskIcon__rspack_import_23[__rspack_import_key];
|
|
216
223
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
217
|
-
var
|
|
224
|
+
var _Toolbar__rspack_import_24 = __webpack_require__("./Toolbar");
|
|
218
225
|
var __rspack_reexport = {};
|
|
219
|
-
for(const __rspack_import_key in
|
|
226
|
+
for(const __rspack_import_key in _Toolbar__rspack_import_24)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_Toolbar__rspack_import_24[__rspack_import_key];
|
|
220
227
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
221
|
-
var
|
|
228
|
+
var _Toolbox__rspack_import_25 = __webpack_require__("./Toolbox?2740");
|
|
222
229
|
var __rspack_reexport = {};
|
|
223
|
-
for(const __rspack_import_key in
|
|
230
|
+
for(const __rspack_import_key in _Toolbox__rspack_import_25)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_Toolbox__rspack_import_25[__rspack_import_key];
|
|
224
231
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
225
|
-
var
|
|
232
|
+
var _TriggerNode__rspack_import_26 = __webpack_require__("./TriggerNode");
|
|
226
233
|
var __rspack_reexport = {};
|
|
227
|
-
for(const __rspack_import_key in
|
|
234
|
+
for(const __rspack_import_key in _TriggerNode__rspack_import_26)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_TriggerNode__rspack_import_26[__rspack_import_key];
|
|
228
235
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
229
236
|
})();
|
|
230
237
|
for(var __rspack_i in __webpack_exports__)exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
@@ -6,6 +6,7 @@ export * from './ButtonHandle';
|
|
|
6
6
|
export * from './CanvasModeToolbar';
|
|
7
7
|
export * from './CanvasPositionControls';
|
|
8
8
|
export * from './CanvasZoomControls';
|
|
9
|
+
export * from './CaseFlow';
|
|
9
10
|
export * from './CodedAgent';
|
|
10
11
|
export * from './Edges';
|
|
11
12
|
export * from './ExecutionStatusIcon';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/canvas/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/canvas/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC"}
|
|
@@ -6,6 +6,7 @@ export * from "./ButtonHandle/index.js";
|
|
|
6
6
|
export * from "./CanvasModeToolbar/index.js";
|
|
7
7
|
export * from "./CanvasPositionControls.js";
|
|
8
8
|
export * from "./CanvasZoomControls/index.js";
|
|
9
|
+
export * from "./CaseFlow/index.js";
|
|
9
10
|
export * from "./CodedAgent/index.js";
|
|
10
11
|
export * from "./Edges/index.js";
|
|
11
12
|
export * from "./ExecutionStatusIcon/index.js";
|
|
@@ -26,7 +26,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
26
26
|
__webpack_require__.d(__webpack_exports__, {
|
|
27
27
|
messages: ()=>messages
|
|
28
28
|
});
|
|
29
|
-
const messages = JSON.parse("{\"loop-node.add-node\":[\"Add node to loop\"],\"loop-node.iteration.label\":[\"Loop iteration\"],\"loop-node.iteration.next\":[\"Next loop iteration\"],\"loop-node.iteration.previous\":[\"Previous loop iteration\"],\"loop-node.iteration.status\":[[\"label\"],\": \",[\"visibleIndex\"],\" of \",[\"total\"]],\"loop-node.mode.parallel\":[\"Parallel\"],\"loop-node.mode.sequential\":[\"Sequential\"],\"loop-node.title\":[\"Loop\"],\"stage-node.add-first-task\":[\"Add first task\"],\"stage-node.add-task\":[\"Add task\"],\"stage-node.add-task-to-parallel-group-above\":[\"Add task to parallel group above\"],\"stage-node.add-task-to-parallel-group-below\":[\"Add task to parallel group below\"],\"stage-node.adhoc-tasks\":[\"Ad hoc tasks\"],\"stage-node.create-parallel-group-with-task-above\":[\"Create parallel group with task above\"],\"stage-node.create-parallel-group-with-task-below\":[\"Create parallel group with task below\"],\"stage-node.delete-task\":[\"Delete task\"],\"stage-node.event-driven-tasks\":[\"Event-driven tasks\"],\"stage-node.move-down\":[\"Move down\"],\"stage-node.move-up\":[\"Move up\"],\"stage-node.no-tasks\":[\"No tasks\"],\"stage-node.parallel\":[\"Parallel\"],\"stage-node.remove-from-parallel-group\":[\"Remove from parallel group\"],\"stage-node.remove-group-from-stage\":[\"Remove group from stage\"],\"stage-node.replace-task\":[\"Replace task\"],\"stage-node.status.cancelled\":[\"Cancelled\"],\"stage-node.status.completed\":[\"Completed\"],\"stage-node.status.failed\":[\"Failed\"],\"stage-node.status.in-progress\":[\"In progress\"],\"stage-node.status.not-executed\":[\"Not started\"],\"stage-node.status.paused\":[\"Paused\"],\"stage-node.status.terminated\":[\"Terminated\"],\"stage-node.status.warning\":[\"Warning\"],\"stage-node.ungroup-parallel-tasks\":[\"Ungroup parallel tasks\"],\"stage-node.untitled-stage\":[\"Untitled stage\"],\"sticky-note.formatting.bold\":[\"Bold (\",[\"boldShortcut\"],\")\"],\"sticky-note.formatting.bullet-list\":[\"Bullet list\"],\"sticky-note.formatting.italic\":[\"Italic (\",[\"italicShortcut\"],\")\"],\"sticky-note.formatting.numbered-list\":[\"Numbered list\"],\"sticky-note.formatting.strikethrough\":[\"Strikethrough (\",[\"strikethroughShortcut\"],\")\"],\"sticky-note.formatting.toolbar\":[\"Text formatting\"],\"sticky-note.toolbar.color\":[\"Color\"],\"sticky-note.toolbar.delete\":[\"Delete\"],\"sticky-note.toolbar.edit\":[\"Edit\"],\"toolbox.search\":[\"Search\"]}");
|
|
29
|
+
const messages = JSON.parse("{\"loop-node.add-node\":[\"Add node to loop\"],\"loop-node.execution-count.click-to-jump\":[\"Click to jump to a specific iteration\"],\"loop-node.execution-count.click-to-return\":[\"Click to return to individual iteration view\"],\"loop-node.execution-count.jump-to-failed\":[\"Jump to first failed iteration\"],\"loop-node.execution-count.jump-to-iteration\":[\"Jump to iteration \",[\"iterationNumber\"],\" (failed)\"],\"loop-node.execution-count.next-iteration\":[\"Next iteration\"],\"loop-node.execution-count.previous-iteration\":[\"Previous iteration\"],\"loop-node.execution-count.return-to-individual\":[\"Return to individual iteration view\"],\"loop-node.execution-count.show-aggregate\":[\"Show aggregate across all iterations\"],\"loop-node.iteration.label\":[\"Loop iteration\"],\"loop-node.iteration.next\":[\"Next loop iteration\"],\"loop-node.iteration.previous\":[\"Previous loop iteration\"],\"loop-node.iteration.status\":[[\"label\"],\": \",[\"visibleIndex\"],\" of \",[\"total\"]],\"loop-node.mode.parallel\":[\"Parallel\"],\"loop-node.mode.sequential\":[\"Sequential\"],\"loop-node.title\":[\"Loop\"],\"stage-node.add-first-task\":[\"Add first task\"],\"stage-node.add-task\":[\"Add task\"],\"stage-node.add-task-to-parallel-group-above\":[\"Add task to parallel group above\"],\"stage-node.add-task-to-parallel-group-below\":[\"Add task to parallel group below\"],\"stage-node.adhoc-tasks\":[\"Ad hoc tasks\"],\"stage-node.create-parallel-group-with-task-above\":[\"Create parallel group with task above\"],\"stage-node.create-parallel-group-with-task-below\":[\"Create parallel group with task below\"],\"stage-node.delete-task\":[\"Delete task\"],\"stage-node.event-driven-tasks\":[\"Event-driven tasks\"],\"stage-node.move-down\":[\"Move down\"],\"stage-node.move-up\":[\"Move up\"],\"stage-node.no-tasks\":[\"No tasks\"],\"stage-node.parallel\":[\"Parallel\"],\"stage-node.remove-from-parallel-group\":[\"Remove from parallel group\"],\"stage-node.remove-group-from-stage\":[\"Remove group from stage\"],\"stage-node.replace-task\":[\"Replace task\"],\"stage-node.status.cancelled\":[\"Cancelled\"],\"stage-node.status.completed\":[\"Completed\"],\"stage-node.status.failed\":[\"Failed\"],\"stage-node.status.in-progress\":[\"In progress\"],\"stage-node.status.not-executed\":[\"Not started\"],\"stage-node.status.paused\":[\"Paused\"],\"stage-node.status.terminated\":[\"Terminated\"],\"stage-node.status.warning\":[\"Warning\"],\"stage-node.ungroup-parallel-tasks\":[\"Ungroup parallel tasks\"],\"stage-node.untitled-stage\":[\"Untitled stage\"],\"sticky-note.formatting.bold\":[\"Bold (\",[\"boldShortcut\"],\")\"],\"sticky-note.formatting.bullet-list\":[\"Bullet list\"],\"sticky-note.formatting.italic\":[\"Italic (\",[\"italicShortcut\"],\")\"],\"sticky-note.formatting.numbered-list\":[\"Numbered list\"],\"sticky-note.formatting.strikethrough\":[\"Strikethrough (\",[\"strikethroughShortcut\"],\")\"],\"sticky-note.formatting.toolbar\":[\"Text formatting\"],\"sticky-note.toolbar.color\":[\"Color\"],\"sticky-note.toolbar.delete\":[\"Delete\"],\"sticky-note.toolbar.edit\":[\"Edit\"],\"toolbox.search\":[\"Search\"]}");
|
|
30
30
|
exports.messages = __webpack_exports__.messages;
|
|
31
31
|
for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
32
32
|
"messages"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/canvas/locales/en.ts"],"names":[],"mappings":"AAAkB,OAAO,KAAI,EAAC,QAAQ,EAAC,MAAI,cAAc,CAAC;AAAA,eAAO,MAAM,QAAQ,
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/canvas/locales/en.ts"],"names":[],"mappings":"AAAkB,OAAO,KAAI,EAAC,QAAQ,EAAC,MAAI,cAAc,CAAC;AAAA,eAAO,MAAM,QAAQ,EAAomG,QAAQ,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const messages = JSON.parse("{\"loop-node.add-node\":[\"Add node to loop\"],\"loop-node.iteration.label\":[\"Loop iteration\"],\"loop-node.iteration.next\":[\"Next loop iteration\"],\"loop-node.iteration.previous\":[\"Previous loop iteration\"],\"loop-node.iteration.status\":[[\"label\"],\": \",[\"visibleIndex\"],\" of \",[\"total\"]],\"loop-node.mode.parallel\":[\"Parallel\"],\"loop-node.mode.sequential\":[\"Sequential\"],\"loop-node.title\":[\"Loop\"],\"stage-node.add-first-task\":[\"Add first task\"],\"stage-node.add-task\":[\"Add task\"],\"stage-node.add-task-to-parallel-group-above\":[\"Add task to parallel group above\"],\"stage-node.add-task-to-parallel-group-below\":[\"Add task to parallel group below\"],\"stage-node.adhoc-tasks\":[\"Ad hoc tasks\"],\"stage-node.create-parallel-group-with-task-above\":[\"Create parallel group with task above\"],\"stage-node.create-parallel-group-with-task-below\":[\"Create parallel group with task below\"],\"stage-node.delete-task\":[\"Delete task\"],\"stage-node.event-driven-tasks\":[\"Event-driven tasks\"],\"stage-node.move-down\":[\"Move down\"],\"stage-node.move-up\":[\"Move up\"],\"stage-node.no-tasks\":[\"No tasks\"],\"stage-node.parallel\":[\"Parallel\"],\"stage-node.remove-from-parallel-group\":[\"Remove from parallel group\"],\"stage-node.remove-group-from-stage\":[\"Remove group from stage\"],\"stage-node.replace-task\":[\"Replace task\"],\"stage-node.status.cancelled\":[\"Cancelled\"],\"stage-node.status.completed\":[\"Completed\"],\"stage-node.status.failed\":[\"Failed\"],\"stage-node.status.in-progress\":[\"In progress\"],\"stage-node.status.not-executed\":[\"Not started\"],\"stage-node.status.paused\":[\"Paused\"],\"stage-node.status.terminated\":[\"Terminated\"],\"stage-node.status.warning\":[\"Warning\"],\"stage-node.ungroup-parallel-tasks\":[\"Ungroup parallel tasks\"],\"stage-node.untitled-stage\":[\"Untitled stage\"],\"sticky-note.formatting.bold\":[\"Bold (\",[\"boldShortcut\"],\")\"],\"sticky-note.formatting.bullet-list\":[\"Bullet list\"],\"sticky-note.formatting.italic\":[\"Italic (\",[\"italicShortcut\"],\")\"],\"sticky-note.formatting.numbered-list\":[\"Numbered list\"],\"sticky-note.formatting.strikethrough\":[\"Strikethrough (\",[\"strikethroughShortcut\"],\")\"],\"sticky-note.formatting.toolbar\":[\"Text formatting\"],\"sticky-note.toolbar.color\":[\"Color\"],\"sticky-note.toolbar.delete\":[\"Delete\"],\"sticky-note.toolbar.edit\":[\"Edit\"],\"toolbox.search\":[\"Search\"]}");
|
|
1
|
+
const messages = JSON.parse("{\"loop-node.add-node\":[\"Add node to loop\"],\"loop-node.execution-count.click-to-jump\":[\"Click to jump to a specific iteration\"],\"loop-node.execution-count.click-to-return\":[\"Click to return to individual iteration view\"],\"loop-node.execution-count.jump-to-failed\":[\"Jump to first failed iteration\"],\"loop-node.execution-count.jump-to-iteration\":[\"Jump to iteration \",[\"iterationNumber\"],\" (failed)\"],\"loop-node.execution-count.next-iteration\":[\"Next iteration\"],\"loop-node.execution-count.previous-iteration\":[\"Previous iteration\"],\"loop-node.execution-count.return-to-individual\":[\"Return to individual iteration view\"],\"loop-node.execution-count.show-aggregate\":[\"Show aggregate across all iterations\"],\"loop-node.iteration.label\":[\"Loop iteration\"],\"loop-node.iteration.next\":[\"Next loop iteration\"],\"loop-node.iteration.previous\":[\"Previous loop iteration\"],\"loop-node.iteration.status\":[[\"label\"],\": \",[\"visibleIndex\"],\" of \",[\"total\"]],\"loop-node.mode.parallel\":[\"Parallel\"],\"loop-node.mode.sequential\":[\"Sequential\"],\"loop-node.title\":[\"Loop\"],\"stage-node.add-first-task\":[\"Add first task\"],\"stage-node.add-task\":[\"Add task\"],\"stage-node.add-task-to-parallel-group-above\":[\"Add task to parallel group above\"],\"stage-node.add-task-to-parallel-group-below\":[\"Add task to parallel group below\"],\"stage-node.adhoc-tasks\":[\"Ad hoc tasks\"],\"stage-node.create-parallel-group-with-task-above\":[\"Create parallel group with task above\"],\"stage-node.create-parallel-group-with-task-below\":[\"Create parallel group with task below\"],\"stage-node.delete-task\":[\"Delete task\"],\"stage-node.event-driven-tasks\":[\"Event-driven tasks\"],\"stage-node.move-down\":[\"Move down\"],\"stage-node.move-up\":[\"Move up\"],\"stage-node.no-tasks\":[\"No tasks\"],\"stage-node.parallel\":[\"Parallel\"],\"stage-node.remove-from-parallel-group\":[\"Remove from parallel group\"],\"stage-node.remove-group-from-stage\":[\"Remove group from stage\"],\"stage-node.replace-task\":[\"Replace task\"],\"stage-node.status.cancelled\":[\"Cancelled\"],\"stage-node.status.completed\":[\"Completed\"],\"stage-node.status.failed\":[\"Failed\"],\"stage-node.status.in-progress\":[\"In progress\"],\"stage-node.status.not-executed\":[\"Not started\"],\"stage-node.status.paused\":[\"Paused\"],\"stage-node.status.terminated\":[\"Terminated\"],\"stage-node.status.warning\":[\"Warning\"],\"stage-node.ungroup-parallel-tasks\":[\"Ungroup parallel tasks\"],\"stage-node.untitled-stage\":[\"Untitled stage\"],\"sticky-note.formatting.bold\":[\"Bold (\",[\"boldShortcut\"],\")\"],\"sticky-note.formatting.bullet-list\":[\"Bullet list\"],\"sticky-note.formatting.italic\":[\"Italic (\",[\"italicShortcut\"],\")\"],\"sticky-note.formatting.numbered-list\":[\"Numbered list\"],\"sticky-note.formatting.strikethrough\":[\"Strikethrough (\",[\"strikethroughShortcut\"],\")\"],\"sticky-note.formatting.toolbar\":[\"Text formatting\"],\"sticky-note.toolbar.color\":[\"Color\"],\"sticky-note.toolbar.delete\":[\"Delete\"],\"sticky-note.toolbar.edit\":[\"Edit\"],\"toolbox.search\":[\"Search\"]}");
|
|
2
2
|
export { messages };
|