@uipath/apollo-react 4.31.1 → 4.32.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/dist/canvas/components/LoopNode/IterationNavigator.cjs +29 -13
- package/dist/canvas/components/LoopNode/IterationNavigator.d.ts.map +1 -1
- package/dist/canvas/components/LoopNode/IterationNavigator.js +27 -11
- package/dist/canvas/components/LoopNode/LoopNode.cjs +39 -18
- package/dist/canvas/components/LoopNode/LoopNode.d.ts.map +1 -1
- package/dist/canvas/components/LoopNode/LoopNode.js +37 -16
- package/dist/canvas/components/StageNode/StageNodeHeader.cjs +6 -2
- package/dist/canvas/components/StageNode/StageNodeHeader.d.ts.map +1 -1
- package/dist/canvas/components/StageNode/StageNodeHeader.js +6 -2
- package/dist/canvas/components/StageNode/TaskContent.cjs +8 -6
- package/dist/canvas/components/StageNode/TaskContent.d.ts.map +1 -1
- package/dist/canvas/components/StageNode/TaskContent.js +8 -6
- package/dist/canvas/components/StageNode/useExecutionStatusLabel.cjs +89 -0
- package/dist/canvas/components/StageNode/useExecutionStatusLabel.d.ts +3 -0
- package/dist/canvas/components/StageNode/useExecutionStatusLabel.d.ts.map +1 -0
- package/dist/canvas/components/StageNode/useExecutionStatusLabel.js +55 -0
- package/dist/canvas/components/StickyNoteNode/StickyNoteNode.cjs +17 -5
- package/dist/canvas/components/StickyNoteNode/StickyNoteNode.d.ts.map +1 -1
- package/dist/canvas/components/StickyNoteNode/StickyNoteNode.js +15 -3
- 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/i18n/useSafeLingui.cjs +12 -1
- package/dist/i18n/useSafeLingui.d.ts.map +1 -1
- package/dist/i18n/useSafeLingui.js +12 -1
- package/package.json +3 -3
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
13
|
+
})();
|
|
14
|
+
(()=>{
|
|
15
|
+
__webpack_require__.r = (exports1)=>{
|
|
16
|
+
if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
17
|
+
value: 'Module'
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
20
|
+
value: true
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
})();
|
|
24
|
+
var __webpack_exports__ = {};
|
|
25
|
+
__webpack_require__.r(__webpack_exports__);
|
|
26
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
27
|
+
useExecutionStatusLabel: ()=>useExecutionStatusLabel
|
|
28
|
+
});
|
|
29
|
+
const external_react_namespaceObject = require("react");
|
|
30
|
+
const index_cjs_namespaceObject = require("../../../i18n/index.cjs");
|
|
31
|
+
function useExecutionStatusLabel() {
|
|
32
|
+
const { _ } = (0, index_cjs_namespaceObject.useSafeLingui)();
|
|
33
|
+
return (0, external_react_namespaceObject.useCallback)((status)=>{
|
|
34
|
+
switch(status){
|
|
35
|
+
case 'InProgress':
|
|
36
|
+
return _({
|
|
37
|
+
id: 'stage-node.status.in-progress',
|
|
38
|
+
message: 'In progress'
|
|
39
|
+
});
|
|
40
|
+
case 'Completed':
|
|
41
|
+
return _({
|
|
42
|
+
id: 'stage-node.status.completed',
|
|
43
|
+
message: 'Completed'
|
|
44
|
+
});
|
|
45
|
+
case 'Paused':
|
|
46
|
+
return _({
|
|
47
|
+
id: 'stage-node.status.paused',
|
|
48
|
+
message: 'Paused'
|
|
49
|
+
});
|
|
50
|
+
case 'Failed':
|
|
51
|
+
return _({
|
|
52
|
+
id: 'stage-node.status.failed',
|
|
53
|
+
message: 'Failed'
|
|
54
|
+
});
|
|
55
|
+
case 'Cancelled':
|
|
56
|
+
case 'UserCancelled':
|
|
57
|
+
return _({
|
|
58
|
+
id: 'stage-node.status.cancelled',
|
|
59
|
+
message: 'Cancelled'
|
|
60
|
+
});
|
|
61
|
+
case 'Terminated':
|
|
62
|
+
return _({
|
|
63
|
+
id: 'stage-node.status.terminated',
|
|
64
|
+
message: 'Terminated'
|
|
65
|
+
});
|
|
66
|
+
case 'NotExecuted':
|
|
67
|
+
return _({
|
|
68
|
+
id: 'stage-node.status.not-executed',
|
|
69
|
+
message: 'Not started'
|
|
70
|
+
});
|
|
71
|
+
case 'Warning':
|
|
72
|
+
return _({
|
|
73
|
+
id: 'stage-node.status.warning',
|
|
74
|
+
message: 'Warning'
|
|
75
|
+
});
|
|
76
|
+
default:
|
|
77
|
+
return '';
|
|
78
|
+
}
|
|
79
|
+
}, [
|
|
80
|
+
_
|
|
81
|
+
]);
|
|
82
|
+
}
|
|
83
|
+
exports.useExecutionStatusLabel = __webpack_exports__.useExecutionStatusLabel;
|
|
84
|
+
for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
85
|
+
"useExecutionStatusLabel"
|
|
86
|
+
].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
87
|
+
Object.defineProperty(exports, '__esModule', {
|
|
88
|
+
value: true
|
|
89
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useExecutionStatusLabel.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StageNode/useExecutionStatusLabel.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAStE,wBAAgB,uBAAuB,aAI1B,WAAW,GAAG,eAAe,GAAG,SAAS,KAAG,MAAM,CAyB9D"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { useCallback } from "react";
|
|
2
|
+
import { useSafeLingui } from "../../../i18n/index.js";
|
|
3
|
+
function useExecutionStatusLabel() {
|
|
4
|
+
const { _ } = useSafeLingui();
|
|
5
|
+
return useCallback((status)=>{
|
|
6
|
+
switch(status){
|
|
7
|
+
case 'InProgress':
|
|
8
|
+
return _({
|
|
9
|
+
id: 'stage-node.status.in-progress',
|
|
10
|
+
message: 'In progress'
|
|
11
|
+
});
|
|
12
|
+
case 'Completed':
|
|
13
|
+
return _({
|
|
14
|
+
id: 'stage-node.status.completed',
|
|
15
|
+
message: 'Completed'
|
|
16
|
+
});
|
|
17
|
+
case 'Paused':
|
|
18
|
+
return _({
|
|
19
|
+
id: 'stage-node.status.paused',
|
|
20
|
+
message: 'Paused'
|
|
21
|
+
});
|
|
22
|
+
case 'Failed':
|
|
23
|
+
return _({
|
|
24
|
+
id: 'stage-node.status.failed',
|
|
25
|
+
message: 'Failed'
|
|
26
|
+
});
|
|
27
|
+
case 'Cancelled':
|
|
28
|
+
case 'UserCancelled':
|
|
29
|
+
return _({
|
|
30
|
+
id: 'stage-node.status.cancelled',
|
|
31
|
+
message: 'Cancelled'
|
|
32
|
+
});
|
|
33
|
+
case 'Terminated':
|
|
34
|
+
return _({
|
|
35
|
+
id: 'stage-node.status.terminated',
|
|
36
|
+
message: 'Terminated'
|
|
37
|
+
});
|
|
38
|
+
case 'NotExecuted':
|
|
39
|
+
return _({
|
|
40
|
+
id: 'stage-node.status.not-executed',
|
|
41
|
+
message: 'Not started'
|
|
42
|
+
});
|
|
43
|
+
case 'Warning':
|
|
44
|
+
return _({
|
|
45
|
+
id: 'stage-node.status.warning',
|
|
46
|
+
message: 'Warning'
|
|
47
|
+
});
|
|
48
|
+
default:
|
|
49
|
+
return '';
|
|
50
|
+
}
|
|
51
|
+
}, [
|
|
52
|
+
_
|
|
53
|
+
]);
|
|
54
|
+
}
|
|
55
|
+
export { useExecutionStatusLabel };
|
|
@@ -47,9 +47,10 @@ const external_remark_breaks_namespaceObject = require("remark-breaks");
|
|
|
47
47
|
var external_remark_breaks_default = /*#__PURE__*/ __webpack_require__.n(external_remark_breaks_namespaceObject);
|
|
48
48
|
const external_remark_gfm_namespaceObject = require("remark-gfm");
|
|
49
49
|
var external_remark_gfm_default = /*#__PURE__*/ __webpack_require__.n(external_remark_gfm_namespaceObject);
|
|
50
|
+
const index_cjs_namespaceObject = require("../../../i18n/index.cjs");
|
|
50
51
|
const external_constants_cjs_namespaceObject = require("../../constants.cjs");
|
|
51
52
|
const external_NodeViewportOverlay_cjs_namespaceObject = require("../NodeViewportOverlay.cjs");
|
|
52
|
-
const
|
|
53
|
+
const external_Toolbar_index_cjs_namespaceObject = require("../Toolbar/index.cjs");
|
|
53
54
|
const external_FormattingToolbar_cjs_namespaceObject = require("./FormattingToolbar.cjs");
|
|
54
55
|
const external_markdown_formatting_index_cjs_namespaceObject = require("./markdown-formatting/index.cjs");
|
|
55
56
|
const external_StickyNoteNode_styles_cjs_namespaceObject = require("./StickyNoteNode.styles.cjs");
|
|
@@ -60,6 +61,7 @@ const external_useScrollCapture_cjs_namespaceObject = require("./useScrollCaptur
|
|
|
60
61
|
const minWidth = 8 * external_constants_cjs_namespaceObject.GRID_SPACING;
|
|
61
62
|
const minHeight = 8 * external_constants_cjs_namespaceObject.GRID_SPACING;
|
|
62
63
|
const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = 'Add text', renderPlaceholderOnSelect = false, readOnly = false, onContentChange, onColorChange, onResize })=>{
|
|
64
|
+
const { _ } = (0, index_cjs_namespaceObject.useSafeLingui)();
|
|
63
65
|
const { updateNodeData, deleteElements } = (0, react_cjs_namespaceObject.useReactFlow)();
|
|
64
66
|
const [isEditing, setIsEditing] = (0, external_react_namespaceObject.useState)(!readOnly && (data.autoFocus ?? false));
|
|
65
67
|
const [isResizing, setIsResizing] = (0, external_react_namespaceObject.useState)(false);
|
|
@@ -264,7 +266,10 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
|
|
|
264
266
|
icon: "trash",
|
|
265
267
|
size: 14
|
|
266
268
|
}),
|
|
267
|
-
label:
|
|
269
|
+
label: _({
|
|
270
|
+
id: 'sticky-note.toolbar.delete',
|
|
271
|
+
message: 'Delete'
|
|
272
|
+
}),
|
|
268
273
|
onAction: handleDelete
|
|
269
274
|
},
|
|
270
275
|
{
|
|
@@ -273,7 +278,10 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
|
|
|
273
278
|
icon: "pencil",
|
|
274
279
|
size: 14
|
|
275
280
|
}),
|
|
276
|
-
label:
|
|
281
|
+
label: _({
|
|
282
|
+
id: 'sticky-note.toolbar.edit',
|
|
283
|
+
message: 'Edit'
|
|
284
|
+
}),
|
|
277
285
|
onAction: handleEditClick
|
|
278
286
|
},
|
|
279
287
|
{
|
|
@@ -291,7 +299,10 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
|
|
|
291
299
|
border: '1px solid transparent'
|
|
292
300
|
}
|
|
293
301
|
}),
|
|
294
|
-
label:
|
|
302
|
+
label: _({
|
|
303
|
+
id: 'sticky-note.toolbar.color',
|
|
304
|
+
message: 'Color'
|
|
305
|
+
}),
|
|
295
306
|
onAction: handleToggleColorPicker
|
|
296
307
|
}
|
|
297
308
|
];
|
|
@@ -303,6 +314,7 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
|
|
|
303
314
|
align: 'center'
|
|
304
315
|
};
|
|
305
316
|
}, [
|
|
317
|
+
_,
|
|
306
318
|
handleEditClick,
|
|
307
319
|
handleToggleColorPicker,
|
|
308
320
|
color,
|
|
@@ -440,7 +452,7 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
|
|
|
440
452
|
})
|
|
441
453
|
]
|
|
442
454
|
}),
|
|
443
|
-
!readOnly && selected && !dragging && !isResizing && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(
|
|
455
|
+
!readOnly && selected && !dragging && !isResizing && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_Toolbar_index_cjs_namespaceObject.NodeToolbar, {
|
|
444
456
|
nodeId: id,
|
|
445
457
|
config: toolbarConfig,
|
|
446
458
|
expanded: true,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StickyNoteNode.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StickyNoteNode/StickyNoteNode.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;
|
|
1
|
+
{"version":3,"file":"StickyNoteNode.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StickyNoteNode/StickyNoteNode.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAiC1E,OAAO,KAAK,EAAE,eAAe,EAAE,cAAc,EAAiB,MAAM,wBAAwB,CAAC;AAM7F,MAAM,WAAW,mBAAoB,SAAQ,SAAS;IACpD,IAAI,EAAE,cAAc,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,yBAAyB,CAAC,EAAE,OAAO,CAAC;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IAC5C,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,eAAe,KAAK,IAAI,CAAC;IACjD,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;CACpD;AAkaD,eAAO,MAAM,cAAc,sKAlZxB,mBAAmB,6CAkZqC,CAAC"}
|
|
@@ -7,6 +7,7 @@ import { memo, useCallback, useEffect, useMemo, useRef, useState } from "react";
|
|
|
7
7
|
import react_markdown from "react-markdown";
|
|
8
8
|
import remark_breaks from "remark-breaks";
|
|
9
9
|
import remark_gfm from "remark-gfm";
|
|
10
|
+
import { useSafeLingui } from "../../../i18n/index.js";
|
|
10
11
|
import { GRID_SPACING } from "../../constants.js";
|
|
11
12
|
import { NodeViewportOverlay } from "../NodeViewportOverlay.js";
|
|
12
13
|
import { NodeToolbar } from "../Toolbar/index.js";
|
|
@@ -20,6 +21,7 @@ import { useScrollCapture } from "./useScrollCapture.js";
|
|
|
20
21
|
const minWidth = 8 * GRID_SPACING;
|
|
21
22
|
const minHeight = 8 * GRID_SPACING;
|
|
22
23
|
const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = 'Add text', renderPlaceholderOnSelect = false, readOnly = false, onContentChange, onColorChange, onResize })=>{
|
|
24
|
+
const { _ } = useSafeLingui();
|
|
23
25
|
const { updateNodeData, deleteElements } = useReactFlow();
|
|
24
26
|
const [isEditing, setIsEditing] = useState(!readOnly && (data.autoFocus ?? false));
|
|
25
27
|
const [isResizing, setIsResizing] = useState(false);
|
|
@@ -224,7 +226,10 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
|
|
|
224
226
|
icon: "trash",
|
|
225
227
|
size: 14
|
|
226
228
|
}),
|
|
227
|
-
label:
|
|
229
|
+
label: _({
|
|
230
|
+
id: 'sticky-note.toolbar.delete',
|
|
231
|
+
message: 'Delete'
|
|
232
|
+
}),
|
|
228
233
|
onAction: handleDelete
|
|
229
234
|
},
|
|
230
235
|
{
|
|
@@ -233,7 +238,10 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
|
|
|
233
238
|
icon: "pencil",
|
|
234
239
|
size: 14
|
|
235
240
|
}),
|
|
236
|
-
label:
|
|
241
|
+
label: _({
|
|
242
|
+
id: 'sticky-note.toolbar.edit',
|
|
243
|
+
message: 'Edit'
|
|
244
|
+
}),
|
|
237
245
|
onAction: handleEditClick
|
|
238
246
|
},
|
|
239
247
|
{
|
|
@@ -251,7 +259,10 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
|
|
|
251
259
|
border: '1px solid transparent'
|
|
252
260
|
}
|
|
253
261
|
}),
|
|
254
|
-
label:
|
|
262
|
+
label: _({
|
|
263
|
+
id: 'sticky-note.toolbar.color',
|
|
264
|
+
message: 'Color'
|
|
265
|
+
}),
|
|
255
266
|
onAction: handleToggleColorPicker
|
|
256
267
|
}
|
|
257
268
|
];
|
|
@@ -263,6 +274,7 @@ const StickyNoteNodeComponent = ({ id, data, selected, dragging, placeholder = '
|
|
|
263
274
|
align: 'center'
|
|
264
275
|
};
|
|
265
276
|
}, [
|
|
277
|
+
_,
|
|
266
278
|
handleEditClick,
|
|
267
279
|
handleToggleColorPicker,
|
|
268
280
|
color,
|
|
@@ -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("{\"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.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\"],\"toolbox.search\":[\"Search\"]}");
|
|
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\"]}");
|
|
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,EAA26E,QAAQ,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const messages = JSON.parse("{\"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.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\"],\"toolbox.search\":[\"Search\"]}");
|
|
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\"]}");
|
|
2
2
|
export { messages };
|