@uipath/apollo-react 3.61.1 → 3.61.3-pr418.5a89690
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/FloatingCanvasPanel/FloatingCanvasPanel.cjs +2 -2
- package/dist/canvas/components/FloatingCanvasPanel/FloatingCanvasPanel.js +2 -2
- package/dist/canvas/components/StickyNoteNode/StickyNoteNode.styles.cjs +31 -0
- package/dist/canvas/components/StickyNoteNode/StickyNoteNode.styles.d.ts.map +1 -1
- package/dist/canvas/components/StickyNoteNode/StickyNoteNode.styles.js +31 -0
- package/dist/canvas/icons/CaseManagementProject.cjs +31 -18
- package/dist/canvas/icons/CaseManagementProject.d.ts.map +1 -1
- package/dist/canvas/icons/CaseManagementProject.js +31 -18
- package/dist/canvas/storybook-utils/manifests/node-definitions.cjs +4 -0
- package/dist/canvas/storybook-utils/manifests/node-definitions.d.ts.map +1 -1
- package/dist/canvas/storybook-utils/manifests/node-definitions.js +4 -0
- package/package.json +1 -1
|
@@ -120,7 +120,7 @@ function FloatingCanvasPanel({ open = true, nodeId, anchorRect, placement = 'rig
|
|
|
120
120
|
style: {
|
|
121
121
|
position: 'fixed',
|
|
122
122
|
...screenPosition,
|
|
123
|
-
zIndex:
|
|
123
|
+
zIndex: 1100,
|
|
124
124
|
pointerEvents: 'auto'
|
|
125
125
|
},
|
|
126
126
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_PanelChrome_cjs_namespaceObject.PanelChrome, {
|
|
@@ -147,7 +147,7 @@ function FloatingCanvasPanel({ open = true, nodeId, anchorRect, placement = 'rig
|
|
|
147
147
|
position: isPinned ? 'fixed' : 'absolute',
|
|
148
148
|
right: isPinned ? 0 : void 0,
|
|
149
149
|
top: isPinned ? 0 : void 0,
|
|
150
|
-
zIndex:
|
|
150
|
+
zIndex: 1100,
|
|
151
151
|
pointerEvents: 'auto'
|
|
152
152
|
},
|
|
153
153
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_PanelChrome_cjs_namespaceObject.PanelChrome, {
|
|
@@ -82,7 +82,7 @@ function FloatingCanvasPanel({ open = true, nodeId, anchorRect, placement = 'rig
|
|
|
82
82
|
style: {
|
|
83
83
|
position: 'fixed',
|
|
84
84
|
...screenPosition,
|
|
85
|
-
zIndex:
|
|
85
|
+
zIndex: 1100,
|
|
86
86
|
pointerEvents: 'auto'
|
|
87
87
|
},
|
|
88
88
|
children: /*#__PURE__*/ jsx(PanelChrome, {
|
|
@@ -109,7 +109,7 @@ function FloatingCanvasPanel({ open = true, nodeId, anchorRect, placement = 'rig
|
|
|
109
109
|
position: isPinned ? 'fixed' : 'absolute',
|
|
110
110
|
right: isPinned ? 0 : void 0,
|
|
111
111
|
top: isPinned ? 0 : void 0,
|
|
112
|
-
zIndex:
|
|
112
|
+
zIndex: 1100,
|
|
113
113
|
pointerEvents: 'auto'
|
|
114
114
|
},
|
|
115
115
|
children: /*#__PURE__*/ jsx(PanelChrome, {
|
|
@@ -181,6 +181,14 @@ const StickyNoteMarkdown = styled_default().div`
|
|
|
181
181
|
padding-left: 20px;
|
|
182
182
|
}
|
|
183
183
|
|
|
184
|
+
ul {
|
|
185
|
+
list-style: disc;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
ol {
|
|
189
|
+
list-style: decimal;
|
|
190
|
+
}
|
|
191
|
+
|
|
184
192
|
li {
|
|
185
193
|
margin: 4px 0;
|
|
186
194
|
}
|
|
@@ -218,6 +226,29 @@ const StickyNoteMarkdown = styled_default().div`
|
|
|
218
226
|
font-size: 1.1em;
|
|
219
227
|
}
|
|
220
228
|
|
|
229
|
+
table {
|
|
230
|
+
border-collapse: collapse;
|
|
231
|
+
width: 100%;
|
|
232
|
+
margin: 8px 0;
|
|
233
|
+
font-size: 0.9em;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
th,
|
|
237
|
+
td {
|
|
238
|
+
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
239
|
+
padding: 6px 10px;
|
|
240
|
+
text-align: left;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
th {
|
|
244
|
+
font-weight: 600;
|
|
245
|
+
background: rgba(0, 0, 0, 0.05);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
tr:nth-of-type(even) {
|
|
249
|
+
background: rgba(0, 0, 0, 0.02);
|
|
250
|
+
}
|
|
251
|
+
|
|
221
252
|
blockquote {
|
|
222
253
|
border-left: 3px solid rgba(0, 0, 0, 0.2);
|
|
223
254
|
padding-left: 12px;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StickyNoteNode.styles.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StickyNoteNode/StickyNoteNode.styles.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,8BAA8B,MAAM,CAAC;AA4BlD,eAAO,MAAM,sBAAsB,MAAM,CAAC;AAE1C,eAAO,MAAM,sBAAsB,2CAUlC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;yGAI7B,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;iBACjB,MAAM;qBACF,MAAM;eACZ,OAAO;eACP,OAAO;yGAqBnB,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;eAAgC,OAAO;2HAoBrE,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;
|
|
1
|
+
{"version":3,"file":"StickyNoteNode.styles.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/StickyNoteNode/StickyNoteNode.styles.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,8BAA8B,MAAM,CAAC;AA4BlD,eAAO,MAAM,sBAAsB,MAAM,CAAC;AAE1C,eAAO,MAAM,sBAAsB,2CAUlC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;yGAI7B,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;iBACjB,MAAM;qBACF,MAAM;eACZ,OAAO;eACP,OAAO;yGAqBnB,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;eAAgC,OAAO;2HAoBrE,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;yGA4H9B,CAAC;AAEF,eAAO,MAAM,YAAY;;;;eAA2B,OAAO;aAAW,MAAM;yGAW3E,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;eAA2B,OAAO;yGA+BjE,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;eAA2B,OAAO;yGA+BpE,CAAC;AAEF,eAAO,MAAM,gBAAgB;;UAa5B,CAAC;AAEF,eAAO,MAAM,WAAW;;;;WAA0B,MAAM;gBAAc,OAAO;qHAkB5E,CAAC"}
|
|
@@ -132,6 +132,14 @@ const StickyNoteMarkdown = styled.div`
|
|
|
132
132
|
padding-left: 20px;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
+
ul {
|
|
136
|
+
list-style: disc;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
ol {
|
|
140
|
+
list-style: decimal;
|
|
141
|
+
}
|
|
142
|
+
|
|
135
143
|
li {
|
|
136
144
|
margin: 4px 0;
|
|
137
145
|
}
|
|
@@ -169,6 +177,29 @@ const StickyNoteMarkdown = styled.div`
|
|
|
169
177
|
font-size: 1.1em;
|
|
170
178
|
}
|
|
171
179
|
|
|
180
|
+
table {
|
|
181
|
+
border-collapse: collapse;
|
|
182
|
+
width: 100%;
|
|
183
|
+
margin: 8px 0;
|
|
184
|
+
font-size: 0.9em;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
th,
|
|
188
|
+
td {
|
|
189
|
+
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
190
|
+
padding: 6px 10px;
|
|
191
|
+
text-align: left;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
th {
|
|
195
|
+
font-weight: 600;
|
|
196
|
+
background: rgba(0, 0, 0, 0.05);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
tr:nth-of-type(even) {
|
|
200
|
+
background: rgba(0, 0, 0, 0.02);
|
|
201
|
+
}
|
|
202
|
+
|
|
172
203
|
blockquote {
|
|
173
204
|
border-left: 3px solid rgba(0, 0, 0, 0.2);
|
|
174
205
|
padding-left: 12px;
|
|
@@ -28,36 +28,49 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
28
28
|
});
|
|
29
29
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
30
30
|
const CaseManagementProject = ({ w = 22, h = 22 })=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("svg", {
|
|
31
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
32
|
-
id: "case-management-project",
|
|
33
31
|
width: w,
|
|
34
32
|
height: h,
|
|
33
|
+
viewBox: "0 0 48 48",
|
|
35
34
|
fill: "none",
|
|
36
|
-
|
|
35
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
36
|
children: [
|
|
38
37
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
clipRule: "evenodd",
|
|
42
|
-
d: "M1.09 3.818 3.075 1.53c.242-.279.593-.44.962-.44h7.928c.37 0 .72.161.962.44l1.983 2.288v9.818c0 .703-.57 1.273-1.273 1.273H2.364c-.703 0-1.273-.57-1.273-1.273zm2.946-1.636h7.928c.053 0 .103.023.138.063l.89 1.028H3.008l.891-1.028a.18.18 0 0 1 .138-.063m9.782 2.182H2.182v9.272c0 .1.081.182.182.182h11.272c.1 0 .182-.081.182-.182z"
|
|
38
|
+
d: "M0 6.66667C0 2.98477 2.98477 0 6.66667 0H41.3333C45.0152 0 48 2.98477 48 6.66667V41.3333C48 45.0152 45.0152 48 41.3333 48H6.66667C2.98477 48 0 45.0152 0 41.3333V6.66667Z",
|
|
39
|
+
fill: "url(#paint0_linear_16383_103120)"
|
|
43
40
|
}),
|
|
44
41
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
|
|
45
|
-
|
|
46
|
-
|
|
42
|
+
d: "M28.466 19.5C27.643 16.237 25.952 14 24 14C21.239 14 19 18.477 19 24C19 29.523 21.239 34 24 34C24.342 34 24.677 33.931 25 33.8",
|
|
43
|
+
stroke: "#273139",
|
|
44
|
+
"stroke-width": "2",
|
|
45
|
+
"stroke-linecap": "round",
|
|
46
|
+
"stroke-linejoin": "round"
|
|
47
47
|
}),
|
|
48
48
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
d: "M24 18C26.5294 18 28.8808 18.4476 30.749 19.2197C32.5787 19.976 34.115 21.1186 34.7266 22.624C34.9341 23.1355 34.6881 23.7189 34.1768 23.9268C33.6651 24.1346 33.0809 23.8877 32.873 23.376C32.5574 22.5996 31.6129 21.7414 29.9844 21.0684C28.3939 20.4111 26.3085 20 24 20C21.3601 20 19.0195 20.5376 17.376 21.3594C15.6728 22.2111 15 23.2024 15 24C15 24.7976 15.6728 25.7889 17.376 26.6406C19.0195 27.4624 21.3601 28 24 28C24.6959 28 25.3706 27.9607 26.0176 27.8906C26.0783 28.5962 26.3009 29.2553 26.6494 29.8301C25.7983 29.9406 24.9105 30 24 30C21.1169 30 18.4572 29.4176 16.4814 28.4297C14.5656 27.4717 13 25.9633 13 24C13 22.0367 14.5656 20.5283 16.4814 19.5703C18.4572 18.5824 21.1169 18 24 18Z",
|
|
50
|
+
fill: "#273139"
|
|
51
51
|
}),
|
|
52
52
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
d: "M4.833 12.45a.83.83 0 0 1-.588-.23.73.73 0 0 1-.245-.554V7.353q0-.324.245-.554a.83.83 0 0 1 .588-.23H6.5v-.785q0-.323.245-.554A.83.83 0 0 1 7.333 5H9q.344 0 .589.23a.73.73 0 0 1 .244.554v.784H11.5q.344 0 .588.23a.73.73 0 0 1 .245.555v4.313q0 .323-.245.554a.83.83 0 0 1-.588.23zm0-.784H11.5V7.353H4.833zm2.5-5.098H9v-.784H7.333z"
|
|
53
|
+
d: "M29.8761 24.4344C30.0904 23.8552 30.9096 23.8552 31.1239 24.4344L31.7834 26.2166L33.5656 26.8761C34.1448 27.0904 34.1448 27.9096 33.5656 28.1239L31.7834 28.7834L31.1239 30.5656C30.9096 31.1448 30.0904 31.1448 29.8761 30.5656L29.2166 28.7834L27.4344 28.1239C26.8552 27.9096 26.8552 27.0904 27.4344 26.8761L29.2166 26.2166L29.8761 24.4344Z",
|
|
54
|
+
fill: "#0067DF"
|
|
56
55
|
}),
|
|
57
|
-
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
56
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("defs", {
|
|
57
|
+
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("linearGradient", {
|
|
58
|
+
id: "paint0_linear_16383_103120",
|
|
59
|
+
x1: "1.97746",
|
|
60
|
+
y1: "2.64412",
|
|
61
|
+
x2: "46.3559",
|
|
62
|
+
y2: "47.0225",
|
|
63
|
+
gradientUnits: "userSpaceOnUse",
|
|
64
|
+
children: [
|
|
65
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("stop", {
|
|
66
|
+
"stop-color": "#FFE0FF"
|
|
67
|
+
}),
|
|
68
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("stop", {
|
|
69
|
+
offset: "1",
|
|
70
|
+
"stop-color": "#CFD9FF"
|
|
71
|
+
})
|
|
72
|
+
]
|
|
73
|
+
})
|
|
61
74
|
})
|
|
62
75
|
]
|
|
63
76
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseManagementProject.d.ts","sourceRoot":"","sources":["../../../src/canvas/icons/CaseManagementProject.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,GAAI,WAGnC;IACD,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACpB,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACrB,
|
|
1
|
+
{"version":3,"file":"CaseManagementProject.d.ts","sourceRoot":"","sources":["../../../src/canvas/icons/CaseManagementProject.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,GAAI,WAGnC;IACD,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACpB,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACrB,4CAaA,CAAC"}
|
|
@@ -1,35 +1,48 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
const CaseManagementProject = ({ w = 22, h = 22 })=>/*#__PURE__*/ jsxs("svg", {
|
|
3
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
-
id: "case-management-project",
|
|
5
3
|
width: w,
|
|
6
4
|
height: h,
|
|
5
|
+
viewBox: "0 0 48 48",
|
|
7
6
|
fill: "none",
|
|
8
|
-
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
8
|
children: [
|
|
10
9
|
/*#__PURE__*/ jsx("path", {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
clipRule: "evenodd",
|
|
14
|
-
d: "M1.09 3.818 3.075 1.53c.242-.279.593-.44.962-.44h7.928c.37 0 .72.161.962.44l1.983 2.288v9.818c0 .703-.57 1.273-1.273 1.273H2.364c-.703 0-1.273-.57-1.273-1.273zm2.946-1.636h7.928c.053 0 .103.023.138.063l.89 1.028H3.008l.891-1.028a.18.18 0 0 1 .138-.063m9.782 2.182H2.182v9.272c0 .1.081.182.182.182h11.272c.1 0 .182-.081.182-.182z"
|
|
10
|
+
d: "M0 6.66667C0 2.98477 2.98477 0 6.66667 0H41.3333C45.0152 0 48 2.98477 48 6.66667V41.3333C48 45.0152 45.0152 48 41.3333 48H6.66667C2.98477 48 0 45.0152 0 41.3333V6.66667Z",
|
|
11
|
+
fill: "url(#paint0_linear_16383_103120)"
|
|
15
12
|
}),
|
|
16
13
|
/*#__PURE__*/ jsx("path", {
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
d: "M28.466 19.5C27.643 16.237 25.952 14 24 14C21.239 14 19 18.477 19 24C19 29.523 21.239 34 24 34C24.342 34 24.677 33.931 25 33.8",
|
|
15
|
+
stroke: "#273139",
|
|
16
|
+
"stroke-width": "2",
|
|
17
|
+
"stroke-linecap": "round",
|
|
18
|
+
"stroke-linejoin": "round"
|
|
19
19
|
}),
|
|
20
20
|
/*#__PURE__*/ jsx("path", {
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
d: "M24 18C26.5294 18 28.8808 18.4476 30.749 19.2197C32.5787 19.976 34.115 21.1186 34.7266 22.624C34.9341 23.1355 34.6881 23.7189 34.1768 23.9268C33.6651 24.1346 33.0809 23.8877 32.873 23.376C32.5574 22.5996 31.6129 21.7414 29.9844 21.0684C28.3939 20.4111 26.3085 20 24 20C21.3601 20 19.0195 20.5376 17.376 21.3594C15.6728 22.2111 15 23.2024 15 24C15 24.7976 15.6728 25.7889 17.376 26.6406C19.0195 27.4624 21.3601 28 24 28C24.6959 28 25.3706 27.9607 26.0176 27.8906C26.0783 28.5962 26.3009 29.2553 26.6494 29.8301C25.7983 29.9406 24.9105 30 24 30C21.1169 30 18.4572 29.4176 16.4814 28.4297C14.5656 27.4717 13 25.9633 13 24C13 22.0367 14.5656 20.5283 16.4814 19.5703C18.4572 18.5824 21.1169 18 24 18Z",
|
|
22
|
+
fill: "#273139"
|
|
23
23
|
}),
|
|
24
24
|
/*#__PURE__*/ jsx("path", {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
d: "M4.833 12.45a.83.83 0 0 1-.588-.23.73.73 0 0 1-.245-.554V7.353q0-.324.245-.554a.83.83 0 0 1 .588-.23H6.5v-.785q0-.323.245-.554A.83.83 0 0 1 7.333 5H9q.344 0 .589.23a.73.73 0 0 1 .244.554v.784H11.5q.344 0 .588.23a.73.73 0 0 1 .245.555v4.313q0 .323-.245.554a.83.83 0 0 1-.588.23zm0-.784H11.5V7.353H4.833zm2.5-5.098H9v-.784H7.333z"
|
|
25
|
+
d: "M29.8761 24.4344C30.0904 23.8552 30.9096 23.8552 31.1239 24.4344L31.7834 26.2166L33.5656 26.8761C34.1448 27.0904 34.1448 27.9096 33.5656 28.1239L31.7834 28.7834L31.1239 30.5656C30.9096 31.1448 30.0904 31.1448 29.8761 30.5656L29.2166 28.7834L27.4344 28.1239C26.8552 27.9096 26.8552 27.0904 27.4344 26.8761L29.2166 26.2166L29.8761 24.4344Z",
|
|
26
|
+
fill: "#0067DF"
|
|
28
27
|
}),
|
|
29
|
-
/*#__PURE__*/ jsx("
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
28
|
+
/*#__PURE__*/ jsx("defs", {
|
|
29
|
+
children: /*#__PURE__*/ jsxs("linearGradient", {
|
|
30
|
+
id: "paint0_linear_16383_103120",
|
|
31
|
+
x1: "1.97746",
|
|
32
|
+
y1: "2.64412",
|
|
33
|
+
x2: "46.3559",
|
|
34
|
+
y2: "47.0225",
|
|
35
|
+
gradientUnits: "userSpaceOnUse",
|
|
36
|
+
children: [
|
|
37
|
+
/*#__PURE__*/ jsx("stop", {
|
|
38
|
+
"stop-color": "#FFE0FF"
|
|
39
|
+
}),
|
|
40
|
+
/*#__PURE__*/ jsx("stop", {
|
|
41
|
+
offset: "1",
|
|
42
|
+
"stop-color": "#CFD9FF"
|
|
43
|
+
})
|
|
44
|
+
]
|
|
45
|
+
})
|
|
33
46
|
})
|
|
34
47
|
]
|
|
35
48
|
});
|
|
@@ -94,6 +94,7 @@ const allNodeManifests = [
|
|
|
94
94
|
'loop'
|
|
95
95
|
],
|
|
96
96
|
sortOrder: 20,
|
|
97
|
+
description: 'Pause workflow execution for a specified duration before continuing to the next step',
|
|
97
98
|
display: {
|
|
98
99
|
label: 'Delay',
|
|
99
100
|
icon: 'timer'
|
|
@@ -160,6 +161,7 @@ const allNodeManifests = [
|
|
|
160
161
|
'switch'
|
|
161
162
|
],
|
|
162
163
|
sortOrder: 1,
|
|
164
|
+
description: 'Evaluate a condition and branch the workflow into true or false paths',
|
|
163
165
|
display: {
|
|
164
166
|
label: 'Decision',
|
|
165
167
|
icon: 'decision'
|
|
@@ -779,6 +781,7 @@ const allNodeManifests = [
|
|
|
779
781
|
'agent'
|
|
780
782
|
],
|
|
781
783
|
sortOrder: 1,
|
|
784
|
+
description: 'Autonomous AI agent that orchestrates tools, memory, and escalations to complete complex tasks',
|
|
782
785
|
display: {
|
|
783
786
|
label: 'Agent',
|
|
784
787
|
icon: 'agent',
|
|
@@ -1046,6 +1049,7 @@ const allNodeManifests = [
|
|
|
1046
1049
|
'subprocess'
|
|
1047
1050
|
],
|
|
1048
1051
|
sortOrder: 1,
|
|
1052
|
+
description: 'Invoke another workflow as a subprocess and pass input/output parameters between them',
|
|
1049
1053
|
display: {
|
|
1050
1054
|
label: 'Call Workflow',
|
|
1051
1055
|
icon: 'rpa'
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"node-definitions.d.ts","sourceRoot":"","sources":["../../../../src/canvas/storybook-utils/manifests/node-definitions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAEjE,eAAO,MAAM,gBAAgB,EAAE,YAAY,
|
|
1
|
+
{"version":3,"file":"node-definitions.d.ts","sourceRoot":"","sources":["../../../../src/canvas/storybook-utils/manifests/node-definitions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAEjE,eAAO,MAAM,gBAAgB,EAAE,YAAY,EAg2B1C,CAAC"}
|
|
@@ -66,6 +66,7 @@ const allNodeManifests = [
|
|
|
66
66
|
'loop'
|
|
67
67
|
],
|
|
68
68
|
sortOrder: 20,
|
|
69
|
+
description: 'Pause workflow execution for a specified duration before continuing to the next step',
|
|
69
70
|
display: {
|
|
70
71
|
label: 'Delay',
|
|
71
72
|
icon: 'timer'
|
|
@@ -132,6 +133,7 @@ const allNodeManifests = [
|
|
|
132
133
|
'switch'
|
|
133
134
|
],
|
|
134
135
|
sortOrder: 1,
|
|
136
|
+
description: 'Evaluate a condition and branch the workflow into true or false paths',
|
|
135
137
|
display: {
|
|
136
138
|
label: 'Decision',
|
|
137
139
|
icon: 'decision'
|
|
@@ -751,6 +753,7 @@ const allNodeManifests = [
|
|
|
751
753
|
'agent'
|
|
752
754
|
],
|
|
753
755
|
sortOrder: 1,
|
|
756
|
+
description: 'Autonomous AI agent that orchestrates tools, memory, and escalations to complete complex tasks',
|
|
754
757
|
display: {
|
|
755
758
|
label: 'Agent',
|
|
756
759
|
icon: 'agent',
|
|
@@ -1018,6 +1021,7 @@ const allNodeManifests = [
|
|
|
1018
1021
|
'subprocess'
|
|
1019
1022
|
],
|
|
1020
1023
|
sortOrder: 1,
|
|
1024
|
+
description: 'Invoke another workflow as a subprocess and pass input/output parameters between them',
|
|
1021
1025
|
display: {
|
|
1022
1026
|
label: 'Call Workflow',
|
|
1023
1027
|
icon: 'rpa'
|