@datatechsolutions/ui 2.11.3 → 2.11.5

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