@datatechsolutions/ui 2.11.22 → 2.11.23
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/astrlabe/index.js +186 -133
- package/dist/astrlabe/index.js.map +1 -1
- package/dist/astrlabe/index.mjs +61 -8
- package/dist/astrlabe/index.mjs.map +1 -1
- package/dist/astrlabe/workflow-canvas.js +5 -5
- package/dist/astrlabe/workflow-canvas.mjs +4 -4
- package/dist/{chunk-5WFBHIM5.js → chunk-6UEVHQTJ.js} +10 -9
- package/dist/chunk-6UEVHQTJ.js.map +1 -0
- package/dist/{chunk-CU3L2357.mjs → chunk-D7EPY2L3.mjs} +34 -21
- package/dist/chunk-D7EPY2L3.mjs.map +1 -0
- package/dist/{chunk-ITFBJSHZ.js → chunk-EY3UIPM2.js} +76 -63
- package/dist/chunk-EY3UIPM2.js.map +1 -0
- package/dist/{chunk-23247RGB.mjs → chunk-GXVZXTTC.mjs} +10 -9
- package/dist/chunk-GXVZXTTC.mjs.map +1 -0
- package/dist/index.js +730 -730
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-23247RGB.mjs.map +0 -1
- package/dist/chunk-5WFBHIM5.js.map +0 -1
- package/dist/chunk-CU3L2357.mjs.map +0 -1
- package/dist/chunk-ITFBJSHZ.js.map +0 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var chunk6UEVHQTJ_js = require('./chunk-6UEVHQTJ.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');
|
|
@@ -1596,14 +1596,19 @@ var AgentToolFlowNode = react.memo(function AgentToolFlowNode2({ id, data, selec
|
|
|
1596
1596
|
data.onToggle && /* @__PURE__ */ jsxRuntime.jsx(
|
|
1597
1597
|
"span",
|
|
1598
1598
|
{
|
|
1599
|
-
|
|
1600
|
-
"aria-checked": agentTool.enabled,
|
|
1601
|
-
className: `nodrag nopan relative inline-flex h-5 w-9 flex-shrink-0 cursor-pointer items-center rounded-full border border-white/50 px-0.5 shadow-[inset_0_1px_0_rgba(255,255,255,0.5)] transition duration-200 dark:border-white/15 ${agentTool.enabled ? "bg-amber-500/90" : "bg-slate-300/80 dark:bg-slate-700/80"}`,
|
|
1599
|
+
className: "nodrag nopan",
|
|
1602
1600
|
onClick: (event) => {
|
|
1603
1601
|
event.stopPropagation();
|
|
1604
|
-
data.onToggle(agentTool);
|
|
1605
1602
|
},
|
|
1606
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1603
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1604
|
+
chunk6UEVHQTJ_js.ToggleSwitch,
|
|
1605
|
+
{
|
|
1606
|
+
checked: Boolean(agentTool.enabled),
|
|
1607
|
+
onChange: () => data.onToggle?.(agentTool),
|
|
1608
|
+
size: "sm",
|
|
1609
|
+
label: `${agentTool.name} enabled`
|
|
1610
|
+
}
|
|
1611
|
+
)
|
|
1607
1612
|
}
|
|
1608
1613
|
)
|
|
1609
1614
|
] }),
|
|
@@ -1697,16 +1702,20 @@ var ToolFlowNode = react.memo(function ToolFlowNode2({ id, data, selected }) {
|
|
|
1697
1702
|
onToggle && /* @__PURE__ */ jsxRuntime.jsx(
|
|
1698
1703
|
"span",
|
|
1699
1704
|
{
|
|
1700
|
-
|
|
1701
|
-
"aria-checked": tool.enabled,
|
|
1702
|
-
"aria-label": tool.enabled ? "Enabled" : "Disabled",
|
|
1703
|
-
className: `nodrag nopan relative inline-flex h-5 w-9 flex-shrink-0 cursor-pointer items-center rounded-full border border-white/50 px-0.5 shadow-[inset_0_1px_0_rgba(255,255,255,0.5)] transition duration-200 dark:border-white/15 ${tool.enabled ? "bg-blue-600/90" : "bg-slate-300/80 dark:bg-slate-700/80"}`,
|
|
1705
|
+
className: "nodrag nopan",
|
|
1704
1706
|
onClick: (event) => {
|
|
1705
1707
|
event.stopPropagation();
|
|
1706
1708
|
event.preventDefault();
|
|
1707
|
-
onToggle(tool);
|
|
1708
1709
|
},
|
|
1709
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1710
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1711
|
+
chunk6UEVHQTJ_js.ToggleSwitch,
|
|
1712
|
+
{
|
|
1713
|
+
checked: Boolean(tool.enabled),
|
|
1714
|
+
onChange: () => onToggle(tool),
|
|
1715
|
+
size: "sm",
|
|
1716
|
+
label: `${tool.name} enabled`
|
|
1717
|
+
}
|
|
1718
|
+
)
|
|
1710
1719
|
}
|
|
1711
1720
|
)
|
|
1712
1721
|
] }),
|
|
@@ -1844,16 +1853,20 @@ var RuleFlowNode = react.memo(function RuleFlowNode2({ id, data, selected }) {
|
|
|
1844
1853
|
onToggle && /* @__PURE__ */ jsxRuntime.jsx(
|
|
1845
1854
|
"span",
|
|
1846
1855
|
{
|
|
1847
|
-
|
|
1848
|
-
"aria-checked": rule.enabled,
|
|
1849
|
-
"aria-label": rule.enabled ? "Enabled" : "Disabled",
|
|
1850
|
-
className: `nodrag nopan relative inline-flex h-5 w-9 flex-shrink-0 cursor-pointer items-center rounded-full border border-white/50 px-0.5 shadow-[inset_0_1px_0_rgba(255,255,255,0.5)] transition duration-200 dark:border-white/15 ${rule.enabled ? "bg-blue-600/90" : "bg-slate-300/80 dark:bg-slate-700/80"}`,
|
|
1856
|
+
className: "nodrag nopan",
|
|
1851
1857
|
onClick: (event) => {
|
|
1852
1858
|
event.stopPropagation();
|
|
1853
1859
|
event.preventDefault();
|
|
1854
|
-
onToggle(rule);
|
|
1855
1860
|
},
|
|
1856
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1861
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1862
|
+
chunk6UEVHQTJ_js.ToggleSwitch,
|
|
1863
|
+
{
|
|
1864
|
+
checked: Boolean(rule.enabled),
|
|
1865
|
+
onChange: () => onToggle(rule),
|
|
1866
|
+
size: "sm",
|
|
1867
|
+
label: `${rule.name} enabled`
|
|
1868
|
+
}
|
|
1869
|
+
)
|
|
1857
1870
|
}
|
|
1858
1871
|
)
|
|
1859
1872
|
] }),
|
|
@@ -3154,8 +3167,8 @@ function ConfigFormActions({
|
|
|
3154
3167
|
saveDisabled = false
|
|
3155
3168
|
}) {
|
|
3156
3169
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-end gap-2 border-t border-gray-200 pt-4 dark:border-gray-700", children: [
|
|
3157
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3158
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
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 })
|
|
3159
3172
|
] });
|
|
3160
3173
|
}
|
|
3161
3174
|
var COLOR_CLASSES = {
|
|
@@ -3402,7 +3415,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3402
3415
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-3 flex items-center justify-between", children: [
|
|
3403
3416
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: t("conditionsLabel") }),
|
|
3404
3417
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3405
|
-
|
|
3418
|
+
chunk6UEVHQTJ_js.Button,
|
|
3406
3419
|
{
|
|
3407
3420
|
type: "button",
|
|
3408
3421
|
onClick: handleAddCondition,
|
|
@@ -3413,7 +3426,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3413
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: [
|
|
3414
3427
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "grid flex-1 grid-cols-3 gap-2", children: [
|
|
3415
3428
|
/* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3416
|
-
|
|
3429
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
3417
3430
|
{
|
|
3418
3431
|
type: "text",
|
|
3419
3432
|
label: t("variableLabel"),
|
|
@@ -3424,7 +3437,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3424
3437
|
}
|
|
3425
3438
|
) }),
|
|
3426
3439
|
/* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3427
|
-
|
|
3440
|
+
chunk6UEVHQTJ_js.FormSelect,
|
|
3428
3441
|
{
|
|
3429
3442
|
label: t("operatorLabel"),
|
|
3430
3443
|
value: condition.operator,
|
|
@@ -3434,7 +3447,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3434
3447
|
}
|
|
3435
3448
|
) }),
|
|
3436
3449
|
/* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3437
|
-
|
|
3450
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
3438
3451
|
{
|
|
3439
3452
|
type: "text",
|
|
3440
3453
|
label: t("valueLabel"),
|
|
@@ -3446,7 +3459,7 @@ function IfElseNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3446
3459
|
) })
|
|
3447
3460
|
] }),
|
|
3448
3461
|
conditions.length > 1 && /* @__PURE__ */ jsxRuntime.jsx(
|
|
3449
|
-
|
|
3462
|
+
chunk6UEVHQTJ_js.IconButton,
|
|
3450
3463
|
{
|
|
3451
3464
|
onClick: () => handleRemoveCondition(index),
|
|
3452
3465
|
icon: /* @__PURE__ */ jsxRuntime.jsx(outline.TrashIcon, { className: "h-4 w-4" }),
|
|
@@ -3601,7 +3614,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3601
3614
|
};
|
|
3602
3615
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
3603
3616
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3604
|
-
|
|
3617
|
+
chunk6UEVHQTJ_js.FormSelect,
|
|
3605
3618
|
{
|
|
3606
3619
|
label: t("methodLabel"),
|
|
3607
3620
|
value: method,
|
|
@@ -3610,7 +3623,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3610
3623
|
}
|
|
3611
3624
|
),
|
|
3612
3625
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3613
|
-
|
|
3626
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
3614
3627
|
{
|
|
3615
3628
|
type: "text",
|
|
3616
3629
|
label: t("urlLabel"),
|
|
@@ -3623,7 +3636,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3623
3636
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-2 flex items-center justify-between", children: [
|
|
3624
3637
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: t("headersLabel") }),
|
|
3625
3638
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3626
|
-
|
|
3639
|
+
chunk6UEVHQTJ_js.Button,
|
|
3627
3640
|
{
|
|
3628
3641
|
type: "button",
|
|
3629
3642
|
onClick: handleAddHeader,
|
|
@@ -3633,7 +3646,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3633
3646
|
] }),
|
|
3634
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: [
|
|
3635
3648
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3636
|
-
|
|
3649
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
3637
3650
|
{
|
|
3638
3651
|
type: "text",
|
|
3639
3652
|
value: entry.key,
|
|
@@ -3643,7 +3656,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3643
3656
|
}
|
|
3644
3657
|
),
|
|
3645
3658
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3646
|
-
|
|
3659
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
3647
3660
|
{
|
|
3648
3661
|
type: "text",
|
|
3649
3662
|
value: entry.value,
|
|
@@ -3653,7 +3666,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3653
3666
|
}
|
|
3654
3667
|
),
|
|
3655
3668
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3656
|
-
|
|
3669
|
+
chunk6UEVHQTJ_js.IconButton,
|
|
3657
3670
|
{
|
|
3658
3671
|
onClick: () => handleRemoveHeader(index),
|
|
3659
3672
|
icon: /* @__PURE__ */ jsxRuntime.jsx(outline.TrashIcon, { className: "h-4 w-4" }),
|
|
@@ -3665,7 +3678,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3665
3678
|
] }, index)) })
|
|
3666
3679
|
] }),
|
|
3667
3680
|
method !== "GET" && /* @__PURE__ */ jsxRuntime.jsx(
|
|
3668
|
-
|
|
3681
|
+
chunk6UEVHQTJ_js.FormTextarea,
|
|
3669
3682
|
{
|
|
3670
3683
|
label: t("bodyLabel"),
|
|
3671
3684
|
value: body,
|
|
@@ -3676,7 +3689,7 @@ function HttpRequestNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3676
3689
|
}
|
|
3677
3690
|
),
|
|
3678
3691
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3679
|
-
|
|
3692
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
3680
3693
|
{
|
|
3681
3694
|
type: "number",
|
|
3682
3695
|
label: t("timeoutLabel"),
|
|
@@ -3707,7 +3720,7 @@ function TemplateTransformNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3707
3720
|
};
|
|
3708
3721
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
3709
3722
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3710
|
-
|
|
3723
|
+
chunk6UEVHQTJ_js.FormTextarea,
|
|
3711
3724
|
{
|
|
3712
3725
|
label: t("templateLabel"),
|
|
3713
3726
|
value: template,
|
|
@@ -3718,7 +3731,7 @@ function TemplateTransformNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3718
3731
|
}
|
|
3719
3732
|
),
|
|
3720
3733
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3721
|
-
|
|
3734
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
3722
3735
|
{
|
|
3723
3736
|
type: "text",
|
|
3724
3737
|
label: t("outputVariableLabel"),
|
|
@@ -3747,7 +3760,7 @@ function IterationNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3747
3760
|
};
|
|
3748
3761
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
3749
3762
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3750
|
-
|
|
3763
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
3751
3764
|
{
|
|
3752
3765
|
type: "text",
|
|
3753
3766
|
label: t("iteratorVariableLabel"),
|
|
@@ -3757,7 +3770,7 @@ function IterationNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3757
3770
|
}
|
|
3758
3771
|
),
|
|
3759
3772
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3760
|
-
|
|
3773
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
3761
3774
|
{
|
|
3762
3775
|
type: "number",
|
|
3763
3776
|
label: t("maxIterationsLabel"),
|
|
@@ -3788,7 +3801,7 @@ function KnowledgeBaseNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3788
3801
|
};
|
|
3789
3802
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
3790
3803
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3791
|
-
|
|
3804
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
3792
3805
|
{
|
|
3793
3806
|
type: "text",
|
|
3794
3807
|
label: t("sourceIdLabel"),
|
|
@@ -3798,7 +3811,7 @@ function KnowledgeBaseNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3798
3811
|
}
|
|
3799
3812
|
),
|
|
3800
3813
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3801
|
-
|
|
3814
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
3802
3815
|
{
|
|
3803
3816
|
type: "number",
|
|
3804
3817
|
label: t("topKLabel"),
|
|
@@ -3809,7 +3822,7 @@ function KnowledgeBaseNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3809
3822
|
}
|
|
3810
3823
|
),
|
|
3811
3824
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3812
|
-
|
|
3825
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
3813
3826
|
{
|
|
3814
3827
|
type: "number",
|
|
3815
3828
|
label: t("similarityThresholdLabel"),
|
|
@@ -3840,7 +3853,7 @@ function AnswerNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
3840
3853
|
};
|
|
3841
3854
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
3842
3855
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3843
|
-
|
|
3856
|
+
chunk6UEVHQTJ_js.FormTextarea,
|
|
3844
3857
|
{
|
|
3845
3858
|
label: t("outputTemplateLabel"),
|
|
3846
3859
|
hint: t("outputTemplateHelp"),
|
|
@@ -4274,7 +4287,7 @@ function VariableAggregatorNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
4274
4287
|
}
|
|
4275
4288
|
),
|
|
4276
4289
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4277
|
-
|
|
4290
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
4278
4291
|
{
|
|
4279
4292
|
type: "text",
|
|
4280
4293
|
label: t("outputVariableLabel"),
|
|
@@ -4284,7 +4297,7 @@ function VariableAggregatorNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
4284
4297
|
}
|
|
4285
4298
|
),
|
|
4286
4299
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4287
|
-
|
|
4300
|
+
chunk6UEVHQTJ_js.FormSelect,
|
|
4288
4301
|
{
|
|
4289
4302
|
label: t("aggregationModeLabel"),
|
|
4290
4303
|
value: aggregationMode,
|
|
@@ -4317,7 +4330,7 @@ function DocumentExtractorNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
4317
4330
|
};
|
|
4318
4331
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
4319
4332
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4320
|
-
|
|
4333
|
+
chunk6UEVHQTJ_js.FormSelect,
|
|
4321
4334
|
{
|
|
4322
4335
|
label: t("extractionModeLabel"),
|
|
4323
4336
|
value: extractionMode,
|
|
@@ -4326,7 +4339,7 @@ function DocumentExtractorNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
4326
4339
|
}
|
|
4327
4340
|
),
|
|
4328
4341
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4329
|
-
|
|
4342
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
4330
4343
|
{
|
|
4331
4344
|
type: "text",
|
|
4332
4345
|
label: t("outputVariableLabel"),
|
|
@@ -4503,7 +4516,7 @@ function IterationStartNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
4503
4516
|
};
|
|
4504
4517
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
4505
4518
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4506
|
-
|
|
4519
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
4507
4520
|
{
|
|
4508
4521
|
type: "text",
|
|
4509
4522
|
label: t("iteratorVariableLabel"),
|
|
@@ -4513,7 +4526,7 @@ function IterationStartNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
4513
4526
|
}
|
|
4514
4527
|
),
|
|
4515
4528
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4516
|
-
|
|
4529
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
4517
4530
|
{
|
|
4518
4531
|
type: "text",
|
|
4519
4532
|
label: t("itemVariableLabel"),
|
|
@@ -4523,7 +4536,7 @@ function IterationStartNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
4523
4536
|
}
|
|
4524
4537
|
),
|
|
4525
4538
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4526
|
-
|
|
4539
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
4527
4540
|
{
|
|
4528
4541
|
type: "text",
|
|
4529
4542
|
label: t("indexVariableLabel"),
|
|
@@ -5117,7 +5130,7 @@ function GroupNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
5117
5130
|
};
|
|
5118
5131
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
5119
5132
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5120
|
-
|
|
5133
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
5121
5134
|
{
|
|
5122
5135
|
type: "text",
|
|
5123
5136
|
label: translations("labelField"),
|
|
@@ -5127,7 +5140,7 @@ function GroupNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
5127
5140
|
}
|
|
5128
5141
|
),
|
|
5129
5142
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5130
|
-
|
|
5143
|
+
chunk6UEVHQTJ_js.FormTextarea,
|
|
5131
5144
|
{
|
|
5132
5145
|
label: translations("descriptionField"),
|
|
5133
5146
|
value: description,
|
|
@@ -5285,7 +5298,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
5285
5298
|
};
|
|
5286
5299
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
5287
5300
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5288
|
-
|
|
5301
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
5289
5302
|
{
|
|
5290
5303
|
type: "text",
|
|
5291
5304
|
label: t("nameLabel"),
|
|
@@ -5295,7 +5308,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
5295
5308
|
}
|
|
5296
5309
|
),
|
|
5297
5310
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5298
|
-
|
|
5311
|
+
chunk6UEVHQTJ_js.FormSelect,
|
|
5299
5312
|
{
|
|
5300
5313
|
label: t("providerTypeLabel"),
|
|
5301
5314
|
value: providerType,
|
|
@@ -5304,7 +5317,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
5304
5317
|
}
|
|
5305
5318
|
),
|
|
5306
5319
|
showRegion && /* @__PURE__ */ jsxRuntime.jsx(
|
|
5307
|
-
|
|
5320
|
+
chunk6UEVHQTJ_js.FormSelect,
|
|
5308
5321
|
{
|
|
5309
5322
|
label: t("regionLabel"),
|
|
5310
5323
|
value: region,
|
|
@@ -5313,7 +5326,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
5313
5326
|
}
|
|
5314
5327
|
),
|
|
5315
5328
|
showEndpoint && /* @__PURE__ */ jsxRuntime.jsx(
|
|
5316
|
-
|
|
5329
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
5317
5330
|
{
|
|
5318
5331
|
type: "text",
|
|
5319
5332
|
label: t("endpointLabel"),
|
|
@@ -5323,7 +5336,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
5323
5336
|
}
|
|
5324
5337
|
),
|
|
5325
5338
|
showApiKey && /* @__PURE__ */ jsxRuntime.jsx(
|
|
5326
|
-
|
|
5339
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
5327
5340
|
{
|
|
5328
5341
|
type: "password",
|
|
5329
5342
|
label: t("apiKeyLabel"),
|
|
@@ -5333,7 +5346,7 @@ function ModelProviderNodeConfigForm({ config, onSave, onCancel }) {
|
|
|
5333
5346
|
}
|
|
5334
5347
|
),
|
|
5335
5348
|
showCredentialRef && /* @__PURE__ */ jsxRuntime.jsx(
|
|
5336
|
-
|
|
5349
|
+
chunk6UEVHQTJ_js.FormInput,
|
|
5337
5350
|
{
|
|
5338
5351
|
type: "text",
|
|
5339
5352
|
label: t("credentialRefLabel"),
|
|
@@ -5477,7 +5490,7 @@ function LogicNodeModal({ onSave, entities = [], datasources = [], onLoadTables,
|
|
|
5477
5490
|
}
|
|
5478
5491
|
};
|
|
5479
5492
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5480
|
-
|
|
5493
|
+
chunk6UEVHQTJ_js.GlassModalShell,
|
|
5481
5494
|
{
|
|
5482
5495
|
open,
|
|
5483
5496
|
onClose: closeModal,
|
|
@@ -5537,7 +5550,7 @@ function NodeContextMenu({ position, targetId, onClose, onEdit, onDuplicate, onC
|
|
|
5537
5550
|
}
|
|
5538
5551
|
];
|
|
5539
5552
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5540
|
-
|
|
5553
|
+
chunk6UEVHQTJ_js.ContextMenu,
|
|
5541
5554
|
{
|
|
5542
5555
|
position,
|
|
5543
5556
|
onClose,
|
|
@@ -5594,7 +5607,7 @@ function PanelContextMenu({ position, onClose, onPaste, onSelectAll, onFitView,
|
|
|
5594
5607
|
}
|
|
5595
5608
|
];
|
|
5596
5609
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5597
|
-
|
|
5610
|
+
chunk6UEVHQTJ_js.ContextMenu,
|
|
5598
5611
|
{
|
|
5599
5612
|
position,
|
|
5600
5613
|
onClose,
|
|
@@ -5741,7 +5754,7 @@ function SelectionContextMenu({
|
|
|
5741
5754
|
}
|
|
5742
5755
|
];
|
|
5743
5756
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
5744
|
-
|
|
5757
|
+
chunk6UEVHQTJ_js.ContextMenu,
|
|
5745
5758
|
{
|
|
5746
5759
|
position,
|
|
5747
5760
|
onClose,
|
|
@@ -7614,5 +7627,5 @@ exports.useModalStore = useModalStore;
|
|
|
7614
7627
|
exports.useWorkflowBuilderClient = useWorkflowBuilderClient;
|
|
7615
7628
|
exports.useWorkflowBuilderClientOptional = useWorkflowBuilderClientOptional;
|
|
7616
7629
|
exports.useWorkflowStore = useWorkflowStore;
|
|
7617
|
-
//# sourceMappingURL=chunk-
|
|
7618
|
-
//# sourceMappingURL=chunk-
|
|
7630
|
+
//# sourceMappingURL=chunk-EY3UIPM2.js.map
|
|
7631
|
+
//# sourceMappingURL=chunk-EY3UIPM2.js.map
|