@datatechsolutions/ui 2.7.133 → 2.7.135

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-2HUN5ZXT.js');
5
5
  var chunkE42PD4X6_js = require('../chunk-E42PD4X6.js');
6
- var chunkAH5D2SNG_js = require('../chunk-AH5D2SNG.js');
7
- var chunkW224TQQY_js = require('../chunk-W224TQQY.js');
6
+ var chunkEYUVANPR_js = require('../chunk-EYUVANPR.js');
7
+ var chunkJJTJLDBQ_js = require('../chunk-JJTJLDBQ.js');
8
8
  var chunkNJ6PBGQM_js = require('../chunk-NJ6PBGQM.js');
9
9
  var chunkF4FMGGHO_js = require('../chunk-F4FMGGHO.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 = chunkAH5D2SNG_js.getFrameworkMeta(selectedFramework);
85
+ const frameworkMeta = chunkEYUVANPR_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(chunkAH5D2SNG_js.FRAMEWORK_META);
371
- const compatibleModels = chunkAH5D2SNG_js.getCompatibleModels(models, selectedFramework);
370
+ const frameworkKeys = Object.keys(chunkEYUVANPR_js.FRAMEWORK_META);
371
+ const compatibleModels = chunkEYUVANPR_js.getCompatibleModels(models, selectedFramework);
372
372
  const handleFrameworkChange = react.useCallback((newFramework) => {
373
373
  setSelectedFramework(newFramework);
374
- if (!chunkAH5D2SNG_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
375
- const compatible = chunkAH5D2SNG_js.getCompatibleModels(models, newFramework);
374
+ if (!chunkEYUVANPR_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
375
+ const compatible = chunkEYUVANPR_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 = chunkAH5D2SNG_js.FRAMEWORK_META[key];
386
+ const meta = chunkEYUVANPR_js.FRAMEWORK_META[key];
387
387
  const isSelected = key === selectedFramework;
388
- const compatCount = chunkAH5D2SNG_js.getCompatibleModels(models, key).length;
388
+ const compatCount = chunkEYUVANPR_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 = chunkAH5D2SNG_js.isModelCompatibleWithFramework(model.id, selectedFramework);
418
+ const isCompatible = chunkEYUVANPR_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 = chunkAH5D2SNG_js.useWorkflowStore((state) => state.nodeResults);
522
+ const nodeResults = chunkEYUVANPR_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 = chunkAH5D2SNG_js.useDrawerStore((s) => s.activeDrawer);
552
- const agentData = chunkAH5D2SNG_js.useDrawerStore((s) => s.agentData);
553
- const closeDrawer = chunkAH5D2SNG_js.useDrawerStore((s) => s.closeDrawer);
551
+ const activeDrawer = chunkEYUVANPR_js.useDrawerStore((s) => s.activeDrawer);
552
+ const agentData = chunkEYUVANPR_js.useDrawerStore((s) => s.agentData);
553
+ const closeDrawer = chunkEYUVANPR_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
- chunkAH5D2SNG_js.WorkspaceDrawer,
596
+ chunkEYUVANPR_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 ?? chunkAH5D2SNG_js.CATEGORY_COLORS[categoryKey] ?? chunkAH5D2SNG_js.CATEGORY_COLORS.external;
745
- const categoryPill = chunkAH5D2SNG_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunkAH5D2SNG_js.CATEGORY_PILL_COLORS.external;
746
- const IconComponent = chunkAH5D2SNG_js.ICON_MAP[tool.icon ?? ""] ?? outline.ArrowPathRoundedSquareIcon;
744
+ const gradient = tool.color ?? chunkEYUVANPR_js.CATEGORY_COLORS[categoryKey] ?? chunkEYUVANPR_js.CATEGORY_COLORS.external;
745
+ const categoryPill = chunkEYUVANPR_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunkEYUVANPR_js.CATEGORY_PILL_COLORS.external;
746
+ const IconComponent = chunkEYUVANPR_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
- chunkAH5D2SNG_js.WorkspaceDrawer,
755
+ chunkEYUVANPR_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 ? `${chunkAH5D2SNG_js.CATEGORY_PILL_COLORS[cat] ?? chunkAH5D2SNG_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"}`,
784
+ className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${chunkEYUVANPR_js.CATEGORY_PILL_COLORS[cat] ?? chunkEYUVANPR_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
- chunkAH5D2SNG_js.WorkflowCanvas,
875
+ chunkEYUVANPR_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 = chunkAH5D2SNG_js.useDrawerStore((s) => s.activeDrawer);
892
- const data = chunkAH5D2SNG_js.useDrawerStore((s) => s.pipelineSettingsData);
893
- const closeDrawer = chunkAH5D2SNG_js.useDrawerStore((s) => s.closeDrawer);
891
+ const activeDrawer = chunkEYUVANPR_js.useDrawerStore((s) => s.activeDrawer);
892
+ const data = chunkEYUVANPR_js.useDrawerStore((s) => s.pipelineSettingsData);
893
+ const closeDrawer = chunkEYUVANPR_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
- chunkAH5D2SNG_js.WorkspaceDrawer,
918
+ chunkEYUVANPR_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
- chunkW224TQQY_js.FormInput,
928
+ chunkJJTJLDBQ_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
- chunkW224TQQY_js.FormTextarea,
938
+ chunkJJTJLDBQ_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
- chunkW224TQQY_js.Button,
948
+ chunkJJTJLDBQ_js.Button,
949
949
  {
950
950
  type: "submit",
951
951
  color: "ios-glass-blue",
@@ -1057,8 +1057,8 @@ function CollapsibleSection({ title, icon, colorClass, defaultOpen = true, count
1057
1057
  ] });
1058
1058
  }
1059
1059
  function LogicNodeItemCard({ item, translationFunction }) {
1060
- const IconComponent = chunkAH5D2SNG_js.LOGIC_ICON_MAP[item.nodeType];
1061
- const gradient = chunkAH5D2SNG_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
1060
+ const IconComponent = chunkEYUVANPR_js.LOGIC_ICON_MAP[item.nodeType];
1061
+ const gradient = chunkEYUVANPR_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
1062
1062
  const defaultConfig = chunkF4FMGGHO_js.createDefaultLogicNodeConfig(item.nodeType);
1063
1063
  const configJson = defaultConfig ? JSON.stringify(defaultConfig) : void 0;
1064
1064
  return /* @__PURE__ */ jsxRuntime.jsxs(
@@ -1296,8 +1296,8 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], onC
1296
1296
  outputVariable: `${entity.label.replace(/\s+/g, "")}Data`,
1297
1297
  limit: entity.defaultLimit
1298
1298
  });
1299
- const EntityIcon = chunkAH5D2SNG_js.getEntityIcon(entity.id);
1300
- const entityGradient = chunkAH5D2SNG_js.getEntityGradient(entity.id);
1299
+ const EntityIcon = chunkEYUVANPR_js.getEntityIcon(entity.id);
1300
+ const entityGradient = chunkEYUVANPR_js.getEntityGradient(entity.id);
1301
1301
  return /* @__PURE__ */ jsxRuntime.jsxs(
1302
1302
  "div",
1303
1303
  {
@@ -1636,9 +1636,9 @@ function formatDuration2(durationMs) {
1636
1636
  }
1637
1637
  function RunPanel({ open, onClose, onRun, onStop }) {
1638
1638
  const translations = nextIntl.useTranslations("agents.workflow.runPanel");
1639
- const nodes = chunkAH5D2SNG_js.useWorkflowStore((state) => state.nodes);
1640
- const isRunning = chunkAH5D2SNG_js.useWorkflowStore((state) => state.isRunning);
1641
- const nodeResults = chunkAH5D2SNG_js.useWorkflowStore((state) => state.nodeResults);
1639
+ const nodes = chunkEYUVANPR_js.useWorkflowStore((state) => state.nodes);
1640
+ const isRunning = chunkEYUVANPR_js.useWorkflowStore((state) => state.isRunning);
1641
+ const nodeResults = chunkEYUVANPR_js.useWorkflowStore((state) => state.nodeResults);
1642
1642
  const startNode = nodes.find((node) => node.type === "start");
1643
1643
  const hasEndNode = nodes.some((node) => node.type === "end");
1644
1644
  const hasValidStartConfig = Boolean(
@@ -1923,8 +1923,8 @@ function inferVariables(config, nodeType) {
1923
1923
  }
1924
1924
  function VariableInspector({ open, onClose }) {
1925
1925
  const translations = nextIntl.useTranslations("agents.workflow.variableInspector");
1926
- const nodes = chunkAH5D2SNG_js.useWorkflowStore((state) => state.nodes);
1927
- const edges = chunkAH5D2SNG_js.useWorkflowStore((state) => state.edges);
1926
+ const nodes = chunkEYUVANPR_js.useWorkflowStore((state) => state.nodes);
1927
+ const edges = chunkEYUVANPR_js.useWorkflowStore((state) => state.edges);
1928
1928
  const [expandedNodes, setExpandedNodes] = react.useState(/* @__PURE__ */ new Set());
1929
1929
  const toggleNodeExpansion = react.useCallback((nodeId) => {
1930
1930
  setExpandedNodes((current) => {
@@ -1986,8 +1986,8 @@ function VariableInspector({ open, onClose }) {
1986
1986
  /* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-2 text-sm text-gray-500 dark:text-gray-400", children: translations("noNodes") })
1987
1987
  ] }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "divide-y divide-gray-100 dark:divide-gray-800", children: nodeVariableEntries.map((entry) => {
1988
1988
  const isExpanded = expandedNodes.has(entry.nodeId);
1989
- const IconComponent = chunkAH5D2SNG_js.LOGIC_ICON_MAP[entry.nodeType];
1990
- const gradient = chunkAH5D2SNG_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
1989
+ const IconComponent = chunkEYUVANPR_js.LOGIC_ICON_MAP[entry.nodeType];
1990
+ const gradient = chunkEYUVANPR_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
1991
1991
  const inputVariables = entry.variables.filter((variable) => variable.direction === "input");
1992
1992
  const outputVariables = entry.variables.filter((variable) => variable.direction === "output");
1993
1993
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": `variable-node-${entry.nodeId}`, children: [
@@ -2053,7 +2053,7 @@ function RunInputDialog({
2053
2053
  onRun
2054
2054
  }) {
2055
2055
  const t = nextIntl.useTranslations("agents.workflow.runInputDialog");
2056
- const nodes = chunkAH5D2SNG_js.useWorkflowStore((state) => state.nodes);
2056
+ const nodes = chunkEYUVANPR_js.useWorkflowStore((state) => state.nodes);
2057
2057
  const [values, setValues] = react.useState({});
2058
2058
  const inputVariableNames = react.useMemo(() => {
2059
2059
  const storeStartNode = nodes.find((node) => node.type === "start");
@@ -2080,7 +2080,7 @@ function RunInputDialog({
2080
2080
  }, [onClose]);
2081
2081
  if (!open) return null;
2082
2082
  return /* @__PURE__ */ jsxRuntime.jsxs(
2083
- chunkW224TQQY_js.FormModal,
2083
+ chunkJJTJLDBQ_js.FormModal,
2084
2084
  {
2085
2085
  open,
2086
2086
  onClose: handleClose,
@@ -2092,7 +2092,7 @@ function RunInputDialog({
2092
2092
  /* @__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: [
2093
2093
  /* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-1 block text-xs font-medium text-gray-700 dark:text-gray-300", children: variableName }),
2094
2094
  /* @__PURE__ */ jsxRuntime.jsx(
2095
- chunkW224TQQY_js.Input,
2095
+ chunkJJTJLDBQ_js.Input,
2096
2096
  {
2097
2097
  value: values[variableName] ?? "",
2098
2098
  onChange: (event) => handleValueChange(variableName, event.target.value),
@@ -2101,8 +2101,8 @@ function RunInputDialog({
2101
2101
  )
2102
2102
  ] }, variableName)) }),
2103
2103
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-4 flex items-center justify-end gap-2", children: [
2104
- /* @__PURE__ */ jsxRuntime.jsx(chunkW224TQQY_js.Button, { size: "sm", plain: true, onClick: handleClose, children: t("cancel") }),
2105
- /* @__PURE__ */ jsxRuntime.jsxs(chunkW224TQQY_js.Button, { size: "sm", gradient: true, onClick: handleSubmit, children: [
2104
+ /* @__PURE__ */ jsxRuntime.jsx(chunkJJTJLDBQ_js.Button, { size: "sm", plain: true, onClick: handleClose, children: t("cancel") }),
2105
+ /* @__PURE__ */ jsxRuntime.jsxs(chunkJJTJLDBQ_js.Button, { size: "sm", gradient: true, onClick: handleSubmit, children: [
2106
2106
  /* @__PURE__ */ jsxRuntime.jsx(outline.PlayIcon, { className: "h-3.5 w-3.5", "data-slot": "icon" }),
2107
2107
  t("run")
2108
2108
  ] })
@@ -2135,8 +2135,8 @@ function PreviewPanel({ open, onClose, workflowId, loadRuns }) {
2135
2135
  const [isLoadingRuns, setIsLoadingRuns] = react.useState(false);
2136
2136
  const [selectedRun, setSelectedRun] = react.useState(null);
2137
2137
  const [selectedNode, setSelectedNode] = react.useState(null);
2138
- const isRunning = chunkAH5D2SNG_js.useWorkflowStore((state) => state.isRunning);
2139
- const nodeResults = chunkAH5D2SNG_js.useWorkflowStore((state) => state.nodeResults);
2138
+ const isRunning = chunkEYUVANPR_js.useWorkflowStore((state) => state.isRunning);
2139
+ const nodeResults = chunkEYUVANPR_js.useWorkflowStore((state) => state.nodeResults);
2140
2140
  const refreshRuns = react.useCallback(async () => {
2141
2141
  setIsLoadingRuns(true);
2142
2142
  try {
@@ -2292,7 +2292,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
2292
2292
  onAutoSaveGraph(graph);
2293
2293
  }, [onAutoSaveGraph, onGraphSnapshot]);
2294
2294
  return /* @__PURE__ */ jsxRuntime.jsx(
2295
- chunkAH5D2SNG_js.Workspace,
2295
+ chunkEYUVANPR_js.Workspace,
2296
2296
  {
2297
2297
  ...workspaceProps,
2298
2298
  onGraphChange: handleGraphChange
@@ -2300,7 +2300,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
2300
2300
  );
2301
2301
  });
2302
2302
  function DynamicIslandConfirm2(props) {
2303
- return /* @__PURE__ */ jsxRuntime.jsx(chunkW224TQQY_js.DynamicIslandConfirm, { ...props });
2303
+ return /* @__PURE__ */ jsxRuntime.jsx(chunkJJTJLDBQ_js.DynamicIslandConfirm, { ...props });
2304
2304
  }
2305
2305
  var JSON_PREVIEW_LINE_LIMIT = 50;
2306
2306
  function DslExportModal({ open, onClose, workflow, graph }) {
@@ -2354,7 +2354,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
2354
2354
  }, [jsonString, workflow.name, workflow.version]);
2355
2355
  if (!open) return null;
2356
2356
  return /* @__PURE__ */ jsxRuntime.jsx(
2357
- chunkW224TQQY_js.FormModal,
2357
+ chunkJJTJLDBQ_js.FormModal,
2358
2358
  {
2359
2359
  open,
2360
2360
  onClose,
@@ -2397,7 +2397,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
2397
2397
  ] }),
2398
2398
  /* @__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: [
2399
2399
  /* @__PURE__ */ jsxRuntime.jsx(
2400
- chunkW224TQQY_js.Button,
2400
+ chunkJJTJLDBQ_js.Button,
2401
2401
  {
2402
2402
  type: "button",
2403
2403
  onClick: handleCopyToClipboard,
@@ -2414,7 +2414,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
2414
2414
  }
2415
2415
  ),
2416
2416
  /* @__PURE__ */ jsxRuntime.jsxs(
2417
- chunkW224TQQY_js.Button,
2417
+ chunkJJTJLDBQ_js.Button,
2418
2418
  {
2419
2419
  type: "button",
2420
2420
  onClick: handleDownloadJson,
@@ -2573,7 +2573,7 @@ function DslImportModal({ open, onClose, onImport }) {
2573
2573
  }, []);
2574
2574
  if (!open) return null;
2575
2575
  return /* @__PURE__ */ jsxRuntime.jsx(
2576
- chunkW224TQQY_js.FormModal,
2576
+ chunkJJTJLDBQ_js.FormModal,
2577
2577
  {
2578
2578
  open,
2579
2579
  onClose,
@@ -2611,7 +2611,7 @@ function DslImportModal({ open, onClose, onImport }) {
2611
2611
  ) : /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": "import-validation-result", children: [
2612
2612
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-4 flex items-center justify-between", children: [
2613
2613
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: fileName }),
2614
- /* @__PURE__ */ jsxRuntime.jsx(chunkW224TQQY_js.Button, { type: "button", plain: true, size: "sm", onClick: handleReset, children: translations("chooseAnother") })
2614
+ /* @__PURE__ */ jsxRuntime.jsx(chunkJJTJLDBQ_js.Button, { type: "button", plain: true, size: "sm", onClick: handleReset, children: translations("chooseAnother") })
2615
2615
  ] }),
2616
2616
  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: [
2617
2617
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
@@ -2639,9 +2639,9 @@ function DslImportModal({ open, onClose, onImport }) {
2639
2639
  ] })
2640
2640
  ] }) }),
2641
2641
  /* @__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: [
2642
- /* @__PURE__ */ jsxRuntime.jsx(chunkW224TQQY_js.Button, { type: "button", onClick: onClose, outline: true, size: "sm", "data-testid": "import-cancel-button", children: translations("cancel") }),
2642
+ /* @__PURE__ */ jsxRuntime.jsx(chunkJJTJLDBQ_js.Button, { type: "button", onClick: onClose, outline: true, size: "sm", "data-testid": "import-cancel-button", children: translations("cancel") }),
2643
2643
  /* @__PURE__ */ jsxRuntime.jsxs(
2644
- chunkW224TQQY_js.Button,
2644
+ chunkJJTJLDBQ_js.Button,
2645
2645
  {
2646
2646
  type: "button",
2647
2647
  onClick: handleImport,
@@ -2662,14 +2662,14 @@ function DslImportModal({ open, onClose, onImport }) {
2662
2662
  }
2663
2663
 
2664
2664
  // src/workflow/store/selectors.ts
2665
- var useCanUndo = () => chunkAH5D2SNG_js.useWorkflowStore((state) => state.past.length > 0);
2666
- var useCanRedo = () => chunkAH5D2SNG_js.useWorkflowStore((state) => state.future.length > 0);
2667
- var useHasCopied = () => chunkAH5D2SNG_js.useWorkflowStore((state) => state.clipboard !== null);
2668
- var useContextMenu = () => chunkAH5D2SNG_js.useWorkflowStore((state) => state.contextMenu);
2669
- var useEditingNodeId = () => chunkAH5D2SNG_js.useWorkflowStore((state) => state.editingNodeId);
2670
- var useSelectedNodeCount = () => chunkAH5D2SNG_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
2671
- var useIsRunning = () => chunkAH5D2SNG_js.useWorkflowStore((state) => state.isRunning);
2672
- var useNodeResults = () => chunkAH5D2SNG_js.useWorkflowStore((state) => state.nodeResults);
2665
+ var useCanUndo = () => chunkEYUVANPR_js.useWorkflowStore((state) => state.past.length > 0);
2666
+ var useCanRedo = () => chunkEYUVANPR_js.useWorkflowStore((state) => state.future.length > 0);
2667
+ var useHasCopied = () => chunkEYUVANPR_js.useWorkflowStore((state) => state.clipboard !== null);
2668
+ var useContextMenu = () => chunkEYUVANPR_js.useWorkflowStore((state) => state.contextMenu);
2669
+ var useEditingNodeId = () => chunkEYUVANPR_js.useWorkflowStore((state) => state.editingNodeId);
2670
+ var useSelectedNodeCount = () => chunkEYUVANPR_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
2671
+ var useIsRunning = () => chunkEYUVANPR_js.useWorkflowStore((state) => state.isRunning);
2672
+ var useNodeResults = () => chunkEYUVANPR_js.useWorkflowStore((state) => state.nodeResults);
2673
2673
  var DEFAULT_MAX_HISTORY = 50;
2674
2674
  function useUndoRedo(nodes, edges, setNodes, setEdges, maxHistory = DEFAULT_MAX_HISTORY) {
2675
2675
  const pastRef = react.useRef([]);
@@ -2957,227 +2957,227 @@ Object.defineProperty(exports, "validateWorkflowGraph", {
2957
2957
  });
2958
2958
  Object.defineProperty(exports, "AgentFlowNode", {
2959
2959
  enumerable: true,
2960
- get: function () { return chunkAH5D2SNG_js.AgentFlowNode; }
2960
+ get: function () { return chunkEYUVANPR_js.AgentFlowNode; }
2961
2961
  });
2962
2962
  Object.defineProperty(exports, "AgentToolFlowNode", {
2963
2963
  enumerable: true,
2964
- get: function () { return chunkAH5D2SNG_js.AgentToolFlowNode; }
2964
+ get: function () { return chunkEYUVANPR_js.AgentToolFlowNode; }
2965
2965
  });
2966
2966
  Object.defineProperty(exports, "AnswerFlowNode", {
2967
2967
  enumerable: true,
2968
- get: function () { return chunkAH5D2SNG_js.AnswerFlowNode; }
2968
+ get: function () { return chunkEYUVANPR_js.AnswerFlowNode; }
2969
2969
  });
2970
2970
  Object.defineProperty(exports, "AnthropicIcon", {
2971
2971
  enumerable: true,
2972
- get: function () { return chunkAH5D2SNG_js.AnthropicIcon; }
2972
+ get: function () { return chunkEYUVANPR_js.AnthropicIcon; }
2973
2973
  });
2974
2974
  Object.defineProperty(exports, "CodeFlowNode", {
2975
2975
  enumerable: true,
2976
- get: function () { return chunkAH5D2SNG_js.CodeFlowNode; }
2976
+ get: function () { return chunkEYUVANPR_js.CodeFlowNode; }
2977
2977
  });
2978
2978
  Object.defineProperty(exports, "CrewAIIcon", {
2979
2979
  enumerable: true,
2980
- get: function () { return chunkAH5D2SNG_js.CrewAIIcon; }
2980
+ get: function () { return chunkEYUVANPR_js.CrewAIIcon; }
2981
2981
  });
2982
2982
  Object.defineProperty(exports, "DocumentExtractorFlowNode", {
2983
2983
  enumerable: true,
2984
- get: function () { return chunkAH5D2SNG_js.DocumentExtractorFlowNode; }
2984
+ get: function () { return chunkEYUVANPR_js.DocumentExtractorFlowNode; }
2985
2985
  });
2986
2986
  Object.defineProperty(exports, "EndFlowNode", {
2987
2987
  enumerable: true,
2988
- get: function () { return chunkAH5D2SNG_js.EndFlowNode; }
2988
+ get: function () { return chunkEYUVANPR_js.EndFlowNode; }
2989
2989
  });
2990
2990
  Object.defineProperty(exports, "EntityFlowNode", {
2991
2991
  enumerable: true,
2992
- get: function () { return chunkAH5D2SNG_js.EntityFlowNode; }
2992
+ get: function () { return chunkEYUVANPR_js.EntityFlowNode; }
2993
2993
  });
2994
2994
  Object.defineProperty(exports, "FRAMEWORK_META", {
2995
2995
  enumerable: true,
2996
- get: function () { return chunkAH5D2SNG_js.FRAMEWORK_META; }
2996
+ get: function () { return chunkEYUVANPR_js.FRAMEWORK_META; }
2997
2997
  });
2998
2998
  Object.defineProperty(exports, "GoogleADKIcon", {
2999
2999
  enumerable: true,
3000
- get: function () { return chunkAH5D2SNG_js.GoogleADKIcon; }
3000
+ get: function () { return chunkEYUVANPR_js.GoogleADKIcon; }
3001
3001
  });
3002
3002
  Object.defineProperty(exports, "GroupFlowNode", {
3003
3003
  enumerable: true,
3004
- get: function () { return chunkAH5D2SNG_js.GroupFlowNode; }
3004
+ get: function () { return chunkEYUVANPR_js.GroupFlowNode; }
3005
3005
  });
3006
3006
  Object.defineProperty(exports, "HttpRequestFlowNode", {
3007
3007
  enumerable: true,
3008
- get: function () { return chunkAH5D2SNG_js.HttpRequestFlowNode; }
3008
+ get: function () { return chunkEYUVANPR_js.HttpRequestFlowNode; }
3009
3009
  });
3010
3010
  Object.defineProperty(exports, "IfElseFlowNode", {
3011
3011
  enumerable: true,
3012
- get: function () { return chunkAH5D2SNG_js.IfElseFlowNode; }
3012
+ get: function () { return chunkEYUVANPR_js.IfElseFlowNode; }
3013
3013
  });
3014
3014
  Object.defineProperty(exports, "IterationFlowNode", {
3015
3015
  enumerable: true,
3016
- get: function () { return chunkAH5D2SNG_js.IterationFlowNode; }
3016
+ get: function () { return chunkEYUVANPR_js.IterationFlowNode; }
3017
3017
  });
3018
3018
  Object.defineProperty(exports, "IterationStartFlowNode", {
3019
3019
  enumerable: true,
3020
- get: function () { return chunkAH5D2SNG_js.IterationStartFlowNode; }
3020
+ get: function () { return chunkEYUVANPR_js.IterationStartFlowNode; }
3021
3021
  });
3022
3022
  Object.defineProperty(exports, "KnowledgeBaseFlowNode", {
3023
3023
  enumerable: true,
3024
- get: function () { return chunkAH5D2SNG_js.KnowledgeBaseFlowNode; }
3024
+ get: function () { return chunkEYUVANPR_js.KnowledgeBaseFlowNode; }
3025
3025
  });
3026
3026
  Object.defineProperty(exports, "LOGIC_ICON_MAP", {
3027
3027
  enumerable: true,
3028
- get: function () { return chunkAH5D2SNG_js.LOGIC_ICON_MAP; }
3028
+ get: function () { return chunkEYUVANPR_js.LOGIC_ICON_MAP; }
3029
3029
  });
3030
3030
  Object.defineProperty(exports, "LOGIC_NODE_BADGE_COLORS", {
3031
3031
  enumerable: true,
3032
- get: function () { return chunkAH5D2SNG_js.LOGIC_NODE_BADGE_COLORS; }
3032
+ get: function () { return chunkEYUVANPR_js.LOGIC_NODE_BADGE_COLORS; }
3033
3033
  });
3034
3034
  Object.defineProperty(exports, "LOGIC_NODE_GRADIENTS", {
3035
3035
  enumerable: true,
3036
- get: function () { return chunkAH5D2SNG_js.LOGIC_NODE_GRADIENTS; }
3036
+ get: function () { return chunkEYUVANPR_js.LOGIC_NODE_GRADIENTS; }
3037
3037
  });
3038
3038
  Object.defineProperty(exports, "LOGIC_NODE_HANDLE_COLORS", {
3039
3039
  enumerable: true,
3040
- get: function () { return chunkAH5D2SNG_js.LOGIC_NODE_HANDLE_COLORS; }
3040
+ get: function () { return chunkEYUVANPR_js.LOGIC_NODE_HANDLE_COLORS; }
3041
3041
  });
3042
3042
  Object.defineProperty(exports, "LangChainIcon", {
3043
3043
  enumerable: true,
3044
- get: function () { return chunkAH5D2SNG_js.LangChainIcon; }
3044
+ get: function () { return chunkEYUVANPR_js.LangChainIcon; }
3045
3045
  });
3046
3046
  Object.defineProperty(exports, "ListOperatorFlowNode", {
3047
3047
  enumerable: true,
3048
- get: function () { return chunkAH5D2SNG_js.ListOperatorFlowNode; }
3048
+ get: function () { return chunkEYUVANPR_js.ListOperatorFlowNode; }
3049
3049
  });
3050
3050
  Object.defineProperty(exports, "LogicNodeDrawer", {
3051
3051
  enumerable: true,
3052
- get: function () { return chunkAH5D2SNG_js.LogicNodeDrawer; }
3052
+ get: function () { return chunkEYUVANPR_js.LogicNodeDrawer; }
3053
3053
  });
3054
3054
  Object.defineProperty(exports, "MINIMAP_NODE_COLORS", {
3055
3055
  enumerable: true,
3056
- get: function () { return chunkAH5D2SNG_js.MINIMAP_NODE_COLORS; }
3056
+ get: function () { return chunkEYUVANPR_js.MINIMAP_NODE_COLORS; }
3057
3057
  });
3058
3058
  Object.defineProperty(exports, "NodeCard", {
3059
3059
  enumerable: true,
3060
- get: function () { return chunkAH5D2SNG_js.NodeCard; }
3060
+ get: function () { return chunkEYUVANPR_js.NodeCard; }
3061
3061
  });
3062
3062
  Object.defineProperty(exports, "NodeContextMenu", {
3063
3063
  enumerable: true,
3064
- get: function () { return chunkAH5D2SNG_js.NodeContextMenu; }
3064
+ get: function () { return chunkEYUVANPR_js.NodeContextMenu; }
3065
3065
  });
3066
3066
  Object.defineProperty(exports, "NoteFlowNode", {
3067
3067
  enumerable: true,
3068
- get: function () { return chunkAH5D2SNG_js.NoteFlowNode; }
3068
+ get: function () { return chunkEYUVANPR_js.NoteFlowNode; }
3069
3069
  });
3070
3070
  Object.defineProperty(exports, "OpenAIIcon", {
3071
3071
  enumerable: true,
3072
- get: function () { return chunkAH5D2SNG_js.OpenAIIcon; }
3072
+ get: function () { return chunkEYUVANPR_js.OpenAIIcon; }
3073
3073
  });
3074
3074
  Object.defineProperty(exports, "PanelContextMenu", {
3075
3075
  enumerable: true,
3076
- get: function () { return chunkAH5D2SNG_js.PanelContextMenu; }
3076
+ get: function () { return chunkEYUVANPR_js.PanelContextMenu; }
3077
3077
  });
3078
3078
  Object.defineProperty(exports, "ParameterExtractorFlowNode", {
3079
3079
  enumerable: true,
3080
- get: function () { return chunkAH5D2SNG_js.ParameterExtractorFlowNode; }
3080
+ get: function () { return chunkEYUVANPR_js.ParameterExtractorFlowNode; }
3081
3081
  });
3082
3082
  Object.defineProperty(exports, "QuestionClassifierFlowNode", {
3083
3083
  enumerable: true,
3084
- get: function () { return chunkAH5D2SNG_js.QuestionClassifierFlowNode; }
3084
+ get: function () { return chunkEYUVANPR_js.QuestionClassifierFlowNode; }
3085
3085
  });
3086
3086
  Object.defineProperty(exports, "RuleFlowNode", {
3087
3087
  enumerable: true,
3088
- get: function () { return chunkAH5D2SNG_js.RuleFlowNode; }
3088
+ get: function () { return chunkEYUVANPR_js.RuleFlowNode; }
3089
3089
  });
3090
3090
  Object.defineProperty(exports, "SelectionContextMenu", {
3091
3091
  enumerable: true,
3092
- get: function () { return chunkAH5D2SNG_js.SelectionContextMenu; }
3092
+ get: function () { return chunkEYUVANPR_js.SelectionContextMenu; }
3093
3093
  });
3094
3094
  Object.defineProperty(exports, "StartFlowNode", {
3095
3095
  enumerable: true,
3096
- get: function () { return chunkAH5D2SNG_js.StartFlowNode; }
3096
+ get: function () { return chunkEYUVANPR_js.StartFlowNode; }
3097
3097
  });
3098
3098
  Object.defineProperty(exports, "StrandsIcon", {
3099
3099
  enumerable: true,
3100
- get: function () { return chunkAH5D2SNG_js.StrandsIcon; }
3100
+ get: function () { return chunkEYUVANPR_js.StrandsIcon; }
3101
3101
  });
3102
3102
  Object.defineProperty(exports, "TemplateTransformFlowNode", {
3103
3103
  enumerable: true,
3104
- get: function () { return chunkAH5D2SNG_js.TemplateTransformFlowNode; }
3104
+ get: function () { return chunkEYUVANPR_js.TemplateTransformFlowNode; }
3105
3105
  });
3106
3106
  Object.defineProperty(exports, "ToolFlowNode", {
3107
3107
  enumerable: true,
3108
- get: function () { return chunkAH5D2SNG_js.ToolFlowNode; }
3108
+ get: function () { return chunkEYUVANPR_js.ToolFlowNode; }
3109
3109
  });
3110
3110
  Object.defineProperty(exports, "VariableAggregatorFlowNode", {
3111
3111
  enumerable: true,
3112
- get: function () { return chunkAH5D2SNG_js.VariableAggregatorFlowNode; }
3112
+ get: function () { return chunkEYUVANPR_js.VariableAggregatorFlowNode; }
3113
3113
  });
3114
3114
  Object.defineProperty(exports, "VariableAssignerFlowNode", {
3115
3115
  enumerable: true,
3116
- get: function () { return chunkAH5D2SNG_js.VariableAssignerFlowNode; }
3116
+ get: function () { return chunkEYUVANPR_js.VariableAssignerFlowNode; }
3117
3117
  });
3118
3118
  Object.defineProperty(exports, "WorkflowBuilderProvider", {
3119
3119
  enumerable: true,
3120
- get: function () { return chunkAH5D2SNG_js.WorkflowBuilderProvider; }
3120
+ get: function () { return chunkEYUVANPR_js.WorkflowBuilderProvider; }
3121
3121
  });
3122
3122
  Object.defineProperty(exports, "Workspace", {
3123
3123
  enumerable: true,
3124
- get: function () { return chunkAH5D2SNG_js.Workspace; }
3124
+ get: function () { return chunkEYUVANPR_js.Workspace; }
3125
3125
  });
3126
3126
  Object.defineProperty(exports, "WorkspaceDrawer", {
3127
3127
  enumerable: true,
3128
- get: function () { return chunkAH5D2SNG_js.WorkspaceDrawer; }
3128
+ get: function () { return chunkEYUVANPR_js.WorkspaceDrawer; }
3129
3129
  });
3130
3130
  Object.defineProperty(exports, "getCompatibleModels", {
3131
3131
  enumerable: true,
3132
- get: function () { return chunkAH5D2SNG_js.getCompatibleModels; }
3132
+ get: function () { return chunkEYUVANPR_js.getCompatibleModels; }
3133
3133
  });
3134
3134
  Object.defineProperty(exports, "getDefaultFrameworkForModel", {
3135
3135
  enumerable: true,
3136
- get: function () { return chunkAH5D2SNG_js.getDefaultFrameworkForModel; }
3136
+ get: function () { return chunkEYUVANPR_js.getDefaultFrameworkForModel; }
3137
3137
  });
3138
3138
  Object.defineProperty(exports, "getEntityBadgeColor", {
3139
3139
  enumerable: true,
3140
- get: function () { return chunkAH5D2SNG_js.getEntityBadgeColor; }
3140
+ get: function () { return chunkEYUVANPR_js.getEntityBadgeColor; }
3141
3141
  });
3142
3142
  Object.defineProperty(exports, "getEntityGradient", {
3143
3143
  enumerable: true,
3144
- get: function () { return chunkAH5D2SNG_js.getEntityGradient; }
3144
+ get: function () { return chunkEYUVANPR_js.getEntityGradient; }
3145
3145
  });
3146
3146
  Object.defineProperty(exports, "getEntityHandleColor", {
3147
3147
  enumerable: true,
3148
- get: function () { return chunkAH5D2SNG_js.getEntityHandleColor; }
3148
+ get: function () { return chunkEYUVANPR_js.getEntityHandleColor; }
3149
3149
  });
3150
3150
  Object.defineProperty(exports, "getEntityIcon", {
3151
3151
  enumerable: true,
3152
- get: function () { return chunkAH5D2SNG_js.getEntityIcon; }
3152
+ get: function () { return chunkEYUVANPR_js.getEntityIcon; }
3153
3153
  });
3154
3154
  Object.defineProperty(exports, "getEntityMinimapColor", {
3155
3155
  enumerable: true,
3156
- get: function () { return chunkAH5D2SNG_js.getEntityMinimapColor; }
3156
+ get: function () { return chunkEYUVANPR_js.getEntityMinimapColor; }
3157
3157
  });
3158
3158
  Object.defineProperty(exports, "getFrameworkMeta", {
3159
3159
  enumerable: true,
3160
- get: function () { return chunkAH5D2SNG_js.getFrameworkMeta; }
3160
+ get: function () { return chunkEYUVANPR_js.getFrameworkMeta; }
3161
3161
  });
3162
3162
  Object.defineProperty(exports, "isModelCompatibleWithFramework", {
3163
3163
  enumerable: true,
3164
- get: function () { return chunkAH5D2SNG_js.isModelCompatibleWithFramework; }
3164
+ get: function () { return chunkEYUVANPR_js.isModelCompatibleWithFramework; }
3165
3165
  });
3166
3166
  Object.defineProperty(exports, "useDrawerStore", {
3167
3167
  enumerable: true,
3168
- get: function () { return chunkAH5D2SNG_js.useDrawerStore; }
3168
+ get: function () { return chunkEYUVANPR_js.useDrawerStore; }
3169
3169
  });
3170
3170
  Object.defineProperty(exports, "useWorkflowBuilderClient", {
3171
3171
  enumerable: true,
3172
- get: function () { return chunkAH5D2SNG_js.useWorkflowBuilderClient; }
3172
+ get: function () { return chunkEYUVANPR_js.useWorkflowBuilderClient; }
3173
3173
  });
3174
3174
  Object.defineProperty(exports, "useWorkflowBuilderClientOptional", {
3175
3175
  enumerable: true,
3176
- get: function () { return chunkAH5D2SNG_js.useWorkflowBuilderClientOptional; }
3176
+ get: function () { return chunkEYUVANPR_js.useWorkflowBuilderClientOptional; }
3177
3177
  });
3178
3178
  Object.defineProperty(exports, "useWorkflowStore", {
3179
3179
  enumerable: true,
3180
- get: function () { return chunkAH5D2SNG_js.useWorkflowStore; }
3180
+ get: function () { return chunkEYUVANPR_js.useWorkflowStore; }
3181
3181
  });
3182
3182
  Object.defineProperty(exports, "GraphNodeBadge", {
3183
3183
  enumerable: true,