@uipath/apollo-wind 0.9.0 → 0.10.0-pr219.03c9188

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.
Files changed (161) hide show
  1. package/dist/components/custom/canvas.cjs +44 -0
  2. package/dist/components/custom/canvas.d.ts +14 -0
  3. package/dist/components/custom/canvas.js +10 -0
  4. package/dist/components/custom/chat-composer.cjs +105 -0
  5. package/dist/components/custom/chat-composer.d.ts +15 -0
  6. package/dist/components/custom/chat-composer.js +71 -0
  7. package/dist/components/custom/chat-first-experience.cjs +87 -0
  8. package/dist/components/custom/chat-first-experience.d.ts +24 -0
  9. package/dist/components/custom/chat-first-experience.js +53 -0
  10. package/dist/components/custom/chat-prompt-suggestions.cjs +49 -0
  11. package/dist/components/custom/chat-prompt-suggestions.d.ts +18 -0
  12. package/dist/components/custom/chat-prompt-suggestions.js +15 -0
  13. package/dist/components/custom/chat-steps-view.cjs +308 -0
  14. package/dist/components/custom/chat-steps-view.d.ts +38 -0
  15. package/dist/components/custom/chat-steps-view.js +274 -0
  16. package/dist/components/custom/flow-node.cjs +76 -0
  17. package/dist/components/custom/flow-node.d.ts +20 -0
  18. package/dist/components/custom/flow-node.js +42 -0
  19. package/dist/components/custom/flow-properties-bar.cjs +103 -0
  20. package/dist/components/custom/flow-properties-bar.d.ts +21 -0
  21. package/dist/components/custom/flow-properties-bar.js +69 -0
  22. package/dist/components/custom/flow-properties-expanded.cjs +329 -0
  23. package/dist/components/custom/flow-properties-expanded.d.ts +21 -0
  24. package/dist/components/custom/flow-properties-expanded.js +295 -0
  25. package/dist/components/custom/flow-properties-simple.cjs +364 -0
  26. package/dist/components/custom/flow-properties-simple.d.ts +62 -0
  27. package/dist/components/custom/flow-properties-simple.js +330 -0
  28. package/dist/components/custom/flow-properties.cjs +56 -0
  29. package/dist/components/custom/flow-properties.d.ts +28 -0
  30. package/dist/components/custom/flow-properties.js +22 -0
  31. package/dist/components/custom/global-header.cjs +422 -0
  32. package/dist/components/custom/global-header.d.ts +38 -0
  33. package/dist/components/custom/global-header.js +388 -0
  34. package/dist/components/custom/grid-maestro.cjs +62 -0
  35. package/dist/components/custom/grid-maestro.d.ts +19 -0
  36. package/dist/components/custom/grid-maestro.js +22 -0
  37. package/dist/components/custom/panel-delegate.cjs +285 -0
  38. package/dist/components/custom/panel-delegate.d.ts +34 -0
  39. package/dist/components/custom/panel-delegate.js +251 -0
  40. package/dist/components/custom/panel-flow.cjs +262 -0
  41. package/dist/components/custom/panel-flow.d.ts +38 -0
  42. package/dist/components/custom/panel-flow.js +225 -0
  43. package/dist/components/custom/panel-maestro.cjs +74 -0
  44. package/dist/components/custom/panel-maestro.d.ts +30 -0
  45. package/dist/components/custom/panel-maestro.js +40 -0
  46. package/dist/components/custom/toolbar-canvas.cjs +124 -0
  47. package/dist/components/custom/toolbar-canvas.d.ts +15 -0
  48. package/dist/components/custom/toolbar-canvas.js +90 -0
  49. package/dist/components/custom/toolbar-view.cjs +121 -0
  50. package/dist/components/custom/toolbar-view.d.ts +14 -0
  51. package/dist/components/custom/toolbar-view.js +87 -0
  52. package/dist/components/custom/viewport-guard.cjs +92 -0
  53. package/dist/components/custom/viewport-guard.d.ts +23 -0
  54. package/dist/components/custom/viewport-guard.js +55 -0
  55. package/dist/components/ui/button.cjs +3 -3
  56. package/dist/components/ui/button.js +3 -3
  57. package/dist/components/ui/chart.cjs +222 -0
  58. package/dist/components/ui/chart.d.ts +40 -0
  59. package/dist/components/ui/chart.js +173 -0
  60. package/dist/components/ui/code-block.cjs +244 -0
  61. package/dist/components/ui/code-block.d.ts +49 -0
  62. package/dist/components/ui/code-block.js +210 -0
  63. package/dist/components/ui/data-table.cjs +14 -2
  64. package/dist/components/ui/data-table.d.ts +4 -1
  65. package/dist/components/ui/data-table.js +15 -3
  66. package/dist/components/ui/empty-state.cjs +17 -6
  67. package/dist/components/ui/empty-state.d.ts +7 -0
  68. package/dist/components/ui/empty-state.js +17 -6
  69. package/dist/components/ui/file-upload.cjs +82 -42
  70. package/dist/components/ui/file-upload.d.ts +3 -1
  71. package/dist/components/ui/file-upload.js +82 -42
  72. package/dist/components/ui/index.cjs +302 -162
  73. package/dist/components/ui/index.d.ts +2 -3
  74. package/dist/components/ui/index.js +2 -3
  75. package/dist/components/ui/tree-view.cjs +1101 -0
  76. package/dist/components/ui/tree-view.d.ts +95 -0
  77. package/dist/components/ui/tree-view.js +1067 -0
  78. package/dist/foundation/Future/colors.cjs +92 -0
  79. package/dist/foundation/Future/colors.d.ts +132 -0
  80. package/dist/foundation/Future/colors.js +43 -0
  81. package/dist/foundation/Future/radius.cjs +46 -0
  82. package/dist/foundation/Future/radius.d.ts +33 -0
  83. package/dist/foundation/Future/radius.js +12 -0
  84. package/dist/foundation/Future/responsive.cjs +49 -0
  85. package/dist/foundation/Future/responsive.d.ts +40 -0
  86. package/dist/foundation/Future/responsive.js +12 -0
  87. package/dist/foundation/Future/shadows.cjs +48 -0
  88. package/dist/foundation/Future/shadows.d.ts +29 -0
  89. package/dist/foundation/Future/shadows.js +11 -0
  90. package/dist/foundation/Future/spacing.cjs +71 -0
  91. package/dist/foundation/Future/spacing.d.ts +80 -0
  92. package/dist/foundation/Future/spacing.js +31 -0
  93. package/dist/foundation/Future/strokes.cjs +59 -0
  94. package/dist/foundation/Future/strokes.d.ts +49 -0
  95. package/dist/foundation/Future/strokes.js +19 -0
  96. package/dist/foundation/Future/types.cjs +18 -0
  97. package/dist/foundation/Future/types.d.ts +18 -0
  98. package/dist/foundation/Future/types.js +0 -0
  99. package/dist/foundation/Future/typography.cjs +79 -0
  100. package/dist/foundation/Future/typography.d.ts +86 -0
  101. package/dist/foundation/Future/typography.js +33 -0
  102. package/dist/index.cjs +131 -221
  103. package/dist/index.d.ts +4 -3
  104. package/dist/index.js +3 -4
  105. package/dist/src/foundation/Future/themes.css +371 -0
  106. package/dist/styles.css +1725 -586
  107. package/dist/tailwind.css +4 -0
  108. package/dist/templates/Admin/settings-admin.d.ts +5 -0
  109. package/dist/templates/Admin/template-admin.d.ts +105 -0
  110. package/dist/templates/Delegate/template-delegate.d.ts +26 -0
  111. package/dist/templates/EmptyErrors/error-components.d.ts +3 -0
  112. package/dist/templates/Experiments/ideas-AnimatedGradientText.d.ts +23 -0
  113. package/dist/templates/Flow/template-flow.d.ts +52 -0
  114. package/dist/templates/Maestro/template-maestro.d.ts +52 -0
  115. package/dist/templates/{vscode-example.d.ts → VisualStudio/shell.d.ts} +1 -1
  116. package/package.json +12 -1
  117. package/dist/components/ui/menubar.cjs +0 -210
  118. package/dist/components/ui/menubar.d.ts +0 -28
  119. package/dist/components/ui/menubar.js +0 -131
  120. package/dist/components/ui/navigation-menu.cjs +0 -122
  121. package/dist/components/ui/navigation-menu.d.ts +0 -12
  122. package/dist/components/ui/navigation-menu.js +0 -64
  123. package/dist/examples/admin-layout-example.cjs +0 -490
  124. package/dist/examples/admin-layout-example.d.ts +0 -92
  125. package/dist/examples/admin-layout-example.js +0 -411
  126. package/dist/examples/app-shell-example.cjs +0 -452
  127. package/dist/examples/app-shell-example.d.ts +0 -52
  128. package/dist/examples/app-shell-example.js +0 -418
  129. package/dist/examples/dashboard-example.cjs +0 -590
  130. package/dist/examples/dashboard-example.d.ts +0 -11
  131. package/dist/examples/dashboard-example.js +0 -556
  132. package/dist/examples/data-management-example.cjs +0 -584
  133. package/dist/examples/data-management-example.d.ts +0 -1
  134. package/dist/examples/data-management-example.js +0 -550
  135. package/dist/examples/flow-editor-layout-example.cjs +0 -309
  136. package/dist/examples/flow-editor-layout-example.d.ts +0 -22
  137. package/dist/examples/flow-editor-layout-example.js +0 -269
  138. package/dist/examples/flow-start-example.cjs +0 -467
  139. package/dist/examples/flow-start-example.d.ts +0 -30
  140. package/dist/examples/flow-start-example.js +0 -433
  141. package/dist/examples/form-builder-example.cjs +0 -674
  142. package/dist/examples/form-builder-example.js +0 -640
  143. package/dist/examples/new-project-example.cjs +0 -550
  144. package/dist/examples/new-project-example.d.ts +0 -30
  145. package/dist/examples/new-project-example.js +0 -516
  146. package/dist/examples/settings-example.cjs +0 -864
  147. package/dist/examples/settings-example.d.ts +0 -1
  148. package/dist/examples/settings-example.js +0 -830
  149. package/dist/examples/vscode-example.cjs +0 -340
  150. package/dist/examples/vscode-example.d.ts +0 -80
  151. package/dist/examples/vscode-example.js +0 -270
  152. package/dist/templates/admin-layout-example.d.ts +0 -92
  153. package/dist/templates/app-shell-example.d.ts +0 -52
  154. package/dist/templates/dashboard-example.d.ts +0 -11
  155. package/dist/templates/data-management-example.d.ts +0 -1
  156. package/dist/templates/flow-editor-layout-example.d.ts +0 -22
  157. package/dist/templates/flow-start-example.d.ts +0 -30
  158. package/dist/templates/form-builder-example.d.ts +0 -1
  159. package/dist/templates/new-project-example.d.ts +0 -30
  160. package/dist/templates/settings-example.d.ts +0 -1
  161. /package/dist/{examples → templates/Forms}/form-builder-example.d.ts +0 -0
