@datatechsolutions/ui 2.11.34 → 2.11.35

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 chunkYHAVW6OR_js = require('./chunk-YHAVW6OR.js');
4
+ var chunkKEUOCEOO_js = require('./chunk-KEUOCEOO.js');
5
+ var chunkYXN2K77G_js = require('./chunk-YXN2K77G.js');
5
6
  var chunkP4YYEM4B_js = require('./chunk-P4YYEM4B.js');
6
7
  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');
@@ -670,6 +670,15 @@ function ConditionalEdgeComponent({
670
670
  }) {
671
671
  const [isHovered, setIsHovered] = react.useState(false);
672
672
  const [showInsertPopup, setShowInsertPopup] = react.useState(false);
673
+ const hoverTimeout = react.useRef(null);
674
+ const handleMouseEnter = react.useCallback(() => {
675
+ if (hoverTimeout.current) clearTimeout(hoverTimeout.current);
676
+ hoverTimeout.current = null;
677
+ setIsHovered(true);
678
+ }, []);
679
+ const handleMouseLeave = react.useCallback(() => {
680
+ hoverTimeout.current = setTimeout(() => setIsHovered(false), 100);
681
+ }, []);
673
682
  const { setEdges } = react$1.useReactFlow();
674
683
  const [edgePath, labelX, labelY] = react$1.getBezierPath({
675
684
  sourceX,
@@ -703,8 +712,8 @@ function ConditionalEdgeComponent({
703
712
  return /* @__PURE__ */ jsxRuntime.jsxs(
704
713
  "g",
705
714
  {
706
- onMouseEnter: () => setIsHovered(true),
707
- onMouseLeave: () => setIsHovered(false),
715
+ onMouseEnter: handleMouseEnter,
716
+ onMouseLeave: handleMouseLeave,
708
717
  children: [
709
718
  /* @__PURE__ */ jsxRuntime.jsx(
710
719
  "path",
@@ -738,8 +747,8 @@ function ConditionalEdgeComponent({
738
747
  transform: `translate(-50%, -50%) translate(${labelX}px,${labelY + insertButtonOffset}px)`
739
748
  },
740
749
  onClick: handleInsertClick,
741
- onMouseEnter: () => setIsHovered(true),
742
- onMouseLeave: () => setIsHovered(false),
750
+ onMouseEnter: handleMouseEnter,
751
+ onMouseLeave: handleMouseLeave,
743
752
  "aria-label": "Insert node",
744
753
  children: /* @__PURE__ */ jsxRuntime.jsx(solid.PlusIcon, { className: "h-3 w-3 text-teal-500 dark:text-teal-400" })
745
754
  }
@@ -761,8 +770,8 @@ function ConditionalEdgeComponent({
761
770
  transform: `translate(-50%, -50%) translate(${labelX}px,${labelY + deleteButtonOffset}px)`
762
771
  },
763
772
  onClick: handleDeleteEdge,
764
- onMouseEnter: () => setIsHovered(true),
765
- onMouseLeave: () => setIsHovered(false),
773
+ onMouseEnter: handleMouseEnter,
774
+ onMouseLeave: handleMouseLeave,
766
775
  "aria-label": "Delete connection",
767
776
  children: /* @__PURE__ */ jsxRuntime.jsx(solid.XMarkIcon, { className: "h-3 w-3 text-red-500 dark:text-red-400" })
768
777
  }
@@ -1647,7 +1656,7 @@ var AgentToolFlowNode = react.memo(function AgentToolFlowNode2({ id, data, selec
1647
1656
  event.stopPropagation();
1648
1657
  },
1649
1658
  children: /* @__PURE__ */ jsxRuntime.jsx(
1650
- chunkYHAVW6OR_js.ToggleSwitch,
1659
+ chunkKEUOCEOO_js.ToggleSwitch,
1651
1660
  {
1652
1661
  checked: Boolean(agentTool.enabled),
1653
1662
  onChange: () => data.onToggle?.(agentTool),
@@ -1755,7 +1764,7 @@ var ToolFlowNode = react.memo(function ToolFlowNode2({ id, data, selected }) {
1755
1764
  event.preventDefault();
1756
1765
  },
1757
1766
  children: /* @__PURE__ */ jsxRuntime.jsx(
1758
- chunkYHAVW6OR_js.ToggleSwitch,
1767
+ chunkKEUOCEOO_js.ToggleSwitch,
1759
1768
  {
1760
1769
  checked: Boolean(tool.enabled),
1761
1770
  onChange: () => onToggle(tool),
@@ -1907,7 +1916,7 @@ var RuleFlowNode = react.memo(function RuleFlowNode2({ id, data, selected }) {
1907
1916
  event.preventDefault();
1908
1917
  },
1909
1918
  children: /* @__PURE__ */ jsxRuntime.jsx(
1910
- chunkYHAVW6OR_js.ToggleSwitch,
1919
+ chunkKEUOCEOO_js.ToggleSwitch,
1911
1920
  {
1912
1921
  checked: Boolean(rule.enabled),
1913
1922
  onChange: () => onToggle(rule),
@@ -3199,8 +3208,8 @@ function ConfigFormActions({
3199
3208
  saveDisabled = false
3200
3209
  }) {
3201
3210
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2 border-t border-gray-200 pt-4 dark:border-gray-700", children: [
3202
- /* @__PURE__ */ jsxRuntime.jsx(chunkYHAVW6OR_js.Button, { type: "button", outline: true, onClick: onCancel, children: cancelLabel }),
3203
- /* @__PURE__ */ jsxRuntime.jsx(chunkYHAVW6OR_js.Button, { type: "button", onClick: onSave, disabled: saveDisabled, children: saveLabel })
3211
+ /* @__PURE__ */ jsxRuntime.jsx(chunkKEUOCEOO_js.Button, { type: "button", outline: true, onClick: onCancel, children: cancelLabel }),
3212
+ /* @__PURE__ */ jsxRuntime.jsx(chunkKEUOCEOO_js.Button, { type: "button", onClick: onSave, disabled: saveDisabled, children: saveLabel })
3204
3213
  ] });
3205
3214
  }
3206
3215
  var COLOR_CLASSES = {
@@ -3447,7 +3456,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3447
3456
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-3 flex items-center justify-between", children: [
3448
3457
  /* @__PURE__ */ jsxRuntime.jsx("label", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: t("conditionsLabel") }),
3449
3458
  /* @__PURE__ */ jsxRuntime.jsx(
3450
- chunkYHAVW6OR_js.Button,
3459
+ chunkKEUOCEOO_js.Button,
3451
3460
  {
3452
3461
  type: "button",
3453
3462
  onClick: handleAddCondition,
@@ -3458,7 +3467,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3458
3467
  /* @__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: [
3459
3468
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid flex-1 grid-cols-3 gap-2", children: [
3460
3469
  /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(
3461
- chunkYHAVW6OR_js.FormInput,
3470
+ chunkKEUOCEOO_js.FormInput,
3462
3471
  {
3463
3472
  type: "text",
3464
3473
  label: t("variableLabel"),
@@ -3469,7 +3478,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3469
3478
  }
3470
3479
  ) }),
3471
3480
  /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(
3472
- chunkYHAVW6OR_js.FormSelect,
3481
+ chunkKEUOCEOO_js.FormSelect,
3473
3482
  {
3474
3483
  label: t("operatorLabel"),
3475
3484
  value: condition.operator,
@@ -3479,7 +3488,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3479
3488
  }
3480
3489
  ) }),
3481
3490
  /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(
3482
- chunkYHAVW6OR_js.FormInput,
3491
+ chunkKEUOCEOO_js.FormInput,
3483
3492
  {
3484
3493
  type: "text",
3485
3494
  label: t("valueLabel"),
@@ -3491,7 +3500,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
3491
3500
  ) })
3492
3501
  ] }),
3493
3502
  conditions.length > 1 && /* @__PURE__ */ jsxRuntime.jsx(
3494
- chunkYHAVW6OR_js.IconButton,
3503
+ chunkKEUOCEOO_js.IconButton,
3495
3504
  {
3496
3505
  onClick: () => handleRemoveCondition(index),
3497
3506
  icon: /* @__PURE__ */ jsxRuntime.jsx(outline.TrashIcon, { className: "h-4 w-4" }),
@@ -3646,7 +3655,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3646
3655
  };
3647
3656
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3648
3657
  /* @__PURE__ */ jsxRuntime.jsx(
3649
- chunkYHAVW6OR_js.FormSelect,
3658
+ chunkKEUOCEOO_js.FormSelect,
3650
3659
  {
3651
3660
  label: t("methodLabel"),
3652
3661
  value: method,
@@ -3655,7 +3664,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3655
3664
  }
3656
3665
  ),
3657
3666
  /* @__PURE__ */ jsxRuntime.jsx(
3658
- chunkYHAVW6OR_js.FormInput,
3667
+ chunkKEUOCEOO_js.FormInput,
3659
3668
  {
3660
3669
  type: "text",
3661
3670
  label: t("urlLabel"),
@@ -3668,7 +3677,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3668
3677
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-2 flex items-center justify-between", children: [
3669
3678
  /* @__PURE__ */ jsxRuntime.jsx("label", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: t("headersLabel") }),
3670
3679
  /* @__PURE__ */ jsxRuntime.jsx(
3671
- chunkYHAVW6OR_js.Button,
3680
+ chunkKEUOCEOO_js.Button,
3672
3681
  {
3673
3682
  type: "button",
3674
3683
  onClick: handleAddHeader,
@@ -3678,7 +3687,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3678
3687
  ] }),
3679
3688
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "space-y-2", children: headerEntries.map((entry, index) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
3680
3689
  /* @__PURE__ */ jsxRuntime.jsx(
3681
- chunkYHAVW6OR_js.FormInput,
3690
+ chunkKEUOCEOO_js.FormInput,
3682
3691
  {
3683
3692
  type: "text",
3684
3693
  value: entry.key,
@@ -3688,7 +3697,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3688
3697
  }
3689
3698
  ),
3690
3699
  /* @__PURE__ */ jsxRuntime.jsx(
3691
- chunkYHAVW6OR_js.FormInput,
3700
+ chunkKEUOCEOO_js.FormInput,
3692
3701
  {
3693
3702
  type: "text",
3694
3703
  value: entry.value,
@@ -3698,7 +3707,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3698
3707
  }
3699
3708
  ),
3700
3709
  /* @__PURE__ */ jsxRuntime.jsx(
3701
- chunkYHAVW6OR_js.IconButton,
3710
+ chunkKEUOCEOO_js.IconButton,
3702
3711
  {
3703
3712
  onClick: () => handleRemoveHeader(index),
3704
3713
  icon: /* @__PURE__ */ jsxRuntime.jsx(outline.TrashIcon, { className: "h-4 w-4" }),
@@ -3710,7 +3719,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3710
3719
  ] }, index)) })
3711
3720
  ] }),
3712
3721
  method !== "GET" && /* @__PURE__ */ jsxRuntime.jsx(
3713
- chunkYHAVW6OR_js.FormTextarea,
3722
+ chunkKEUOCEOO_js.FormTextarea,
3714
3723
  {
3715
3724
  label: t("bodyLabel"),
3716
3725
  value: body,
@@ -3721,7 +3730,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
3721
3730
  }
3722
3731
  ),
3723
3732
  /* @__PURE__ */ jsxRuntime.jsx(
3724
- chunkYHAVW6OR_js.FormInput,
3733
+ chunkKEUOCEOO_js.FormInput,
3725
3734
  {
3726
3735
  type: "number",
3727
3736
  label: t("timeoutLabel"),
@@ -3752,7 +3761,7 @@ function TemplateTransformNodeConfigForm({ config, onSave, onCancel }) {
3752
3761
  };
3753
3762
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3754
3763
  /* @__PURE__ */ jsxRuntime.jsx(
3755
- chunkYHAVW6OR_js.FormTextarea,
3764
+ chunkKEUOCEOO_js.FormTextarea,
3756
3765
  {
3757
3766
  label: t("templateLabel"),
3758
3767
  value: template,
@@ -3763,7 +3772,7 @@ function TemplateTransformNodeConfigForm({ config, onSave, onCancel }) {
3763
3772
  }
3764
3773
  ),
3765
3774
  /* @__PURE__ */ jsxRuntime.jsx(
3766
- chunkYHAVW6OR_js.FormInput,
3775
+ chunkKEUOCEOO_js.FormInput,
3767
3776
  {
3768
3777
  type: "text",
3769
3778
  label: t("outputVariableLabel"),
@@ -3792,7 +3801,7 @@ function IterationNodeConfigForm({ config, onSave, onCancel }) {
3792
3801
  };
3793
3802
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3794
3803
  /* @__PURE__ */ jsxRuntime.jsx(
3795
- chunkYHAVW6OR_js.FormInput,
3804
+ chunkKEUOCEOO_js.FormInput,
3796
3805
  {
3797
3806
  type: "text",
3798
3807
  label: t("iteratorVariableLabel"),
@@ -3802,7 +3811,7 @@ function IterationNodeConfigForm({ config, onSave, onCancel }) {
3802
3811
  }
3803
3812
  ),
3804
3813
  /* @__PURE__ */ jsxRuntime.jsx(
3805
- chunkYHAVW6OR_js.FormInput,
3814
+ chunkKEUOCEOO_js.FormInput,
3806
3815
  {
3807
3816
  type: "number",
3808
3817
  label: t("maxIterationsLabel"),
@@ -3833,7 +3842,7 @@ function KnowledgeBaseNodeConfigForm({ config, onSave, onCancel }) {
3833
3842
  };
3834
3843
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3835
3844
  /* @__PURE__ */ jsxRuntime.jsx(
3836
- chunkYHAVW6OR_js.FormInput,
3845
+ chunkKEUOCEOO_js.FormInput,
3837
3846
  {
3838
3847
  type: "text",
3839
3848
  label: t("sourceIdLabel"),
@@ -3843,7 +3852,7 @@ function KnowledgeBaseNodeConfigForm({ config, onSave, onCancel }) {
3843
3852
  }
3844
3853
  ),
3845
3854
  /* @__PURE__ */ jsxRuntime.jsx(
3846
- chunkYHAVW6OR_js.FormInput,
3855
+ chunkKEUOCEOO_js.FormInput,
3847
3856
  {
3848
3857
  type: "number",
3849
3858
  label: t("topKLabel"),
@@ -3854,7 +3863,7 @@ function KnowledgeBaseNodeConfigForm({ config, onSave, onCancel }) {
3854
3863
  }
3855
3864
  ),
3856
3865
  /* @__PURE__ */ jsxRuntime.jsx(
3857
- chunkYHAVW6OR_js.FormInput,
3866
+ chunkKEUOCEOO_js.FormInput,
3858
3867
  {
3859
3868
  type: "number",
3860
3869
  label: t("similarityThresholdLabel"),
@@ -3885,7 +3894,7 @@ function AnswerNodeConfigForm({ config, onSave, onCancel }) {
3885
3894
  };
3886
3895
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
3887
3896
  /* @__PURE__ */ jsxRuntime.jsx(
3888
- chunkYHAVW6OR_js.FormTextarea,
3897
+ chunkKEUOCEOO_js.FormTextarea,
3889
3898
  {
3890
3899
  label: t("outputTemplateLabel"),
3891
3900
  hint: t("outputTemplateHelp"),
@@ -4319,7 +4328,7 @@ function VariableAggregatorNodeConfigForm({ config, onSave, onCancel }) {
4319
4328
  }
4320
4329
  ),
4321
4330
  /* @__PURE__ */ jsxRuntime.jsx(
4322
- chunkYHAVW6OR_js.FormInput,
4331
+ chunkKEUOCEOO_js.FormInput,
4323
4332
  {
4324
4333
  type: "text",
4325
4334
  label: t("outputVariableLabel"),
@@ -4329,7 +4338,7 @@ function VariableAggregatorNodeConfigForm({ config, onSave, onCancel }) {
4329
4338
  }
4330
4339
  ),
4331
4340
  /* @__PURE__ */ jsxRuntime.jsx(
4332
- chunkYHAVW6OR_js.FormSelect,
4341
+ chunkKEUOCEOO_js.FormSelect,
4333
4342
  {
4334
4343
  label: t("aggregationModeLabel"),
4335
4344
  value: aggregationMode,
@@ -4362,7 +4371,7 @@ function DocumentExtractorNodeConfigForm({ config, onSave, onCancel }) {
4362
4371
  };
4363
4372
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
4364
4373
  /* @__PURE__ */ jsxRuntime.jsx(
4365
- chunkYHAVW6OR_js.FormSelect,
4374
+ chunkKEUOCEOO_js.FormSelect,
4366
4375
  {
4367
4376
  label: t("extractionModeLabel"),
4368
4377
  value: extractionMode,
@@ -4371,7 +4380,7 @@ function DocumentExtractorNodeConfigForm({ config, onSave, onCancel }) {
4371
4380
  }
4372
4381
  ),
4373
4382
  /* @__PURE__ */ jsxRuntime.jsx(
4374
- chunkYHAVW6OR_js.FormInput,
4383
+ chunkKEUOCEOO_js.FormInput,
4375
4384
  {
4376
4385
  type: "text",
4377
4386
  label: t("outputVariableLabel"),
@@ -4548,7 +4557,7 @@ function IterationStartNodeConfigForm({ config, onSave, onCancel }) {
4548
4557
  };
4549
4558
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
4550
4559
  /* @__PURE__ */ jsxRuntime.jsx(
4551
- chunkYHAVW6OR_js.FormInput,
4560
+ chunkKEUOCEOO_js.FormInput,
4552
4561
  {
4553
4562
  type: "text",
4554
4563
  label: t("iteratorVariableLabel"),
@@ -4558,7 +4567,7 @@ function IterationStartNodeConfigForm({ config, onSave, onCancel }) {
4558
4567
  }
4559
4568
  ),
4560
4569
  /* @__PURE__ */ jsxRuntime.jsx(
4561
- chunkYHAVW6OR_js.FormInput,
4570
+ chunkKEUOCEOO_js.FormInput,
4562
4571
  {
4563
4572
  type: "text",
4564
4573
  label: t("itemVariableLabel"),
@@ -4568,7 +4577,7 @@ function IterationStartNodeConfigForm({ config, onSave, onCancel }) {
4568
4577
  }
4569
4578
  ),
4570
4579
  /* @__PURE__ */ jsxRuntime.jsx(
4571
- chunkYHAVW6OR_js.FormInput,
4580
+ chunkKEUOCEOO_js.FormInput,
4572
4581
  {
4573
4582
  type: "text",
4574
4583
  label: t("indexVariableLabel"),
@@ -5162,7 +5171,7 @@ function GroupNodeConfigForm({ config, onSave, onCancel }) {
5162
5171
  };
5163
5172
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
5164
5173
  /* @__PURE__ */ jsxRuntime.jsx(
5165
- chunkYHAVW6OR_js.FormInput,
5174
+ chunkKEUOCEOO_js.FormInput,
5166
5175
  {
5167
5176
  type: "text",
5168
5177
  label: translations("labelField"),
@@ -5172,7 +5181,7 @@ function GroupNodeConfigForm({ config, onSave, onCancel }) {
5172
5181
  }
5173
5182
  ),
5174
5183
  /* @__PURE__ */ jsxRuntime.jsx(
5175
- chunkYHAVW6OR_js.FormTextarea,
5184
+ chunkKEUOCEOO_js.FormTextarea,
5176
5185
  {
5177
5186
  label: translations("descriptionField"),
5178
5187
  value: description,
@@ -5330,7 +5339,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5330
5339
  };
5331
5340
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
5332
5341
  /* @__PURE__ */ jsxRuntime.jsx(
5333
- chunkYHAVW6OR_js.FormInput,
5342
+ chunkKEUOCEOO_js.FormInput,
5334
5343
  {
5335
5344
  type: "text",
5336
5345
  label: t("nameLabel"),
@@ -5340,7 +5349,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5340
5349
  }
5341
5350
  ),
5342
5351
  /* @__PURE__ */ jsxRuntime.jsx(
5343
- chunkYHAVW6OR_js.FormSelect,
5352
+ chunkKEUOCEOO_js.FormSelect,
5344
5353
  {
5345
5354
  label: t("providerTypeLabel"),
5346
5355
  value: providerType,
@@ -5349,7 +5358,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5349
5358
  }
5350
5359
  ),
5351
5360
  showRegion && /* @__PURE__ */ jsxRuntime.jsx(
5352
- chunkYHAVW6OR_js.FormSelect,
5361
+ chunkKEUOCEOO_js.FormSelect,
5353
5362
  {
5354
5363
  label: t("regionLabel"),
5355
5364
  value: region,
@@ -5358,7 +5367,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5358
5367
  }
5359
5368
  ),
5360
5369
  showEndpoint && /* @__PURE__ */ jsxRuntime.jsx(
5361
- chunkYHAVW6OR_js.FormInput,
5370
+ chunkKEUOCEOO_js.FormInput,
5362
5371
  {
5363
5372
  type: "text",
5364
5373
  label: t("endpointLabel"),
@@ -5368,7 +5377,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5368
5377
  }
5369
5378
  ),
5370
5379
  showApiKey && /* @__PURE__ */ jsxRuntime.jsx(
5371
- chunkYHAVW6OR_js.FormInput,
5380
+ chunkKEUOCEOO_js.FormInput,
5372
5381
  {
5373
5382
  type: "password",
5374
5383
  label: t("apiKeyLabel"),
@@ -5378,7 +5387,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
5378
5387
  }
5379
5388
  ),
5380
5389
  showCredentialRef && /* @__PURE__ */ jsxRuntime.jsx(
5381
- chunkYHAVW6OR_js.FormInput,
5390
+ chunkKEUOCEOO_js.FormInput,
5382
5391
  {
5383
5392
  type: "text",
5384
5393
  label: t("credentialRefLabel"),
@@ -5522,7 +5531,7 @@ function LogicNodeModal({ onSave, entities = [], datasources = [], onLoadTables,
5522
5531
  }
5523
5532
  };
5524
5533
  return /* @__PURE__ */ jsxRuntime.jsx(
5525
- chunkYHAVW6OR_js.GlassModal,
5534
+ chunkKEUOCEOO_js.GlassModal,
5526
5535
  {
5527
5536
  open,
5528
5537
  onClose: closeModal,
@@ -5582,7 +5591,7 @@ function NodeContextMenu({ position, targetId, onClose, onEdit, onDuplicate, onC
5582
5591
  }
5583
5592
  ];
5584
5593
  return /* @__PURE__ */ jsxRuntime.jsx(
5585
- chunkYHAVW6OR_js.ContextMenu,
5594
+ chunkKEUOCEOO_js.ContextMenu,
5586
5595
  {
5587
5596
  position,
5588
5597
  onClose,
@@ -5639,7 +5648,7 @@ function PanelContextMenu({ position, onClose, onPaste, onSelectAll, onFitView,
5639
5648
  }
5640
5649
  ];
5641
5650
  return /* @__PURE__ */ jsxRuntime.jsx(
5642
- chunkYHAVW6OR_js.ContextMenu,
5651
+ chunkKEUOCEOO_js.ContextMenu,
5643
5652
  {
5644
5653
  position,
5645
5654
  onClose,
@@ -5786,7 +5795,7 @@ function SelectionContextMenu({
5786
5795
  }
5787
5796
  ];
5788
5797
  return /* @__PURE__ */ jsxRuntime.jsx(
5789
- chunkYHAVW6OR_js.ContextMenu,
5798
+ chunkKEUOCEOO_js.ContextMenu,
5790
5799
  {
5791
5800
  position,
5792
5801
  onClose,
@@ -7675,5 +7684,5 @@ exports.useModalStore = useModalStore;
7675
7684
  exports.useWorkflowBuilderClient = useWorkflowBuilderClient;
7676
7685
  exports.useWorkflowBuilderClientOptional = useWorkflowBuilderClientOptional;
7677
7686
  exports.useWorkflowStore = useWorkflowStore;
7678
- //# sourceMappingURL=chunk-D6MUVAMK.js.map
7679
- //# sourceMappingURL=chunk-D6MUVAMK.js.map
7687
+ //# sourceMappingURL=chunk-BXVUUI2B.js.map
7688
+ //# sourceMappingURL=chunk-BXVUUI2B.js.map