@datatechsolutions/ui 2.11.23 → 2.11.24

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.
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  'use strict';
3
3
 
4
- var chunk6UEVHQTJ_js = require('./chunk-6UEVHQTJ.js');
5
- var chunkYXN2K77G_js = require('./chunk-YXN2K77G.js');
4
+ var chunkDXY4VHMX_js = require('./chunk-DXY4VHMX.js');
6
5
  var chunkP4YYEM4B_js = require('./chunk-P4YYEM4B.js');
7
6
  var chunkPWBWP5FJ_js = require('./chunk-PWBWP5FJ.js');
7
+ var chunkYXN2K77G_js = require('./chunk-YXN2K77G.js');
8
8
  var react = require('react');
9
9
  var react$1 = require('@xyflow/react');
10
10
  require('@xyflow/react/dist/style.css');
@@ -1601,7 +1601,7 @@ var AgentToolFlowNode = react.memo(function AgentToolFlowNode2({ id, data, selec
1601
1601
  event.stopPropagation();
1602
1602
  },
1603
1603
  children: /* @__PURE__ */ jsxRuntime.jsx(
1604
- chunk6UEVHQTJ_js.ToggleSwitch,
1604
+ chunkDXY4VHMX_js.ToggleSwitch,
1605
1605
  {
1606
1606
  checked: Boolean(agentTool.enabled),
1607
1607
  onChange: () => data.onToggle?.(agentTool),
@@ -1708,7 +1708,7 @@ var ToolFlowNode = react.memo(function ToolFlowNode2({ id, data, selected }) {
1708
1708
  event.preventDefault();
1709
1709
  },
1710
1710
  children: /* @__PURE__ */ jsxRuntime.jsx(
1711
- chunk6UEVHQTJ_js.ToggleSwitch,
1711
+ chunkDXY4VHMX_js.ToggleSwitch,
1712
1712
  {
1713
1713
  checked: Boolean(tool.enabled),
1714
1714
  onChange: () => onToggle(tool),
@@ -1859,7 +1859,7 @@ var RuleFlowNode = react.memo(function RuleFlowNode2({ id, data, selected }) {
1859
1859
  event.preventDefault();
1860
1860
  },
1861
1861
  children: /* @__PURE__ */ jsxRuntime.jsx(
1862
- chunk6UEVHQTJ_js.ToggleSwitch,
1862
+ chunkDXY4VHMX_js.ToggleSwitch,
1863
1863
  {
1864
1864
  checked: Boolean(rule.enabled),
1865
1865
  onChange: () => onToggle(rule),
@@ -3167,8 +3167,8 @@ function ConfigFormActions({
3167
3167
  saveDisabled = false
3168
3168
  }) {
3169
3169
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2 border-t border-gray-200 pt-4 dark:border-gray-700", children: [
3170
- /* @__PURE__ */ jsxRuntime.jsx(chunk6UEVHQTJ_js.Button, { type: "button", outline: true, onClick: onCancel, children: cancelLabel }),
3171
- /* @__PURE__ */ jsxRuntime.jsx(chunk6UEVHQTJ_js.Button, { type: "button", onClick: onSave, disabled: saveDisabled, children: saveLabel })
3170
+ /* @__PURE__ */ jsxRuntime.jsx(chunkDXY4VHMX_js.Button, { type: "button", outline: true, onClick: onCancel, children: cancelLabel }),
3171
+ /* @__PURE__ */ jsxRuntime.jsx(chunkDXY4VHMX_js.Button, { type: "button", onClick: onSave, disabled: saveDisabled, children: saveLabel })
3172
3172
  ] });
3173
3173
  }
3174
3174
  var COLOR_CLASSES = {
@@ -3415,7 +3415,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3415
3415
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-3 flex items-center justify-between", children: [
3416
3416
  /* @__PURE__ */ jsxRuntime.jsx("label", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: t("conditionsLabel") }),
3417
3417
  /* @__PURE__ */ jsxRuntime.jsx(
3418
- chunk6UEVHQTJ_js.Button,
3418
+ chunkDXY4VHMX_js.Button,
3419
3419
  {
3420
3420
  type: "button",
3421
3421
  onClick: handleAddCondition,
@@ -3426,7 +3426,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3426
3426
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "space-y-3", children: conditions.map((condition, index) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-start gap-2 rounded-lg border border-gray-200 bg-gray-50 p-3 dark:border-gray-700 dark:bg-gray-800/50", children: [
3427
3427
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid flex-1 grid-cols-3 gap-2", children: [
3428
3428
  /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(
3429
- chunk6UEVHQTJ_js.FormInput,
3429
+ chunkDXY4VHMX_js.FormInput,
3430
3430
  {
3431
3431
  type: "text",
3432
3432
  label: t("variableLabel"),
@@ -3437,7 +3437,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3437
3437
  }
3438
3438
  ) }),
3439
3439
  /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(
3440
- chunk6UEVHQTJ_js.FormSelect,
3440
+ chunkDXY4VHMX_js.FormSelect,
3441
3441
  {
3442
3442
  label: t("operatorLabel"),
3443
3443
  value: condition.operator,
@@ -3447,7 +3447,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3447
3447
  }
3448
3448
  ) }),
3449
3449
  /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(
3450
- chunk6UEVHQTJ_js.FormInput,
3450
+ chunkDXY4VHMX_js.FormInput,
3451
3451
  {
3452
3452
  type: "text",
3453
3453
  label: t("valueLabel"),
@@ -3459,7 +3459,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3459
3459
  ) })
3460
3460
  ] }),
3461
3461
  conditions.length > 1 && /* @__PURE__ */ jsxRuntime.jsx(
3462
- chunk6UEVHQTJ_js.IconButton,
3462
+ chunkDXY4VHMX_js.IconButton,
3463
3463
  {
3464
3464
  onClick: () => handleRemoveCondition(index),
3465
3465
  icon: /* @__PURE__ */ jsxRuntime.jsx(outline.TrashIcon, { className: "h-4 w-4" }),
@@ -3614,7 +3614,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3614
3614
  };
3615
3615
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3616
3616
  /* @__PURE__ */ jsxRuntime.jsx(
3617
- chunk6UEVHQTJ_js.FormSelect,
3617
+ chunkDXY4VHMX_js.FormSelect,
3618
3618
  {
3619
3619
  label: t("methodLabel"),
3620
3620
  value: method,
@@ -3623,7 +3623,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3623
3623
  }
3624
3624
  ),
3625
3625
  /* @__PURE__ */ jsxRuntime.jsx(
3626
- chunk6UEVHQTJ_js.FormInput,
3626
+ chunkDXY4VHMX_js.FormInput,
3627
3627
  {
3628
3628
  type: "text",
3629
3629
  label: t("urlLabel"),
@@ -3636,7 +3636,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3636
3636
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-2 flex items-center justify-between", children: [
3637
3637
  /* @__PURE__ */ jsxRuntime.jsx("label", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: t("headersLabel") }),
3638
3638
  /* @__PURE__ */ jsxRuntime.jsx(
3639
- chunk6UEVHQTJ_js.Button,
3639
+ chunkDXY4VHMX_js.Button,
3640
3640
  {
3641
3641
  type: "button",
3642
3642
  onClick: handleAddHeader,
@@ -3646,7 +3646,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3646
3646
  ] }),
3647
3647
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "space-y-2", children: headerEntries.map((entry, index) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
3648
3648
  /* @__PURE__ */ jsxRuntime.jsx(
3649
- chunk6UEVHQTJ_js.FormInput,
3649
+ chunkDXY4VHMX_js.FormInput,
3650
3650
  {
3651
3651
  type: "text",
3652
3652
  value: entry.key,
@@ -3656,7 +3656,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3656
3656
  }
3657
3657
  ),
3658
3658
  /* @__PURE__ */ jsxRuntime.jsx(
3659
- chunk6UEVHQTJ_js.FormInput,
3659
+ chunkDXY4VHMX_js.FormInput,
3660
3660
  {
3661
3661
  type: "text",
3662
3662
  value: entry.value,
@@ -3666,7 +3666,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3666
3666
  }
3667
3667
  ),
3668
3668
  /* @__PURE__ */ jsxRuntime.jsx(
3669
- chunk6UEVHQTJ_js.IconButton,
3669
+ chunkDXY4VHMX_js.IconButton,
3670
3670
  {
3671
3671
  onClick: () => handleRemoveHeader(index),
3672
3672
  icon: /* @__PURE__ */ jsxRuntime.jsx(outline.TrashIcon, { className: "h-4 w-4" }),
@@ -3678,7 +3678,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3678
3678
  ] }, index)) })
