@datatechsolutions/ui 2.7.139 → 2.7.140
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/{chunk-YCIUVIFN.js → chunk-27M5YIVF.js} +52 -52
- package/dist/{chunk-YCIUVIFN.js.map → chunk-27M5YIVF.js.map} +1 -1
- package/dist/{chunk-AMUPPC66.mjs → chunk-7VN2V7CT.mjs} +3 -3
- package/dist/{chunk-AMUPPC66.mjs.map → chunk-7VN2V7CT.mjs.map} +1 -1
- package/dist/{chunk-WTPYTOK4.mjs → chunk-SCGWR7XZ.mjs} +95 -43
- package/dist/chunk-SCGWR7XZ.mjs.map +1 -0
- package/dist/{chunk-JYX3ILSA.js → chunk-WXI7OCNY.js} +95 -42
- package/dist/chunk-WXI7OCNY.js.map +1 -0
- package/dist/index.d.mts +23 -3
- package/dist/index.d.ts +23 -3
- package/dist/index.js +341 -337
- package/dist/index.mjs +1 -1
- package/dist/workflow/index.js +119 -119
- package/dist/workflow/index.mjs +3 -3
- package/dist/workflow/workflow-canvas.js +3 -3
- package/dist/workflow/workflow-canvas.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-JYX3ILSA.js.map +0 -1
- package/dist/chunk-WTPYTOK4.mjs.map +0 -1
package/dist/workflow/index.js
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
|
|
4
4
|
require('../chunk-2HUN5ZXT.js');
|
|
5
5
|
var chunkE42PD4X6_js = require('../chunk-E42PD4X6.js');
|
|
6
|
-
var
|
|
7
|
-
var
|
|
6
|
+
var chunk27M5YIVF_js = require('../chunk-27M5YIVF.js');
|
|
7
|
+
var chunkWXI7OCNY_js = require('../chunk-WXI7OCNY.js');
|
|
8
8
|
var chunkNJ6PBGQM_js = require('../chunk-NJ6PBGQM.js');
|
|
9
9
|
var chunkULPKAD4A_js = require('../chunk-ULPKAD4A.js');
|
|
10
10
|
require('../chunk-UZ3CMNUJ.js');
|
|
@@ -82,7 +82,7 @@ function OutputCard({ label, value }) {
|
|
|
82
82
|
function AgentProfileHeader({ agent, models, t, selectedModelId, setSelectedModelId, selectedFramework, temperature, setTemperature, elo, setElo, onChanged }) {
|
|
83
83
|
const modelName = models.find((model) => model.id === selectedModelId)?.name ?? selectedModelId ?? "\u2014";
|
|
84
84
|
const avatarUrl = agent.avatar;
|
|
85
|
-
const frameworkMeta =
|
|
85
|
+
const frameworkMeta = chunk27M5YIVF_js.getFrameworkMeta(selectedFramework);
|
|
86
86
|
const tierInfo = getEloTier(elo);
|
|
87
87
|
const difficultyConfig = {
|
|
88
88
|
beginner: { color: "bg-cyan-100 text-cyan-700 dark:bg-cyan-900/30 dark:text-cyan-400", labelKey: "agentDrawer.tierBeginner" },
|
|
@@ -367,12 +367,12 @@ function ConfigTab({ agent, models, t, selectedModelId, setSelectedModelId, sele
|
|
|
367
367
|
const isPrecise = temperature <= 0.3;
|
|
368
368
|
const isBalanced = temperature > 0.3 && temperature <= 0.7;
|
|
369
369
|
const isCreative = temperature > 0.7;
|
|
370
|
-
const frameworkKeys = Object.keys(
|
|
371
|
-
const compatibleModels =
|
|
370
|
+
const frameworkKeys = Object.keys(chunk27M5YIVF_js.FRAMEWORK_META);
|
|
371
|
+
const compatibleModels = chunk27M5YIVF_js.getCompatibleModels(models, selectedFramework);
|
|
372
372
|
const handleFrameworkChange = react.useCallback((newFramework) => {
|
|
373
373
|
setSelectedFramework(newFramework);
|
|
374
|
-
if (!
|
|
375
|
-
const compatible =
|
|
374
|
+
if (!chunk27M5YIVF_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
|
|
375
|
+
const compatible = chunk27M5YIVF_js.getCompatibleModels(models, newFramework);
|
|
376
376
|
if (compatible.length > 0) {
|
|
377
377
|
setSelectedModelId(compatible[0].id);
|
|
378
378
|
}
|
|
@@ -383,9 +383,9 @@ function ConfigTab({ agent, models, t, selectedModelId, setSelectedModelId, sele
|
|
|
383
383
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
384
384
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-2 block text-xs font-medium text-gray-500 dark:text-gray-400", children: t("agentDrawer.framework") }),
|
|
385
385
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-wrap gap-1.5", children: frameworkKeys.map((key) => {
|
|
386
|
-
const meta =
|
|
386
|
+
const meta = chunk27M5YIVF_js.FRAMEWORK_META[key];
|
|
387
387
|
const isSelected = key === selectedFramework;
|
|
388
|
-
const compatCount =
|
|
388
|
+
const compatCount = chunk27M5YIVF_js.getCompatibleModels(models, key).length;
|
|
389
389
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
390
390
|
"button",
|
|
391
391
|
{
|
|
@@ -415,7 +415,7 @@ function ConfigTab({ agent, models, t, selectedModelId, setSelectedModelId, sele
|
|
|
415
415
|
] }),
|
|
416
416
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid grid-cols-2 gap-2", children: models.map((model) => {
|
|
417
417
|
const isSelected = model.id === selectedModelId;
|
|
418
|
-
const isCompatible =
|
|
418
|
+
const isCompatible = chunk27M5YIVF_js.isModelCompatibleWithFramework(model.id, selectedFramework);
|
|
419
419
|
const { IconComponent, color, providerLabel } = getModelIcon(model.id);
|
|
420
420
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
421
421
|
"button",
|
|
@@ -519,7 +519,7 @@ function ConfigTab({ agent, models, t, selectedModelId, setSelectedModelId, sele
|
|
|
519
519
|
] });
|
|
520
520
|
}
|
|
521
521
|
function ResultsTab({ agentId, t }) {
|
|
522
|
-
const nodeResults =
|
|
522
|
+
const nodeResults = chunk27M5YIVF_js.useWorkflowStore((state) => state.nodeResults);
|
|
523
523
|
const agentResult = react.useMemo(() => {
|
|
524
524
|
return nodeResults[agentId] ?? null;
|
|
525
525
|
}, [nodeResults, agentId]);
|
|
@@ -548,9 +548,9 @@ function ResultsTab({ agentId, t }) {
|
|
|
548
548
|
}
|
|
549
549
|
function AgentDrawer({ onSaved }) {
|
|
550
550
|
const t = nextIntl.useTranslations("agents.workflow");
|
|
551
|
-
const activeDrawer =
|
|
552
|
-
const agentData =
|
|
553
|
-
const closeDrawer =
|
|
551
|
+
const activeDrawer = chunk27M5YIVF_js.useDrawerStore((s) => s.activeDrawer);
|
|
552
|
+
const agentData = chunk27M5YIVF_js.useDrawerStore((s) => s.agentData);
|
|
553
|
+
const closeDrawer = chunk27M5YIVF_js.useDrawerStore((s) => s.closeDrawer);
|
|
554
554
|
const open = activeDrawer === "agent";
|
|
555
555
|
const agent = agentData?.agent ?? null;
|
|
556
556
|
const models = agentData?.models ?? [];
|
|
@@ -593,7 +593,7 @@ function AgentDrawer({ onSaved }) {
|
|
|
593
593
|
tab
|
|
594
594
|
)) });
|
|
595
595
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
596
|
-
|
|
596
|
+
chunk27M5YIVF_js.WorkspaceDrawer,
|
|
597
597
|
{
|
|
598
598
|
open,
|
|
599
599
|
onClose: handleClose,
|
|
@@ -741,9 +741,9 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
741
741
|
}, [tool, onSaved, name, category, description, timeoutMs, latestGraphRef, markSaved]);
|
|
742
742
|
if (!tool) return null;
|
|
743
743
|
const categoryKey = category ?? "external";
|
|
744
|
-
const gradient = tool.color ??
|
|
745
|
-
const categoryPill =
|
|
746
|
-
const IconComponent =
|
|
744
|
+
const gradient = tool.color ?? chunk27M5YIVF_js.CATEGORY_COLORS[categoryKey] ?? chunk27M5YIVF_js.CATEGORY_COLORS.external;
|
|
745
|
+
const categoryPill = chunk27M5YIVF_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunk27M5YIVF_js.CATEGORY_PILL_COLORS.external;
|
|
746
|
+
const IconComponent = chunk27M5YIVF_js.ICON_MAP[tool.icon ?? ""] ?? outline.ArrowPathRoundedSquareIcon;
|
|
747
747
|
const graph = latestGraphRef.current;
|
|
748
748
|
const startNode = graph.nodes.find((n) => n.type === "start");
|
|
749
749
|
const endNode = graph.nodes.find((n) => n.type === "end");
|
|
@@ -752,7 +752,7 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
752
752
|
const inputVariables = (startConfig?.inputVariables ?? []).map((v) => ({ name: v, type: "string" }));
|
|
753
753
|
const outputVariables = (endConfig?.outputVariables ?? []).map((v) => ({ name: v, type: "string" }));
|
|
754
754
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
755
|
-
|
|
755
|
+
chunk27M5YIVF_js.WorkspaceDrawer,
|
|
756
756
|
{
|
|
757
757
|
open,
|
|
758
758
|
onClose: closeDrawer,
|
|
@@ -781,7 +781,7 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
781
781
|
{
|
|
782
782
|
type: "button",
|
|
783
783
|
onClick: () => setCategory(cat),
|
|
784
|
-
className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${
|
|
784
|
+
className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${chunk27M5YIVF_js.CATEGORY_PILL_COLORS[cat] ?? chunk27M5YIVF_js.CATEGORY_PILL_COLORS.external} ring-1 ring-current/20` : "bg-white/30 text-gray-500 hover:bg-white/50 dark:bg-white/5 dark:text-gray-400"}`,
|
|
785
785
|
children: cat
|
|
786
786
|
},
|
|
787
787
|
cat
|
|
@@ -872,7 +872,7 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
872
872
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-center text-[10px] font-medium text-emerald-500", children: t("subworkflowDrawer.saved") }) })
|
|
873
873
|
] }),
|
|
874
874
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
875
|
-
|
|
875
|
+
chunk27M5YIVF_js.WorkflowCanvas,
|
|
876
876
|
{
|
|
877
877
|
initialGraph,
|
|
878
878
|
agents: [],
|
|
@@ -888,9 +888,9 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
888
888
|
}
|
|
889
889
|
function PipelineSettingsDrawer({ onSave }) {
|
|
890
890
|
const t = nextIntl.useTranslations("agents.workflow");
|
|
891
|
-
const activeDrawer =
|
|
892
|
-
const data =
|
|
893
|
-
const closeDrawer =
|
|
891
|
+
const activeDrawer = chunk27M5YIVF_js.useDrawerStore((s) => s.activeDrawer);
|
|
892
|
+
const data = chunk27M5YIVF_js.useDrawerStore((s) => s.pipelineSettingsData);
|
|
893
|
+
const closeDrawer = chunk27M5YIVF_js.useDrawerStore((s) => s.closeDrawer);
|
|
894
894
|
const open = activeDrawer === "pipeline-settings";
|
|
895
895
|
const [nameValue, setNameValue] = react.useState("");
|
|
896
896
|
const [descriptionValue, setDescriptionValue] = react.useState("");
|
|
@@ -915,7 +915,7 @@ function PipelineSettingsDrawer({ onSave }) {
|
|
|
915
915
|
}
|
|
916
916
|
};
|
|
917
917
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
918
|
-
|
|
918
|
+
chunk27M5YIVF_js.WorkspaceDrawer,
|
|
919
919
|
{
|
|
920
920
|
open,
|
|
921
921
|
onClose: closeDrawer,
|
|
@@ -925,7 +925,7 @@ function PipelineSettingsDrawer({ onSave }) {
|
|
|
925
925
|
gradient: "from-indigo-500 to-purple-600",
|
|
926
926
|
children: /* @__PURE__ */ jsxRuntime.jsxs("form", { onSubmit: handleSubmit, className: "space-y-6", children: [
|
|
927
927
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
928
|
-
|
|
928
|
+
chunkWXI7OCNY_js.FormInput,
|
|
929
929
|
{
|
|
930
930
|
label: t("pipelineName"),
|
|
931
931
|
value: nameValue,
|
|
@@ -935,7 +935,7 @@ function PipelineSettingsDrawer({ onSave }) {
|
|
|
935
935
|
}
|
|
936
936
|
),
|
|
937
937
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
938
|
-
|
|
938
|
+
chunkWXI7OCNY_js.FormTextarea,
|
|
939
939
|
{
|
|
940
940
|
label: t("pipelineDescription"),
|
|
941
941
|
value: descriptionValue,
|
|
@@ -945,7 +945,7 @@ function PipelineSettingsDrawer({ onSave }) {
|
|
|
945
945
|
}
|
|
946
946
|
),
|
|
947
947
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "pt-2", children: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
948
|
-
|
|
948
|
+
chunkWXI7OCNY_js.Button,
|
|
949
949
|
{
|
|
950
950
|
type: "submit",
|
|
951
951
|
color: "ios-glass-blue",
|
|
@@ -1058,8 +1058,8 @@ function CollapsibleSection({ title, icon, colorClass, defaultOpen = true, count
|
|
|
1058
1058
|
] });
|
|
1059
1059
|
}
|
|
1060
1060
|
function LogicNodeItemCard({ item, translationFunction }) {
|
|
1061
|
-
const IconComponent =
|
|
1062
|
-
const gradient =
|
|
1061
|
+
const IconComponent = chunk27M5YIVF_js.LOGIC_ICON_MAP[item.nodeType];
|
|
1062
|
+
const gradient = chunk27M5YIVF_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
|
|
1063
1063
|
const defaultConfig = chunkULPKAD4A_js.createDefaultLogicNodeConfig(item.nodeType);
|
|
1064
1064
|
const configJson = defaultConfig ? JSON.stringify(defaultConfig) : void 0;
|
|
1065
1065
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1297,8 +1297,8 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], onC
|
|
|
1297
1297
|
outputVariable: `${entity.label.replace(/\s+/g, "")}Data`,
|
|
1298
1298
|
limit: entity.defaultLimit
|
|
1299
1299
|
});
|
|
1300
|
-
const EntityIcon =
|
|
1301
|
-
const entityGradient =
|
|
1300
|
+
const EntityIcon = chunk27M5YIVF_js.getEntityIcon(entity.id);
|
|
1301
|
+
const entityGradient = chunk27M5YIVF_js.getEntityGradient(entity.id);
|
|
1302
1302
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1303
1303
|
"div",
|
|
1304
1304
|
{
|
|
@@ -1637,9 +1637,9 @@ function formatDuration2(durationMs) {
|
|
|
1637
1637
|
}
|
|
1638
1638
|
function RunPanel({ open, onClose, onRun, onStop }) {
|
|
1639
1639
|
const translations = nextIntl.useTranslations("agents.workflow.runPanel");
|
|
1640
|
-
const nodes =
|
|
1641
|
-
const isRunning =
|
|
1642
|
-
const nodeResults =
|
|
1640
|
+
const nodes = chunk27M5YIVF_js.useWorkflowStore((state) => state.nodes);
|
|
1641
|
+
const isRunning = chunk27M5YIVF_js.useWorkflowStore((state) => state.isRunning);
|
|
1642
|
+
const nodeResults = chunk27M5YIVF_js.useWorkflowStore((state) => state.nodeResults);
|
|
1643
1643
|
const startNode = nodes.find((node) => node.type === "start");
|
|
1644
1644
|
const hasEndNode = nodes.some((node) => node.type === "end");
|
|
1645
1645
|
const hasValidStartConfig = Boolean(
|
|
@@ -1924,8 +1924,8 @@ function inferVariables(config, nodeType) {
|
|
|
1924
1924
|
}
|
|
1925
1925
|
function VariableInspector({ open, onClose }) {
|
|
1926
1926
|
const translations = nextIntl.useTranslations("agents.workflow.variableInspector");
|
|
1927
|
-
const nodes =
|
|
1928
|
-
const edges =
|
|
1927
|
+
const nodes = chunk27M5YIVF_js.useWorkflowStore((state) => state.nodes);
|
|
1928
|
+
const edges = chunk27M5YIVF_js.useWorkflowStore((state) => state.edges);
|
|
1929
1929
|
const [expandedNodes, setExpandedNodes] = react.useState(/* @__PURE__ */ new Set());
|
|
1930
1930
|
const toggleNodeExpansion = react.useCallback((nodeId) => {
|
|
1931
1931
|
setExpandedNodes((current) => {
|
|
@@ -1987,8 +1987,8 @@ function VariableInspector({ open, onClose }) {
|
|
|
1987
1987
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-2 text-sm text-gray-500 dark:text-gray-400", children: translations("noNodes") })
|
|
1988
1988
|
] }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "divide-y divide-gray-100 dark:divide-gray-800", children: nodeVariableEntries.map((entry) => {
|
|
1989
1989
|
const isExpanded = expandedNodes.has(entry.nodeId);
|
|
1990
|
-
const IconComponent =
|
|
1991
|
-
const gradient =
|
|
1990
|
+
const IconComponent = chunk27M5YIVF_js.LOGIC_ICON_MAP[entry.nodeType];
|
|
1991
|
+
const gradient = chunk27M5YIVF_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
|
|
1992
1992
|
const inputVariables = entry.variables.filter((variable) => variable.direction === "input");
|
|
1993
1993
|
const outputVariables = entry.variables.filter((variable) => variable.direction === "output");
|
|
1994
1994
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": `variable-node-${entry.nodeId}`, children: [
|
|
@@ -2054,7 +2054,7 @@ function RunInputDialog({
|
|
|
2054
2054
|
onRun
|
|
2055
2055
|
}) {
|
|
2056
2056
|
const t = nextIntl.useTranslations("agents.workflow.runInputDialog");
|
|
2057
|
-
const nodes =
|
|
2057
|
+
const nodes = chunk27M5YIVF_js.useWorkflowStore((state) => state.nodes);
|
|
2058
2058
|
const [values, setValues] = react.useState({});
|
|
2059
2059
|
const inputVariableNames = react.useMemo(() => {
|
|
2060
2060
|
const storeStartNode = nodes.find((node) => node.type === "start");
|
|
@@ -2081,7 +2081,7 @@ function RunInputDialog({
|
|
|
2081
2081
|
}, [onClose]);
|
|
2082
2082
|
if (!open) return null;
|
|
2083
2083
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2084
|
-
|
|
2084
|
+
chunkWXI7OCNY_js.GlassFormModal,
|
|
2085
2085
|
{
|
|
2086
2086
|
open,
|
|
2087
2087
|
onClose: handleClose,
|
|
@@ -2093,7 +2093,7 @@ function RunInputDialog({
|
|
|
2093
2093
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "space-y-3", children: inputVariableNames.length === 0 ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-center text-sm text-gray-500 dark:text-gray-400", children: t("noInputs") }) : inputVariableNames.map((variableName) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
2094
2094
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-1 block text-xs font-medium text-gray-700 dark:text-gray-300", children: variableName }),
|
|
2095
2095
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2096
|
-
|
|
2096
|
+
chunkWXI7OCNY_js.Input,
|
|
2097
2097
|
{
|
|
2098
2098
|
value: values[variableName] ?? "",
|
|
2099
2099
|
onChange: (event) => handleValueChange(variableName, event.target.value),
|
|
@@ -2102,8 +2102,8 @@ function RunInputDialog({
|
|
|
2102
2102
|
)
|
|
2103
2103
|
] }, variableName)) }),
|
|
2104
2104
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-4 flex items-center justify-end gap-2", children: [
|
|
2105
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2106
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2105
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkWXI7OCNY_js.Button, { size: "sm", plain: true, onClick: handleClose, children: t("cancel") }),
|
|
2106
|
+
/* @__PURE__ */ jsxRuntime.jsxs(chunkWXI7OCNY_js.Button, { size: "sm", gradient: true, onClick: handleSubmit, children: [
|
|
2107
2107
|
/* @__PURE__ */ jsxRuntime.jsx(outline.PlayIcon, { className: "h-3.5 w-3.5", "data-slot": "icon" }),
|
|
2108
2108
|
t("run")
|
|
2109
2109
|
] })
|
|
@@ -2136,8 +2136,8 @@ function PreviewPanel({ open, onClose, workflowId, loadRuns }) {
|
|
|
2136
2136
|
const [isLoadingRuns, setIsLoadingRuns] = react.useState(false);
|
|
2137
2137
|
const [selectedRun, setSelectedRun] = react.useState(null);
|
|
2138
2138
|
const [selectedNode, setSelectedNode] = react.useState(null);
|
|
2139
|
-
const isRunning =
|
|
2140
|
-
const nodeResults =
|
|
2139
|
+
const isRunning = chunk27M5YIVF_js.useWorkflowStore((state) => state.isRunning);
|
|
2140
|
+
const nodeResults = chunk27M5YIVF_js.useWorkflowStore((state) => state.nodeResults);
|
|
2141
2141
|
const refreshRuns = react.useCallback(async () => {
|
|
2142
2142
|
setIsLoadingRuns(true);
|
|
2143
2143
|
try {
|
|
@@ -2293,7 +2293,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2293
2293
|
onAutoSaveGraph(graph);
|
|
2294
2294
|
}, [onAutoSaveGraph, onGraphSnapshot]);
|
|
2295
2295
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2296
|
-
|
|
2296
|
+
chunk27M5YIVF_js.Workspace,
|
|
2297
2297
|
{
|
|
2298
2298
|
...workspaceProps,
|
|
2299
2299
|
onGraphChange: handleGraphChange
|
|
@@ -2301,7 +2301,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2301
2301
|
);
|
|
2302
2302
|
});
|
|
2303
2303
|
function DynamicIslandConfirm2(props) {
|
|
2304
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2304
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunkWXI7OCNY_js.DynamicIslandConfirm, { ...props });
|
|
2305
2305
|
}
|
|
2306
2306
|
var JSON_PREVIEW_LINE_LIMIT = 50;
|
|
2307
2307
|
function DslExportModal({ open, onClose, workflow, graph }) {
|
|
@@ -2355,7 +2355,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2355
2355
|
}, [jsonString, workflow.name, workflow.version]);
|
|
2356
2356
|
if (!open) return null;
|
|
2357
2357
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2358
|
-
|
|
2358
|
+
chunkWXI7OCNY_js.GlassFormModal,
|
|
2359
2359
|
{
|
|
2360
2360
|
open,
|
|
2361
2361
|
onClose,
|
|
@@ -2398,7 +2398,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2398
2398
|
] }),
|
|
2399
2399
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-end gap-3 border-t border-gray-200 px-1 py-4 dark:border-gray-700", children: [
|
|
2400
2400
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2401
|
-
|
|
2401
|
+
chunkWXI7OCNY_js.Button,
|
|
2402
2402
|
{
|
|
2403
2403
|
type: "button",
|
|
2404
2404
|
onClick: handleCopyToClipboard,
|
|
@@ -2415,7 +2415,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2415
2415
|
}
|
|
2416
2416
|
),
|
|
2417
2417
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2418
|
-
|
|
2418
|
+
chunkWXI7OCNY_js.Button,
|
|
2419
2419
|
{
|
|
2420
2420
|
type: "button",
|
|
2421
2421
|
onClick: handleDownloadJson,
|
|
@@ -2574,7 +2574,7 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2574
2574
|
}, []);
|
|
2575
2575
|
if (!open) return null;
|
|
2576
2576
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2577
|
-
|
|
2577
|
+
chunkWXI7OCNY_js.GlassFormModal,
|
|
2578
2578
|
{
|
|
2579
2579
|
open,
|
|
2580
2580
|
onClose,
|
|
@@ -2612,7 +2612,7 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2612
2612
|
) : /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": "import-validation-result", children: [
|
|
2613
2613
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-4 flex items-center justify-between", children: [
|
|
2614
2614
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: fileName }),
|
|
2615
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2615
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkWXI7OCNY_js.Button, { type: "button", plain: true, size: "sm", onClick: handleReset, children: translations("chooseAnother") })
|
|
2616
2616
|
] }),
|
|
2617
2617
|
validationResult.isValid ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "rounded-lg border border-green-200 bg-green-50 p-4 dark:border-green-800 dark:bg-green-900/20", children: [
|
|
2618
2618
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
@@ -2640,9 +2640,9 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2640
2640
|
] })
|
|
2641
2641
|
] }) }),
|
|
2642
2642
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-end gap-3 border-t border-gray-200 px-1 py-4 dark:border-gray-700", children: [
|
|
2643
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2643
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkWXI7OCNY_js.Button, { type: "button", onClick: onClose, outline: true, size: "sm", "data-testid": "import-cancel-button", children: translations("cancel") }),
|
|
2644
2644
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2645
|
-
|
|
2645
|
+
chunkWXI7OCNY_js.Button,
|
|
2646
2646
|
{
|
|
2647
2647
|
type: "button",
|
|
2648
2648
|
onClick: handleImport,
|
|
@@ -2663,14 +2663,14 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2663
2663
|
}
|
|
2664
2664
|
|
|
2665
2665
|
// src/workflow/store/selectors.ts
|
|
2666
|
-
var useCanUndo = () =>
|
|
2667
|
-
var useCanRedo = () =>
|
|
2668
|
-
var useHasCopied = () =>
|
|
2669
|
-
var useContextMenu = () =>
|
|
2670
|
-
var useEditingNodeId = () =>
|
|
2671
|
-
var useSelectedNodeCount = () =>
|
|
2672
|
-
var useIsRunning = () =>
|
|
2673
|
-
var useNodeResults = () =>
|
|
2666
|
+
var useCanUndo = () => chunk27M5YIVF_js.useWorkflowStore((state) => state.past.length > 0);
|
|
2667
|
+
var useCanRedo = () => chunk27M5YIVF_js.useWorkflowStore((state) => state.future.length > 0);
|
|
2668
|
+
var useHasCopied = () => chunk27M5YIVF_js.useWorkflowStore((state) => state.clipboard !== null);
|
|
2669
|
+
var useContextMenu = () => chunk27M5YIVF_js.useWorkflowStore((state) => state.contextMenu);
|
|
2670
|
+
var useEditingNodeId = () => chunk27M5YIVF_js.useWorkflowStore((state) => state.editingNodeId);
|
|
2671
|
+
var useSelectedNodeCount = () => chunk27M5YIVF_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
|
|
2672
|
+
var useIsRunning = () => chunk27M5YIVF_js.useWorkflowStore((state) => state.isRunning);
|
|
2673
|
+
var useNodeResults = () => chunk27M5YIVF_js.useWorkflowStore((state) => state.nodeResults);
|
|
2674
2674
|
var DEFAULT_MAX_HISTORY = 50;
|
|
2675
2675
|
function useUndoRedo(nodes, edges, setNodes, setEdges, maxHistory = DEFAULT_MAX_HISTORY) {
|
|
2676
2676
|
const pastRef = react.useRef([]);
|
|
@@ -2958,227 +2958,227 @@ Object.defineProperty(exports, "validateWorkflowGraph", {
|
|
|
2958
2958
|
});
|
|
2959
2959
|
Object.defineProperty(exports, "AgentFlowNode", {
|
|
2960
2960
|
enumerable: true,
|
|
2961
|
-
get: function () { return
|
|
2961
|
+
get: function () { return chunk27M5YIVF_js.AgentFlowNode; }
|
|
2962
2962
|
});
|
|
2963
2963
|
Object.defineProperty(exports, "AgentToolFlowNode", {
|
|
2964
2964
|
enumerable: true,
|
|
2965
|
-
get: function () { return
|
|
2965
|
+
get: function () { return chunk27M5YIVF_js.AgentToolFlowNode; }
|
|
2966
2966
|
});
|
|
2967
2967
|
Object.defineProperty(exports, "AnswerFlowNode", {
|
|
2968
2968
|
enumerable: true,
|
|
2969
|
-
get: function () { return
|
|
2969
|
+
get: function () { return chunk27M5YIVF_js.AnswerFlowNode; }
|
|
2970
2970
|
});
|
|
2971
2971
|
Object.defineProperty(exports, "AnthropicIcon", {
|
|
2972
2972
|
enumerable: true,
|
|
2973
|
-
get: function () { return
|
|
2973
|
+
get: function () { return chunk27M5YIVF_js.AnthropicIcon; }
|
|
2974
2974
|
});
|
|
2975
2975
|
Object.defineProperty(exports, "CodeFlowNode", {
|
|
2976
2976
|
enumerable: true,
|
|
2977
|
-
get: function () { return
|
|
2977
|
+
get: function () { return chunk27M5YIVF_js.CodeFlowNode; }
|
|
2978
2978
|
});
|
|
2979
2979
|
Object.defineProperty(exports, "CrewAIIcon", {
|
|
2980
2980
|
enumerable: true,
|
|
2981
|
-
get: function () { return
|
|
2981
|
+
get: function () { return chunk27M5YIVF_js.CrewAIIcon; }
|
|
2982
2982
|
});
|
|
2983
2983
|
Object.defineProperty(exports, "DocumentExtractorFlowNode", {
|
|
2984
2984
|
enumerable: true,
|
|
2985
|
-
get: function () { return
|
|
2985
|
+
get: function () { return chunk27M5YIVF_js.DocumentExtractorFlowNode; }
|
|
2986
2986
|
});
|
|
2987
2987
|
Object.defineProperty(exports, "EndFlowNode", {
|
|
2988
2988
|
enumerable: true,
|
|
2989
|
-
get: function () { return
|
|
2989
|
+
get: function () { return chunk27M5YIVF_js.EndFlowNode; }
|
|
2990
2990
|
});
|
|
2991
2991
|
Object.defineProperty(exports, "EntityFlowNode", {
|
|
2992
2992
|
enumerable: true,
|
|
2993
|
-
get: function () { return
|
|
2993
|
+
get: function () { return chunk27M5YIVF_js.EntityFlowNode; }
|
|
2994
2994
|
});
|
|
2995
2995
|
Object.defineProperty(exports, "FRAMEWORK_META", {
|
|
2996
2996
|
enumerable: true,
|
|
2997
|
-
get: function () { return
|
|
2997
|
+
get: function () { return chunk27M5YIVF_js.FRAMEWORK_META; }
|
|
2998
2998
|
});
|
|
2999
2999
|
Object.defineProperty(exports, "GoogleADKIcon", {
|
|
3000
3000
|
enumerable: true,
|
|
3001
|
-
get: function () { return
|
|
3001
|
+
get: function () { return chunk27M5YIVF_js.GoogleADKIcon; }
|
|
3002
3002
|
});
|
|
3003
3003
|
Object.defineProperty(exports, "GroupFlowNode", {
|
|
3004
3004
|
enumerable: true,
|
|
3005
|
-
get: function () { return
|
|
3005
|
+
get: function () { return chunk27M5YIVF_js.GroupFlowNode; }
|
|
3006
3006
|
});
|
|
3007
3007
|
Object.defineProperty(exports, "HttpRequestFlowNode", {
|
|
3008
3008
|
enumerable: true,
|
|
3009
|
-
get: function () { return
|
|
3009
|
+
get: function () { return chunk27M5YIVF_js.HttpRequestFlowNode; }
|
|
3010
3010
|
});
|
|
3011
3011
|
Object.defineProperty(exports, "IfElseFlowNode", {
|
|
3012
3012
|
enumerable: true,
|
|
3013
|
-
get: function () { return
|
|
3013
|
+
get: function () { return chunk27M5YIVF_js.IfElseFlowNode; }
|
|
3014
3014
|
});
|
|
3015
3015
|
Object.defineProperty(exports, "IterationFlowNode", {
|
|
3016
3016
|
enumerable: true,
|
|
3017
|
-
get: function () { return
|
|
3017
|
+
get: function () { return chunk27M5YIVF_js.IterationFlowNode; }
|
|
3018
3018
|
});
|
|
3019
3019
|
Object.defineProperty(exports, "IterationStartFlowNode", {
|
|
3020
3020
|
enumerable: true,
|
|
3021
|
-
get: function () { return
|
|
3021
|
+
get: function () { return chunk27M5YIVF_js.IterationStartFlowNode; }
|
|
3022
3022
|
});
|
|
3023
3023
|
Object.defineProperty(exports, "KnowledgeBaseFlowNode", {
|
|
3024
3024
|
enumerable: true,
|
|
3025
|
-
get: function () { return
|
|
3025
|
+
get: function () { return chunk27M5YIVF_js.KnowledgeBaseFlowNode; }
|
|
3026
3026
|
});
|
|
3027
3027
|
Object.defineProperty(exports, "LOGIC_ICON_MAP", {
|
|
3028
3028
|
enumerable: true,
|
|
3029
|
-
get: function () { return
|
|
3029
|
+
get: function () { return chunk27M5YIVF_js.LOGIC_ICON_MAP; }
|
|
3030
3030
|
});
|
|
3031
3031
|
Object.defineProperty(exports, "LOGIC_NODE_BADGE_COLORS", {
|
|
3032
3032
|
enumerable: true,
|
|
3033
|
-
get: function () { return
|
|
3033
|
+
get: function () { return chunk27M5YIVF_js.LOGIC_NODE_BADGE_COLORS; }
|
|
3034
3034
|
});
|
|
3035
3035
|
Object.defineProperty(exports, "LOGIC_NODE_GRADIENTS", {
|
|
3036
3036
|
enumerable: true,
|
|
3037
|
-
get: function () { return
|
|
3037
|
+
get: function () { return chunk27M5YIVF_js.LOGIC_NODE_GRADIENTS; }
|
|
3038
3038
|
});
|
|
3039
3039
|
Object.defineProperty(exports, "LOGIC_NODE_HANDLE_COLORS", {
|
|
3040
3040
|
enumerable: true,
|
|
3041
|
-
get: function () { return
|
|
3041
|
+
get: function () { return chunk27M5YIVF_js.LOGIC_NODE_HANDLE_COLORS; }
|
|
3042
3042
|
});
|
|
3043
3043
|
Object.defineProperty(exports, "LangChainIcon", {
|
|
3044
3044
|
enumerable: true,
|
|
3045
|
-
get: function () { return
|
|
3045
|
+
get: function () { return chunk27M5YIVF_js.LangChainIcon; }
|
|
3046
3046
|
});
|
|
3047
3047
|
Object.defineProperty(exports, "ListOperatorFlowNode", {
|
|
3048
3048
|
enumerable: true,
|
|
3049
|
-
get: function () { return
|
|
3049
|
+
get: function () { return chunk27M5YIVF_js.ListOperatorFlowNode; }
|
|
3050
3050
|
});
|
|
3051
3051
|
Object.defineProperty(exports, "LogicNodeDrawer", {
|
|
3052
3052
|
enumerable: true,
|
|
3053
|
-
get: function () { return
|
|
3053
|
+
get: function () { return chunk27M5YIVF_js.LogicNodeDrawer; }
|
|
3054
3054
|
});
|
|
3055
3055
|
Object.defineProperty(exports, "MINIMAP_NODE_COLORS", {
|
|
3056
3056
|
enumerable: true,
|
|
3057
|
-
get: function () { return
|
|
3057
|
+
get: function () { return chunk27M5YIVF_js.MINIMAP_NODE_COLORS; }
|
|
3058
3058
|
});
|
|
3059
3059
|
Object.defineProperty(exports, "NodeCard", {
|
|
3060
3060
|
enumerable: true,
|
|
3061
|
-
get: function () { return
|
|
3061
|
+
get: function () { return chunk27M5YIVF_js.NodeCard; }
|
|
3062
3062
|
});
|
|
3063
3063
|
Object.defineProperty(exports, "NodeContextMenu", {
|
|
3064
3064
|
enumerable: true,
|
|
3065
|
-
get: function () { return
|
|
3065
|
+
get: function () { return chunk27M5YIVF_js.NodeContextMenu; }
|
|
3066
3066
|
});
|
|
3067
3067
|
Object.defineProperty(exports, "NoteFlowNode", {
|
|
3068
3068
|
enumerable: true,
|
|
3069
|
-
get: function () { return
|
|
3069
|
+
get: function () { return chunk27M5YIVF_js.NoteFlowNode; }
|
|
3070
3070
|
});
|
|
3071
3071
|
Object.defineProperty(exports, "OpenAIIcon", {
|
|
3072
3072
|
enumerable: true,
|
|
3073
|
-
get: function () { return
|
|
3073
|
+
get: function () { return chunk27M5YIVF_js.OpenAIIcon; }
|
|
3074
3074
|
});
|
|
3075
3075
|
Object.defineProperty(exports, "PanelContextMenu", {
|
|
3076
3076
|
enumerable: true,
|
|
3077
|
-
get: function () { return
|
|
3077
|
+
get: function () { return chunk27M5YIVF_js.PanelContextMenu; }
|
|
3078
3078
|
});
|
|
3079
3079
|
Object.defineProperty(exports, "ParameterExtractorFlowNode", {
|
|
3080
3080
|
enumerable: true,
|
|
3081
|
-
get: function () { return
|
|
3081
|
+
get: function () { return chunk27M5YIVF_js.ParameterExtractorFlowNode; }
|
|
3082
3082
|
});
|
|
3083
3083
|
Object.defineProperty(exports, "QuestionClassifierFlowNode", {
|
|
3084
3084
|
enumerable: true,
|
|
3085
|
-
get: function () { return
|
|
3085
|
+
get: function () { return chunk27M5YIVF_js.QuestionClassifierFlowNode; }
|
|
3086
3086
|
});
|
|
3087
3087
|
Object.defineProperty(exports, "RuleFlowNode", {
|
|
3088
3088
|
enumerable: true,
|
|
3089
|
-
get: function () { return
|
|
3089
|
+
get: function () { return chunk27M5YIVF_js.RuleFlowNode; }
|
|
3090
3090
|
});
|
|
3091
3091
|
Object.defineProperty(exports, "SelectionContextMenu", {
|
|
3092
3092
|
enumerable: true,
|
|
3093
|
-
get: function () { return
|
|
3093
|
+
get: function () { return chunk27M5YIVF_js.SelectionContextMenu; }
|
|
3094
3094
|
});
|
|
3095
3095
|
Object.defineProperty(exports, "StartFlowNode", {
|
|
3096
3096
|
enumerable: true,
|
|
3097
|
-
get: function () { return
|
|
3097
|
+
get: function () { return chunk27M5YIVF_js.StartFlowNode; }
|
|
3098
3098
|
});
|
|
3099
3099
|
Object.defineProperty(exports, "StrandsIcon", {
|
|
3100
3100
|
enumerable: true,
|
|
3101
|
-
get: function () { return
|
|
3101
|
+
get: function () { return chunk27M5YIVF_js.StrandsIcon; }
|
|
3102
3102
|
});
|
|
3103
3103
|
Object.defineProperty(exports, "TemplateTransformFlowNode", {
|
|
3104
3104
|
enumerable: true,
|
|
3105
|
-
get: function () { return
|
|
3105
|
+
get: function () { return chunk27M5YIVF_js.TemplateTransformFlowNode; }
|
|
3106
3106
|
});
|
|
3107
3107
|
Object.defineProperty(exports, "ToolFlowNode", {
|
|
3108
3108
|
enumerable: true,
|
|
3109
|
-
get: function () { return
|
|
3109
|
+
get: function () { return chunk27M5YIVF_js.ToolFlowNode; }
|
|
3110
3110
|
});
|
|
3111
3111
|
Object.defineProperty(exports, "VariableAggregatorFlowNode", {
|
|
3112
3112
|
enumerable: true,
|
|
3113
|
-
get: function () { return
|
|
3113
|
+
get: function () { return chunk27M5YIVF_js.VariableAggregatorFlowNode; }
|
|
3114
3114
|
});
|
|
3115
3115
|
Object.defineProperty(exports, "VariableAssignerFlowNode", {
|
|
3116
3116
|
enumerable: true,
|
|
3117
|
-
get: function () { return
|
|
3117
|
+
get: function () { return chunk27M5YIVF_js.VariableAssignerFlowNode; }
|
|
3118
3118
|
});
|
|
3119
3119
|
Object.defineProperty(exports, "WorkflowBuilderProvider", {
|
|
3120
3120
|
enumerable: true,
|
|
3121
|
-
get: function () { return
|
|
3121
|
+
get: function () { return chunk27M5YIVF_js.WorkflowBuilderProvider; }
|
|
3122
3122
|
});
|
|
3123
3123
|
Object.defineProperty(exports, "Workspace", {
|
|
3124
3124
|
enumerable: true,
|
|
3125
|
-
get: function () { return
|
|
3125
|
+
get: function () { return chunk27M5YIVF_js.Workspace; }
|
|
3126
3126
|
});
|
|
3127
3127
|
Object.defineProperty(exports, "WorkspaceDrawer", {
|
|
3128
3128
|
enumerable: true,
|
|
3129
|
-
get: function () { return
|
|
3129
|
+
get: function () { return chunk27M5YIVF_js.WorkspaceDrawer; }
|
|
3130
3130
|
});
|
|
3131
3131
|
Object.defineProperty(exports, "getCompatibleModels", {
|
|
3132
3132
|
enumerable: true,
|
|
3133
|
-
get: function () { return
|
|
3133
|
+
get: function () { return chunk27M5YIVF_js.getCompatibleModels; }
|
|
3134
3134
|
});
|
|
3135
3135
|
Object.defineProperty(exports, "getDefaultFrameworkForModel", {
|
|
3136
3136
|
enumerable: true,
|
|
3137
|
-
get: function () { return
|
|
3137
|
+
get: function () { return chunk27M5YIVF_js.getDefaultFrameworkForModel; }
|
|
3138
3138
|
});
|
|
3139
3139
|
Object.defineProperty(exports, "getEntityBadgeColor", {
|
|
3140
3140
|
enumerable: true,
|
|
3141
|
-
get: function () { return
|
|
3141
|
+
get: function () { return chunk27M5YIVF_js.getEntityBadgeColor; }
|
|
3142
3142
|
});
|
|
3143
3143
|
Object.defineProperty(exports, "getEntityGradient", {
|
|
3144
3144
|
enumerable: true,
|
|
3145
|
-
get: function () { return
|
|
3145
|
+
get: function () { return chunk27M5YIVF_js.getEntityGradient; }
|
|
3146
3146
|
});
|
|
3147
3147
|
Object.defineProperty(exports, "getEntityHandleColor", {
|
|
3148
3148
|
enumerable: true,
|
|
3149
|
-
get: function () { return
|
|
3149
|
+
get: function () { return chunk27M5YIVF_js.getEntityHandleColor; }
|
|
3150
3150
|
});
|
|
3151
3151
|
Object.defineProperty(exports, "getEntityIcon", {
|
|
3152
3152
|
enumerable: true,
|
|
3153
|
-
get: function () { return
|
|
3153
|
+
get: function () { return chunk27M5YIVF_js.getEntityIcon; }
|
|
3154
3154
|
});
|
|
3155
3155
|
Object.defineProperty(exports, "getEntityMinimapColor", {
|
|
3156
3156
|
enumerable: true,
|
|
3157
|
-
get: function () { return
|
|
3157
|
+
get: function () { return chunk27M5YIVF_js.getEntityMinimapColor; }
|
|
3158
3158
|
});
|
|
3159
3159
|
Object.defineProperty(exports, "getFrameworkMeta", {
|
|
3160
3160
|
enumerable: true,
|
|
3161
|
-
get: function () { return
|
|
3161
|
+
get: function () { return chunk27M5YIVF_js.getFrameworkMeta; }
|
|
3162
3162
|
});
|
|
3163
3163
|
Object.defineProperty(exports, "isModelCompatibleWithFramework", {
|
|
3164
3164
|
enumerable: true,
|
|
3165
|
-
get: function () { return
|
|
3165
|
+
get: function () { return chunk27M5YIVF_js.isModelCompatibleWithFramework; }
|
|
3166
3166
|
});
|
|
3167
3167
|
Object.defineProperty(exports, "useDrawerStore", {
|
|
3168
3168
|
enumerable: true,
|
|
3169
|
-
get: function () { return
|
|
3169
|
+
get: function () { return chunk27M5YIVF_js.useDrawerStore; }
|
|
3170
3170
|
});
|
|
3171
3171
|
Object.defineProperty(exports, "useWorkflowBuilderClient", {
|
|
3172
3172
|
enumerable: true,
|
|
3173
|
-
get: function () { return
|
|
3173
|
+
get: function () { return chunk27M5YIVF_js.useWorkflowBuilderClient; }
|
|
3174
3174
|
});
|
|
3175
3175
|
Object.defineProperty(exports, "useWorkflowBuilderClientOptional", {
|
|
3176
3176
|
enumerable: true,
|
|
3177
|
-
get: function () { return
|
|
3177
|
+
get: function () { return chunk27M5YIVF_js.useWorkflowBuilderClientOptional; }
|
|
3178
3178
|
});
|
|
3179
3179
|
Object.defineProperty(exports, "useWorkflowStore", {
|
|
3180
3180
|
enumerable: true,
|
|
3181
|
-
get: function () { return
|
|
3181
|
+
get: function () { return chunk27M5YIVF_js.useWorkflowStore; }
|
|
3182
3182
|
});
|
|
3183
3183
|
Object.defineProperty(exports, "GraphNodeBadge", {
|
|
3184
3184
|
enumerable: true,
|