@datatechsolutions/ui 2.11.31 → 2.11.32

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,7 +1,7 @@
1
1
  "use client";
2
2
  'use strict';
3
3
 
4
- var chunkKPHTHSHJ_js = require('./chunk-KPHTHSHJ.js');
4
+ var chunk3N76EFJM_js = require('./chunk-3N76EFJM.js');
5
5
  var chunkYXN2K77G_js = require('./chunk-YXN2K77G.js');
6
6
  var chunkP4YYEM4B_js = require('./chunk-P4YYEM4B.js');
7
7
  var chunkPWBWP5FJ_js = require('./chunk-PWBWP5FJ.js');
@@ -1601,11 +1601,12 @@ var AgentToolFlowNode = react.memo(function AgentToolFlowNode2({ id, data, selec
1601
1601
  event.stopPropagation();
1602
1602
  },
1603
1603
  children: /* @__PURE__ */ jsxRuntime.jsx(
1604
- chunkKPHTHSHJ_js.ToggleSwitch,
1604
+ chunk3N76EFJM_js.ToggleSwitch,
1605
1605
  {
1606
1606
  checked: Boolean(agentTool.enabled),
1607
1607
  onChange: () => data.onToggle?.(agentTool),
1608
1608
  size: "sm",
1609
+ color: "blue",
1609
1610
  label: `${agentTool.name} enabled`
1610
1611
  }
1611
1612
  )
@@ -1708,11 +1709,12 @@ var ToolFlowNode = react.memo(function ToolFlowNode2({ id, data, selected }) {
1708
1709
  event.preventDefault();
1709
1710
  },
1710
1711
  children: /* @__PURE__ */ jsxRuntime.jsx(
1711
- chunkKPHTHSHJ_js.ToggleSwitch,
1712
+ chunk3N76EFJM_js.ToggleSwitch,
1712
1713
  {
1713
1714
  checked: Boolean(tool.enabled),
1714
1715
  onChange: () => onToggle(tool),
1715
1716
  size: "sm",
1717
+ color: "blue",
1716
1718
  label: `${tool.name} enabled`
1717
1719
  }
1718
1720
  )
@@ -1859,11 +1861,12 @@ var RuleFlowNode = react.memo(function RuleFlowNode2({ id, data, selected }) {
1859
1861
  event.preventDefault();
1860
1862
  },
1861
1863
  children: /* @__PURE__ */ jsxRuntime.jsx(
1862
- chunkKPHTHSHJ_js.ToggleSwitch,
1864
+ chunk3N76EFJM_js.ToggleSwitch,
1863
1865
  {
1864
1866
  checked: Boolean(rule.enabled),
1865
1867
  onChange: () => onToggle(rule),
1866
1868
  size: "sm",
1869
+ color: "violet",
1867
1870
  label: `${rule.name} enabled`
1868
1871
  }
1869
1872
  )
@@ -3150,8 +3153,8 @@ function ConfigFormActions({
3150
3153
  saveDisabled = false
3151
3154
  }) {
3152
3155
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2 border-t border-gray-200 pt-4 dark:border-gray-700", children: [
3153
- /* @__PURE__ */ jsxRuntime.jsx(chunkKPHTHSHJ_js.Button, { type: "button", outline: true, onClick: onCancel, children: cancelLabel }),
3154
- /* @__PURE__ */ jsxRuntime.jsx(chunkKPHTHSHJ_js.Button, { type: "button", onClick: onSave, disabled: saveDisabled, children: saveLabel })
3156
+ /* @__PURE__ */ jsxRuntime.jsx(chunk3N76EFJM_js.Button, { type: "button", outline: true, onClick: onCancel, children: cancelLabel }),
3157
+ /* @__PURE__ */ jsxRuntime.jsx(chunk3N76EFJM_js.Button, { type: "button", onClick: onSave, disabled: saveDisabled, children: saveLabel })
3155
3158
  ] });
3156
3159
  }
3157
3160
  var COLOR_CLASSES = {
@@ -3398,7 +3401,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3398
3401
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-3 flex items-center justify-between", children: [
3399
3402
  /* @__PURE__ */ jsxRuntime.jsx("label", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: t("conditionsLabel") }),
3400
3403
  /* @__PURE__ */ jsxRuntime.jsx(
3401
- chunkKPHTHSHJ_js.Button,
3404
+ chunk3N76EFJM_js.Button,
3402
3405
  {
3403
3406
  type: "button",
3404
3407
  onClick: handleAddCondition,
@@ -3409,7 +3412,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3409
3412
  /* @__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: [
3410
3413
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid flex-1 grid-cols-3 gap-2", children: [
3411
3414
  /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(
3412
- chunkKPHTHSHJ_js.FormInput,
3415
+ chunk3N76EFJM_js.FormInput,
3413
3416
  {
3414
3417
  type: "text",
3415
3418
  label: t("variableLabel"),
@@ -3420,7 +3423,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3420
3423
  }
3421
3424
  ) }),
3422
3425
  /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(
3423
- chunkKPHTHSHJ_js.FormSelect,
3426
+ chunk3N76EFJM_js.FormSelect,
3424
3427
  {
3425
3428
  label: t("operatorLabel"),
3426
3429
  value: condition.operator,
@@ -3430,7 +3433,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3430
3433
  }
3431
3434
  ) }),
3432
3435
  /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(
3433
- chunkKPHTHSHJ_js.FormInput,
3436
+ chunk3N76EFJM_js.FormInput,
3434
3437
  {
3435
3438
  type: "text",
3436
3439
  label: t("valueLabel"),
@@ -3442,7 +3445,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3442
3445
  ) })
3443
3446
  ] }),
3444
3447
  conditions.length > 1 && /* @__PURE__ */ jsxRuntime.jsx(
3445
- chunkKPHTHSHJ_js.IconButton,
3448
+ chunk3N76EFJM_js.IconButton,
3446
3449
  {
3447
3450
  onClick: () => handleRemoveCondition(index),
3448
3451
  icon: /* @__PURE__ */ jsxRuntime.jsx(outline.TrashIcon, { className: "h-4 w-4" }),
@@ -3597,7 +3600,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3597
3600
  };
3598
3601
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3599
3602
  /* @__PURE__ */ jsxRuntime.jsx(
3600
- chunkKPHTHSHJ_js.FormSelect,
3603
+ chunk3N76EFJM_js.FormSelect,
3601
3604
  {
3602
3605
  label: t("methodLabel"),
3603
3606
  value: method,
@@ -3606,7 +3609,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3606
3609
  }
3607
3610
  ),
3608
3611
  /* @__PURE__ */ jsxRuntime.jsx(
3609
- chunkKPHTHSHJ_js.FormInput,
3612
+ chunk3N76EFJM_js.FormInput,
3610
3613
  {
3611
3614
  type: "text",
3612
3615
  label: t("urlLabel"),
@@ -3619,7 +3622,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3619
3622
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-2 flex items-center justify-between", children: [
3620
3623
  /* @__PURE__ */ jsxRuntime.jsx("label", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: t("headersLabel") }),
3621
3624
  /* @__PURE__ */ jsxRuntime.jsx(
3622
- chunkKPHTHSHJ_js.Button,
3625
+ chunk3N76EFJM_js.Button,
3623
3626
  {
3624
3627
  type: "button",
3625
3628
  onClick: handleAddHeader,
@@ -3629,7 +3632,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3629
3632
  ] }),
3630
3633
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "space-y-2", children: headerEntries.map((entry, index) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
3631
3634
  /* @__PURE__ */ jsxRuntime.jsx(
3632
- chunkKPHTHSHJ_js.FormInput,
3635
+ chunk3N76EFJM_js.FormInput,
3633
3636
  {
3634
3637
  type: "text",
3635
3638
  value: entry.key,
@@ -3639,7 +3642,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3639
3642
  }
3640
3643
  ),
3641
3644
  /* @__PURE__ */ jsxRuntime.jsx(
3642
- chunkKPHTHSHJ_js.FormInput,
3645
+ chunk3N76EFJM_js.FormInput,
3643
3646
  {
3644
3647
  type: "text",
3645
3648
  value: entry.value,
@@ -3649,7 +3652,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3649
3652
  }
3650
3653
  ),
3651
3654
  /* @__PURE__ */ jsxRuntime.jsx(
3652
- chunkKPHTHSHJ_js.IconButton,
3655
+ chunk3N76EFJM_js.IconButton,
3653
3656
  {
3654
3657
  onClick: () => handleRemoveHeader(index),
3655
3658
  icon: /* @__PURE__ */ jsxRuntime.jsx(outline.TrashIcon, { className: "h-4 w-4" }),
@@ -3661,7 +3664,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3661
3664
  ] }, index)) })
3662
3665
  ] }),