3679
3679
  ] }),
3680
3680
  method !== "GET" && /* @__PURE__ */ jsxRuntime.jsx(
3681
- chunk6UEVHQTJ_js.FormTextarea,
3681
+ chunkDXY4VHMX_js.FormTextarea,
3682
3682
  {
3683
3683
  label: t("bodyLabel"),
3684
3684
  value: body,
@@ -3689,7 +3689,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3689
3689
  }
3690
3690
  ),
3691
3691
  /* @__PURE__ */ jsxRuntime.jsx(
3692
- chunk6UEVHQTJ_js.FormInput,
3692
+ chunkDXY4VHMX_js.FormInput,
3693
3693
  {
3694
3694
  type: "number",
3695
3695
  label: t("timeoutLabel"),
@@ -3720,7 +3720,7 @@ function TemplateTransformNodeConfigForm({ config, onSave, onCancel }) {
3720
3720
  };
3721
3721
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3722
3722
  /* @__PURE__ */ jsxRuntime.jsx(
3723
- chunk6UEVHQTJ_js.FormTextarea,
3723
+ chunkDXY4VHMX_js.FormTextarea,
3724
3724
  {
3725
3725
  label: t("templateLabel"),
3726
3726
  value: template,
@@ -3731,7 +3731,7 @@ function TemplateTransformNodeConfigForm({ config, onSave, onCancel }) {
3731
3731
  }
3732
3732
  ),
3733
3733
  /* @__PURE__ */ jsxRuntime.jsx(
3734
- chunk6UEVHQTJ_js.FormInput,
3734
+ chunkDXY4VHMX_js.FormInput,
3735
3735
  {
3736
3736
  type: "text",
3737
3737
  label: t("outputVariableLabel"),
@@ -3760,7 +3760,7 @@ function IterationNodeConfigForm({ config, onSave, onCancel }) {
3760
3760
  };
3761
3761
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3762
3762
  /* @__PURE__ */ jsxRuntime.jsx(
3763
- chunk6UEVHQTJ_js.FormInput,
3763
+ chunkDXY4VHMX_js.FormInput,
3764
3764
  {
3765
3765
  type: "text",
3766
3766
  label: t("iteratorVariableLabel"),
@@ -3770,7 +3770,7 @@ function IterationNodeConfigForm({ config, onSave, onCancel }) {
3770
3770
  }
3771
3771
  ),
3772
3772
  /* @__PURE__ */ jsxRuntime.jsx(
3773
- chunk6UEVHQTJ_js.FormInput,
3773
+ chunkDXY4VHMX_js.FormInput,
3774
3774
  {
3775
3775
  type: "number",
3776
3776
  label: t("maxIterationsLabel"),
@@ -3801,7 +3801,7 @@ function KnowledgeBaseNodeConfigForm({ config, onSave, onCancel }) {
3801
3801
  };
3802
3802
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3803
3803
  /* @__PURE__ */ jsxRuntime.jsx(
3804
- chunk6UEVHQTJ_js.FormInput,
3804
+ chunkDXY4VHMX_js.FormInput,
3805
3805
  {
3806
3806
  type: "text",
3807
3807
  label: t("sourceIdLabel"),
@@ -3811,7 +3811,7 @@ function KnowledgeBaseNodeConfigForm({ config, onSave, onCancel }) {
3811
3811
  }
3812
3812
  ),
3813
3813
  /* @__PURE__ */ jsxRuntime.jsx(
3814
- chunk6UEVHQTJ_js.FormInput,
3814
+ chunkDXY4VHMX_js.FormInput,
3815
3815
  {
3816
3816
  type: "number",
3817
3817
  label: t("topKLabel"),
@@ -3822,7 +3822,7 @@ function KnowledgeBaseNodeConfigForm({ config, onSave, onCancel }) {
3822
3822
  }
3823
3823
  ),
3824
3824
  /* @__PURE__ */ jsxRuntime.jsx(
3825
- chunk6UEVHQTJ_js.FormInput,
3825
+ chunkDXY4VHMX_js.FormInput,
3826
3826
  {
3827
3827
  type: "number",
3828
3828
  label: t("similarityThresholdLabel"),
@@ -3853,7 +3853,7 @@ function AnswerNodeConfigForm({ config, onSave, onCancel }) {
3853
3853
  };
3854
3854
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3855
3855
  /* @__PURE__ */ jsxRuntime.jsx(
3856
- chunk6UEVHQTJ_js.FormTextarea,
3856
+ chunkDXY4VHMX_js.FormTextarea,
3857
3857
  {
3858
3858
  label: t("outputTemplateLabel"),
3859
3859
  hint: t("outputTemplateHelp"),
@@ -4287,7 +4287,7 @@ function VariableAggregatorNodeConfigForm({ config, onSave, onCancel }) {
4287
4287
  }
4288
4288
  ),
4289
4289
  /* @__PURE__ */ jsxRuntime.jsx(
4290
- chunk6UEVHQTJ_js.FormInput,
4290
+ chunkDXY4VHMX_js.FormInput,
4291
4291
  {
4292
4292
  type: "text",
4293
4293
  label: t("outputVariableLabel"),
@@ -4297,7 +4297,7 @@ function VariableAggregatorNodeConfigForm({ config, onSave, onCancel }) {
4297
4297
  }
4298
4298
  ),
4299
4299
  /* @__PURE__ */ jsxRuntime.jsx(
4300
- chunk6UEVHQTJ_js.FormSelect,
4300
+ chunkDXY4VHMX_js.FormSelect,
4301
4301
  {
4302
4302
  label: t("aggregationModeLabel"),
4303
4303
  value: aggregationMode,
@@ -4330,7 +4330,7 @@ function DocumentExtractorNodeConfigForm({ config, onSave, onCancel }) {
4330
4330
  };
4331
4331
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
4332
4332
  /* @__PURE__ */ jsxRuntime.jsx(
4333
- chunk6UEVHQTJ_js.FormSelect,
4333
+ chunkDXY4VHMX_js.FormSelect,
4334
4334
  {
4335
4335
  label: t("extractionModeLabel"),
4336
4336
  value: extractionMode,
@@ -4339,7 +4339,7 @@ function DocumentExtractorNodeConfigForm({ config, onSave, onCancel }) {
4339
4339
  }
4340
4340
  ),
4341
4341
  /* @__PURE__ */ jsxRuntime.jsx(
4342
- chunk6UEVHQTJ_js.FormInput,
4342
+ chunkDXY4VHMX_js.FormInput,
4343
4343
  {
4344
4344
  type: "text",
4345
4345
  label: t("outputVariableLabel"),
@@ -4516,7 +4516,7 @@ function IterationStartNodeConfigForm({ config, onSave, onCancel }) {
4516
4516
  };
4517
4517
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
4518
4518
  /* @__PURE__ */ jsxRuntime.jsx(
4519
- chunk6UEVHQTJ_js.FormInput,
4519
+ chunkDXY4VHMX_js.FormInput,
4520
4520
  {
4521
4521
  type: "text",
4522
4522
  label: t("iteratorVariableLabel"),
@@ -4526,7 +4526,7 @@ function IterationStartNodeConfigForm({ config, onSave, onCancel }) {
4526
4526
  }
4527
4527
  ),
4528
4528
  /* @__PURE__ */ jsxRuntime.jsx(
4529
- chunk6UEVHQTJ_js.FormInput,
4529
+ chunkDXY4VHMX_js.FormInput,
4530
4530
  {
4531
4531
  type: "text",
4532
4532
  label: t("itemVariableLabel"),
@@ -4536,7 +4536,7 @@ function IterationStartNodeConfigForm({ config, onSave, onCancel }) {
4536
4536
  }
4537
4537
  ),
4538
4538
  /* @__PURE__ */ jsxRuntime.jsx(
4539
- chunk6UEVHQTJ_js.FormInput,
4539
+ chunkDXY4VHMX_js.FormInput,
4540
4540
  {
4541
4541
  type: "text",
4542
4542
  label: t("indexVariableLabel"),
@@ -5130,7 +5130,7 @@ function GroupNodeConfigForm({ config, onSave, onCancel }) {
5130
5130
  };
5131
5131
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
5132
5132
  /* @__PURE__ */ jsxRuntime.jsx(
5133
- chunk6UEVHQTJ_js.FormInput,
5133
+ chunkDXY4VHMX_js.FormInput,
5134
5134
  {
5135
5135
  type: "text",
5136
5136
  label: translations("labelField"),
@@ -5140,7 +5140,7 @@ function GroupNodeConfigForm({ config, onSave, onCancel }) {
5140
5140
  }
5141
5141
  ),
5142
5142
  /* @__PURE__ */ jsxRuntime.jsx(
5143
- chunk6UEVHQTJ_js.FormTextarea,
5143
+ chunkDXY4VHMX_js.FormTextarea,
5144
5144
  {
5145
5145
  label: translations("descriptionField"),
5146
5146
  value: description,
@@ -5298,7 +5298,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5298
5298
  };
5299
5299
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
5300
5300
  /* @__PURE__ */ jsxRuntime.jsx(
5301
- chunk6UEVHQTJ_js.FormInput,
5301
+ chunkDXY4VHMX_js.FormInput,
5302
5302
  {
5303
5303
  type: "text",
5304
5304
  label: t("nameLabel"),
@@ -5308,7 +5308,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5308
5308
  }
5309
5309
  ),
5310
5310
  /* @__PURE__ */ jsxRuntime.jsx(
5311
- chunk6UEVHQTJ_js.FormSelect,
5311
+ chunkDXY4VHMX_js.FormSelect,
5312
5312
  {
5313
5313
  label: t("providerTypeLabel"),
5314
5314
  value: providerType,
@@ -5317,7 +5317,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5317
5317
  }
5318
5318
  ),
5319
5319
  showRegion && /* @__PURE__ */ jsxRuntime.jsx(
5320
- chunk6UEVHQTJ_js.FormSelect,
5320
+ chunkDXY4VHMX_js.FormSelect,
5321
5321
  {
5322
5322
  label: t("regionLabel"),
5323
5323
  value: region,
@@ -5326,7 +5326,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5326
5326
  }
5327
5327
  ),
5328
5328
  showEndpoint && /* @__PURE__ */ jsxRuntime.jsx(
5329
- chunk6UEVHQTJ_js.FormInput,
5329
+ chunkDXY4VHMX_js.FormInput,
5330
5330
  {
5331
5331
  type: "text",
5332
5332
  label: t("endpointLabel"),
@@ -5336,7 +5336,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5336
5336
  }
5337
5337
  ),
5338
5338
  showApiKey && /* @__PURE__ */ jsxRuntime.jsx(
5339
- chunk6UEVHQTJ_js.FormInput,
5339
+ chunkDXY4VHMX_js.FormInput,
5340
5340
  {
5341
5341
  type: "password",
5342
5342
  label: t("apiKeyLabel"),
@@ -5346,7 +5346,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5346
5346
  }
5347
5347
  ),
5348
5348
  showCredentialRef && /* @__PURE__ */ jsxRuntime.jsx(
5349
- chunk6UEVHQTJ_js.FormInput,
5349
+ chunkDXY4VHMX_js.FormInput,
5350
5350
  {
5351
5351
  type: "text",
5352
5352
  label: t("credentialRefLabel"),
@@ -5490,7 +5490,7 @@ function LogicNodeModal({ onSave, entities = [], datasources = [], onLoadTables,
5490
5490
  }
5491
5491
  };
5492
5492
  return /* @__PURE__ */ jsxRuntime.jsx(
5493
- chunk6UEVHQTJ_js.GlassModalShell,
5493
+ chunkDXY4VHMX_js.GlassModalShell,
5494
5494
  {
5495
5495
  open,
5496
5496
  onClose: closeModal,
@@ -5550,7 +5550,7 @@ function NodeContextMenu({ position, targetId, onClose, onEdit, onDuplicate, onC
5550
5550
  }
5551
5551
  ];
5552
5552
  return /* @__PURE__ */ jsxRuntime.jsx(
5553
- chunk6UEVHQTJ_js.ContextMenu,
5553
+ chunkDXY4VHMX_js.ContextMenu,
5554
5554
  {
5555
5555
  position,
5556
5556
  onClose,
@@ -5607,7 +5607,7 @@ function PanelContextMenu({ position, onClose, onPaste, onSelectAll, onFitView,
5607
5607
  }
5608
5608
  ];
5609
5609
  return /* @__PURE__ */ jsxRuntime.jsx(
5610
- chunk6UEVHQTJ_js.ContextMenu,
5610
+ chunkDXY4VHMX_js.ContextMenu,
5611
5611
  {
5612
5612
  position,
5613
5613
  onClose,
@@ -5754,7 +5754,7 @@ function SelectionContextMenu({
5754
5754
  }
5755
5755
  ];
5756
5756
  return /* @__PURE__ */ jsxRuntime.jsx(
5757
- chunk6UEVHQTJ_js.ContextMenu,
5757
+ chunkDXY4VHMX_js.ContextMenu,
5758
5758
  {
5759
5759
  position,
5760
5760
  onClose,
@@ -7627,5 +7627,5 @@ exports.useModalStore = useModalStore;
7627
7627
  exports.useWorkflowBuilderClient = useWorkflowBuilderClient;
7628
7628
  exports.useWorkflowBuilderClientOptional = useWorkflowBuilderClientOptional;
7629
7629
  exports.useWorkflowStore = useWorkflowStore;
7630
- //# sourceMappingURL=chunk-EY3UIPM2.js.map
7631
- //# sourceMappingURL=chunk-EY3UIPM2.js.map
7630
+ //# sourceMappingURL=chunk-X7Q3IBX5.js.map
7631
+ //# sourceMappingURL=chunk-X7Q3IBX5.js.map