@uipath/apollo-react 4.24.2-pr672.9dd3fa2 → 4.24.4

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.
@@ -192,7 +192,7 @@ const ButtonHandleBase = ({ id, nodeId, type, position, connectionPosition = pos
192
192
  const ButtonHandle = /*#__PURE__*/ (0, external_react_namespaceObject.memo)(ButtonHandleBase);
193
193
  function InwardHandleContent({ handleType, isVertical, selected, hovered, showNotch, label, labelIcon, labelBackgroundColor, layout }) {
194
194
  const labelElement = label ? /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
195
- className: (0, CssUtil_cjs_namespaceObject.cx)('pointer-events-none flex items-center gap-1.5 whitespace-nowrap rounded-full border border-border bg-surface px-2 py-0.5', 'text-xs font-medium leading-4 text-foreground-muted'),
195
+ className: (0, CssUtil_cjs_namespaceObject.cx)('pointer-events-none flex items-center gap-1.5 whitespace-nowrap rounded-full border border-border-subtle bg-transparent px-2 py-0.5', 'text-xs font-medium leading-4 text-foreground-muted'),
196
196
  style: labelBackgroundColor ? {
197
197
  backgroundColor: labelBackgroundColor
198
198
  } : void 0,
@@ -163,7 +163,7 @@ const ButtonHandleBase = ({ id, nodeId, type, position, connectionPosition = pos
163
163
  const ButtonHandle = /*#__PURE__*/ memo(ButtonHandleBase);
164
164
  function InwardHandleContent({ handleType, isVertical, selected, hovered, showNotch, label, labelIcon, labelBackgroundColor, layout }) {
165
165
  const labelElement = label ? /*#__PURE__*/ jsxs("div", {
166
- className: cx('pointer-events-none flex items-center gap-1.5 whitespace-nowrap rounded-full border border-border bg-surface px-2 py-0.5', 'text-xs font-medium leading-4 text-foreground-muted'),
166
+ className: cx('pointer-events-none flex items-center gap-1.5 whitespace-nowrap rounded-full border border-border-subtle bg-transparent px-2 py-0.5', 'text-xs font-medium leading-4 text-foreground-muted'),
167
167
  style: labelBackgroundColor ? {
168
168
  backgroundColor: labelBackgroundColor
169
169
  } : void 0,
@@ -116,7 +116,7 @@ function CanvasTooltip({ content, placement = 'top', smartTooltip = false, delay
116
116
  /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(tooltip_namespaceObject.TooltipPortal, {
117
117
  children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(tooltip_namespaceObject.TooltipContent, {
118
118
  side: placement,
119
- className: "max-w-xs break-words",
119
+ className: "z-1200 max-w-xs break-words",
120
120
  children: content
121
121
  })
122
122
  })
@@ -77,7 +77,7 @@ function CanvasTooltip({ content, placement = 'top', smartTooltip = false, delay
77
77
  /*#__PURE__*/ jsx(TooltipPortal, {
78
78
  children: /*#__PURE__*/ jsx(TooltipContent, {
79
79
  side: placement,
80
- className: "max-w-xs break-words",
80
+ className: "z-1200 max-w-xs break-words",
81
81
  children: content
82
82
  })
83
83
  })
@@ -47,7 +47,6 @@ const BaseNodeContainer_cjs_namespaceObject = require("../BaseNode/BaseNodeConta
47
47
  const BaseNodeMissingManifest_cjs_namespaceObject = require("../BaseNode/BaseNodeMissingManifest.cjs");
48
48
  const external_ButtonHandle_index_cjs_namespaceObject = require("../ButtonHandle/index.cjs");
49
49
  const external_Toolbar_index_cjs_namespaceObject = require("../Toolbar/index.cjs");
50
- const external_IterationNavigator_cjs_namespaceObject = require("./IterationNavigator.cjs");
51
50
  const external_LoopNode_helpers_cjs_namespaceObject = require("./LoopNode.helpers.cjs");
52
51
  const DEFAULT_LOOP_ICON = 'repeat';
53
52
  const DEFAULT_LOOP_TITLE = 'Loop';
@@ -154,7 +153,7 @@ function resolveLoopHandleConfigurations(manifestHandleConfigurations, data) {
154
153
  return manifestHandleConfigurations ?? [];
155
154
  }
156
155
  function LoopNodeComponent(props) {
157
- const { id, type, data, selected = false, dragging = false, width = 0, height = 0, onAddFirstChild, onResize, toolbarConfig: toolbarConfigProp, adornments: adornmentsProp, executionStatusOverride, suggestionType: suggestionTypeProp, iterationState: iterationStateProp } = props;
156
+ const { id, type, data, selected = false, dragging = false, width = 0, height = 0, onAddFirstChild, onResize, toolbarConfig: toolbarConfigProp, adornments: adornmentsProp, executionStatusOverride, suggestionType: suggestionTypeProp } = props;
158
157
  const nodeTypeRegistry = (0, index_cjs_namespaceObject.useOptionalNodeTypeRegistry)();
159
158
  const [isHovered, setIsHovered] = (0, external_react_namespaceObject.useState)(false);
160
159
  const resolvedData = data ?? EMPTY_DATA;
@@ -286,7 +285,7 @@ function LoopNodeComponent(props) {
286
285
  "data-suggestion-type": suggestionType,
287
286
  "data-validation-status": validationState?.validationStatus,
288
287
  "aria-busy": resolvedData.loading || void 0,
289
- className: (0, apollo_wind_namespaceObject.cn)('group/loop-shell relative box-border flex h-full w-full flex-col overflow-visible rounded-[20px] border bg-transparent', 'transition-[border-color,box-shadow,opacity] shadow-(--canvas-node-shadow-rest)', 'border-border', (0, BaseNodeContainer_cjs_namespaceObject.getStatusBorder)(suggestionType ?? validationState?.validationStatus ?? executionStatus), isHovered && 'shadow-(--canvas-node-shadow-hover) border-border-hover', selected && 'outline outline-2 outline-foreground-accent-muted', isDropTarget && 'bg-surface-hover outline outline-2 outline-brand', 'drag' === interactionState && 'cursor-grabbing shadow-(--canvas-node-shadow-lifted)'),
288
+ className: (0, apollo_wind_namespaceObject.cn)('group/loop-shell relative box-border flex h-full w-full flex-col overflow-visible rounded-[20px] border bg-transparent', 'transition-[border-color,box-shadow,opacity] shadow-(--canvas-node-shadow-rest)', 'border-border-subtle', (0, BaseNodeContainer_cjs_namespaceObject.getStatusBorder)(suggestionType ?? validationState?.validationStatus ?? executionStatus), isHovered && 'shadow-(--canvas-node-shadow-hover) border-border-hover', selected && 'outline outline-2 outline-foreground-accent-muted', isDropTarget && 'bg-surface-hover outline outline-2 outline-brand', 'drag' === interactionState && 'cursor-grabbing shadow-(--canvas-node-shadow-lifted)'),
290
289
  style: {
291
290
  ...nodeSizeStyle,
292
291
  ...display.background ? {
@@ -312,8 +311,7 @@ function LoopNodeComponent(props) {
312
311
  title: displayTitle,
313
312
  icon: displayIcon,
314
313
  loading: isLoading,
315
- isParallel: isParallel,
316
- iterationState: iterationStateProp
314
+ isParallel: isParallel
317
315
  }),
318
316
  /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(BodyFrame, {
319
317
  isEmpty: showEmptyStateButton,
@@ -349,7 +347,7 @@ function LoopNodeComponent(props) {
349
347
  });
350
348
  }
351
349
  const LoopNode = /*#__PURE__*/ (0, external_react_namespaceObject.memo)(LoopNodeComponent);
352
- function Header({ title, icon, loading, isParallel, iterationState }) {
350
+ function Header({ title, icon, loading, isParallel }) {
353
351
  const titleContent = loading ? /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
354
352
  className: "h-5 w-28 animate-pulse rounded bg-(--canvas-background-overlay)"
355
353
  }) : /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
@@ -367,7 +365,7 @@ function Header({ title, icon, loading, isParallel, iterationState }) {
367
365
  })
368
366
  }) : null;
369
367
  return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
370
- className: (0, apollo_wind_namespaceObject.cn)('flex shrink-0 cursor-grab items-center justify-between gap-2.5 rounded-t-[18px]', '-mb-2.5 bg-surface-overlay px-3.5 pb-2.5 pt-2.5 text-foreground', 'active:cursor-grabbing'),
368
+ className: "flex shrink-0 cursor-grab items-center justify-between gap-2.5 px-3.5 pt-2.5 text-foreground active:cursor-grabbing",
371
369
  "data-testid": "loop-node-header",
372
370
  children: [
373
371
  /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
@@ -377,26 +375,18 @@ function Header({ title, icon, loading, isParallel, iterationState }) {
377
375
  titleContent
378
376
  ]
379
377
  }),
380
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
381
- className: "flex shrink-0 items-center gap-2",
378
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("span", {
379
+ className: "flex shrink-0 items-center gap-1 rounded-full border border-border-subtle bg-transparent px-2.5 py-0.5 text-[11px] font-semibold leading-4 text-foreground",
382
380
  children: [
383
- iterationState ? /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_IterationNavigator_cjs_namespaceObject.IterationNavigator, {
384
- iterationState: iterationState
385
- }) : null,
386
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("span", {
387
- className: "flex h-6 shrink-0 items-center gap-1 rounded-full border border-border bg-surface px-2.5 text-[11px] font-semibold leading-4 text-foreground shadow-sm",
388
- children: [
389
- /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
390
- className: (0, apollo_wind_namespaceObject.cn)('flex shrink-0', isParallel && 'rotate-90'),
391
- "aria-hidden": true,
392
- children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(icon_registry_cjs_namespaceObject.CanvasIcon, {
393
- icon: "align-justify",
394
- size: 11
395
- })
396
- }),
397
- isParallel ? 'Parallel' : 'Sequential'
398
- ]
399
- })
381
+ /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
382
+ className: (0, apollo_wind_namespaceObject.cn)('flex shrink-0', isParallel && 'rotate-90'),
383
+ "aria-hidden": true,
384
+ children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(icon_registry_cjs_namespaceObject.CanvasIcon, {
385
+ icon: "align-justify",
386
+ size: 11
387
+ })
388
+ }),
389
+ isParallel ? 'Parallel' : 'Sequential'
400
390
  ]
401
391
  })
402
392
  ]
@@ -418,7 +408,7 @@ function BodyFrame({ isEmpty, isLoading }) {
418
408
  return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
419
409
  "data-testid": "loop-body-frame",
420
410
  "data-empty": isEmpty ? 'true' : 'false',
421
- className: (0, apollo_wind_namespaceObject.cn)('relative m-2.5 flex flex-1 rounded-xl border-[1.5px] border-dashed border-border bg-transparent', 'shadow-[0_0_0_10px_var(--surface-overlay)]', 'pointer-events-none'),
411
+ className: (0, apollo_wind_namespaceObject.cn)('relative m-2.5 flex flex-1 rounded-xl border-[1.5px] border-dashed border-border-subtle bg-transparent', 'pointer-events-none'),
422
412
  children: isLoading ? /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
423
413
  className: "m-6 h-14 w-full animate-pulse rounded-[18px] bg-(--canvas-background-overlay)"
424
414
  }) : null
@@ -1 +1 @@
1
- {"version":3,"file":"LoopNode.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/LoopNode/LoopNode.tsx"],"names":[],"mappings":"AAuCA,OAAO,KAAK,EAAsB,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAmI1E,iBAAS,iBAAiB,CAAC,KAAK,EAAE,aAAa,2CAkP9C;AAED,eAAO,MAAM,QAAQ,+DAA0B,CAAC"}
1
+ {"version":3,"file":"LoopNode.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/LoopNode/LoopNode.tsx"],"names":[],"mappings":"AAsCA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAmItD,iBAAS,iBAAiB,CAAC,KAAK,EAAE,aAAa,2CA2O9C;AAED,eAAO,MAAM,QAAQ,+DAA0B,CAAC"}
@@ -19,7 +19,6 @@ import { getStatusBorder } from "../BaseNode/BaseNodeContainer.js";
19
19
  import { MissingManifestNode } from "../BaseNode/BaseNodeMissingManifest.js";
20
20
  import { ButtonHandles } from "../ButtonHandle/index.js";
21
21
  import { NodeToolbar } from "../Toolbar/index.js";
22
- import { IterationNavigator } from "./IterationNavigator.js";
23
22
  import { resolveContainerHandleGroups } from "./LoopNode.helpers.js";
24
23
  const DEFAULT_LOOP_ICON = 'repeat';
25
24
  const DEFAULT_LOOP_TITLE = 'Loop';
@@ -126,7 +125,7 @@ function resolveLoopHandleConfigurations(manifestHandleConfigurations, data) {
126
125
  return manifestHandleConfigurations ?? [];
127
126
  }
128
127
  function LoopNodeComponent(props) {
129
- const { id, type, data, selected = false, dragging = false, width = 0, height = 0, onAddFirstChild, onResize, toolbarConfig: toolbarConfigProp, adornments: adornmentsProp, executionStatusOverride, suggestionType: suggestionTypeProp, iterationState: iterationStateProp } = props;
128
+ const { id, type, data, selected = false, dragging = false, width = 0, height = 0, onAddFirstChild, onResize, toolbarConfig: toolbarConfigProp, adornments: adornmentsProp, executionStatusOverride, suggestionType: suggestionTypeProp } = props;
130
129
  const nodeTypeRegistry = useOptionalNodeTypeRegistry();
131
130
  const [isHovered, setIsHovered] = useState(false);
132
131
  const resolvedData = data ?? EMPTY_DATA;
@@ -258,7 +257,7 @@ function LoopNodeComponent(props) {
258
257
  "data-suggestion-type": suggestionType,
259
258
  "data-validation-status": validationState?.validationStatus,
260
259
  "aria-busy": resolvedData.loading || void 0,
261
- className: cn('group/loop-shell relative box-border flex h-full w-full flex-col overflow-visible rounded-[20px] border bg-transparent', 'transition-[border-color,box-shadow,opacity] shadow-(--canvas-node-shadow-rest)', 'border-border', getStatusBorder(suggestionType ?? validationState?.validationStatus ?? executionStatus), isHovered && 'shadow-(--canvas-node-shadow-hover) border-border-hover', selected && 'outline outline-2 outline-foreground-accent-muted', isDropTarget && 'bg-surface-hover outline outline-2 outline-brand', 'drag' === interactionState && 'cursor-grabbing shadow-(--canvas-node-shadow-lifted)'),
260
+ className: cn('group/loop-shell relative box-border flex h-full w-full flex-col overflow-visible rounded-[20px] border bg-transparent', 'transition-[border-color,box-shadow,opacity] shadow-(--canvas-node-shadow-rest)', 'border-border-subtle', getStatusBorder(suggestionType ?? validationState?.validationStatus ?? executionStatus), isHovered && 'shadow-(--canvas-node-shadow-hover) border-border-hover', selected && 'outline outline-2 outline-foreground-accent-muted', isDropTarget && 'bg-surface-hover outline outline-2 outline-brand', 'drag' === interactionState && 'cursor-grabbing shadow-(--canvas-node-shadow-lifted)'),
262
261
  style: {
263
262
  ...nodeSizeStyle,
264
263
  ...display.background ? {
@@ -284,8 +283,7 @@ function LoopNodeComponent(props) {
284
283
  title: displayTitle,
285
284
  icon: displayIcon,
286
285
  loading: isLoading,
287
- isParallel: isParallel,
288
- iterationState: iterationStateProp
286
+ isParallel: isParallel
289
287
  }),
290
288
  /*#__PURE__*/ jsx(BodyFrame, {
291
289
  isEmpty: showEmptyStateButton,
@@ -321,7 +319,7 @@ function LoopNodeComponent(props) {
321
319
  });
322
320
  }
323
321
  const LoopNode = /*#__PURE__*/ memo(LoopNodeComponent);
324
- function Header({ title, icon, loading, isParallel, iterationState }) {
322
+ function Header({ title, icon, loading, isParallel }) {
325
323
  const titleContent = loading ? /*#__PURE__*/ jsx("div", {
326
324
  className: "h-5 w-28 animate-pulse rounded bg-(--canvas-background-overlay)"
327
325
  }) : /*#__PURE__*/ jsx("span", {
@@ -339,7 +337,7 @@ function Header({ title, icon, loading, isParallel, iterationState }) {
339
337
  })
340
338
  }) : null;
341
339
  return /*#__PURE__*/ jsxs("div", {
342
- className: cn('flex shrink-0 cursor-grab items-center justify-between gap-2.5 rounded-t-[18px]', '-mb-2.5 bg-surface-overlay px-3.5 pb-2.5 pt-2.5 text-foreground', 'active:cursor-grabbing'),
340
+ className: "flex shrink-0 cursor-grab items-center justify-between gap-2.5 px-3.5 pt-2.5 text-foreground active:cursor-grabbing",
343
341
  "data-testid": "loop-node-header",
344
342
  children: [
345
343
  /*#__PURE__*/ jsxs("div", {
@@ -349,26 +347,18 @@ function Header({ title, icon, loading, isParallel, iterationState }) {
349
347
  titleContent
350
348
  ]
351
349
  }),
352
- /*#__PURE__*/ jsxs("div", {
353
- className: "flex shrink-0 items-center gap-2",
350
+ /*#__PURE__*/ jsxs("span", {
351
+ className: "flex shrink-0 items-center gap-1 rounded-full border border-border-subtle bg-transparent px-2.5 py-0.5 text-[11px] font-semibold leading-4 text-foreground",
354
352
  children: [
355
- iterationState ? /*#__PURE__*/ jsx(IterationNavigator, {
356
- iterationState: iterationState
357
- }) : null,
358
- /*#__PURE__*/ jsxs("span", {
359
- className: "flex h-6 shrink-0 items-center gap-1 rounded-full border border-border bg-surface px-2.5 text-[11px] font-semibold leading-4 text-foreground shadow-sm",
360
- children: [
361
- /*#__PURE__*/ jsx("span", {
362
- className: cn('flex shrink-0', isParallel && 'rotate-90'),
363
- "aria-hidden": true,
364
- children: /*#__PURE__*/ jsx(CanvasIcon, {
365
- icon: "align-justify",
366
- size: 11
367
- })
368
- }),
369
- isParallel ? 'Parallel' : 'Sequential'
370
- ]
371
- })
353
+ /*#__PURE__*/ jsx("span", {
354
+ className: cn('flex shrink-0', isParallel && 'rotate-90'),
355
+ "aria-hidden": true,
356
+ children: /*#__PURE__*/ jsx(CanvasIcon, {
357
+ icon: "align-justify",
358
+ size: 11
359
+ })
360
+ }),
361
+ isParallel ? 'Parallel' : 'Sequential'
372
362
  ]
373
363
  })
374
364
  ]
@@ -390,7 +380,7 @@ function BodyFrame({ isEmpty, isLoading }) {
390
380
  return /*#__PURE__*/ jsx("div", {
391
381
  "data-testid": "loop-body-frame",
392
382
  "data-empty": isEmpty ? 'true' : 'false',
393
- className: cn('relative m-2.5 flex flex-1 rounded-xl border-[1.5px] border-dashed border-border bg-transparent', 'shadow-[0_0_0_10px_var(--surface-overlay)]', 'pointer-events-none'),
383
+ className: cn('relative m-2.5 flex flex-1 rounded-xl border-[1.5px] border-dashed border-border-subtle bg-transparent', 'pointer-events-none'),
394
384
  children: isLoading ? /*#__PURE__*/ jsx("div", {
395
385
  className: "m-6 h-14 w-full animate-pulse rounded-[18px] bg-(--canvas-background-overlay)"
396
386
  }) : null
@@ -9,19 +9,11 @@ export interface LoopNodeResizeSize {
9
9
  width: number;
10
10
  height: number;
11
11
  }
12
- export interface LoopIterationState {
13
- activeIndex: number;
14
- total: number;
15
- onActiveIndexChange?: (nextIndex: number) => void;
16
- disabled?: boolean;
17
- ariaLabel?: string;
18
- }
19
12
  export interface LoopNodeConfig {
20
13
  toolbarConfig?: NodeToolbarConfig | null;
21
14
  adornments?: NodeAdornments;
22
15
  executionStatusOverride?: ElementStatusValues;
23
16
  suggestionType?: SuggestionType;
24
- iterationState?: LoopIterationState;
25
17
  }
26
18
  export interface LoopNodeProps extends NodeProps<Node<LoopNodeData>>, LoopNodeConfig {
27
19
  onAddFirstChild?: () => void;
@@ -1 +1 @@
1
- {"version":3,"file":"LoopNode.types.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/LoopNode/LoopNode.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAChF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAClD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAChD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AACjE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAEpD,MAAM,MAAM,YAAY,GAAG,YAAY,CAAC;AAExC,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,kBAAkB;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,mBAAmB,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;IAClD,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,cAAc;IAC7B,aAAa,CAAC,EAAE,iBAAiB,GAAG,IAAI,CAAC;IACzC,UAAU,CAAC,EAAE,cAAc,CAAC;IAC5B,uBAAuB,CAAC,EAAE,mBAAmB,CAAC;IAC9C,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,cAAc,CAAC,EAAE,kBAAkB,CAAC;CACrC;AAED,MAAM,WAAW,aAAc,SAAQ,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,EAAE,cAAc;IAClF,eAAe,CAAC,EAAE,MAAM,IAAI,CAAC;IAC7B,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,kBAAkB,KAAK,IAAI,CAAC;CAC/C"}
1
+ {"version":3,"file":"LoopNode.types.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/LoopNode/LoopNode.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AAChF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAClD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAChD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AACjE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAEpD,MAAM,MAAM,YAAY,GAAG,YAAY,CAAC;AAExC,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,cAAc;IAC7B,aAAa,CAAC,EAAE,iBAAiB,GAAG,IAAI,CAAC;IACzC,UAAU,CAAC,EAAE,cAAc,CAAC;IAC5B,uBAAuB,CAAC,EAAE,mBAAmB,CAAC;IAC9C,cAAc,CAAC,EAAE,cAAc,CAAC;CACjC;AAED,MAAM,WAAW,aAAc,SAAQ,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,EAAE,cAAc;IAClF,eAAe,CAAC,EAAE,MAAM,IAAI,CAAC;IAC7B,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,kBAAkB,KAAK,IAAI,CAAC;CAC/C"}