@@ -0,0 +1,308 @@
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 ('undefined' != 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
+ StepsView: ()=>StepsView
28
+ });
29
+ const jsx_runtime_namespaceObject = require("react/jsx-runtime");
30
+ const external_lucide_react_namespaceObject = require("lucide-react");
31
+ const index_cjs_namespaceObject = require("../../lib/index.cjs");
32
+ function HeaderDivider() {
33
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
34
+ className: "h-9 w-px bg-border-subtle"
35
+ });
36
+ }
37
+ function StatusBadge({ label }) {
38
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
39
+ className: "flex h-10 items-center rounded-xl bg-brand-subtle px-4 py-2",
40
+ children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
41
+ className: "text-sm font-bold leading-5 text-foreground-accent-muted",
42
+ children: label
43
+ })
44
+ });
45
+ }
46
+ function StatItem({ value, label }) {
47
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
48
+ className: "flex flex-col gap-0.5",
49
+ children: [
50
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
51
+ className: "text-[15px] font-semibold leading-5 text-foreground",
52
+ children: value
53
+ }),
54
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
55
+ className: "text-sm font-medium leading-5 text-foreground-subtle",
56
+ children: label
57
+ })
58
+ ]
59
+ });
60
+ }
61
+ function ActionButton({ icon, label, onClick }) {
62
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("button", {
63
+ type: "button",
64
+ className: "flex h-10 items-center gap-2 rounded-xl border border-border px-4 py-2 text-sm font-medium leading-5 text-foreground-subtle transition-colors hover:border-border-hover hover:text-foreground-hover",
65
+ onClick: onClick,
66
+ children: [
67
+ icon,
68
+ label
69
+ ]
70
+ });
71
+ }
72
+ function TabBar({ activeTab }) {
73
+ const tabs = [
74
+ {
75
+ id: 'steps',
76
+ label: 'Steps',
77
+ icon: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.List, {
78
+ className: "h-4 w-4"
79
+ })
80
+ },
81
+ {
82
+ id: 'history',
83
+ label: 'History',
84
+ icon: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.Calendar, {
85
+ className: "h-4 w-4"
86
+ })
87
+ },
88
+ {
89
+ id: 'resources',
90
+ label: 'Resources',
91
+ icon: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.Folder, {
92
+ className: "h-4 w-4"
93
+ })
94
+ }
95
+ ];
96
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
97
+ className: "flex h-10 items-center rounded-xl bg-surface-overlay p-1",
98
+ children: tabs.map((tab)=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
99
+ className: (0, index_cjs_namespaceObject.cn)('flex h-8 items-center gap-2 rounded-[10px] px-4 py-2 text-sm font-medium leading-5 transition-colors', activeTab === tab.id ? 'border border-border-subtle bg-surface text-foreground' : 'text-foreground-subtle hover:text-foreground-hover'),
100
+ children: [
101
+ tab.icon,
102
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
103
+ children: tab.label
104
+ })
105
+ ]
106
+ }, tab.id))
107
+ });
108
+ }
109
+ function StepCard({ step, isHovered }) {
110
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
111
+ className: (0, index_cjs_namespaceObject.cn)('flex h-16 items-center justify-between rounded-2xl border px-4', isHovered ? 'border-border-subtle bg-surface-overlay shadow-[0px_4px_24px_0px_rgba(0,0,0,0.25)]' : 'border-border-subtle'),
112
+ children: [
113
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
114
+ className: "flex items-center gap-4",
115
+ children: [
116
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
117
+ className: "flex h-8 w-8 items-center justify-center rounded-lg bg-surface-hover",
118
+ children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.Bot, {
119
+ className: "h-5 w-5 text-foreground"
120
+ })
121
+ }),
122
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
123
+ className: "flex flex-col",
124
+ children: [
125
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
126
+ className: "flex items-start gap-0.5",
127
+ children: [
128
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
129
+ className: "text-sm font-semibold leading-5 tracking-[-0.35px] text-foreground",
130
+ children: step.title
131
+ }),
132
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("span", {
133
+ className: "ms-1 text-xs leading-5 tracking-[-0.3px] text-foreground-subtle",
134
+ children: [
135
+ "• ",
136
+ step.stepRange
137
+ ]
138
+ })
139
+ ]
140
+ }),
141
+ step.loop ? /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
142
+ className: "flex items-center gap-2",
143
+ children: [
144
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
145
+ className: "flex h-5 w-5 items-center justify-center rounded-[10px] bg-surface-muted",
146
+ children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.Repeat2, {
147
+ className: "h-3.5 w-3.5 text-foreground-on-accent"
148
+ })
149
+ }),
150
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("span", {
151
+ className: "text-sm leading-5 text-foreground-subtle",
152
+ children: [
153
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
154
+ className: "font-semibold",
155
+ children: "Loop"
156
+ }),
157
+ ": ",
158
+ step.loop
159
+ ]
160
+ })
161
+ ]
162
+ }) : /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
163
+ className: "text-sm leading-5 tracking-[-0.35px] text-foreground-subtle",
164
+ children: step.description
165
+ })
166
+ ]
167
+ })
168
+ ]
169
+ }),
170
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.ChevronDown, {
171
+ className: "h-4 w-4 shrink-0 text-foreground-subtle"
172
+ })
173
+ ]
174
+ });
175
+ }
176
+ function StepsView({ className, flowName = 'Flow name', flowDescription = 'Lorem ipsum dolor sit amet lorem ipsum.', status = 'ACTIVE', lastRun = '25/11/2025 12:15PM', totalRuns = 32, steps = [
177
+ {
178
+ id: '1',
179
+ title: 'Gmail',
180
+ stepRange: 'Steps 1 - 2',
181
+ description: 'Evaluate temperature conditions and proceed'
182
+ },
183
+ {
184
+ id: '2',
185
+ title: 'Salesforce',
186
+ stepRange: 'Steps 3 - 5',
187
+ description: 'Evaluate temperature conditions and proceed'
188
+ },
189
+ {
190
+ id: '3',
191
+ title: 'Excel - Process vendor from each file',
192
+ stepRange: 'Steps 6 - 12',
193
+ description: 'Evaluate temperature conditions and proceed',
194
+ loop: 'For each row in the "vendor list", starting from the second row.'
195
+ },
196
+ {
197
+ id: '4',
198
+ title: 'Gmail',
199
+ stepRange: 'Steps 1 - 2',
200
+ description: 'Evaluate temperature conditions and proceed'
201
+ }
202
+ ], activeTab = 'steps', onBack, onEdit, onPause }) {
203
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
204
+ className: (0, index_cjs_namespaceObject.cn)('flex flex-1 flex-col p-0', className),
205
+ children: [
206
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
207
+ className: "flex min-h-[78px] shrink-0 items-center gap-8 overflow-x-auto px-10 py-5",
208
+ children: [
209
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
210
+ className: "flex shrink-0 items-center gap-4",
211
+ children: [
212
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("button", {
213
+ type: "button",
214
+ className: "shrink-0 text-foreground transition-colors hover:text-foreground",
215
+ onClick: onBack,
216
+ "aria-label": "Go back",
217
+ children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.ArrowLeft, {
218
+ className: "h-6 w-6"
219
+ })
220
+ }),
221
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
222
+ className: "flex flex-col gap-1",
223
+ children: [
224
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
225
+ className: "whitespace-nowrap text-xl font-semibold leading-5 text-foreground",
226
+ children: flowName
227
+ }),
228
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
229
+ className: "whitespace-nowrap text-sm font-medium leading-5 text-foreground-subtle",
230
+ children: flowDescription
231
+ })
232
+ ]
233
+ })
234
+ ]
235
+ }),
236
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(HeaderDivider, {}),
237
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(StatusBadge, {
238
+ label: status
239
+ }),
240
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
241
+ className: "flex shrink-0 items-center gap-4",
242
+ children: [
243
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(HeaderDivider, {}),
244
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(StatItem, {
245
+ value: lastRun,
246
+ label: "Last run"
247
+ })
248
+ ]
249
+ }),
250
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
251
+ className: "flex shrink-0 items-center gap-4",
252
+ children: [
253
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(HeaderDivider, {}),
254
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(StatItem, {
255
+ value: String(totalRuns),
256
+ label: "Total runs"
257
+ })
258
+ ]
259
+ }),
260
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
261
+ className: "flex-1"
262
+ }),
263
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
264
+ className: "flex shrink-0 items-center gap-2",
265
+ children: [
266
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(ActionButton, {
267
+ icon: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.Pencil, {
268
+ className: "h-4 w-4"
269
+ }),
270
+ label: "Edit",
271
+ onClick: onEdit
272
+ }),
273
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(ActionButton, {
274
+ icon: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.Pause, {
275
+ className: "h-4 w-4"
276
+ }),
277
+ label: "Pause",
278
+ onClick: onPause
279
+ })
280
+ ]
281
+ })
282
+ ]
283
+ }),
284
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
285
+ className: "flex flex-1 flex-col rounded-t-2xl border border-border-muted bg-surface p-4",
286
+ children: [
287
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(TabBar, {
288
+ activeTab: activeTab
289
+ }),
290
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
291
+ className: "mx-auto mt-20 flex w-full max-w-[680px] flex-col gap-6",
292
+ children: steps.map((step, index)=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(StepCard, {
293
+ step: step,
294
+ isHovered: index === steps.length - 1
295
+ }, step.id))
296
+ })
297
+ ]
298
+ })
299
+ ]
300
+ });
301
+ }
302
+ exports.StepsView = __webpack_exports__.StepsView;
303
+ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
304
+ "StepsView"
305
+ ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
306
+ Object.defineProperty(exports, '__esModule', {
307
+ value: true
308
+ });
@@ -0,0 +1,38 @@
1
+ export interface FlowStep {
2
+ id: string;
3
+ title: string;
4
+ stepRange: string;
5
+ description: string;
6
+ /** Optional loop annotation */
7
+ loop?: string;
8
+ }
9
+ export interface StepsViewProps {
10
+ className?: string;
11
+ /** Flow name displayed in the header */
12
+ flowName?: string;
13
+ /** Flow description */
14
+ flowDescription?: string;
15
+ /** Status badge label */
16
+ status?: string;
17
+ /** Last run date/time */
18
+ lastRun?: string;
19
+ /** Total runs count */
20
+ totalRuns?: number;
21
+ /** Steps to display */
22
+ steps?: FlowStep[];
23
+ /** Currently active tab */
24
+ activeTab?: 'steps' | 'history' | 'resources';
25
+ /** Callback when back button is clicked */
26
+ onBack?: () => void;
27
+ /** Callback when Edit is clicked */
28
+ onEdit?: () => void;
29
+ /** Callback when Pause is clicked */
30
+ onPause?: () => void;
31
+ }
32
+ /**
33
+ * Canvas content for the Delegate Steps page.
34
+ *
35
+ * Shows a flow header with metadata, a tabbed content area,
36
+ * and a vertical list of step cards.
37
+ */
38
+ export declare function StepsView({ className, flowName, flowDescription, status, lastRun, totalRuns, steps, activeTab, onBack, onEdit, onPause, }: StepsViewProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,274 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { ArrowLeft, Bot, Calendar, ChevronDown, Folder, List, Pause, Pencil, Repeat2 } from "lucide-react";
3
+ import { cn } from "../../lib/index.js";
4
+ function HeaderDivider() {
5
+ return /*#__PURE__*/ jsx("div", {
6
+ className: "h-9 w-px bg-border-subtle"
7
+ });
8
+ }
9
+ function StatusBadge({ label }) {
10
+ return /*#__PURE__*/ jsx("div", {
11
+ className: "flex h-10 items-center rounded-xl bg-brand-subtle px-4 py-2",
12
+ children: /*#__PURE__*/ jsx("span", {
13
+ className: "text-sm font-bold leading-5 text-foreground-accent-muted",
14
+ children: label
15
+ })
16
+ });
17
+ }
18
+ function StatItem({ value, label }) {
19
+ return /*#__PURE__*/ jsxs("div", {
20
+ className: "flex flex-col gap-0.5",
21
+ children: [
22
+ /*#__PURE__*/ jsx("span", {
23
+ className: "text-[15px] font-semibold leading-5 text-foreground",
24
+ children: value
25
+ }),
26
+ /*#__PURE__*/ jsx("span", {
27
+ className: "text-sm font-medium leading-5 text-foreground-subtle",
28
+ children: label
29
+ })
30
+ ]
31
+ });
32
+ }
33
+ function ActionButton({ icon, label, onClick }) {
34
+ return /*#__PURE__*/ jsxs("button", {
35
+ type: "button",
36
+ className: "flex h-10 items-center gap-2 rounded-xl border border-border px-4 py-2 text-sm font-medium leading-5 text-foreground-subtle transition-colors hover:border-border-hover hover:text-foreground-hover",
37
+ onClick: onClick,
38
+ children: [
39
+ icon,
40
+ label
41
+ ]
42
+ });
43
+ }
44
+ function TabBar({ activeTab }) {
45
+ const tabs = [
46
+ {
47
+ id: 'steps',
48
+ label: 'Steps',
49
+ icon: /*#__PURE__*/ jsx(List, {
50
+ className: "h-4 w-4"
51
+ })
52
+ },
53
+ {
54
+ id: 'history',
55
+ label: 'History',
56
+ icon: /*#__PURE__*/ jsx(Calendar, {
57
+ className: "h-4 w-4"
58
+ })
59
+ },
60
+ {
61
+ id: 'resources',
62
+ label: 'Resources',
63
+ icon: /*#__PURE__*/ jsx(Folder, {
64
+ className: "h-4 w-4"
65
+ })
66
+ }
67
+ ];
68
+ return /*#__PURE__*/ jsx("div", {
69
+ className: "flex h-10 items-center rounded-xl bg-surface-overlay p-1",
70
+ children: tabs.map((tab)=>/*#__PURE__*/ jsxs("div", {
71
+ className: cn('flex h-8 items-center gap-2 rounded-[10px] px-4 py-2 text-sm font-medium leading-5 transition-colors', activeTab === tab.id ? 'border border-border-subtle bg-surface text-foreground' : 'text-foreground-subtle hover:text-foreground-hover'),
72
+ children: [
73
+ tab.icon,
74
+ /*#__PURE__*/ jsx("span", {
75
+ children: tab.label
76
+ })
77
+ ]
78
+ }, tab.id))
79
+ });
80
+ }
81
+ function StepCard({ step, isHovered }) {
82
+ return /*#__PURE__*/ jsxs("div", {
83
+ className: cn('flex h-16 items-center justify-between rounded-2xl border px-4', isHovered ? 'border-border-subtle bg-surface-overlay shadow-[0px_4px_24px_0px_rgba(0,0,0,0.25)]' : 'border-border-subtle'),
84
+ children: [
85
+ /*#__PURE__*/ jsxs("div", {
86
+ className: "flex items-center gap-4",
87
+ children: [
88
+ /*#__PURE__*/ jsx("div", {
89
+ className: "flex h-8 w-8 items-center justify-center rounded-lg bg-surface-hover",
90
+ children: /*#__PURE__*/ jsx(Bot, {
91
+ className: "h-5 w-5 text-foreground"
92
+ })
93
+ }),
94
+ /*#__PURE__*/ jsxs("div", {
95
+ className: "flex flex-col",
96
+ children: [
97
+ /*#__PURE__*/ jsxs("div", {
98
+ className: "flex items-start gap-0.5",
99
+ children: [
100
+ /*#__PURE__*/ jsx("span", {
101
+ className: "text-sm font-semibold leading-5 tracking-[-0.35px] text-foreground",
102
+ children: step.title
103
+ }),
104
+ /*#__PURE__*/ jsxs("span", {
105
+ className: "ms-1 text-xs leading-5 tracking-[-0.3px] text-foreground-subtle",
106
+ children: [
107
+ "• ",
108
+ step.stepRange
109
+ ]
110
+ })
111
+ ]
112
+ }),
113
+ step.loop ? /*#__PURE__*/ jsxs("div", {
114
+ className: "flex items-center gap-2",
115
+ children: [
116
+ /*#__PURE__*/ jsx("div", {
117
+ className: "flex h-5 w-5 items-center justify-center rounded-[10px] bg-surface-muted",
118
+ children: /*#__PURE__*/ jsx(Repeat2, {
119
+ className: "h-3.5 w-3.5 text-foreground-on-accent"
120
+ })
121
+ }),
122
+ /*#__PURE__*/ jsxs("span", {
123
+ className: "text-sm leading-5 text-foreground-subtle",
124
+ children: [
125
+ /*#__PURE__*/ jsx("span", {
126
+ className: "font-semibold",
127
+ children: "Loop"
128
+ }),
129
+ ": ",
130
+ step.loop
131
+ ]
132
+ })
133
+ ]
134
+ }) : /*#__PURE__*/ jsx("span", {
135
+ className: "text-sm leading-5 tracking-[-0.35px] text-foreground-subtle",
136
+ children: step.description
137
+ })
138
+ ]
139
+ })
140
+ ]
141
+ }),
142
+ /*#__PURE__*/ jsx(ChevronDown, {
143
+ className: "h-4 w-4 shrink-0 text-foreground-subtle"
144
+ })
145
+ ]
146
+ });
147
+ }
148
+ function StepsView({ className, flowName = 'Flow name', flowDescription = 'Lorem ipsum dolor sit amet lorem ipsum.', status = 'ACTIVE', lastRun = '25/11/2025 12:15PM', totalRuns = 32, steps = [
149
+ {
150
+ id: '1',
151
+ title: 'Gmail',
152
+ stepRange: 'Steps 1 - 2',
153
+ description: 'Evaluate temperature conditions and proceed'
154
+ },
155
+ {
156
+ id: '2',
157
+ title: 'Salesforce',
158
+ stepRange: 'Steps 3 - 5',
159
+ description: 'Evaluate temperature conditions and proceed'
160
+ },
161
+ {
162
+ id: '3',
163
+ title: 'Excel - Process vendor from each file',
164
+ stepRange: 'Steps 6 - 12',
165
+ description: 'Evaluate temperature conditions and proceed',
166
+ loop: 'For each row in the "vendor list", starting from the second row.'
167
+ },
168
+ {
169
+ id: '4',
170
+ title: 'Gmail',
171
+ stepRange: 'Steps 1 - 2',
172
+ description: 'Evaluate temperature conditions and proceed'
173
+ }
174
+ ], activeTab = 'steps', onBack, onEdit, onPause }) {
175
+ return /*#__PURE__*/ jsxs("div", {
176
+ className: cn('flex flex-1 flex-col p-0', className),
177
+ children: [
178
+ /*#__PURE__*/ jsxs("div", {
179
+ className: "flex min-h-[78px] shrink-0 items-center gap-8 overflow-x-auto px-10 py-5",
180
+ children: [
181
+ /*#__PURE__*/ jsxs("div", {
182
+ className: "flex shrink-0 items-center gap-4",
183
+ children: [
184
+ /*#__PURE__*/ jsx("button", {
185
+ type: "button",
186
+ className: "shrink-0 text-foreground transition-colors hover:text-foreground",
187
+ onClick: onBack,
188
+ "aria-label": "Go back",
189
+ children: /*#__PURE__*/ jsx(ArrowLeft, {
190
+ className: "h-6 w-6"
191
+ })
192
+ }),
193
+ /*#__PURE__*/ jsxs("div", {
194
+ className: "flex flex-col gap-1",
195
+ children: [
196
+ /*#__PURE__*/ jsx("span", {
197
+ className: "whitespace-nowrap text-xl font-semibold leading-5 text-foreground",
198
+ children: flowName
199
+ }),
200
+ /*#__PURE__*/ jsx("span", {
201
+ className: "whitespace-nowrap text-sm font-medium leading-5 text-foreground-subtle",
202
+ children: flowDescription
203
+ })
204
+ ]
205
+ })
206
+ ]
207
+ }),
208
+ /*#__PURE__*/ jsx(HeaderDivider, {}),
209
+ /*#__PURE__*/ jsx(StatusBadge, {
210
+ label: status
211
+ }),
212
+ /*#__PURE__*/ jsxs("div", {
213
+ className: "flex shrink-0 items-center gap-4",
214
+ children: [
215
+ /*#__PURE__*/ jsx(HeaderDivider, {}),
216
+ /*#__PURE__*/ jsx(StatItem, {
217
+ value: lastRun,
218
+ label: "Last run"
219
+ })
220
+ ]
221
+ }),
222
+ /*#__PURE__*/ jsxs("div", {
223
+ className: "flex shrink-0 items-center gap-4",
224
+ children: [
225
+ /*#__PURE__*/ jsx(HeaderDivider, {}),
226
+ /*#__PURE__*/ jsx(StatItem, {
227
+ value: String(totalRuns),
228
+ label: "Total runs"
229
+ })
230
+ ]
231
+ }),
232
+ /*#__PURE__*/ jsx("div", {
233
+ className: "flex-1"
234
+ }),
235
+ /*#__PURE__*/ jsxs("div", {
236
+ className: "flex shrink-0 items-center gap-2",
237
+ children: [
238
+ /*#__PURE__*/ jsx(ActionButton, {
239
+ icon: /*#__PURE__*/ jsx(Pencil, {
240
+ className: "h-4 w-4"
241
+ }),
242
+ label: "Edit",
243
+ onClick: onEdit
244
+ }),
245
+ /*#__PURE__*/ jsx(ActionButton, {
246
+ icon: /*#__PURE__*/ jsx(Pause, {
247
+ className: "h-4 w-4"
248
+ }),
249
+ label: "Pause",
250
+ onClick: onPause
251
+ })
252
+ ]
253
+ })
254
+ ]
255
+ }),
256
+ /*#__PURE__*/ jsxs("div", {
257
+ className: "flex flex-1 flex-col rounded-t-2xl border border-border-muted bg-surface p-4",
258
+ children: [
259
+ /*#__PURE__*/ jsx(TabBar, {
260
+ activeTab: activeTab
261
+ }),
262
+ /*#__PURE__*/ jsx("div", {
263
+ className: "mx-auto mt-20 flex w-full max-w-[680px] flex-col gap-6",
264
+ children: steps.map((step, index)=>/*#__PURE__*/ jsx(StepCard, {
265
+ step: step,
266
+ isHovered: index === steps.length - 1
267
+ }, step.id))
268
+ })
269
+ ]
270
+ })
271
+ ]
272
+ });
273
+ }
274
+ export { StepsView };