@datatechsolutions/ui 2.11.20 → 2.11.22

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.
@@ -3,8 +3,8 @@
3
3
 
4
4
  require('../chunk-55H6WZQP.js');
5
5
  var chunk3GE3MBUZ_js = require('../chunk-3GE3MBUZ.js');
6
- var chunkGMGTX3TB_js = require('../chunk-GMGTX3TB.js');
7
- var chunkBSPRG6ZF_js = require('../chunk-BSPRG6ZF.js');
6
+ var chunkITFBJSHZ_js = require('../chunk-ITFBJSHZ.js');
7
+ var chunk5WFBHIM5_js = require('../chunk-5WFBHIM5.js');
8
8
  require('../chunk-S7KHTUHA.js');
9
9
  require('../chunk-UZ3CMNUJ.js');
10
10
  var chunkP4YYEM4B_js = require('../chunk-P4YYEM4B.js');
@@ -83,7 +83,7 @@ function OutputCard({ label, value }) {
83
83
  function AgentProfileHeader({ agent, models, t, selectedModelId, setSelectedModelId, selectedFramework, temperature, setTemperature, elo, setElo, onChanged }) {
84
84
  const modelName = models.find((model) => model.id === selectedModelId)?.name ?? selectedModelId ?? "\u2014";
85
85
  const avatarUrl = agent.avatar;
86
- const frameworkMeta = chunkGMGTX3TB_js.getFrameworkMeta(selectedFramework);
86
+ const frameworkMeta = chunkITFBJSHZ_js.getFrameworkMeta(selectedFramework);
87
87
  const tierInfo = getEloTier(elo);
88
88
  const difficultyConfig = {
89
89
  beginner: { color: "bg-cyan-100 text-cyan-700 dark:bg-cyan-900/30 dark:text-cyan-400", labelKey: "agentDrawer.tierBeginner" },
@@ -359,13 +359,13 @@ function AgentCapabilityCard({ elo, setElo, models, selectedModelId, setSelected
359
359
  ] });
360
360
  }
361
361
  function ConfigTab({ models, t, selectedModelId, setSelectedModelId, selectedFramework, setSelectedFramework, markDirty, connectedProviderTypes }) {
362
- const frameworkKeys = Object.keys(chunkGMGTX3TB_js.FRAMEWORK_META);
362
+ const frameworkKeys = Object.keys(chunkITFBJSHZ_js.FRAMEWORK_META);
363
363
  const hasProviderConstraints = connectedProviderTypes.length > 0;
364
- const compatibleModels = chunkGMGTX3TB_js.getCompatibleModels(models, selectedFramework);
364
+ const compatibleModels = chunkITFBJSHZ_js.getCompatibleModels(models, selectedFramework);
365
365
  const handleFrameworkChange = react.useCallback((newFramework) => {
366
366
  setSelectedFramework(newFramework);
367
- if (!chunkGMGTX3TB_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
368
- const compatible = chunkGMGTX3TB_js.getCompatibleModels(models, newFramework);
367
+ if (!chunkITFBJSHZ_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
368
+ const compatible = chunkITFBJSHZ_js.getCompatibleModels(models, newFramework);
369
369
  if (compatible.length > 0) {
370
370
  setSelectedModelId(compatible[0].id);
371
371
  }
@@ -376,10 +376,10 @@ function ConfigTab({ models, t, selectedModelId, setSelectedModelId, selectedFra
376
376
  /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
377
377
  /* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-2 block text-xs font-medium text-gray-500 dark:text-gray-400", children: t("agentDrawer.framework") }),
378
378
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-wrap gap-1.5", children: frameworkKeys.map((key) => {
379
- const meta = chunkGMGTX3TB_js.FRAMEWORK_META[key];
379
+ const meta = chunkITFBJSHZ_js.FRAMEWORK_META[key];
380
380
  const isSelected = key === selectedFramework;
381
- const compatCount = chunkGMGTX3TB_js.getCompatibleModels(models, key).length;
382
- const isCompatibleWithProviders = !hasProviderConstraints || chunkGMGTX3TB_js.isFrameworkCompatibleWithProviders(key, connectedProviderTypes);
381
+ const compatCount = chunkITFBJSHZ_js.getCompatibleModels(models, key).length;
382
+ const isCompatibleWithProviders = !hasProviderConstraints || chunkITFBJSHZ_js.isFrameworkCompatibleWithProviders(key, connectedProviderTypes);
383
383
  return /* @__PURE__ */ jsxRuntime.jsxs(
384
384
  "button",
385
385
  {
@@ -411,7 +411,7 @@ function ConfigTab({ models, t, selectedModelId, setSelectedModelId, selectedFra
411
411
  ] }),
412
412
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid grid-cols-2 gap-2", children: models.map((model) => {
413
413
  const isSelected = model.id === selectedModelId;
414
- const isCompatible = chunkGMGTX3TB_js.isModelCompatibleWithFramework(model.id, selectedFramework);
414
+ const isCompatible = chunkITFBJSHZ_js.isModelCompatibleWithFramework(model.id, selectedFramework);
415
415
  const { IconComponent, color, providerLabel } = getModelIcon(model.id);
416
416
  return /* @__PURE__ */ jsxRuntime.jsxs(
417
417
  "button",
@@ -510,7 +510,7 @@ function PromptTab({ agent, temperature, setTemperature, markDirty, t }) {
510
510
  ] });
511
511
  }
512
512
  function ResultsTab({ agentId, t }) {
513
- const nodeResults = chunkGMGTX3TB_js.useWorkflowStore((state) => state.nodeResults);
513
+ const nodeResults = chunkITFBJSHZ_js.useWorkflowStore((state) => state.nodeResults);
514
514
  const agentResult = react.useMemo(() => {
515
515
  return nodeResults[agentId] ?? null;
516
516
  }, [nodeResults, agentId]);
@@ -600,10 +600,10 @@ function ModelsTab({ modelProviders, selectedProviderId, onSelectProvider, model
600
600
  const providerModels = modelsByProvider.find((p) => p.provider.id === selectedProviderId);
601
601
  if (!providerModels || providerModels.models.length === 0) return /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-xs text-gray-400 dark:text-gray-500", children: t("agentDrawer.noModelsForProvider") });
602
602
  const compatibleModels = providerModels.models.filter(
603
- (m) => chunkGMGTX3TB_js.isModelCompatibleWithFramework(m.id, agentFramework)
603
+ (m) => chunkITFBJSHZ_js.isModelCompatibleWithFramework(m.id, agentFramework)
604
604
  );
605
605
  const incompatibleModels = providerModels.models.filter(
606
- (m) => !chunkGMGTX3TB_js.isModelCompatibleWithFramework(m.id, agentFramework)
606
+ (m) => !chunkITFBJSHZ_js.isModelCompatibleWithFramework(m.id, agentFramework)
607
607
  );
608
608
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
609
609
  /* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-2 block text-xs font-medium text-gray-500 dark:text-gray-400", children: t("agentDrawer.selectModel") }),
@@ -676,7 +676,7 @@ function ToolsTab({ agentTools, enabledToolIds, onToggle, agentFramework, t }) {
676
676
  ] }),
677
677
  tool.description && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "truncate text-[10px] text-gray-400 dark:text-gray-500", children: tool.description }),
678
678
  tool.compatibleFrameworks && tool.compatibleFrameworks.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-1 flex flex-wrap gap-0.5", children: tool.compatibleFrameworks.map((framework) => {
679
- const meta = chunkGMGTX3TB_js.getFrameworkMeta(framework);
679
+ const meta = chunkITFBJSHZ_js.getFrameworkMeta(framework);
680
680
  const isCurrentFw = framework === agentFramework;
681
681
  return /* @__PURE__ */ jsxRuntime.jsxs("span", { className: `inline-flex items-center gap-0.5 rounded px-1.5 py-0.5 text-[8px] font-medium ${isCurrentFw ? meta.badgeColor : "bg-gray-100 text-gray-500 dark:bg-white/5 dark:text-gray-400"}`, children: [
682
682
  /* @__PURE__ */ jsxRuntime.jsx(meta.IconComponent, { className: "h-2.5 w-2.5" }),
@@ -694,9 +694,9 @@ function ToolsTab({ agentTools, enabledToolIds, onToggle, agentFramework, t }) {
694
694
  }
695
695
  function AgentModal({ onSaved }) {
696
696
  const t = chunkYXN2K77G_js.useTranslations("agents.workflow");
697
- const activeModal = chunkGMGTX3TB_js.useModalStore((s) => s.activeModal);
698
- const agentData = chunkGMGTX3TB_js.useModalStore((s) => s.agentData);
699
- const closeModal = chunkGMGTX3TB_js.useModalStore((s) => s.closeModal);
697
+ const activeModal = chunkITFBJSHZ_js.useModalStore((s) => s.activeModal);
698
+ const agentData = chunkITFBJSHZ_js.useModalStore((s) => s.agentData);
699
+ const closeModal = chunkITFBJSHZ_js.useModalStore((s) => s.closeModal);
700
700
  const open = activeModal === "agent";
701
701
  const agent = agentData?.agent ?? null;
702
702
  const models = agentData?.models ?? [];
@@ -771,12 +771,15 @@ function AgentModal({ onSaved }) {
771
771
  )
772
772
  ] });
773
773
  return /* @__PURE__ */ jsxRuntime.jsxs(
774
- chunkBSPRG6ZF_js.SettingsDialog,
774
+ chunk5WFBHIM5_js.SettingsDialog,
775
775
  {
776
776
  open,
777
777
  onClose: handleClose,
778
778
  title: agent.name,
779
779
  subtitle: isCreateMode ? t("agentDrawer.createAgent") : t("agentDrawer.editAgent"),
780
+ gradient: "from-indigo-500 to-purple-600",
781
+ icon: /* @__PURE__ */ jsxRuntime.jsx(outline.CpuChipIcon, { className: "h-5 w-5 text-white" }),
782
+ label: isCreateMode ? t("agentDrawer.createAgent") : t("agentDrawer.editAgent"),
780
783
  sections,
781
784
  activeSectionId: activeTab,
782
785
  onSectionChange: (sectionId) => setActiveTab(sectionId),
@@ -918,7 +921,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
918
921
  const markDirty = useSubworkflowStore((s) => s.markDirty);
919
922
  const markSaved = useSubworkflowStore((s) => s.markSaved);
920
923
  const closeModal = useSubworkflowStore((s) => s.closeModal);
921
- const agentBehind = chunkGMGTX3TB_js.useModalStore((s) => s.activeModal === "agent" ? s.agentData?.agent?.name : null);
924
+ const agentBehind = chunkITFBJSHZ_js.useModalStore((s) => s.activeModal === "agent" ? s.agentData?.agent?.name : null);
922
925
  const isCreateMode = !tool?.toolId;
923
926
  const initialGraph = react.useMemo(() => {
924
927
  const config = tool?.config;
@@ -947,9 +950,9 @@ function SubworkflowModal({ onSaved, onMaximize }) {
947
950
  }, [tool, onSaved, name, category, description, timeoutMs, latestGraphRef, markSaved]);
948
951
  if (!tool) return null;
949
952
  const categoryKey = category ?? "external";
950
- const gradient = tool.color ?? chunkGMGTX3TB_js.CATEGORY_COLORS[categoryKey] ?? chunkGMGTX3TB_js.CATEGORY_COLORS.external;
951
- const categoryPill = chunkGMGTX3TB_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunkGMGTX3TB_js.CATEGORY_PILL_COLORS.external;
952
- const IconComponent = chunkGMGTX3TB_js.ICON_MAP[tool.icon ?? ""] ?? outline.ArrowPathRoundedSquareIcon;
953
+ const gradient = tool.color ?? chunkITFBJSHZ_js.CATEGORY_COLORS[categoryKey] ?? chunkITFBJSHZ_js.CATEGORY_COLORS.external;
954
+ const categoryPill = chunkITFBJSHZ_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunkITFBJSHZ_js.CATEGORY_PILL_COLORS.external;
955
+ const IconComponent = chunkITFBJSHZ_js.ICON_MAP[tool.icon ?? ""] ?? outline.ArrowPathRoundedSquareIcon;
953
956
  const graph = latestGraphRef.current;
954
957
  const startNode = graph.nodes.find((n) => n.type === "start");
955
958
  const endNode = graph.nodes.find((n) => n.type === "end");
@@ -982,7 +985,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
982
985
  ] })
983
986
  ] });
984
987
  return /* @__PURE__ */ jsxRuntime.jsx(
985
- chunkBSPRG6ZF_js.GlassModalShell,
988
+ chunk5WFBHIM5_js.GlassModalShell,
986
989
  {
987
990
  open,
988
991
  onClose: closeModal,
@@ -1014,7 +1017,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
1014
1017
  {
1015
1018
  type: "button",
1016
1019
  onClick: () => setCategory(cat),
1017
- className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${chunkGMGTX3TB_js.CATEGORY_PILL_COLORS[cat] ?? chunkGMGTX3TB_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"}`,
1020
+ className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${chunkITFBJSHZ_js.CATEGORY_PILL_COLORS[cat] ?? chunkITFBJSHZ_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"}`,
1018
1021
  children: cat
1019
1022
  },
1020
1023
  cat
@@ -1101,7 +1104,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
1101
1104
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-auto" })
1102
1105
  ] }),
1103
1106
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsxRuntime.jsx(
1104
- chunkGMGTX3TB_js.WorkflowCanvas,
1107
+ chunkITFBJSHZ_js.WorkflowCanvas,
1105
1108
  {
1106
1109
  initialGraph,
1107
1110
  agents: [],
@@ -1138,7 +1141,7 @@ function WorkspaceModal({
1138
1141
  }) {
1139
1142
  const resolvedSize = LEGACY_WIDTH_MAP[maxWidth] ?? maxWidth;
1140
1143
  return /* @__PURE__ */ jsxRuntime.jsxs(
1141
- chunkBSPRG6ZF_js.GlassModalShell,
1144
+ chunk5WFBHIM5_js.GlassModalShell,
1142
1145
  {
1143
1146
  open,
1144
1147
  onClose,
@@ -1159,9 +1162,9 @@ function WorkspaceModal({
1159
1162
  }
1160
1163
  function PipelineSettingsModal({ onSave }) {
1161
1164
  const t = chunkYXN2K77G_js.useTranslations("agents.workflow");
1162
- const activeModal = chunkGMGTX3TB_js.useModalStore((s) => s.activeModal);
1163
- const data = chunkGMGTX3TB_js.useModalStore((s) => s.pipelineSettingsData);
1164
- const closeModal = chunkGMGTX3TB_js.useModalStore((s) => s.closeModal);
1165
+ const activeModal = chunkITFBJSHZ_js.useModalStore((s) => s.activeModal);
1166
+ const data = chunkITFBJSHZ_js.useModalStore((s) => s.pipelineSettingsData);
1167
+ const closeModal = chunkITFBJSHZ_js.useModalStore((s) => s.closeModal);
1165
1168
  const open = activeModal === "pipeline-settings";
1166
1169
  const [nameValue, setNameValue] = react.useState("");
1167
1170
  const [descriptionValue, setDescriptionValue] = react.useState("");
@@ -1196,7 +1199,7 @@ function PipelineSettingsModal({ onSave }) {
1196
1199
  }
1197
1200
  ),
1198
1201
  /* @__PURE__ */ jsxRuntime.jsxs(
1199
- chunkBSPRG6ZF_js.Button,
1202
+ chunk5WFBHIM5_js.Button,
1200
1203
  {
1201
1204
  type: "submit",
1202
1205
  form: "pipeline-settings-form",
@@ -1211,7 +1214,7 @@ function PipelineSettingsModal({ onSave }) {
1211
1214
  )
1212
1215
  ] });
1213
1216
  return /* @__PURE__ */ jsxRuntime.jsx(
1214
- chunkBSPRG6ZF_js.GlassModalShell,
1217
+ chunk5WFBHIM5_js.GlassModalShell,
1215
1218
  {
1216
1219
  open,
1217
1220
  onClose: closeModal,
@@ -1225,7 +1228,7 @@ function PipelineSettingsModal({ onSave }) {
1225
1228
  onSubmit: handleSubmit,
1226
1229
  children: /* @__PURE__ */ jsxRuntime.jsxs("form", { id: "pipeline-settings-form", onSubmit: handleSubmit, className: "space-y-6", children: [
1227
1230
  /* @__PURE__ */ jsxRuntime.jsx(
1228
- chunkBSPRG6ZF_js.FormInput,
1231
+ chunk5WFBHIM5_js.FormInput,
1229
1232
  {
1230
1233
  label: t("pipelineName"),
1231
1234
  value: nameValue,
@@ -1235,7 +1238,7 @@ function PipelineSettingsModal({ onSave }) {
1235
1238
  }
1236
1239
  ),
1237
1240
  /* @__PURE__ */ jsxRuntime.jsx(
1238
- chunkBSPRG6ZF_js.FormTextarea,
1241
+ chunk5WFBHIM5_js.FormTextarea,
1239
1242
  {
1240
1243
  label: t("pipelineDescription"),
1241
1244
  value: descriptionValue,
@@ -1370,8 +1373,8 @@ function CollapsibleSection({ title, icon, colorClass, defaultOpen = true, count
1370
1373
  ] });
1371
1374
  }
1372
1375
  function LogicNodeItemCard({ item, translationFunction }) {
1373
- const IconComponent = chunkGMGTX3TB_js.LOGIC_ICON_MAP[item.nodeType];
1374
- const gradient = chunkGMGTX3TB_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
1376
+ const IconComponent = chunkITFBJSHZ_js.LOGIC_ICON_MAP[item.nodeType];
1377
+ const gradient = chunkITFBJSHZ_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
1375
1378
  const defaultConfig = chunkPWBWP5FJ_js.createDefaultLogicNodeConfig(item.nodeType);
1376
1379
  const configJson = defaultConfig ? JSON.stringify(defaultConfig) : void 0;
1377
1380
  return /* @__PURE__ */ jsxRuntime.jsxs(
@@ -1592,8 +1595,8 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
1592
1595
  limit: entity.defaultLimit
1593
1596
  });
1594
1597
  const dsLogo = getDatasourceLogo(entity.id);
1595
- const EntityIcon = chunkGMGTX3TB_js.getEntityIcon(entity.id);
1596
- const entityGradient = chunkGMGTX3TB_js.getEntityGradient(entity.id);
1598
+ const EntityIcon = chunkITFBJSHZ_js.getEntityIcon(entity.id);
1599
+ const entityGradient = chunkITFBJSHZ_js.getEntityGradient(entity.id);
1597
1600
  return /* @__PURE__ */ jsxRuntime.jsxs(
1598
1601
  "div",
1599
1602
  {
@@ -1975,9 +1978,9 @@ function formatDuration2(durationMs) {
1975
1978
  }
1976
1979
  function RunPanel({ open, onClose, onRun, onStop }) {
1977
1980
  const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.runPanel");
1978
- const nodes = chunkGMGTX3TB_js.useWorkflowStore((state) => state.nodes);
1979
- const isRunning = chunkGMGTX3TB_js.useWorkflowStore((state) => state.isRunning);
1980
- const nodeResults = chunkGMGTX3TB_js.useWorkflowStore((state) => state.nodeResults);
1981
+ const nodes = chunkITFBJSHZ_js.useWorkflowStore((state) => state.nodes);
1982
+ const isRunning = chunkITFBJSHZ_js.useWorkflowStore((state) => state.isRunning);
1983
+ const nodeResults = chunkITFBJSHZ_js.useWorkflowStore((state) => state.nodeResults);
1981
1984
  const startNode = nodes.find((node) => node.type === "start");
1982
1985
  const hasEndNode = nodes.some((node) => node.type === "end");
1983
1986
  const hasValidStartConfig = Boolean(
@@ -2262,8 +2265,8 @@ function inferVariables(config, nodeType) {
2262
2265
  }
2263
2266
  function VariableInspector({ open, onClose }) {
2264
2267
  const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.variableInspector");
2265
- const nodes = chunkGMGTX3TB_js.useWorkflowStore((state) => state.nodes);
2266
- const edges = chunkGMGTX3TB_js.useWorkflowStore((state) => state.edges);
2268
+ const nodes = chunkITFBJSHZ_js.useWorkflowStore((state) => state.nodes);
2269
+ const edges = chunkITFBJSHZ_js.useWorkflowStore((state) => state.edges);
2267
2270
  const [expandedNodes, setExpandedNodes] = react.useState(/* @__PURE__ */ new Set());
2268
2271
  const toggleNodeExpansion = react.useCallback((nodeId) => {
2269
2272
  setExpandedNodes((current) => {
@@ -2325,8 +2328,8 @@ function VariableInspector({ open, onClose }) {
2325
2328
  /* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-2 text-sm text-gray-500 dark:text-gray-400", children: translations("noNodes") })
2326
2329
  ] }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "divide-y divide-gray-100 dark:divide-gray-800", children: nodeVariableEntries.map((entry) => {
2327
2330
  const isExpanded = expandedNodes.has(entry.nodeId);
2328
- const IconComponent = chunkGMGTX3TB_js.LOGIC_ICON_MAP[entry.nodeType];
2329
- const gradient = chunkGMGTX3TB_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
2331
+ const IconComponent = chunkITFBJSHZ_js.LOGIC_ICON_MAP[entry.nodeType];
2332
+ const gradient = chunkITFBJSHZ_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
2330
2333
  const inputVariables = entry.variables.filter((variable) => variable.direction === "input");
2331
2334
  const outputVariables = entry.variables.filter((variable) => variable.direction === "output");
2332
2335
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": `variable-node-${entry.nodeId}`, children: [
@@ -2392,7 +2395,7 @@ function RunInputDialog({
2392
2395
  onRun
2393
2396
  }) {
2394
2397
  const t = chunkYXN2K77G_js.useTranslations("agents.workflow.runInputDialog");
2395
- const nodes = chunkGMGTX3TB_js.useWorkflowStore((state) => state.nodes);
2398
+ const nodes = chunkITFBJSHZ_js.useWorkflowStore((state) => state.nodes);
2396
2399
  const [values, setValues] = react.useState({});
2397
2400
  const inputVariableNames = react.useMemo(() => {
2398
2401
  const storeStartNode = nodes.find((node) => node.type === "start");
@@ -2419,7 +2422,7 @@ function RunInputDialog({
2419
2422
  }, [onClose]);
2420
2423
  if (!open) return null;
2421
2424
  return /* @__PURE__ */ jsxRuntime.jsxs(
2422
- chunkBSPRG6ZF_js.GlassFormModal,
2425
+ chunk5WFBHIM5_js.GlassFormModal,
2423
2426
  {
2424
2427
  open,
2425
2428
  onClose: handleClose,
@@ -2431,7 +2434,7 @@ function RunInputDialog({
2431
2434
  /* @__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: [
2432
2435
  /* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-1 block text-xs font-medium text-gray-700 dark:text-gray-300", children: variableName }),
2433
2436
  /* @__PURE__ */ jsxRuntime.jsx(
2434
- chunkBSPRG6ZF_js.Input,
2437
+ chunk5WFBHIM5_js.Input,
2435
2438
  {
2436
2439
  value: values[variableName] ?? "",
2437
2440
  onChange: (event) => handleValueChange(variableName, event.target.value),
@@ -2440,8 +2443,8 @@ function RunInputDialog({
2440
2443
  )
2441
2444
  ] }, variableName)) }),
2442
2445
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-4 flex items-center justify-end gap-2", children: [
2443
- /* @__PURE__ */ jsxRuntime.jsx(chunkBSPRG6ZF_js.Button, { size: "sm", plain: true, onClick: handleClose, children: t("cancel") }),
2444
- /* @__PURE__ */ jsxRuntime.jsxs(chunkBSPRG6ZF_js.Button, { size: "sm", gradient: true, onClick: handleSubmit, children: [
2446
+ /* @__PURE__ */ jsxRuntime.jsx(chunk5WFBHIM5_js.Button, { size: "sm", plain: true, onClick: handleClose, children: t("cancel") }),
2447
+ /* @__PURE__ */ jsxRuntime.jsxs(chunk5WFBHIM5_js.Button, { size: "sm", gradient: true, onClick: handleSubmit, children: [
2445
2448
  /* @__PURE__ */ jsxRuntime.jsx(outline.PlayIcon, { className: "h-3.5 w-3.5", "data-slot": "icon" }),
2446
2449
  t("run")
2447
2450
  ] })
@@ -2474,8 +2477,8 @@ function PreviewPanel({ open, onClose, workflowId, loadRuns }) {
2474
2477
  const [isLoadingRuns, setIsLoadingRuns] = react.useState(false);
2475
2478
  const [selectedRun, setSelectedRun] = react.useState(null);
2476
2479
  const [selectedNode, setSelectedNode] = react.useState(null);
2477
- const isRunning = chunkGMGTX3TB_js.useWorkflowStore((state) => state.isRunning);
2478
- const nodeResults = chunkGMGTX3TB_js.useWorkflowStore((state) => state.nodeResults);
2480
+ const isRunning = chunkITFBJSHZ_js.useWorkflowStore((state) => state.isRunning);
2481
+ const nodeResults = chunkITFBJSHZ_js.useWorkflowStore((state) => state.nodeResults);
2479
2482
  const refreshRuns = react.useCallback(async () => {
2480
2483
  setIsLoadingRuns(true);
2481
2484
  try {
@@ -2631,7 +2634,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
2631
2634
  onAutoSaveGraph(graph);
2632
2635
  }, [onAutoSaveGraph, onGraphSnapshot]);
2633
2636
  return /* @__PURE__ */ jsxRuntime.jsx(
2634
- chunkGMGTX3TB_js.Workspace,
2637
+ chunkITFBJSHZ_js.Workspace,
2635
2638
  {
2636
2639
  ...workspaceProps,
2637
2640
  onGraphChange: handleGraphChange
@@ -2639,7 +2642,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
2639
2642
  );
2640
2643
  });
2641
2644
  function DynamicIslandConfirm2(props) {
2642
- return /* @__PURE__ */ jsxRuntime.jsx(chunkBSPRG6ZF_js.DynamicIslandConfirm, { ...props });
2645
+ return /* @__PURE__ */ jsxRuntime.jsx(chunk5WFBHIM5_js.DynamicIslandConfirm, { ...props });
2643
2646
  }
2644
2647
  var JSON_PREVIEW_LINE_LIMIT = 50;
2645
2648
  function DslExportModal({ open, onClose, workflow, graph }) {
@@ -2693,7 +2696,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
2693
2696
  }, [jsonString, workflow.name, workflow.version]);
2694
2697
  if (!open) return null;
2695
2698
  return /* @__PURE__ */ jsxRuntime.jsx(
2696
- chunkBSPRG6ZF_js.GlassFormModal,
2699
+ chunk5WFBHIM5_js.GlassFormModal,
2697
2700
  {
2698
2701
  open,
2699
2702
  onClose,
@@ -2736,7 +2739,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
2736
2739
  ] }),
2737
2740
  /* @__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: [
2738
2741
  /* @__PURE__ */ jsxRuntime.jsx(
2739
- chunkBSPRG6ZF_js.Button,
2742
+ chunk5WFBHIM5_js.Button,
2740
2743
  {
2741
2744
  type: "button",
2742
2745
  onClick: handleCopyToClipboard,
@@ -2753,7 +2756,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
2753
2756
  }
2754
2757
  ),
2755
2758
  /* @__PURE__ */ jsxRuntime.jsxs(
2756
- chunkBSPRG6ZF_js.Button,
2759
+ chunk5WFBHIM5_js.Button,
2757
2760
  {
2758
2761
  type: "button",
2759
2762
  onClick: handleDownloadJson,
@@ -2912,7 +2915,7 @@ function DslImportModal({ open, onClose, onImport }) {
2912
2915
  }, []);
2913
2916
  if (!open) return null;
2914
2917
  return /* @__PURE__ */ jsxRuntime.jsx(
2915
- chunkBSPRG6ZF_js.GlassFormModal,
2918
+ chunk5WFBHIM5_js.GlassFormModal,
2916
2919
  {
2917
2920
  open,
2918
2921
  onClose,
@@ -2953,7 +2956,7 @@ function DslImportModal({ open, onClose, onImport }) {
2953
2956
  ) : /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": "import-validation-result", children: [
2954
2957
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-4 flex items-center justify-between", children: [
2955
2958
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: fileName }),
2956
- /* @__PURE__ */ jsxRuntime.jsx(chunkBSPRG6ZF_js.Button, { type: "button", plain: true, size: "sm", onClick: handleReset, children: translations("chooseAnother") })
2959
+ /* @__PURE__ */ jsxRuntime.jsx(chunk5WFBHIM5_js.Button, { type: "button", plain: true, size: "sm", onClick: handleReset, children: translations("chooseAnother") })
2957
2960
  ] }),
2958
2961
  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: [
2959
2962
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
@@ -2981,9 +2984,9 @@ function DslImportModal({ open, onClose, onImport }) {
2981
2984
  ] })
2982
2985
  ] }) }),
2983
2986
  /* @__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: [
2984
- /* @__PURE__ */ jsxRuntime.jsx(chunkBSPRG6ZF_js.Button, { type: "button", onClick: onClose, outline: true, size: "sm", "data-testid": "import-cancel-button", children: translations("cancel") }),
2987
+ /* @__PURE__ */ jsxRuntime.jsx(chunk5WFBHIM5_js.Button, { type: "button", onClick: onClose, outline: true, size: "sm", "data-testid": "import-cancel-button", children: translations("cancel") }),
2985
2988
  /* @__PURE__ */ jsxRuntime.jsxs(
2986
- chunkBSPRG6ZF_js.Button,
2989
+ chunk5WFBHIM5_js.Button,
2987
2990
  {
2988
2991
  type: "button",
2989
2992
  onClick: handleImport,
@@ -3004,14 +3007,14 @@ function DslImportModal({ open, onClose, onImport }) {
3004
3007
  }
3005
3008
 
3006
3009
  // src/astrlabe/store/selectors.ts
3007
- var useCanUndo = () => chunkGMGTX3TB_js.useWorkflowStore((state) => state.past.length > 0);
3008
- var useCanRedo = () => chunkGMGTX3TB_js.useWorkflowStore((state) => state.future.length > 0);
3009
- var useHasCopied = () => chunkGMGTX3TB_js.useWorkflowStore((state) => state.clipboard !== null);
3010
- var useContextMenu = () => chunkGMGTX3TB_js.useWorkflowStore((state) => state.contextMenu);
3011
- var useEditingNodeId = () => chunkGMGTX3TB_js.useWorkflowStore((state) => state.editingNodeId);
3012
- var useSelectedNodeCount = () => chunkGMGTX3TB_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
3013
- var useIsRunning = () => chunkGMGTX3TB_js.useWorkflowStore((state) => state.isRunning);
3014
- var useNodeResults = () => chunkGMGTX3TB_js.useWorkflowStore((state) => state.nodeResults);
3010
+ var useCanUndo = () => chunkITFBJSHZ_js.useWorkflowStore((state) => state.past.length > 0);
3011
+ var useCanRedo = () => chunkITFBJSHZ_js.useWorkflowStore((state) => state.future.length > 0);
3012
+ var useHasCopied = () => chunkITFBJSHZ_js.useWorkflowStore((state) => state.clipboard !== null);
3013
+ var useContextMenu = () => chunkITFBJSHZ_js.useWorkflowStore((state) => state.contextMenu);
3014
+ var useEditingNodeId = () => chunkITFBJSHZ_js.useWorkflowStore((state) => state.editingNodeId);
3015
+ var useSelectedNodeCount = () => chunkITFBJSHZ_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
3016
+ var useIsRunning = () => chunkITFBJSHZ_js.useWorkflowStore((state) => state.isRunning);
3017
+ var useNodeResults = () => chunkITFBJSHZ_js.useWorkflowStore((state) => state.nodeResults);
3015
3018
  var DEFAULT_MAX_HISTORY = 50;
3016
3019
  function useUndoRedo(nodes, edges, setNodes, setEdges, maxHistory = DEFAULT_MAX_HISTORY) {
3017
3020
  const pastRef = react.useRef([]);
@@ -3299,227 +3302,239 @@ Object.defineProperty(exports, "validateWorkflowGraph", {
3299
3302
  });
3300
3303
  Object.defineProperty(exports, "AgentFlowNode", {
3301
3304
  enumerable: true,
3302
- get: function () { return chunkGMGTX3TB_js.AgentFlowNode; }
3305
+ get: function () { return chunkITFBJSHZ_js.AgentFlowNode; }
3303
3306
  });
3304
3307
  Object.defineProperty(exports, "AgentToolFlowNode", {
3305
3308
  enumerable: true,
3306
- get: function () { return chunkGMGTX3TB_js.AgentToolFlowNode; }
3309
+ get: function () { return chunkITFBJSHZ_js.AgentToolFlowNode; }
3307
3310
  });
3308
3311
  Object.defineProperty(exports, "AnswerFlowNode", {
3309
3312
  enumerable: true,
3310
- get: function () { return chunkGMGTX3TB_js.AnswerFlowNode; }
3313
+ get: function () { return chunkITFBJSHZ_js.AnswerFlowNode; }
3311
3314
  });
3312
3315
  Object.defineProperty(exports, "AnthropicIcon", {
3313
3316
  enumerable: true,
3314
- get: function () { return chunkGMGTX3TB_js.AnthropicIcon; }
3317
+ get: function () { return chunkITFBJSHZ_js.AnthropicIcon; }
3315
3318
  });
3316
3319
  Object.defineProperty(exports, "CodeFlowNode", {
3317
3320
  enumerable: true,
3318
- get: function () { return chunkGMGTX3TB_js.CodeFlowNode; }
3321
+ get: function () { return chunkITFBJSHZ_js.CodeFlowNode; }
3319
3322
  });
3320
3323
  Object.defineProperty(exports, "CrewAIIcon", {
3321
3324
  enumerable: true,
3322
- get: function () { return chunkGMGTX3TB_js.CrewAIIcon; }
3325
+ get: function () { return chunkITFBJSHZ_js.CrewAIIcon; }
3323
3326
  });
3324
3327
  Object.defineProperty(exports, "DocumentExtractorFlowNode", {
3325
3328
  enumerable: true,
3326
- get: function () { return chunkGMGTX3TB_js.DocumentExtractorFlowNode; }
3329
+ get: function () { return chunkITFBJSHZ_js.DocumentExtractorFlowNode; }
3327
3330
  });
3328
3331
  Object.defineProperty(exports, "EndFlowNode", {
3329
3332
  enumerable: true,
3330
- get: function () { return chunkGMGTX3TB_js.EndFlowNode; }
3333
+ get: function () { return chunkITFBJSHZ_js.EndFlowNode; }
3331
3334
  });
3332
3335
  Object.defineProperty(exports, "EntityFlowNode", {
3333
3336
  enumerable: true,
3334
- get: function () { return chunkGMGTX3TB_js.EntityFlowNode; }
3337
+ get: function () { return chunkITFBJSHZ_js.EntityFlowNode; }
3335
3338
  });
3336
3339
  Object.defineProperty(exports, "FRAMEWORK_META", {
3337
3340
  enumerable: true,
3338
- get: function () { return chunkGMGTX3TB_js.FRAMEWORK_META; }
3341
+ get: function () { return chunkITFBJSHZ_js.FRAMEWORK_META; }
3339
3342
  });
3340
3343
  Object.defineProperty(exports, "GoogleADKIcon", {
3341
3344
  enumerable: true,
3342
- get: function () { return chunkGMGTX3TB_js.GoogleADKIcon; }
3345
+ get: function () { return chunkITFBJSHZ_js.GoogleADKIcon; }
3343
3346
  });
3344
3347
  Object.defineProperty(exports, "GroupFlowNode", {
3345
3348
  enumerable: true,
3346
- get: function () { return chunkGMGTX3TB_js.GroupFlowNode; }
3349
+ get: function () { return chunkITFBJSHZ_js.GroupFlowNode; }
3347
3350
  });
3348
3351
  Object.defineProperty(exports, "HttpRequestFlowNode", {
3349
3352
  enumerable: true,
3350
- get: function () { return chunkGMGTX3TB_js.HttpRequestFlowNode; }
3353
+ get: function () { return chunkITFBJSHZ_js.HttpRequestFlowNode; }
3351
3354
  });
3352
3355
  Object.defineProperty(exports, "IfElseFlowNode", {
3353
3356
  enumerable: true,
3354
- get: function () { return chunkGMGTX3TB_js.IfElseFlowNode; }
3357
+ get: function () { return chunkITFBJSHZ_js.IfElseFlowNode; }
3355
3358
  });
3356
3359
  Object.defineProperty(exports, "IterationFlowNode", {
3357
3360
  enumerable: true,
3358
- get: function () { return chunkGMGTX3TB_js.IterationFlowNode; }
3361
+ get: function () { return chunkITFBJSHZ_js.IterationFlowNode; }
3359
3362
  });
3360
3363
  Object.defineProperty(exports, "IterationStartFlowNode", {
3361
3364
  enumerable: true,
3362
- get: function () { return chunkGMGTX3TB_js.IterationStartFlowNode; }
3365
+ get: function () { return chunkITFBJSHZ_js.IterationStartFlowNode; }
3363
3366
  });
3364
3367
  Object.defineProperty(exports, "KnowledgeBaseFlowNode", {
3365
3368
  enumerable: true,
3366
- get: function () { return chunkGMGTX3TB_js.KnowledgeBaseFlowNode; }
3369
+ get: function () { return chunkITFBJSHZ_js.KnowledgeBaseFlowNode; }
3367
3370
  });
3368
3371
  Object.defineProperty(exports, "LOGIC_ICON_MAP", {
3369
3372
  enumerable: true,
3370
- get: function () { return chunkGMGTX3TB_js.LOGIC_ICON_MAP; }
3373
+ get: function () { return chunkITFBJSHZ_js.LOGIC_ICON_MAP; }
3371
3374
  });
3372
3375
  Object.defineProperty(exports, "LOGIC_NODE_BADGE_COLORS", {
3373
3376
  enumerable: true,
3374
- get: function () { return chunkGMGTX3TB_js.LOGIC_NODE_BADGE_COLORS; }
3377
+ get: function () { return chunkITFBJSHZ_js.LOGIC_NODE_BADGE_COLORS; }
3375
3378
  });
3376
3379
  Object.defineProperty(exports, "LOGIC_NODE_GRADIENTS", {
3377
3380
  enumerable: true,
3378
- get: function () { return chunkGMGTX3TB_js.LOGIC_NODE_GRADIENTS; }
3381
+ get: function () { return chunkITFBJSHZ_js.LOGIC_NODE_GRADIENTS; }
3379
3382
  });
3380
3383
  Object.defineProperty(exports, "LOGIC_NODE_HANDLE_COLORS", {
3381
3384
  enumerable: true,
3382
- get: function () { return chunkGMGTX3TB_js.LOGIC_NODE_HANDLE_COLORS; }
3385
+ get: function () { return chunkITFBJSHZ_js.LOGIC_NODE_HANDLE_COLORS; }
3383
3386
  });
3384
3387
  Object.defineProperty(exports, "LangChainIcon", {
3385
3388
  enumerable: true,
3386
- get: function () { return chunkGMGTX3TB_js.LangChainIcon; }
3389
+ get: function () { return chunkITFBJSHZ_js.LangChainIcon; }
3387
3390
  });
3388
3391
  Object.defineProperty(exports, "ListOperatorFlowNode", {
3389
3392
  enumerable: true,
3390
- get: function () { return chunkGMGTX3TB_js.ListOperatorFlowNode; }
3393
+ get: function () { return chunkITFBJSHZ_js.ListOperatorFlowNode; }
3391
3394
  });
3392
3395
  Object.defineProperty(exports, "LogicNodeModal", {
3393
3396
  enumerable: true,
3394
- get: function () { return chunkGMGTX3TB_js.LogicNodeModal; }
3397
+ get: function () { return chunkITFBJSHZ_js.LogicNodeModal; }
3395
3398
  });
3396
3399
  Object.defineProperty(exports, "MINIMAP_NODE_COLORS", {
3397
3400
  enumerable: true,
3398
- get: function () { return chunkGMGTX3TB_js.MINIMAP_NODE_COLORS; }
3401
+ get: function () { return chunkITFBJSHZ_js.MINIMAP_NODE_COLORS; }
3399
3402
  });
3400
3403
  Object.defineProperty(exports, "ModelProviderFlowNode", {
3401
3404
  enumerable: true,
3402
- get: function () { return chunkGMGTX3TB_js.ModelProviderFlowNode; }
3405
+ get: function () { return chunkITFBJSHZ_js.ModelProviderFlowNode; }
3406
+ });
3407
+ Object.defineProperty(exports, "NODE_EXECUTION_ACCENT_COLORS", {
3408
+ enumerable: true,
3409
+ get: function () { return chunkITFBJSHZ_js.NODE_EXECUTION_ACCENT_COLORS; }
3403
3410
  });
3404
3411
  Object.defineProperty(exports, "NodeCard", {
3405
3412
  enumerable: true,
3406
- get: function () { return chunkGMGTX3TB_js.NodeCard; }
3413
+ get: function () { return chunkITFBJSHZ_js.NodeCard; }
3407
3414
  });
3408
3415
  Object.defineProperty(exports, "NodeContextMenu", {
3409
3416
  enumerable: true,
3410
- get: function () { return chunkGMGTX3TB_js.NodeContextMenu; }
3417
+ get: function () { return chunkITFBJSHZ_js.NodeContextMenu; }
3411
3418
  });
3412
3419
  Object.defineProperty(exports, "NoteFlowNode", {
3413
3420
  enumerable: true,
3414
- get: function () { return chunkGMGTX3TB_js.NoteFlowNode; }
3421
+ get: function () { return chunkITFBJSHZ_js.NoteFlowNode; }
3415
3422
  });
3416
3423
  Object.defineProperty(exports, "OpenAIIcon", {
3417
3424
  enumerable: true,
3418
- get: function () { return chunkGMGTX3TB_js.OpenAIIcon; }
3425
+ get: function () { return chunkITFBJSHZ_js.OpenAIIcon; }
3419
3426
  });
3420
3427
  Object.defineProperty(exports, "PanelContextMenu", {
3421
3428
  enumerable: true,
3422
- get: function () { return chunkGMGTX3TB_js.PanelContextMenu; }
3429
+ get: function () { return chunkITFBJSHZ_js.PanelContextMenu; }
3423
3430
  });
3424
3431
  Object.defineProperty(exports, "ParameterExtractorFlowNode", {
3425
3432
  enumerable: true,
3426
- get: function () { return chunkGMGTX3TB_js.ParameterExtractorFlowNode; }
3433
+ get: function () { return chunkITFBJSHZ_js.ParameterExtractorFlowNode; }
3427
3434
  });
3428
3435
  Object.defineProperty(exports, "QuestionClassifierFlowNode", {
3429
3436
  enumerable: true,
3430
- get: function () { return chunkGMGTX3TB_js.QuestionClassifierFlowNode; }
3437
+ get: function () { return chunkITFBJSHZ_js.QuestionClassifierFlowNode; }
3431
3438
  });
3432
3439
  Object.defineProperty(exports, "RuleFlowNode", {
3433
3440
  enumerable: true,
3434
- get: function () { return chunkGMGTX3TB_js.RuleFlowNode; }
3441
+ get: function () { return chunkITFBJSHZ_js.RuleFlowNode; }
3435
3442
  });
3436
3443
  Object.defineProperty(exports, "SelectionContextMenu", {
3437
3444
  enumerable: true,
3438
- get: function () { return chunkGMGTX3TB_js.SelectionContextMenu; }
3445
+ get: function () { return chunkITFBJSHZ_js.SelectionContextMenu; }
3439
3446
  });
3440
3447
  Object.defineProperty(exports, "StartFlowNode", {
3441
3448
  enumerable: true,
3442
- get: function () { return chunkGMGTX3TB_js.StartFlowNode; }
3449
+ get: function () { return chunkITFBJSHZ_js.StartFlowNode; }
3443
3450
  });
3444
3451
  Object.defineProperty(exports, "StrandsIcon", {
3445
3452
  enumerable: true,
3446
- get: function () { return chunkGMGTX3TB_js.StrandsIcon; }
3453
+ get: function () { return chunkITFBJSHZ_js.StrandsIcon; }
3447
3454
  });
3448
3455
  Object.defineProperty(exports, "TemplateTransformFlowNode", {
3449
3456
  enumerable: true,
3450
- get: function () { return chunkGMGTX3TB_js.TemplateTransformFlowNode; }
3457
+ get: function () { return chunkITFBJSHZ_js.TemplateTransformFlowNode; }
3451
3458
  });
3452
3459
  Object.defineProperty(exports, "ToolFlowNode", {
3453
3460
  enumerable: true,
3454
- get: function () { return chunkGMGTX3TB_js.ToolFlowNode; }
3461
+ get: function () { return chunkITFBJSHZ_js.ToolFlowNode; }
3455
3462
  });
3456
3463
  Object.defineProperty(exports, "VariableAggregatorFlowNode", {
3457
3464
  enumerable: true,
3458
- get: function () { return chunkGMGTX3TB_js.VariableAggregatorFlowNode; }
3465
+ get: function () { return chunkITFBJSHZ_js.VariableAggregatorFlowNode; }
3459
3466
  });
3460
3467
  Object.defineProperty(exports, "VariableAssignerFlowNode", {
3461
3468
  enumerable: true,
3462
- get: function () { return chunkGMGTX3TB_js.VariableAssignerFlowNode; }
3469
+ get: function () { return chunkITFBJSHZ_js.VariableAssignerFlowNode; }
3463
3470
  });
3464
3471
  Object.defineProperty(exports, "WorkflowBuilderProvider", {
3465
3472
  enumerable: true,
3466
- get: function () { return chunkGMGTX3TB_js.WorkflowBuilderProvider; }
3473
+ get: function () { return chunkITFBJSHZ_js.WorkflowBuilderProvider; }
3467
3474
  });
3468
3475
  Object.defineProperty(exports, "Workspace", {
3469
3476
  enumerable: true,
3470
- get: function () { return chunkGMGTX3TB_js.Workspace; }
3477
+ get: function () { return chunkITFBJSHZ_js.Workspace; }
3471
3478
  });
3472
3479
  Object.defineProperty(exports, "getCompatibleModels", {
3473
3480
  enumerable: true,
3474
- get: function () { return chunkGMGTX3TB_js.getCompatibleModels; }
3481
+ get: function () { return chunkITFBJSHZ_js.getCompatibleModels; }
3475
3482
  });
3476
3483
  Object.defineProperty(exports, "getDefaultFrameworkForModel", {
3477
3484
  enumerable: true,
3478
- get: function () { return chunkGMGTX3TB_js.getDefaultFrameworkForModel; }
3485
+ get: function () { return chunkITFBJSHZ_js.getDefaultFrameworkForModel; }
3479
3486
  });
3480
3487
  Object.defineProperty(exports, "getEntityBadgeColor", {
3481
3488
  enumerable: true,
3482
- get: function () { return chunkGMGTX3TB_js.getEntityBadgeColor; }
3489
+ get: function () { return chunkITFBJSHZ_js.getEntityBadgeColor; }
3483
3490
  });
3484
3491
  Object.defineProperty(exports, "getEntityGradient", {
3485
3492
  enumerable: true,
3486
- get: function () { return chunkGMGTX3TB_js.getEntityGradient; }
3493
+ get: function () { return chunkITFBJSHZ_js.getEntityGradient; }
3487
3494
  });
3488
3495
  Object.defineProperty(exports, "getEntityHandleColor", {
3489
3496
  enumerable: true,
3490
- get: function () { return chunkGMGTX3TB_js.getEntityHandleColor; }
3497
+ get: function () { return chunkITFBJSHZ_js.getEntityHandleColor; }
3491
3498
  });
3492
3499
  Object.defineProperty(exports, "getEntityIcon", {
3493
3500
  enumerable: true,
3494
- get: function () { return chunkGMGTX3TB_js.getEntityIcon; }
3501
+ get: function () { return chunkITFBJSHZ_js.getEntityIcon; }
3495
3502
  });
3496
3503
  Object.defineProperty(exports, "getEntityMinimapColor", {
3497
3504
  enumerable: true,
3498
- get: function () { return chunkGMGTX3TB_js.getEntityMinimapColor; }
3505
+ get: function () { return chunkITFBJSHZ_js.getEntityMinimapColor; }
3499
3506
  });
3500
3507
  Object.defineProperty(exports, "getFrameworkMeta", {
3501
3508
  enumerable: true,
3502
- get: function () { return chunkGMGTX3TB_js.getFrameworkMeta; }
3509
+ get: function () { return chunkITFBJSHZ_js.getFrameworkMeta; }
3510
+ });
3511
+ Object.defineProperty(exports, "getNodeExecutionAccent", {
3512
+ enumerable: true,
3513
+ get: function () { return chunkITFBJSHZ_js.getNodeExecutionAccent; }
3514
+ });
3515
+ Object.defineProperty(exports, "getNodeExecutionAccentRgb", {
3516
+ enumerable: true,
3517
+ get: function () { return chunkITFBJSHZ_js.getNodeExecutionAccentRgb; }
3503
3518
  });
3504
3519
  Object.defineProperty(exports, "isModelCompatibleWithFramework", {
3505
3520
  enumerable: true,
3506
- get: function () { return chunkGMGTX3TB_js.isModelCompatibleWithFramework; }
3521
+ get: function () { return chunkITFBJSHZ_js.isModelCompatibleWithFramework; }
3507
3522
  });
3508
3523
  Object.defineProperty(exports, "useModalStore", {
3509
3524
  enumerable: true,
3510
- get: function () { return chunkGMGTX3TB_js.useModalStore; }
3525
+ get: function () { return chunkITFBJSHZ_js.useModalStore; }
3511
3526
  });
3512
3527
  Object.defineProperty(exports, "useWorkflowBuilderClient", {
3513
3528
  enumerable: true,
3514
- get: function () { return chunkGMGTX3TB_js.useWorkflowBuilderClient; }
3529
+ get: function () { return chunkITFBJSHZ_js.useWorkflowBuilderClient; }
3515
3530
  });
3516
3531
  Object.defineProperty(exports, "useWorkflowBuilderClientOptional", {
3517
3532
  enumerable: true,
3518
- get: function () { return chunkGMGTX3TB_js.useWorkflowBuilderClientOptional; }
3533
+ get: function () { return chunkITFBJSHZ_js.useWorkflowBuilderClientOptional; }
3519
3534
  });
3520
3535
  Object.defineProperty(exports, "useWorkflowStore", {
3521
3536
  enumerable: true,
3522
- get: function () { return chunkGMGTX3TB_js.useWorkflowStore; }
3537
+ get: function () { return chunkITFBJSHZ_js.useWorkflowStore; }
3523
3538
  });
3524
3539
  Object.defineProperty(exports, "GraphNodeBadge", {
3525
3540
  enumerable: true,