3663
3666
  method !== "GET" && /* @__PURE__ */ jsxRuntime.jsx(
3664
- chunkKPHTHSHJ_js.FormTextarea,
3667
+ chunk3N76EFJM_js.FormTextarea,
3665
3668
  {
3666
3669
  label: t("bodyLabel"),
3667
3670
  value: body,
@@ -3672,7 +3675,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3672
3675
  }
3673
3676
  ),
3674
3677
  /* @__PURE__ */ jsxRuntime.jsx(
3675
- chunkKPHTHSHJ_js.FormInput,
3678
+ chunk3N76EFJM_js.FormInput,
3676
3679
  {
3677
3680
  type: "number",
3678
3681
  label: t("timeoutLabel"),
@@ -3703,7 +3706,7 @@ function TemplateTransformNodeConfigForm({ config, onSave, onCancel }) {
3703
3706
  };
3704
3707
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3705
3708
  /* @__PURE__ */ jsxRuntime.jsx(
3706
- chunkKPHTHSHJ_js.FormTextarea,
3709
+ chunk3N76EFJM_js.FormTextarea,
3707
3710
  {
3708
3711
  label: t("templateLabel"),
3709
3712
  value: template,
@@ -3714,7 +3717,7 @@ function TemplateTransformNodeConfigForm({ config, onSave, onCancel }) {
3714
3717
  }
3715
3718
  ),
3716
3719
  /* @__PURE__ */ jsxRuntime.jsx(
3717
- chunkKPHTHSHJ_js.FormInput,
3720
+ chunk3N76EFJM_js.FormInput,
3718
3721
  {
3719
3722
  type: "text",
3720
3723
  label: t("outputVariableLabel"),
@@ -3743,7 +3746,7 @@ function IterationNodeConfigForm({ config, onSave, onCancel }) {
3743
3746
  };
3744
3747
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3745
3748
  /* @__PURE__ */ jsxRuntime.jsx(
3746
- chunkKPHTHSHJ_js.FormInput,
3749
+ chunk3N76EFJM_js.FormInput,
3747
3750
  {
3748
3751
  type: "text",
3749
3752
  label: t("iteratorVariableLabel"),
@@ -3753,7 +3756,7 @@ function IterationNodeConfigForm({ config, onSave, onCancel }) {
3753
3756
  }
3754
3757
  ),
3755
3758
  /* @__PURE__ */ jsxRuntime.jsx(
3756
- chunkKPHTHSHJ_js.FormInput,
3759
+ chunk3N76EFJM_js.FormInput,
3757
3760
  {
3758
3761
  type: "number",
3759
3762
  label: t("maxIterationsLabel"),
@@ -3784,7 +3787,7 @@ function KnowledgeBaseNodeConfigForm({ config, onSave, onCancel }) {
3784
3787
  };
3785
3788
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3786
3789
  /* @__PURE__ */ jsxRuntime.jsx(
3787
- chunkKPHTHSHJ_js.FormInput,
3790
+ chunk3N76EFJM_js.FormInput,
3788
3791
  {
3789
3792
  type: "text",
3790
3793
  label: t("sourceIdLabel"),
@@ -3794,7 +3797,7 @@ function KnowledgeBaseNodeConfigForm({ config, onSave, onCancel }) {
3794
3797
  }
3795
3798
  ),
3796
3799
  /* @__PURE__ */ jsxRuntime.jsx(
3797
- chunkKPHTHSHJ_js.FormInput,
3800
+ chunk3N76EFJM_js.FormInput,
3798
3801
  {
3799
3802
  type: "number",
3800
3803
  label: t("topKLabel"),
@@ -3805,7 +3808,7 @@ function KnowledgeBaseNodeConfigForm({ config, onSave, onCancel }) {
3805
3808
  }
3806
3809
  ),
3807
3810
  /* @__PURE__ */ jsxRuntime.jsx(
3808
- chunkKPHTHSHJ_js.FormInput,
3811
+ chunk3N76EFJM_js.FormInput,
3809
3812
  {
3810
3813
  type: "number",
3811
3814
  label: t("similarityThresholdLabel"),
@@ -3836,7 +3839,7 @@ function AnswerNodeConfigForm({ config, onSave, onCancel }) {
3836
3839
  };
3837
3840
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3838
3841
  /* @__PURE__ */ jsxRuntime.jsx(
3839
- chunkKPHTHSHJ_js.FormTextarea,
3842
+ chunk3N76EFJM_js.FormTextarea,
3840
3843
  {
3841
3844
  label: t("outputTemplateLabel"),
3842
3845
  hint: t("outputTemplateHelp"),
@@ -4270,7 +4273,7 @@ function VariableAggregatorNodeConfigForm({ config, onSave, onCancel }) {
4270
4273
  }
4271
4274
  ),
4272
4275
  /* @__PURE__ */ jsxRuntime.jsx(
4273
- chunkKPHTHSHJ_js.FormInput,
4276
+ chunk3N76EFJM_js.FormInput,
4274
4277
  {
4275
4278
  type: "text",
4276
4279
  label: t("outputVariableLabel"),
@@ -4280,7 +4283,7 @@ function VariableAggregatorNodeConfigForm({ config, onSave, onCancel }) {
4280
4283
  }
4281
4284
  ),
4282
4285
  /* @__PURE__ */ jsxRuntime.jsx(
4283
- chunkKPHTHSHJ_js.FormSelect,
4286
+ chunk3N76EFJM_js.FormSelect,
4284
4287
  {
4285
4288
  label: t("aggregationModeLabel"),
4286
4289
  value: aggregationMode,
@@ -4313,7 +4316,7 @@ function DocumentExtractorNodeConfigForm({ config, onSave, onCancel }) {
4313
4316
  };
4314
4317
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
4315
4318
  /* @__PURE__ */ jsxRuntime.jsx(
4316
- chunkKPHTHSHJ_js.FormSelect,
4319
+ chunk3N76EFJM_js.FormSelect,
4317
4320
  {
4318
4321
  label: t("extractionModeLabel"),
4319
4322
  value: extractionMode,
@@ -4322,7 +4325,7 @@ function DocumentExtractorNodeConfigForm({ config, onSave, onCancel }) {
4322
4325
  }
4323
4326
  ),
4324
4327
  /* @__PURE__ */ jsxRuntime.jsx(
4325
- chunkKPHTHSHJ_js.FormInput,
4328
+ chunk3N76EFJM_js.FormInput,
4326
4329
  {
4327
4330
  type: "text",
4328
4331
  label: t("outputVariableLabel"),
@@ -4499,7 +4502,7 @@ function IterationStartNodeConfigForm({ config, onSave, onCancel }) {
4499
4502
  };
4500
4503
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
4501
4504
  /* @__PURE__ */ jsxRuntime.jsx(
4502
- chunkKPHTHSHJ_js.FormInput,
4505
+ chunk3N76EFJM_js.FormInput,
4503
4506
  {
4504
4507
  type: "text",
4505
4508
  label: t("iteratorVariableLabel"),
@@ -4509,7 +4512,7 @@ function IterationStartNodeConfigForm({ config, onSave, onCancel }) {
4509
4512
  }
4510
4513
  ),
4511
4514
  /* @__PURE__ */ jsxRuntime.jsx(
4512
- chunkKPHTHSHJ_js.FormInput,
4515
+ chunk3N76EFJM_js.FormInput,
4513
4516
  {
4514
4517
  type: "text",
4515
4518
  label: t("itemVariableLabel"),
@@ -4519,7 +4522,7 @@ function IterationStartNodeConfigForm({ config, onSave, onCancel }) {
4519
4522
  }
4520
4523
  ),
4521
4524
  /* @__PURE__ */ jsxRuntime.jsx(
4522
- chunkKPHTHSHJ_js.FormInput,
4525
+ chunk3N76EFJM_js.FormInput,
4523
4526
  {
4524
4527
  type: "text",
4525
4528
  label: t("indexVariableLabel"),
@@ -5113,7 +5116,7 @@ function GroupNodeConfigForm({ config, onSave, onCancel }) {
5113
5116
  };
5114
5117
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
5115
5118
  /* @__PURE__ */ jsxRuntime.jsx(
5116
- chunkKPHTHSHJ_js.FormInput,
5119
+ chunk3N76EFJM_js.FormInput,
5117
5120
  {
5118
5121
  type: "text",
5119
5122
  label: translations("labelField"),
@@ -5123,7 +5126,7 @@ function GroupNodeConfigForm({ config, onSave, onCancel }) {
5123
5126
  }
5124
5127
  ),
5125
5128
  /* @__PURE__ */ jsxRuntime.jsx(
5126
- chunkKPHTHSHJ_js.FormTextarea,
5129
+ chunk3N76EFJM_js.FormTextarea,
5127
5130
  {
5128
5131
  label: translations("descriptionField"),
5129
5132
  value: description,
@@ -5281,7 +5284,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5281
5284
  };
5282
5285
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
5283
5286
  /* @__PURE__ */ jsxRuntime.jsx(
5284
- chunkKPHTHSHJ_js.FormInput,
5287
+ chunk3N76EFJM_js.FormInput,
5285
5288
  {
5286
5289
  type: "text",
5287
5290
  label: t("nameLabel"),
@@ -5291,7 +5294,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5291
5294
  }
5292
5295
  ),
5293
5296
  /* @__PURE__ */ jsxRuntime.jsx(
5294
- chunkKPHTHSHJ_js.FormSelect,
5297
+ chunk3N76EFJM_js.FormSelect,
5295
5298
  {
5296
5299
  label: t("providerTypeLabel"),
5297
5300
  value: providerType,
@@ -5300,7 +5303,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5300
5303
  }
5301
5304
  ),
5302
5305
  showRegion && /* @__PURE__ */ jsxRuntime.jsx(
5303
- chunkKPHTHSHJ_js.FormSelect,
5306
+ chunk3N76EFJM_js.FormSelect,
5304
5307
  {
5305
5308
  label: t("regionLabel"),
5306
5309
  value: region,
@@ -5309,7 +5312,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5309
5312
  }
5310
5313
  ),
5311
5314
  showEndpoint && /* @__PURE__ */ jsxRuntime.jsx(
5312
- chunkKPHTHSHJ_js.FormInput,
5315
+ chunk3N76EFJM_js.FormInput,
5313
5316
  {
5314
5317
  type: "text",
5315
5318
  label: t("endpointLabel"),
@@ -5319,7 +5322,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5319
5322
  }
5320
5323
  ),
5321
5324
  showApiKey && /* @__PURE__ */ jsxRuntime.jsx(
5322
- chunkKPHTHSHJ_js.FormInput,
5325
+ chunk3N76EFJM_js.FormInput,
5323
5326
  {
5324
5327
  type: "password",
5325
5328
  label: t("apiKeyLabel"),
@@ -5329,7 +5332,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5329
5332
  }
5330
5333
  ),
5331
5334
  showCredentialRef && /* @__PURE__ */ jsxRuntime.jsx(
5332
- chunkKPHTHSHJ_js.FormInput,
5335
+ chunk3N76EFJM_js.FormInput,
5333
5336
  {
5334
5337
  type: "text",
5335
5338
  label: t("credentialRefLabel"),
@@ -5473,7 +5476,7 @@ function LogicNodeModal({ onSave, entities = [], datasources = [], onLoadTables,
5473
5476
  }
5474
5477
  };
5475
5478
  return /* @__PURE__ */ jsxRuntime.jsx(
5476
- chunkKPHTHSHJ_js.GlassModal,
5479
+ chunk3N76EFJM_js.GlassModal,
5477
5480
  {
5478
5481
  open,
5479
5482
  onClose: closeModal,
@@ -5533,7 +5536,7 @@ function NodeContextMenu({ position, targetId, onClose, onEdit, onDuplicate, onC
5533
5536
  }
5534
5537
  ];
5535
5538
  return /* @__PURE__ */ jsxRuntime.jsx(
5536
- chunkKPHTHSHJ_js.ContextMenu,
5539
+ chunk3N76EFJM_js.ContextMenu,
5537
5540
  {
5538
5541
  position,
5539
5542
  onClose,
@@ -5590,7 +5593,7 @@ function PanelContextMenu({ position, onClose, onPaste, onSelectAll, onFitView,
5590
5593
  }
5591
5594
  ];
5592
5595
  return /* @__PURE__ */ jsxRuntime.jsx(
5593
- chunkKPHTHSHJ_js.ContextMenu,
5596
+ chunk3N76EFJM_js.ContextMenu,
5594
5597
  {
5595
5598
  position,
5596
5599
  onClose,
@@ -5737,7 +5740,7 @@ function SelectionContextMenu({
5737
5740
  }
5738
5741
  ];
5739
5742
  return /* @__PURE__ */ jsxRuntime.jsx(
5740
- chunkKPHTHSHJ_js.ContextMenu,
5743
+ chunk3N76EFJM_js.ContextMenu,
5741
5744
  {
5742
5745
  position,
5743
5746
  onClose,
@@ -7610,5 +7613,5 @@ exports.useModalStore = useModalStore;
7610
7613
  exports.useWorkflowBuilderClient = useWorkflowBuilderClient;
7611
7614
  exports.useWorkflowBuilderClientOptional = useWorkflowBuilderClientOptional;
7612
7615
  exports.useWorkflowStore = useWorkflowStore;
7613
- //# sourceMappingURL=chunk-KMDY6OLI.js.map
7614
- //# sourceMappingURL=chunk-KMDY6OLI.js.map
7616
+ //# sourceMappingURL=chunk-7O3FQ2PW.js.map
7617
+ //# sourceMappingURL=chunk-7O3FQ2PW.js.map