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