@uipath/apollo-react 4.22.1-pr644.0a8c7b0 → 4.22.2
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/AgentCanvas/agent-flow.manifest.d.ts +2 -2
- package/dist/canvas/components/BaseNode/BaseNode.cjs +3 -11
- package/dist/canvas/components/BaseNode/BaseNode.d.ts.map +1 -1
- package/dist/canvas/components/BaseNode/BaseNode.js +3 -11
- package/dist/canvas/components/StageNode/DraggableTask.cjs +3 -2
- package/dist/canvas/components/StageNode/DraggableTask.d.ts +1 -1
- package/dist/canvas/components/StageNode/DraggableTask.d.ts.map +1 -1
- package/dist/canvas/components/StageNode/DraggableTask.js +3 -2
- package/dist/canvas/components/StageNode/DraggableTask.types.d.ts +1 -0
- package/dist/canvas/components/StageNode/DraggableTask.types.d.ts.map +1 -1
- package/dist/canvas/components/StageNode/StageNodeAllTaskGroups.cjs +5 -2
- package/dist/canvas/components/StageNode/StageNodeAllTaskGroups.d.ts.map +1 -1
- package/dist/canvas/components/StageNode/StageNodeAllTaskGroups.js +5 -2
- package/dist/canvas/components/StageNode/StageNodeSequentialTaskGroups.cjs +2 -1
- package/dist/canvas/components/StageNode/StageNodeSequentialTaskGroups.d.ts.map +1 -1
- package/dist/canvas/components/StageNode/StageNodeSequentialTaskGroups.js +2 -1
- package/dist/canvas/components/StageNode/TaskContent.cjs +109 -111
- package/dist/canvas/components/StageNode/TaskContent.d.ts +2 -1
- package/dist/canvas/components/StageNode/TaskContent.d.ts.map +1 -1
- package/dist/canvas/components/StageNode/TaskContent.js +110 -112
- package/dist/canvas/components/Toolbox/ListView.cjs +1 -6
- package/dist/canvas/components/Toolbox/ListView.d.ts.map +1 -1
- package/dist/canvas/components/Toolbox/ListView.js +1 -6
- package/dist/canvas/components/index.cjs +12 -19
- package/dist/canvas/components/index.d.ts +0 -1
- package/dist/canvas/components/index.d.ts.map +1 -1
- package/dist/canvas/components/index.js +0 -1
- package/dist/canvas/core/CategoryTreeAdapter.cjs +6 -10
- package/dist/canvas/core/CategoryTreeAdapter.js +6 -10
- package/dist/canvas/schema/node-definition/category-manifest.cjs +1 -1
- package/dist/canvas/schema/node-definition/category-manifest.d.ts +1 -1
- package/dist/canvas/schema/node-definition/category-manifest.js +1 -1
- package/dist/canvas/schema/node-definition/node-manifest.cjs +1 -1
- package/dist/canvas/schema/node-definition/node-manifest.d.ts +2 -2
- package/dist/canvas/schema/node-definition/node-manifest.js +1 -1
- package/dist/canvas/storybook-utils/manifests/index.d.ts +2 -2
- package/dist/canvas/storybook-utils/manifests/node-definitions.d.ts.map +1 -1
- package/dist/canvas/utils/icon-registry.cjs +0 -8
- package/dist/canvas/utils/icon-registry.d.ts +1 -1
- package/dist/canvas/utils/icon-registry.d.ts.map +1 -1
- package/dist/canvas/utils/icon-registry.js +0 -8
- package/dist/canvas/utils/manifest-resolver.cjs +1 -2
- package/dist/canvas/utils/manifest-resolver.d.ts.map +1 -1
- package/dist/canvas/utils/manifest-resolver.js +1 -2
- package/package.json +1 -1
- package/dist/canvas/components/shared/InitialsBadge.cjs +0 -91
- package/dist/canvas/components/shared/InitialsBadge.d.ts +0 -10
- package/dist/canvas/components/shared/InitialsBadge.d.ts.map +0 -1
- package/dist/canvas/components/shared/InitialsBadge.js +0 -44
- package/dist/canvas/components/shared/index.cjs +0 -39
- package/dist/canvas/components/shared/index.d.ts +0 -3
- package/dist/canvas/components/shared/index.d.ts.map +0 -1
- package/dist/canvas/components/shared/index.js +0 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Padding, Spacing } from "@uipath/apollo-core";
|
|
3
3
|
import { Column, Row } from "../../layouts/index.js";
|
|
4
4
|
import { Badge, Button, Spinner } from "@uipath/apollo-wind";
|
|
@@ -107,124 +107,122 @@ const TaskPlayButton = /*#__PURE__*/ memo(({ taskId, onTaskPlay, small })=>{
|
|
|
107
107
|
})
|
|
108
108
|
});
|
|
109
109
|
});
|
|
110
|
-
const TaskContent = /*#__PURE__*/ memo(({ task, taskExecution, isDragging, onTaskPlay })=>{
|
|
110
|
+
const TaskContent = /*#__PURE__*/ memo(({ task, taskExecution, isDragging, onTaskPlay, isReadOnly })=>{
|
|
111
111
|
const hasExecutionStatus = !!taskExecution?.status;
|
|
112
112
|
const hasSecondRowContent = taskExecution && (taskExecution.duration || taskExecution.retryDuration || taskExecution.badge);
|
|
113
113
|
const showPlayButtonSmall = onTaskPlay && hasExecutionStatus;
|
|
114
|
-
return /*#__PURE__*/
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
/*#__PURE__*/ jsx(
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
children: task.label
|
|
150
|
-
})
|
|
151
|
-
})
|
|
152
|
-
]
|
|
153
|
-
}),
|
|
154
|
-
/*#__PURE__*/ jsxs(Row, {
|
|
155
|
-
align: "center",
|
|
156
|
-
gap: Spacing.SpacingXs,
|
|
157
|
-
style: {
|
|
158
|
-
flexShrink: 0
|
|
159
|
-
},
|
|
160
|
-
children: [
|
|
161
|
-
hasExecutionStatus && (taskExecution.message ? /*#__PURE__*/ jsx(CanvasTooltip, {
|
|
162
|
-
content: taskExecution.message,
|
|
163
|
-
placement: "top",
|
|
164
|
-
children: /*#__PURE__*/ jsx(Button, {
|
|
165
|
-
variant: "ghost",
|
|
166
|
-
size: "icon",
|
|
167
|
-
className: "h-6 w-6",
|
|
168
|
-
"aria-label": taskExecution.message,
|
|
169
|
-
children: /*#__PURE__*/ jsx(ExecutionStatusIcon, {
|
|
170
|
-
status: taskExecution.status
|
|
171
|
-
})
|
|
172
|
-
})
|
|
173
|
-
}) : /*#__PURE__*/ jsx(ExecutionStatusIcon, {
|
|
174
|
-
status: taskExecution.status
|
|
175
|
-
})),
|
|
176
|
-
showPlayButtonSmall && !hasSecondRowContent && /*#__PURE__*/ jsx(TaskPlayButton, {
|
|
177
|
-
taskId: task.id,
|
|
178
|
-
onTaskPlay: onTaskPlay,
|
|
179
|
-
small: true
|
|
180
|
-
}),
|
|
181
|
-
onTaskPlay && !hasExecutionStatus && /*#__PURE__*/ jsx(TaskPlayButton, {
|
|
182
|
-
taskId: task.id,
|
|
183
|
-
onTaskPlay: onTaskPlay
|
|
114
|
+
return /*#__PURE__*/ jsxs(Column, {
|
|
115
|
+
flex: 1,
|
|
116
|
+
style: {
|
|
117
|
+
overflow: 'hidden',
|
|
118
|
+
textOverflow: 'ellipsis',
|
|
119
|
+
whiteSpace: 'nowrap'
|
|
120
|
+
},
|
|
121
|
+
gap: Padding.PadXs,
|
|
122
|
+
children: [
|
|
123
|
+
/*#__PURE__*/ jsxs(Row, {
|
|
124
|
+
align: "center",
|
|
125
|
+
justify: "space-between",
|
|
126
|
+
children: [
|
|
127
|
+
/*#__PURE__*/ jsxs(Row, {
|
|
128
|
+
gap: Spacing.SpacingXs,
|
|
129
|
+
align: "center",
|
|
130
|
+
style: {
|
|
131
|
+
overflow: 'hidden',
|
|
132
|
+
textOverflow: 'ellipsis',
|
|
133
|
+
whiteSpace: 'nowrap'
|
|
134
|
+
},
|
|
135
|
+
children: [
|
|
136
|
+
/*#__PURE__*/ jsx(StageTaskIcon, {
|
|
137
|
+
children: task.icon ?? /*#__PURE__*/ jsx(ProcessCanvasIcon, {})
|
|
138
|
+
}),
|
|
139
|
+
/*#__PURE__*/ jsx(CanvasTooltip, {
|
|
140
|
+
content: task.label,
|
|
141
|
+
placement: "top",
|
|
142
|
+
smartTooltip: true,
|
|
143
|
+
...isDragging && {
|
|
144
|
+
isOpen: false
|
|
145
|
+
},
|
|
146
|
+
children: /*#__PURE__*/ jsx("span", {
|
|
147
|
+
className: "text-sm truncate",
|
|
148
|
+
children: task.label
|
|
184
149
|
})
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
taskExecution
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
150
|
+
})
|
|
151
|
+
]
|
|
152
|
+
}),
|
|
153
|
+
/*#__PURE__*/ jsxs(Row, {
|
|
154
|
+
align: "center",
|
|
155
|
+
gap: Spacing.SpacingXs,
|
|
156
|
+
style: {
|
|
157
|
+
flexShrink: 0
|
|
158
|
+
},
|
|
159
|
+
children: [
|
|
160
|
+
hasExecutionStatus && (taskExecution.message ? /*#__PURE__*/ jsx(CanvasTooltip, {
|
|
161
|
+
content: taskExecution.message,
|
|
162
|
+
placement: "top",
|
|
163
|
+
children: /*#__PURE__*/ jsx(Button, {
|
|
164
|
+
variant: "ghost",
|
|
165
|
+
size: "icon",
|
|
166
|
+
className: "h-6 w-6",
|
|
167
|
+
"aria-label": taskExecution.message,
|
|
168
|
+
children: /*#__PURE__*/ jsx(ExecutionStatusIcon, {
|
|
169
|
+
status: taskExecution.status
|
|
205
170
|
})
|
|
206
171
|
})
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
172
|
+
}) : !isReadOnly && /*#__PURE__*/ jsx(ExecutionStatusIcon, {
|
|
173
|
+
status: taskExecution.status
|
|
174
|
+
})),
|
|
175
|
+
showPlayButtonSmall && !hasSecondRowContent && /*#__PURE__*/ jsx(TaskPlayButton, {
|
|
176
|
+
taskId: task.id,
|
|
177
|
+
onTaskPlay: onTaskPlay,
|
|
178
|
+
small: true
|
|
179
|
+
}),
|
|
180
|
+
onTaskPlay && !hasExecutionStatus && /*#__PURE__*/ jsx(TaskPlayButton, {
|
|
181
|
+
taskId: task.id,
|
|
182
|
+
onTaskPlay: onTaskPlay
|
|
183
|
+
})
|
|
184
|
+
]
|
|
185
|
+
})
|
|
186
|
+
]
|
|
187
|
+
}),
|
|
188
|
+
taskExecution && hasSecondRowContent && /*#__PURE__*/ jsxs(Row, {
|
|
189
|
+
align: "center",
|
|
190
|
+
justify: "space-between",
|
|
191
|
+
children: [
|
|
192
|
+
/*#__PURE__*/ jsxs(Row, {
|
|
193
|
+
gap: '2px',
|
|
194
|
+
children: [
|
|
195
|
+
taskExecution?.duration && /*#__PURE__*/ jsx("span", {
|
|
196
|
+
className: "text-xs text-foreground-muted",
|
|
197
|
+
children: taskExecution.duration
|
|
198
|
+
}),
|
|
199
|
+
taskExecution?.retryDuration && /*#__PURE__*/ jsx(StageTaskRetryDuration, {
|
|
200
|
+
status: taskExecution.badgeStatus ?? 'warning',
|
|
201
|
+
children: /*#__PURE__*/ jsx("span", {
|
|
202
|
+
className: "text-xs",
|
|
203
|
+
children: `(+${taskExecution.retryDuration})`
|
|
221
204
|
})
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
205
|
+
})
|
|
206
|
+
]
|
|
207
|
+
}),
|
|
208
|
+
/*#__PURE__*/ jsxs(Row, {
|
|
209
|
+
align: "center",
|
|
210
|
+
gap: Spacing.SpacingXs,
|
|
211
|
+
children: [
|
|
212
|
+
taskExecution?.badge && /*#__PURE__*/ jsx(Badge, {
|
|
213
|
+
variant: taskExecution.badgeStatus,
|
|
214
|
+
children: generateBadgeText(taskExecution) ?? ''
|
|
215
|
+
}),
|
|
216
|
+
showPlayButtonSmall && /*#__PURE__*/ jsx(TaskPlayButton, {
|
|
217
|
+
taskId: task.id,
|
|
218
|
+
onTaskPlay: onTaskPlay,
|
|
219
|
+
small: true
|
|
220
|
+
})
|
|
221
|
+
]
|
|
222
|
+
})
|
|
223
|
+
]
|
|
224
|
+
})
|
|
225
|
+
]
|
|
228
226
|
});
|
|
229
227
|
});
|
|
230
228
|
export { TaskContent };
|
|
@@ -34,7 +34,6 @@ const apollo_wind_namespaceObject = require("@uipath/apollo-wind");
|
|
|
34
34
|
const external_react_namespaceObject = require("react");
|
|
35
35
|
const CanvasThemeContext_cjs_namespaceObject = require("../BaseCanvas/CanvasThemeContext.cjs");
|
|
36
36
|
const external_CanvasTooltip_cjs_namespaceObject = require("../CanvasTooltip.cjs");
|
|
37
|
-
const InitialsBadge_cjs_namespaceObject = require("../shared/InitialsBadge.cjs");
|
|
38
37
|
const external_ListView_styles_cjs_namespaceObject = require("./ListView.styles.cjs");
|
|
39
38
|
const DEFAULT_SKELETON_COUNT = 3;
|
|
40
39
|
function buildRenderedItems(items, enableSections, loadingSkeleton) {
|
|
@@ -163,11 +162,7 @@ const ListViewRow = /*#__PURE__*/ (0, external_react_namespaceObject.memo)(({ in
|
|
|
163
162
|
icon: item.icon.name,
|
|
164
163
|
size: 24
|
|
165
164
|
}),
|
|
166
|
-
item.icon?.Component && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(item.icon.Component, {})
|
|
167
|
-
!item.icon?.url && !item.icon?.name && !item.icon?.Component && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(InitialsBadge_cjs_namespaceObject.InitialsBadge, {
|
|
168
|
-
name: item.name,
|
|
169
|
-
"data-testid": "list-item-initials-badge"
|
|
170
|
-
})
|
|
165
|
+
item.icon?.Component && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(item.icon.Component, {})
|
|
171
166
|
]
|
|
172
167
|
}),
|
|
173
168
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(index_cjs_namespaceObject.Column, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListView.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/Toolbox/ListView.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,iBAAiB,EAAqB,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"ListView.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/Toolbox/ListView.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,iBAAiB,EAAqB,MAAM,cAAc,CAAC;AAKzE,MAAM,WAAW,YAAY;IAI3B,IAAI,CAAC,EAAE,MAAM,CAAC;IAId,GAAG,CAAC,EAAE,MAAM,CAAC;IAIb,SAAS,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;CACjC;AAUD,MAAM,MAAM,mBAAmB,GAAG;IAKhC,KAAK,CAAC,EAAE,MAAM,CAAC;IAOf,QAAQ,CAAC,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CAC/C,CAAC;AAEF,MAAM,MAAM,QAAQ,CAAC,CAAC,GAAG,GAAG,IAAI;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,CAAC,CAAC;IACR,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IAQlF,eAAe,CAAC,EAAE,OAAO,GAAG,mBAAmB,CAAC;CACjD,CAAC;AAEF,MAAM,MAAM,UAAU,CAAC,CAAC,SAAS,QAAQ,IACrC;IAAE,IAAI,EAAE,SAAS,CAAC;IAAC,WAAW,EAAE,MAAM,CAAA;CAAE,GACxC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,CAAC,CAAA;CAAE,GACzB;IAAE,IAAI,EAAE,UAAU,CAAA;CAAE,CAAC;AAIzB,wBAAgB,kBAAkB,CAAC,CAAC,SAAS,QAAQ,EACnD,KAAK,EAAE,CAAC,EAAE,EACV,cAAc,EAAE,OAAO,EACvB,eAAe,CAAC,EAAE,OAAO,GAAG,mBAAmB,GAC9C,UAAU,CAAC,CAAC,CAAC,EAAE,CA4DjB;AAED,MAAM,WAAW,gBAAgB,CAAC,CAAC,SAAS,QAAQ;IAClD,aAAa,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC;IAC/B,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,WAAW,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9C,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,IAAI,CAAC;CACjC;AAkGD,MAAM,WAAW,cAAc,CAAC,CAAC,SAAS,QAAQ,GAAG,QAAQ;IAC3D,aAAa,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC;CAChC;AAED,UAAU,aAAa,CAAC,CAAC,SAAS,QAAQ;IACxC,KAAK,EAAE,CAAC,EAAE,CAAC;IACX,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,iBAAiB,GAAG,IAAI,CAAC,CAAC;IACpD,WAAW,EAAE,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAC9C,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,IAAI,CAAC;IAChC,QAAQ,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,CAAC;IAChD,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,cAAc,CAAC,EAAE,MAAM,CAAC;IAQxB,gBAAgB,CAAC,EAAE,MAAM,KAAK,CAAC,YAAY,GAAG,IAAI,CAAC;IACnD,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,cAAc,CAAC,EAAE,OAAO,CAAC;IAOzB,eAAe,CAAC,EAAE,OAAO,GAAG,mBAAmB,CAAC;CACjD;AA0FD,eAAO,MAAM,QAAQ,EAA0B,CAAC,CAAC,SAAS,QAAQ,EAChE,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAA;CAAE,KAC7D,KAAK,CAAC,YAAY,GAAG,IAAI,CAAC"}
|
|
@@ -5,7 +5,6 @@ import { Skeleton } from "@uipath/apollo-wind";
|
|
|
5
5
|
import { forwardRef, memo, useCallback, useImperativeHandle, useMemo } from "react";
|
|
6
6
|
import { useCanvasTheme } from "../BaseCanvas/CanvasThemeContext.js";
|
|
7
7
|
import { CanvasTooltip } from "../CanvasTooltip.js";
|
|
8
|
-
import { InitialsBadge } from "../shared/InitialsBadge.js";
|
|
9
8
|
import { IconContainer, ListItemButton, SectionHeader, StyledList } from "./ListView.styles.js";
|
|
10
9
|
const DEFAULT_SKELETON_COUNT = 3;
|
|
11
10
|
function buildRenderedItems(items, enableSections, loadingSkeleton) {
|
|
@@ -134,11 +133,7 @@ const ListViewRow = /*#__PURE__*/ memo(({ index, style, ariaAttributes, rendered
|
|
|
134
133
|
icon: item.icon.name,
|
|
135
134
|
size: 24
|
|
136
135
|
}),
|
|
137
|
-
item.icon?.Component && /*#__PURE__*/ jsx(item.icon.Component, {})
|
|
138
|
-
!item.icon?.url && !item.icon?.name && !item.icon?.Component && /*#__PURE__*/ jsx(InitialsBadge, {
|
|
139
|
-
name: item.name,
|
|
140
|
-
"data-testid": "list-item-initials-badge"
|
|
141
|
-
})
|
|
136
|
+
item.icon?.Component && /*#__PURE__*/ jsx(item.icon.Component, {})
|
|
142
137
|
]
|
|
143
138
|
}),
|
|
144
139
|
/*#__PURE__*/ jsxs(Column, {
|
|
@@ -68,9 +68,6 @@ var __webpack_modules__ = {
|
|
|
68
68
|
},
|
|
69
69
|
"./TriggerNode" (module) {
|
|
70
70
|
module.exports = require("./TriggerNode/index.cjs");
|
|
71
|
-
},
|
|
72
|
-
"./shared" (module) {
|
|
73
|
-
module.exports = require("./shared/index.cjs");
|
|
74
71
|
}
|
|
75
72
|
};
|
|
76
73
|
var __webpack_module_cache__ = {};
|
|
@@ -184,33 +181,29 @@ var __webpack_exports__ = {};
|
|
|
184
181
|
var __rspack_reexport = {};
|
|
185
182
|
for(const __rspack_import_key in _NodePropertiesPanel__rspack_import_16)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_NodePropertiesPanel__rspack_import_16[__rspack_import_key];
|
|
186
183
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
187
|
-
var
|
|
188
|
-
var __rspack_reexport = {};
|
|
189
|
-
for(const __rspack_import_key in _shared__rspack_import_17)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_shared__rspack_import_17[__rspack_import_key];
|
|
190
|
-
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
191
|
-
var _StageNode__rspack_import_18 = __webpack_require__("./StageNode");
|
|
184
|
+
var _StageNode__rspack_import_17 = __webpack_require__("./StageNode");
|
|
192
185
|
var __rspack_reexport = {};
|
|
193
|
-
for(const __rspack_import_key in
|
|
186
|
+
for(const __rspack_import_key in _StageNode__rspack_import_17)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_StageNode__rspack_import_17[__rspack_import_key];
|
|
194
187
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
195
|
-
var
|
|
188
|
+
var _StickyNoteNode__rspack_import_18 = __webpack_require__("./StickyNoteNode?d2a3");
|
|
196
189
|
var __rspack_reexport = {};
|
|
197
|
-
for(const __rspack_import_key in
|
|
190
|
+
for(const __rspack_import_key in _StickyNoteNode__rspack_import_18)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_StickyNoteNode__rspack_import_18[__rspack_import_key];
|
|
198
191
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
199
|
-
var
|
|
192
|
+
var _TaskIcon__rspack_import_19 = __webpack_require__("./TaskIcon");
|
|
200
193
|
var __rspack_reexport = {};
|
|
201
|
-
for(const __rspack_import_key in
|
|
194
|
+
for(const __rspack_import_key in _TaskIcon__rspack_import_19)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_TaskIcon__rspack_import_19[__rspack_import_key];
|
|
202
195
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
203
|
-
var
|
|
196
|
+
var _Toolbar__rspack_import_20 = __webpack_require__("./Toolbar");
|
|
204
197
|
var __rspack_reexport = {};
|
|
205
|
-
for(const __rspack_import_key in
|
|
198
|
+
for(const __rspack_import_key in _Toolbar__rspack_import_20)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_Toolbar__rspack_import_20[__rspack_import_key];
|
|
206
199
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
207
|
-
var
|
|
200
|
+
var _Toolbox__rspack_import_21 = __webpack_require__("./Toolbox?2740");
|
|
208
201
|
var __rspack_reexport = {};
|
|
209
|
-
for(const __rspack_import_key in
|
|
202
|
+
for(const __rspack_import_key in _Toolbox__rspack_import_21)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_Toolbox__rspack_import_21[__rspack_import_key];
|
|
210
203
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
211
|
-
var
|
|
204
|
+
var _TriggerNode__rspack_import_22 = __webpack_require__("./TriggerNode");
|
|
212
205
|
var __rspack_reexport = {};
|
|
213
|
-
for(const __rspack_import_key in
|
|
206
|
+
for(const __rspack_import_key in _TriggerNode__rspack_import_22)if ("default" !== __rspack_import_key) __rspack_reexport[__rspack_import_key] = ()=>_TriggerNode__rspack_import_22[__rspack_import_key];
|
|
214
207
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
215
208
|
})();
|
|
216
209
|
for(var __rspack_i in __webpack_exports__)exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
@@ -15,7 +15,6 @@ export * from './MiniCanvasNavigator';
|
|
|
15
15
|
export * from './NodeContextMenu';
|
|
16
16
|
export * from './NodeInspector';
|
|
17
17
|
export * from './NodePropertiesPanel';
|
|
18
|
-
export * from './shared';
|
|
19
18
|
export * from './StageNode';
|
|
20
19
|
export * from './StickyNoteNode';
|
|
21
20
|
export * from './TaskIcon';
|
|
@@ -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,0BAA0B,CAAC;AACzC,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,
|
|
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,0BAA0B,CAAC;AACzC,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,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC"}
|
|
@@ -15,7 +15,6 @@ export * from "./MiniCanvasNavigator/index.js";
|
|
|
15
15
|
export * from "./NodeContextMenu/index.js";
|
|
16
16
|
export * from "./NodeInspector.js";
|
|
17
17
|
export * from "./NodePropertiesPanel/index.js";
|
|
18
|
-
export * from "./shared/index.js";
|
|
19
18
|
export * from "./StageNode/index.js";
|
|
20
19
|
export * from "./StickyNoteNode/index.js";
|
|
21
20
|
export * from "./TaskIcon/index.js";
|
|
@@ -40,11 +40,9 @@ class CategoryTreeAdapter {
|
|
|
40
40
|
category: node.category,
|
|
41
41
|
version: node.version
|
|
42
42
|
},
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
}
|
|
47
|
-
} : {},
|
|
43
|
+
icon: {
|
|
44
|
+
name: node.display.icon
|
|
45
|
+
},
|
|
48
46
|
color: node.display.iconBackground,
|
|
49
47
|
colorDark: node.display.iconBackgroundDark
|
|
50
48
|
});
|
|
@@ -61,11 +59,9 @@ class CategoryTreeAdapter {
|
|
|
61
59
|
id: category.id,
|
|
62
60
|
name: category.name,
|
|
63
61
|
data: null,
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
}
|
|
68
|
-
} : {},
|
|
62
|
+
icon: {
|
|
63
|
+
name: category.icon
|
|
64
|
+
},
|
|
69
65
|
color: category.color,
|
|
70
66
|
colorDark: category.colorDark,
|
|
71
67
|
children
|
|
@@ -12,11 +12,9 @@ class CategoryTreeAdapter {
|
|
|
12
12
|
category: node.category,
|
|
13
13
|
version: node.version
|
|
14
14
|
},
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}
|
|
19
|
-
} : {},
|
|
15
|
+
icon: {
|
|
16
|
+
name: node.display.icon
|
|
17
|
+
},
|
|
20
18
|
color: node.display.iconBackground,
|
|
21
19
|
colorDark: node.display.iconBackgroundDark
|
|
22
20
|
});
|
|
@@ -33,11 +31,9 @@ class CategoryTreeAdapter {
|
|
|
33
31
|
id: category.id,
|
|
34
32
|
name: category.name,
|
|
35
33
|
data: null,
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
} : {},
|
|
34
|
+
icon: {
|
|
35
|
+
name: category.icon
|
|
36
|
+
},
|
|
41
37
|
color: category.color,
|
|
42
38
|
colorDark: category.colorDark,
|
|
43
39
|
children
|
|
@@ -34,7 +34,7 @@ const categoryManifestSchema = external_zod_namespaceObject.z.object({
|
|
|
34
34
|
sortOrder: external_zod_namespaceObject.z.number().int().nonnegative(),
|
|
35
35
|
color: external_zod_namespaceObject.z.string().min(1).optional(),
|
|
36
36
|
colorDark: external_zod_namespaceObject.z.string().min(1).optional(),
|
|
37
|
-
icon: external_zod_namespaceObject.z.string().min(1)
|
|
37
|
+
icon: external_zod_namespaceObject.z.string().min(1),
|
|
38
38
|
tags: external_zod_namespaceObject.z.array(external_zod_namespaceObject.z.string())
|
|
39
39
|
});
|
|
40
40
|
exports.categoryManifestSchema = __webpack_exports__.categoryManifestSchema;
|
|
@@ -6,7 +6,7 @@ export declare const categoryManifestSchema: z.ZodObject<{
|
|
|
6
6
|
sortOrder: z.ZodNumber;
|
|
7
7
|
color: z.ZodOptional<z.ZodString>;
|
|
8
8
|
colorDark: z.ZodOptional<z.ZodString>;
|
|
9
|
-
icon: z.
|
|
9
|
+
icon: z.ZodString;
|
|
10
10
|
tags: z.ZodArray<z.ZodString>;
|
|
11
11
|
}, z.core.$strip>;
|
|
12
12
|
export type CategoryManifest = z.infer<typeof categoryManifestSchema>;
|
|
@@ -6,7 +6,7 @@ const categoryManifestSchema = z.object({
|
|
|
6
6
|
sortOrder: z.number().int().nonnegative(),
|
|
7
7
|
color: z.string().min(1).optional(),
|
|
8
8
|
colorDark: z.string().min(1).optional(),
|
|
9
|
-
icon: z.string().min(1)
|
|
9
|
+
icon: z.string().min(1),
|
|
10
10
|
tags: z.array(z.string())
|
|
11
11
|
});
|
|
12
12
|
export { categoryManifestSchema };
|
|
@@ -46,7 +46,7 @@ const nodeDisplayManifestSchema = external_zod_namespaceObject.z.object({
|
|
|
46
46
|
label: external_zod_namespaceObject.z.string().min(1),
|
|
47
47
|
canvasLabel: external_zod_namespaceObject.z.string().min(1).optional(),
|
|
48
48
|
description: external_zod_namespaceObject.z.string().optional(),
|
|
49
|
-
icon: external_zod_namespaceObject.z.string().min(1)
|
|
49
|
+
icon: external_zod_namespaceObject.z.string().min(1),
|
|
50
50
|
shape: nodeShapeSchema.optional(),
|
|
51
51
|
color: external_zod_namespaceObject.z.string().optional(),
|
|
52
52
|
background: external_zod_namespaceObject.z.string().optional(),
|
|
@@ -13,7 +13,7 @@ export declare const nodeDisplayManifestSchema: z.ZodObject<{
|
|
|
13
13
|
label: z.ZodString;
|
|
14
14
|
canvasLabel: z.ZodOptional<z.ZodString>;
|
|
15
15
|
description: z.ZodOptional<z.ZodString>;
|
|
16
|
-
icon: z.
|
|
16
|
+
icon: z.ZodString;
|
|
17
17
|
shape: z.ZodOptional<z.ZodEnum<{
|
|
18
18
|
square: "square";
|
|
19
19
|
circle: "circle";
|
|
@@ -42,7 +42,7 @@ export declare const nodeManifestSchema: z.ZodObject<{
|
|
|
42
42
|
label: z.ZodString;
|
|
43
43
|
canvasLabel: z.ZodOptional<z.ZodString>;
|
|
44
44
|
description: z.ZodOptional<z.ZodString>;
|
|
45
|
-
icon: z.
|
|
45
|
+
icon: z.ZodString;
|
|
46
46
|
shape: z.ZodOptional<z.ZodEnum<{
|
|
47
47
|
square: "square";
|
|
48
48
|
circle: "circle";
|
|
@@ -14,7 +14,7 @@ const nodeDisplayManifestSchema = z.object({
|
|
|
14
14
|
label: z.string().min(1),
|
|
15
15
|
canvasLabel: z.string().min(1).optional(),
|
|
16
16
|
description: z.string().optional(),
|
|
17
|
-
icon: z.string().min(1)
|
|
17
|
+
icon: z.string().min(1),
|
|
18
18
|
shape: nodeShapeSchema.optional(),
|
|
19
19
|
color: z.string().optional(),
|
|
20
20
|
background: z.string().optional(),
|
|
@@ -6,11 +6,11 @@ export declare const defaultWorkflowManifest: {
|
|
|
6
6
|
id: string;
|
|
7
7
|
name: string;
|
|
8
8
|
sortOrder: number;
|
|
9
|
+
icon: string;
|
|
9
10
|
tags: string[];
|
|
10
11
|
parentId?: string | undefined;
|
|
11
12
|
color?: string | undefined;
|
|
12
13
|
colorDark?: string | undefined;
|
|
13
|
-
icon?: string | undefined;
|
|
14
14
|
}[];
|
|
15
15
|
nodes: {
|
|
16
16
|
nodeType: string;
|
|
@@ -19,9 +19,9 @@ export declare const defaultWorkflowManifest: {
|
|
|
19
19
|
sortOrder: number;
|
|
20
20
|
display: {
|
|
21
21
|
label: string;
|
|
22
|
+
icon: string;
|
|
22
23
|
canvasLabel?: string | undefined;
|
|
23
24
|
description?: string | undefined;
|
|
24
|
-
icon?: string | undefined;
|
|
25
25
|
shape?: "square" | "circle" | "container" | "rectangle" | undefined;
|
|
26
26
|
color?: string | undefined;
|
|
27
27
|
background?: string | undefined;
|
|
@@ -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,EAq4B1C,CAAC"}
|
|
@@ -111,14 +111,6 @@ function isValidUrl(input) {
|
|
|
111
111
|
return 'http:' === url.protocol || 'https:' === url.protocol;
|
|
112
112
|
}
|
|
113
113
|
function getIcon(iconId) {
|
|
114
|
-
if (!iconId) {
|
|
115
|
-
const BoxIcon = external_lucide_react_namespaceObject.icons.Box;
|
|
116
|
-
return ({ w, h, color })=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(BoxIcon, {
|
|
117
|
-
width: w ?? 24,
|
|
118
|
-
height: h ?? 24,
|
|
119
|
-
color: color
|
|
120
|
-
});
|
|
121
|
-
}
|
|
122
114
|
if (isValidUrl(iconId)) return ({ w, h })=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("img", {
|
|
123
115
|
src: iconId,
|
|
124
116
|
alt: "icon",
|
|
@@ -4,7 +4,7 @@ export type IconComponent = (props: {
|
|
|
4
4
|
h?: number;
|
|
5
5
|
color?: string;
|
|
6
6
|
}) => JSX.Element;
|
|
7
|
-
export declare function getIcon(iconId
|
|
7
|
+
export declare function getIcon(iconId: string): IconComponent;
|
|
8
8
|
export interface CanvasIconProps {
|
|
9
9
|
icon?: string;
|
|
10
10
|
size?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon-registry.d.ts","sourceRoot":"","sources":["../../../src/canvas/utils/icon-registry.tsx"],"names":[],"mappings":"AASA,OAAO,EAAE,KAAK,GAAG,EAAiB,MAAM,OAAO,CAAC;AAGhD,MAAM,MAAM,aAAa,GAAG,CAAC,KAAK,EAAE;IAAE,CAAC,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,CAAC,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CAAE,KAAK,GAAG,CAAC,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"icon-registry.d.ts","sourceRoot":"","sources":["../../../src/canvas/utils/icon-registry.tsx"],"names":[],"mappings":"AASA,OAAO,EAAE,KAAK,GAAG,EAAiB,MAAM,OAAO,CAAC;AAGhD,MAAM,MAAM,aAAa,GAAG,CAAC,KAAK,EAAE;IAAE,CAAC,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,CAAC,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CAAE,KAAK,GAAG,CAAC,OAAO,CAAC;AAuD/F,wBAAgB,OAAO,CAAC,MAAM,EAAE,MAAM,GAAG,aAAa,CAkCrD;AAED,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAMD,eAAO,MAAM,UAAU,uDAIrB,CAAC;AAGH,eAAO,MAAM,QAAQ,uDAAa,CAAC"}
|
|
@@ -81,14 +81,6 @@ function isValidUrl(input) {
|
|
|
81
81
|
return 'http:' === url.protocol || 'https:' === url.protocol;
|
|
82
82
|
}
|
|
83
83
|
function getIcon(iconId) {
|
|
84
|
-
if (!iconId) {
|
|
85
|
-
const BoxIcon = icons.Box;
|
|
86
|
-
return ({ w, h, color })=>/*#__PURE__*/ jsx(BoxIcon, {
|
|
87
|
-
width: w ?? 24,
|
|
88
|
-
height: h ?? 24,
|
|
89
|
-
color: color
|
|
90
|
-
});
|
|
91
|
-
}
|
|
92
84
|
if (isValidUrl(iconId)) return ({ w, h })=>/*#__PURE__*/ jsx("img", {
|
|
93
85
|
src: iconId,
|
|
94
86
|
alt: "icon",
|
|
@@ -32,7 +32,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
32
32
|
const external_collapse_cjs_namespaceObject = require("./collapse.cjs");
|
|
33
33
|
function resolveDisplay(manifestDisplay, context) {
|
|
34
34
|
if (!manifestDisplay) return {
|
|
35
|
-
icon: '',
|
|
35
|
+
icon: 'circle-question-mark',
|
|
36
36
|
shape: 'square',
|
|
37
37
|
label: context?.display?.label || 'Unknown Node'
|
|
38
38
|
};
|
|
@@ -46,7 +46,6 @@ function resolveDisplay(manifestDisplay, context) {
|
|
|
46
46
|
...context?.display,
|
|
47
47
|
label: resolvedLabel,
|
|
48
48
|
canvasLabel: context?.display?.canvasLabel ?? manifestDisplay.canvasLabel,
|
|
49
|
-
icon: context?.display?.icon ?? manifestDisplay.icon ?? '',
|
|
50
49
|
shape: isCollapsed ? collapsedShape : expandedShape
|
|
51
50
|
};
|
|
52
51
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manifest-resolver.d.ts","sourceRoot":"","sources":["../../../src/canvas/utils/manifest-resolver.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yCAAyC,CAAC;AACjF,OAAO,KAAK,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAC5F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yCAAyC,CAAC;AACnF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAMrE,MAAM,WAAW,iBAAkB,SAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IAEhE,OAAO,CAAC,EAAE,qBAAqB,CAAC;IAEhC,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAEjC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;
|
|
1
|
+
{"version":3,"file":"manifest-resolver.d.ts","sourceRoot":"","sources":["../../../src/canvas/utils/manifest-resolver.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yCAAyC,CAAC;AACjF,OAAO,KAAK,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAC5F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yCAAyC,CAAC;AACnF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAMrE,MAAM,WAAW,iBAAkB,SAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IAEhE,OAAO,CAAC,EAAE,qBAAqB,CAAC;IAEhC,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAEjC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAMD,MAAM,MAAM,eAAe,GAAG,qBAAqB,GAAG;IACpD,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,wBAAwB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5C,CAAC;AAKF,MAAM,WAAW,cAAe,SAAQ,IAAI,CAAC,cAAc,EAAE,QAAQ,GAAG,SAAS,GAAG,UAAU,CAAC;IAE7F,EAAE,EAAE,MAAM,CAAC;IAEX,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,OAAO,EAAE,OAAO,CAAC;IAEjB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,iBAAiB,KAAK,IAAI,CAAC;CAC/C;AAKD,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,mBAAmB,EAAE,SAAS,CAAC;IAE/E,OAAO,EAAE,cAAc,EAAE,CAAC;CAC3B;AAKD,UAAU,YAAY;IACpB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAkBD,wBAAgB,cAAc,CAC5B,eAAe,CAAC,EAAE,mBAAmB,EACrC,OAAO,CAAC,EAAE,iBAAiB,GAC1B,eAAe,CAwCjB;AA6BD,wBAAgB,iBAAiB,CAC/B,OAAO,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS,EACrC,OAAO,EAAE,iBAAiB,GACzB,OAAO,CAmBT;AAiCD,wBAAgB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,YAAY,GAAG,MAAM,CAKhF;AAuCD,wBAAgB,cAAc,CAC5B,YAAY,EAAE,mBAAmB,EAAE,EACnC,OAAO,EAAE,iBAAiB,GACzB,mBAAmB,EAAE,CAmEvB"}
|