@datatechsolutions/ui 2.11.77 → 2.11.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/astrlabe/index.js +108 -108
- package/dist/astrlabe/index.mjs +2 -2
- package/dist/astrlabe/workflow-canvas.js +2 -2
- package/dist/astrlabe/workflow-canvas.mjs +1 -1
- package/dist/{chunk-3TOG7EQN.mjs → chunk-3VHSRL3N.mjs} +36 -5
- package/dist/chunk-3VHSRL3N.mjs.map +1 -0
- package/dist/{chunk-PIFVDMDN.js → chunk-BCE3FQVS.js} +36 -5
- package/dist/chunk-BCE3FQVS.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-3TOG7EQN.mjs.map +0 -1
- package/dist/chunk-PIFVDMDN.js.map +0 -1
package/dist/astrlabe/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
require('../chunk-55H6WZQP.js');
|
|
5
5
|
var chunk5UU3RQRB_js = require('../chunk-5UU3RQRB.js');
|
|
6
|
-
var
|
|
6
|
+
var chunkBCE3FQVS_js = require('../chunk-BCE3FQVS.js');
|
|
7
7
|
var chunkTUEYBNWL_js = require('../chunk-TUEYBNWL.js');
|
|
8
8
|
var chunkYXN2K77G_js = require('../chunk-YXN2K77G.js');
|
|
9
9
|
require('../chunk-S7KHTUHA.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 =
|
|
86
|
+
const frameworkMeta = chunkBCE3FQVS_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(
|
|
362
|
+
const frameworkKeys = Object.keys(chunkBCE3FQVS_js.FRAMEWORK_META);
|
|
363
363
|
const hasProviderConstraints = connectedProviderTypes.length > 0;
|
|
364
|
-
const compatibleModels =
|
|
364
|
+
const compatibleModels = chunkBCE3FQVS_js.getCompatibleModels(models, selectedFramework);
|
|
365
365
|
const handleFrameworkChange = react.useCallback((newFramework) => {
|
|
366
366
|
setSelectedFramework(newFramework);
|
|
367
|
-
if (!
|
|
368
|
-
const compatible =
|
|
367
|
+
if (!chunkBCE3FQVS_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
|
|
368
|
+
const compatible = chunkBCE3FQVS_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 =
|
|
379
|
+
const meta = chunkBCE3FQVS_js.FRAMEWORK_META[key];
|
|
380
380
|
const isSelected = key === selectedFramework;
|
|
381
|
-
const compatCount =
|
|
382
|
-
const isCompatibleWithProviders = !hasProviderConstraints ||
|
|
381
|
+
const compatCount = chunkBCE3FQVS_js.getCompatibleModels(models, key).length;
|
|
382
|
+
const isCompatibleWithProviders = !hasProviderConstraints || chunkBCE3FQVS_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 =
|
|
414
|
+
const isCompatible = chunkBCE3FQVS_js.isModelCompatibleWithFramework(model.id, selectedFramework);
|
|
415
415
|
const { IconComponent, color, providerLabel } = getModelIcon(model.id);
|
|
416
416
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
417
417
|
"button",
|
|
@@ -509,7 +509,7 @@ function PromptTab({ agent, temperature, setTemperature, markDirty, t, promptTex
|
|
|
509
509
|
] });
|
|
510
510
|
}
|
|
511
511
|
function ResultsTab({ agentId, t }) {
|
|
512
|
-
const nodeResults =
|
|
512
|
+
const nodeResults = chunkBCE3FQVS_js.useWorkflowStore((state) => state.nodeResults);
|
|
513
513
|
const agentResult = react.useMemo(() => {
|
|
514
514
|
return nodeResults[agentId] ?? null;
|
|
515
515
|
}, [nodeResults, agentId]);
|
|
@@ -599,10 +599,10 @@ function ModelsTab({ modelProviders, selectedProviderId, onSelectProvider, model
|
|
|
599
599
|
const providerModels = modelsByProvider.find((p) => p.provider.id === selectedProviderId);
|
|
600
600
|
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") });
|
|
601
601
|
const compatibleModels = providerModels.models.filter(
|
|
602
|
-
(m) =>
|
|
602
|
+
(m) => chunkBCE3FQVS_js.isModelCompatibleWithFramework(m.id, agentFramework)
|
|
603
603
|
);
|
|
604
604
|
const incompatibleModels = providerModels.models.filter(
|
|
605
|
-
(m) => !
|
|
605
|
+
(m) => !chunkBCE3FQVS_js.isModelCompatibleWithFramework(m.id, agentFramework)
|
|
606
606
|
);
|
|
607
607
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
608
608
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-2 block text-xs font-medium text-gray-500 dark:text-gray-400", children: t("agentDrawer.selectModel") }),
|
|
@@ -675,7 +675,7 @@ function ToolsTab({ agentTools, enabledToolIds, onToggle, agentFramework, t }) {
|
|
|
675
675
|
] }),
|
|
676
676
|
tool.description && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "truncate text-[10px] text-gray-400 dark:text-gray-500", children: tool.description }),
|
|
677
677
|
tool.compatibleFrameworks && tool.compatibleFrameworks.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-1 flex flex-wrap gap-0.5", children: tool.compatibleFrameworks.map((framework) => {
|
|
678
|
-
const meta =
|
|
678
|
+
const meta = chunkBCE3FQVS_js.getFrameworkMeta(framework);
|
|
679
679
|
const isCurrentFw = framework === agentFramework;
|
|
680
680
|
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: [
|
|
681
681
|
/* @__PURE__ */ jsxRuntime.jsx(meta.IconComponent, { className: "h-2.5 w-2.5" }),
|
|
@@ -851,9 +851,9 @@ function AdvancedTab({
|
|
|
851
851
|
}
|
|
852
852
|
function AgentModal({ onSaved, onPersist }) {
|
|
853
853
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow");
|
|
854
|
-
const activeModal =
|
|
855
|
-
const agentData =
|
|
856
|
-
const closeModal =
|
|
854
|
+
const activeModal = chunkBCE3FQVS_js.useModalStore((s) => s.activeModal);
|
|
855
|
+
const agentData = chunkBCE3FQVS_js.useModalStore((s) => s.agentData);
|
|
856
|
+
const closeModal = chunkBCE3FQVS_js.useModalStore((s) => s.closeModal);
|
|
857
857
|
const open = activeModal === "agent";
|
|
858
858
|
const agent = agentData?.agent ?? null;
|
|
859
859
|
const models = agentData?.models ?? [];
|
|
@@ -1191,7 +1191,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
1191
1191
|
const markDirty = useSubworkflowStore((s) => s.markDirty);
|
|
1192
1192
|
const markSaved = useSubworkflowStore((s) => s.markSaved);
|
|
1193
1193
|
const closeModal = useSubworkflowStore((s) => s.closeModal);
|
|
1194
|
-
const agentBehind =
|
|
1194
|
+
const agentBehind = chunkBCE3FQVS_js.useModalStore((s) => s.activeModal === "agent" ? s.agentData?.agent?.name : null);
|
|
1195
1195
|
const isCreateMode = !tool?.toolId;
|
|
1196
1196
|
const initialGraph = react.useMemo(() => {
|
|
1197
1197
|
const config = tool?.config;
|
|
@@ -1220,9 +1220,9 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
1220
1220
|
}, [tool, onSaved, name, category, description, timeoutMs, latestGraphRef, markSaved]);
|
|
1221
1221
|
if (!tool) return null;
|
|
1222
1222
|
const categoryKey = category ?? "external";
|
|
1223
|
-
const gradient = tool.color ??
|
|
1224
|
-
const categoryPill =
|
|
1225
|
-
const IconComponent =
|
|
1223
|
+
const gradient = tool.color ?? chunkBCE3FQVS_js.CATEGORY_COLORS[categoryKey] ?? chunkBCE3FQVS_js.CATEGORY_COLORS.external;
|
|
1224
|
+
const categoryPill = chunkBCE3FQVS_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunkBCE3FQVS_js.CATEGORY_PILL_COLORS.external;
|
|
1225
|
+
const IconComponent = chunkBCE3FQVS_js.ICON_MAP[tool.icon ?? ""] ?? outline.ArrowPathRoundedSquareIcon;
|
|
1226
1226
|
const graph = latestGraphRef.current;
|
|
1227
1227
|
const startNode = graph.nodes.find((n) => n.type === "start");
|
|
1228
1228
|
const endNode = graph.nodes.find((n) => n.type === "end");
|
|
@@ -1287,7 +1287,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
1287
1287
|
{
|
|
1288
1288
|
type: "button",
|
|
1289
1289
|
onClick: () => setCategory(cat),
|
|
1290
|
-
className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${
|
|
1290
|
+
className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${chunkBCE3FQVS_js.CATEGORY_PILL_COLORS[cat] ?? chunkBCE3FQVS_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"}`,
|
|
1291
1291
|
children: cat
|
|
1292
1292
|
},
|
|
1293
1293
|
cat
|
|
@@ -1374,7 +1374,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
1374
1374
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-auto" })
|
|
1375
1375
|
] }),
|
|
1376
1376
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1377
|
-
|
|
1377
|
+
chunkBCE3FQVS_js.WorkflowCanvas,
|
|
1378
1378
|
{
|
|
1379
1379
|
initialGraph,
|
|
1380
1380
|
agents: [],
|
|
@@ -1390,9 +1390,9 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
1390
1390
|
}
|
|
1391
1391
|
function PipelineSettingsModal({ onSave }) {
|
|
1392
1392
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow");
|
|
1393
|
-
const activeModal =
|
|
1394
|
-
const data =
|
|
1395
|
-
const closeModal =
|
|
1393
|
+
const activeModal = chunkBCE3FQVS_js.useModalStore((s) => s.activeModal);
|
|
1394
|
+
const data = chunkBCE3FQVS_js.useModalStore((s) => s.pipelineSettingsData);
|
|
1395
|
+
const closeModal = chunkBCE3FQVS_js.useModalStore((s) => s.closeModal);
|
|
1396
1396
|
const open = activeModal === "pipeline-settings";
|
|
1397
1397
|
const [nameValue, setNameValue] = react.useState("");
|
|
1398
1398
|
const [descriptionValue, setDescriptionValue] = react.useState("");
|
|
@@ -2266,8 +2266,8 @@ function CollapsibleSection({ title, icon, colorClass, defaultOpen = true, count
|
|
|
2266
2266
|
] });
|
|
2267
2267
|
}
|
|
2268
2268
|
function LogicNodeItemCard({ item, translationFunction }) {
|
|
2269
|
-
const IconComponent =
|
|
2270
|
-
const gradient =
|
|
2269
|
+
const IconComponent = chunkBCE3FQVS_js.LOGIC_ICON_MAP[item.nodeType];
|
|
2270
|
+
const gradient = chunkBCE3FQVS_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
|
|
2271
2271
|
const defaultConfig = chunkC7BI5LQ6_js.createDefaultLogicNodeConfig(item.nodeType);
|
|
2272
2272
|
const configJson = defaultConfig ? JSON.stringify(defaultConfig) : void 0;
|
|
2273
2273
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2525,8 +2525,8 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
2525
2525
|
limit: entity.defaultLimit
|
|
2526
2526
|
});
|
|
2527
2527
|
const dsLogo = getDatasourceLogo(entity.id);
|
|
2528
|
-
const EntityIcon =
|
|
2529
|
-
const entityGradient =
|
|
2528
|
+
const EntityIcon = chunkBCE3FQVS_js.getEntityIcon(entity.id);
|
|
2529
|
+
const entityGradient = chunkBCE3FQVS_js.getEntityGradient(entity.id);
|
|
2530
2530
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2531
2531
|
"div",
|
|
2532
2532
|
{
|
|
@@ -2924,9 +2924,9 @@ function formatDuration2(durationMs) {
|
|
|
2924
2924
|
}
|
|
2925
2925
|
function RunPanel({ open, onClose, onRun, onStop }) {
|
|
2926
2926
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.runPanel");
|
|
2927
|
-
const nodes =
|
|
2928
|
-
const isRunning =
|
|
2929
|
-
const nodeResults =
|
|
2927
|
+
const nodes = chunkBCE3FQVS_js.useWorkflowStore((state) => state.nodes);
|
|
2928
|
+
const isRunning = chunkBCE3FQVS_js.useWorkflowStore((state) => state.isRunning);
|
|
2929
|
+
const nodeResults = chunkBCE3FQVS_js.useWorkflowStore((state) => state.nodeResults);
|
|
2930
2930
|
const startNode = nodes.find((node) => node.type === "start");
|
|
2931
2931
|
const hasEndNode = nodes.some((node) => node.type === "end");
|
|
2932
2932
|
const hasValidStartConfig = Boolean(
|
|
@@ -3214,8 +3214,8 @@ function inferVariables(config, nodeType) {
|
|
|
3214
3214
|
}
|
|
3215
3215
|
function VariableInspector({ open, onClose }) {
|
|
3216
3216
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.variableInspector");
|
|
3217
|
-
const nodes =
|
|
3218
|
-
const edges =
|
|
3217
|
+
const nodes = chunkBCE3FQVS_js.useWorkflowStore((state) => state.nodes);
|
|
3218
|
+
const edges = chunkBCE3FQVS_js.useWorkflowStore((state) => state.edges);
|
|
3219
3219
|
const [expandedNodes, setExpandedNodes] = react.useState(/* @__PURE__ */ new Set());
|
|
3220
3220
|
const toggleNodeExpansion = react.useCallback((nodeId) => {
|
|
3221
3221
|
setExpandedNodes((current) => {
|
|
@@ -3277,8 +3277,8 @@ function VariableInspector({ open, onClose }) {
|
|
|
3277
3277
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-2 text-sm text-gray-500 dark:text-gray-400", children: translations("noNodes") })
|
|
3278
3278
|
] }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "divide-y divide-gray-100 dark:divide-gray-800", children: nodeVariableEntries.map((entry) => {
|
|
3279
3279
|
const isExpanded = expandedNodes.has(entry.nodeId);
|
|
3280
|
-
const IconComponent =
|
|
3281
|
-
const gradient =
|
|
3280
|
+
const IconComponent = chunkBCE3FQVS_js.LOGIC_ICON_MAP[entry.nodeType];
|
|
3281
|
+
const gradient = chunkBCE3FQVS_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
|
|
3282
3282
|
const inputVariables = entry.variables.filter((variable) => variable.direction === "input");
|
|
3283
3283
|
const outputVariables = entry.variables.filter((variable) => variable.direction === "output");
|
|
3284
3284
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": `variable-node-${entry.nodeId}`, children: [
|
|
@@ -3344,7 +3344,7 @@ function RunInputDialog({
|
|
|
3344
3344
|
onRun
|
|
3345
3345
|
}) {
|
|
3346
3346
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow.runInputDialog");
|
|
3347
|
-
const nodes =
|
|
3347
|
+
const nodes = chunkBCE3FQVS_js.useWorkflowStore((state) => state.nodes);
|
|
3348
3348
|
const [values, setValues] = react.useState({});
|
|
3349
3349
|
const inputVariableNames = react.useMemo(() => {
|
|
3350
3350
|
const storeStartNode = nodes.find((node) => node.type === "start");
|
|
@@ -3425,8 +3425,8 @@ function PreviewPanel({ open, onClose, workflowId, loadRuns }) {
|
|
|
3425
3425
|
const [isLoadingRuns, setIsLoadingRuns] = react.useState(false);
|
|
3426
3426
|
const [selectedRun, setSelectedRun] = react.useState(null);
|
|
3427
3427
|
const [selectedNode, setSelectedNode] = react.useState(null);
|
|
3428
|
-
const isRunning =
|
|
3429
|
-
const nodeResults =
|
|
3428
|
+
const isRunning = chunkBCE3FQVS_js.useWorkflowStore((state) => state.isRunning);
|
|
3429
|
+
const nodeResults = chunkBCE3FQVS_js.useWorkflowStore((state) => state.nodeResults);
|
|
3430
3430
|
const refreshRuns = react.useCallback(async () => {
|
|
3431
3431
|
setIsLoadingRuns(true);
|
|
3432
3432
|
try {
|
|
@@ -3582,7 +3582,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
3582
3582
|
onAutoSaveGraph(graph);
|
|
3583
3583
|
}, [onAutoSaveGraph, onGraphSnapshot]);
|
|
3584
3584
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3585
|
-
|
|
3585
|
+
chunkBCE3FQVS_js.Workspace,
|
|
3586
3586
|
{
|
|
3587
3587
|
...workspaceProps,
|
|
3588
3588
|
onGraphChange: handleGraphChange
|
|
@@ -3953,14 +3953,14 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
3953
3953
|
}
|
|
3954
3954
|
|
|
3955
3955
|
// src/astrlabe/store/selectors.ts
|
|
3956
|
-
var useCanUndo = () =>
|
|
3957
|
-
var useCanRedo = () =>
|
|
3958
|
-
var useHasCopied = () =>
|
|
3959
|
-
var useContextMenu = () =>
|
|
3960
|
-
var useEditingNodeId = () =>
|
|
3961
|
-
var useSelectedNodeCount = () =>
|
|
3962
|
-
var useIsRunning = () =>
|
|
3963
|
-
var useNodeResults = () =>
|
|
3956
|
+
var useCanUndo = () => chunkBCE3FQVS_js.useWorkflowStore((state) => state.past.length > 0);
|
|
3957
|
+
var useCanRedo = () => chunkBCE3FQVS_js.useWorkflowStore((state) => state.future.length > 0);
|
|
3958
|
+
var useHasCopied = () => chunkBCE3FQVS_js.useWorkflowStore((state) => state.clipboard !== null);
|
|
3959
|
+
var useContextMenu = () => chunkBCE3FQVS_js.useWorkflowStore((state) => state.contextMenu);
|
|
3960
|
+
var useEditingNodeId = () => chunkBCE3FQVS_js.useWorkflowStore((state) => state.editingNodeId);
|
|
3961
|
+
var useSelectedNodeCount = () => chunkBCE3FQVS_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
|
|
3962
|
+
var useIsRunning = () => chunkBCE3FQVS_js.useWorkflowStore((state) => state.isRunning);
|
|
3963
|
+
var useNodeResults = () => chunkBCE3FQVS_js.useWorkflowStore((state) => state.nodeResults);
|
|
3964
3964
|
var DEFAULT_MAX_HISTORY = 50;
|
|
3965
3965
|
function useUndoRedo(nodes, edges, setNodes, setEdges, maxHistory = DEFAULT_MAX_HISTORY) {
|
|
3966
3966
|
const pastRef = react.useRef([]);
|
|
@@ -4256,239 +4256,239 @@ Object.defineProperty(exports, "validateWorkflowGraph", {
|
|
|
4256
4256
|
});
|
|
4257
4257
|
Object.defineProperty(exports, "AgentFlowNode", {
|
|
4258
4258
|
enumerable: true,
|
|
4259
|
-
get: function () { return
|
|
4259
|
+
get: function () { return chunkBCE3FQVS_js.AgentFlowNode; }
|
|
4260
4260
|
});
|
|
4261
4261
|
Object.defineProperty(exports, "AgentToolFlowNode", {
|
|
4262
4262
|
enumerable: true,
|
|
4263
|
-
get: function () { return
|
|
4263
|
+
get: function () { return chunkBCE3FQVS_js.AgentToolFlowNode; }
|
|
4264
4264
|
});
|
|
4265
4265
|
Object.defineProperty(exports, "AnswerFlowNode", {
|
|
4266
4266
|
enumerable: true,
|
|
4267
|
-
get: function () { return
|
|
4267
|
+
get: function () { return chunkBCE3FQVS_js.AnswerFlowNode; }
|
|
4268
4268
|
});
|
|
4269
4269
|
Object.defineProperty(exports, "AnthropicIcon", {
|
|
4270
4270
|
enumerable: true,
|
|
4271
|
-
get: function () { return
|
|
4271
|
+
get: function () { return chunkBCE3FQVS_js.AnthropicIcon; }
|
|
4272
4272
|
});
|
|
4273
4273
|
Object.defineProperty(exports, "CodeFlowNode", {
|
|
4274
4274
|
enumerable: true,
|
|
4275
|
-
get: function () { return
|
|
4275
|
+
get: function () { return chunkBCE3FQVS_js.CodeFlowNode; }
|
|
4276
4276
|
});
|
|
4277
4277
|
Object.defineProperty(exports, "CrewAIIcon", {
|
|
4278
4278
|
enumerable: true,
|
|
4279
|
-
get: function () { return
|
|
4279
|
+
get: function () { return chunkBCE3FQVS_js.CrewAIIcon; }
|
|
4280
4280
|
});
|
|
4281
4281
|
Object.defineProperty(exports, "DocumentExtractorFlowNode", {
|
|
4282
4282
|
enumerable: true,
|
|
4283
|
-
get: function () { return
|
|
4283
|
+
get: function () { return chunkBCE3FQVS_js.DocumentExtractorFlowNode; }
|
|
4284
4284
|
});
|
|
4285
4285
|
Object.defineProperty(exports, "EndFlowNode", {
|
|
4286
4286
|
enumerable: true,
|
|
4287
|
-
get: function () { return
|
|
4287
|
+
get: function () { return chunkBCE3FQVS_js.EndFlowNode; }
|
|
4288
4288
|
});
|
|
4289
4289
|
Object.defineProperty(exports, "EntityFlowNode", {
|
|
4290
4290
|
enumerable: true,
|
|
4291
|
-
get: function () { return
|
|
4291
|
+
get: function () { return chunkBCE3FQVS_js.EntityFlowNode; }
|
|
4292
4292
|
});
|
|
4293
4293
|
Object.defineProperty(exports, "FRAMEWORK_META", {
|
|
4294
4294
|
enumerable: true,
|
|
4295
|
-
get: function () { return
|
|
4295
|
+
get: function () { return chunkBCE3FQVS_js.FRAMEWORK_META; }
|
|
4296
4296
|
});
|
|
4297
4297
|
Object.defineProperty(exports, "GoogleADKIcon", {
|
|
4298
4298
|
enumerable: true,
|
|
4299
|
-
get: function () { return
|
|
4299
|
+
get: function () { return chunkBCE3FQVS_js.GoogleADKIcon; }
|
|
4300
4300
|
});
|
|
4301
4301
|
Object.defineProperty(exports, "GroupFlowNode", {
|
|
4302
4302
|
enumerable: true,
|
|
4303
|
-
get: function () { return
|
|
4303
|
+
get: function () { return chunkBCE3FQVS_js.GroupFlowNode; }
|
|
4304
4304
|
});
|
|
4305
4305
|
Object.defineProperty(exports, "HttpRequestFlowNode", {
|
|
4306
4306
|
enumerable: true,
|
|
4307
|
-
get: function () { return
|
|
4307
|
+
get: function () { return chunkBCE3FQVS_js.HttpRequestFlowNode; }
|
|
4308
4308
|
});
|
|
4309
4309
|
Object.defineProperty(exports, "IfElseFlowNode", {
|
|
4310
4310
|
enumerable: true,
|
|
4311
|
-
get: function () { return
|
|
4311
|
+
get: function () { return chunkBCE3FQVS_js.IfElseFlowNode; }
|
|
4312
4312
|
});
|
|
4313
4313
|
Object.defineProperty(exports, "IterationFlowNode", {
|
|
4314
4314
|
enumerable: true,
|
|
4315
|
-
get: function () { return
|
|
4315
|
+
get: function () { return chunkBCE3FQVS_js.IterationFlowNode; }
|
|
4316
4316
|
});
|
|
4317
4317
|
Object.defineProperty(exports, "IterationStartFlowNode", {
|
|
4318
4318
|
enumerable: true,
|
|
4319
|
-
get: function () { return
|
|
4319
|
+
get: function () { return chunkBCE3FQVS_js.IterationStartFlowNode; }
|
|
4320
4320
|
});
|
|
4321
4321
|
Object.defineProperty(exports, "KnowledgeBaseFlowNode", {
|
|
4322
4322
|
enumerable: true,
|
|
4323
|
-
get: function () { return
|
|
4323
|
+
get: function () { return chunkBCE3FQVS_js.KnowledgeBaseFlowNode; }
|
|
4324
4324
|
});
|
|
4325
4325
|
Object.defineProperty(exports, "LOGIC_ICON_MAP", {
|
|
4326
4326
|
enumerable: true,
|
|
4327
|
-
get: function () { return
|
|
4327
|
+
get: function () { return chunkBCE3FQVS_js.LOGIC_ICON_MAP; }
|
|
4328
4328
|
});
|
|
4329
4329
|
Object.defineProperty(exports, "LOGIC_NODE_BADGE_COLORS", {
|
|
4330
4330
|
enumerable: true,
|
|
4331
|
-
get: function () { return
|
|
4331
|
+
get: function () { return chunkBCE3FQVS_js.LOGIC_NODE_BADGE_COLORS; }
|
|
4332
4332
|
});
|
|
4333
4333
|
Object.defineProperty(exports, "LOGIC_NODE_GRADIENTS", {
|
|
4334
4334
|
enumerable: true,
|
|
4335
|
-
get: function () { return
|
|
4335
|
+
get: function () { return chunkBCE3FQVS_js.LOGIC_NODE_GRADIENTS; }
|
|
4336
4336
|
});
|
|
4337
4337
|
Object.defineProperty(exports, "LOGIC_NODE_HANDLE_COLORS", {
|
|
4338
4338
|
enumerable: true,
|
|
4339
|
-
get: function () { return
|
|
4339
|
+
get: function () { return chunkBCE3FQVS_js.LOGIC_NODE_HANDLE_COLORS; }
|
|
4340
4340
|
});
|
|
4341
4341
|
Object.defineProperty(exports, "LangChainIcon", {
|
|
4342
4342
|
enumerable: true,
|
|
4343
|
-
get: function () { return
|
|
4343
|
+
get: function () { return chunkBCE3FQVS_js.LangChainIcon; }
|
|
4344
4344
|
});
|
|
4345
4345
|
Object.defineProperty(exports, "ListOperatorFlowNode", {
|
|
4346
4346
|
enumerable: true,
|
|
4347
|
-
get: function () { return
|
|
4347
|
+
get: function () { return chunkBCE3FQVS_js.ListOperatorFlowNode; }
|
|
4348
4348
|
});
|
|
4349
4349
|
Object.defineProperty(exports, "LogicNodeModal", {
|
|
4350
4350
|
enumerable: true,
|
|
4351
|
-
get: function () { return
|
|
4351
|
+
get: function () { return chunkBCE3FQVS_js.LogicNodeModal; }
|
|
4352
4352
|
});
|
|
4353
4353
|
Object.defineProperty(exports, "MINIMAP_NODE_COLORS", {
|
|
4354
4354
|
enumerable: true,
|
|
4355
|
-
get: function () { return
|
|
4355
|
+
get: function () { return chunkBCE3FQVS_js.MINIMAP_NODE_COLORS; }
|
|
4356
4356
|
});
|
|
4357
4357
|
Object.defineProperty(exports, "ModelProviderFlowNode", {
|
|
4358
4358
|
enumerable: true,
|
|
4359
|
-
get: function () { return
|
|
4359
|
+
get: function () { return chunkBCE3FQVS_js.ModelProviderFlowNode; }
|
|
4360
4360
|
});
|
|
4361
4361
|
Object.defineProperty(exports, "NODE_EXECUTION_ACCENT_COLORS", {
|
|
4362
4362
|
enumerable: true,
|
|
4363
|
-
get: function () { return
|
|
4363
|
+
get: function () { return chunkBCE3FQVS_js.NODE_EXECUTION_ACCENT_COLORS; }
|
|
4364
4364
|
});
|
|
4365
4365
|
Object.defineProperty(exports, "NodeCard", {
|
|
4366
4366
|
enumerable: true,
|
|
4367
|
-
get: function () { return
|
|
4367
|
+
get: function () { return chunkBCE3FQVS_js.NodeCard; }
|
|
4368
4368
|
});
|
|
4369
4369
|
Object.defineProperty(exports, "NodeContextMenu", {
|
|
4370
4370
|
enumerable: true,
|
|
4371
|
-
get: function () { return
|
|
4371
|
+
get: function () { return chunkBCE3FQVS_js.NodeContextMenu; }
|
|
4372
4372
|
});
|
|
4373
4373
|
Object.defineProperty(exports, "NoteFlowNode", {
|
|
4374
4374
|
enumerable: true,
|
|
4375
|
-
get: function () { return
|
|
4375
|
+
get: function () { return chunkBCE3FQVS_js.NoteFlowNode; }
|
|
4376
4376
|
});
|
|
4377
4377
|
Object.defineProperty(exports, "OpenAIIcon", {
|
|
4378
4378
|
enumerable: true,
|
|
4379
|
-
get: function () { return
|
|
4379
|
+
get: function () { return chunkBCE3FQVS_js.OpenAIIcon; }
|
|
4380
4380
|
});
|
|
4381
4381
|
Object.defineProperty(exports, "PanelContextMenu", {
|
|
4382
4382
|
enumerable: true,
|
|
4383
|
-
get: function () { return
|
|
4383
|
+
get: function () { return chunkBCE3FQVS_js.PanelContextMenu; }
|
|
4384
4384
|
});
|
|
4385
4385
|
Object.defineProperty(exports, "ParameterExtractorFlowNode", {
|
|
4386
4386
|
enumerable: true,
|
|
4387
|
-
get: function () { return
|
|
4387
|
+
get: function () { return chunkBCE3FQVS_js.ParameterExtractorFlowNode; }
|
|
4388
4388
|
});
|
|
4389
4389
|
Object.defineProperty(exports, "QuestionClassifierFlowNode", {
|
|
4390
4390
|
enumerable: true,
|
|
4391
|
-
get: function () { return
|
|
4391
|
+
get: function () { return chunkBCE3FQVS_js.QuestionClassifierFlowNode; }
|
|
4392
4392
|
});
|
|
4393
4393
|
Object.defineProperty(exports, "RuleFlowNode", {
|
|
4394
4394
|
enumerable: true,
|
|
4395
|
-
get: function () { return
|
|
4395
|
+
get: function () { return chunkBCE3FQVS_js.RuleFlowNode; }
|
|
4396
4396
|
});
|
|
4397
4397
|
Object.defineProperty(exports, "SelectionContextMenu", {
|
|
4398
4398
|
enumerable: true,
|
|
4399
|
-
get: function () { return
|
|
4399
|
+
get: function () { return chunkBCE3FQVS_js.SelectionContextMenu; }
|
|
4400
4400
|
});
|
|
4401
4401
|
Object.defineProperty(exports, "StartFlowNode", {
|
|
4402
4402
|
enumerable: true,
|
|
4403
|
-
get: function () { return
|
|
4403
|
+
get: function () { return chunkBCE3FQVS_js.StartFlowNode; }
|
|
4404
4404
|
});
|
|
4405
4405
|
Object.defineProperty(exports, "StrandsIcon", {
|
|
4406
4406
|
enumerable: true,
|
|
4407
|
-
get: function () { return
|
|
4407
|
+
get: function () { return chunkBCE3FQVS_js.StrandsIcon; }
|
|
4408
4408
|
});
|
|
4409
4409
|
Object.defineProperty(exports, "TemplateTransformFlowNode", {
|
|
4410
4410
|
enumerable: true,
|
|
4411
|
-
get: function () { return
|
|
4411
|
+
get: function () { return chunkBCE3FQVS_js.TemplateTransformFlowNode; }
|
|
4412
4412
|
});
|
|
4413
4413
|
Object.defineProperty(exports, "ToolFlowNode", {
|
|
4414
4414
|
enumerable: true,
|
|
4415
|
-
get: function () { return
|
|
4415
|
+
get: function () { return chunkBCE3FQVS_js.ToolFlowNode; }
|
|
4416
4416
|
});
|
|
4417
4417
|
Object.defineProperty(exports, "VariableAggregatorFlowNode", {
|
|
4418
4418
|
enumerable: true,
|
|
4419
|
-
get: function () { return
|
|
4419
|
+
get: function () { return chunkBCE3FQVS_js.VariableAggregatorFlowNode; }
|
|
4420
4420
|
});
|
|
4421
4421
|
Object.defineProperty(exports, "VariableAssignerFlowNode", {
|
|
4422
4422
|
enumerable: true,
|
|
4423
|
-
get: function () { return
|
|
4423
|
+
get: function () { return chunkBCE3FQVS_js.VariableAssignerFlowNode; }
|
|
4424
4424
|
});
|
|
4425
4425
|
Object.defineProperty(exports, "WorkflowBuilderProvider", {
|
|
4426
4426
|
enumerable: true,
|
|
4427
|
-
get: function () { return
|
|
4427
|
+
get: function () { return chunkBCE3FQVS_js.WorkflowBuilderProvider; }
|
|
4428
4428
|
});
|
|
4429
4429
|
Object.defineProperty(exports, "Workspace", {
|
|
4430
4430
|
enumerable: true,
|
|
4431
|
-
get: function () { return
|
|
4431
|
+
get: function () { return chunkBCE3FQVS_js.Workspace; }
|
|
4432
4432
|
});
|
|
4433
4433
|
Object.defineProperty(exports, "getCompatibleModels", {
|
|
4434
4434
|
enumerable: true,
|
|
4435
|
-
get: function () { return
|
|
4435
|
+
get: function () { return chunkBCE3FQVS_js.getCompatibleModels; }
|
|
4436
4436
|
});
|
|
4437
4437
|
Object.defineProperty(exports, "getDefaultFrameworkForModel", {
|
|
4438
4438
|
enumerable: true,
|
|
4439
|
-
get: function () { return
|
|
4439
|
+
get: function () { return chunkBCE3FQVS_js.getDefaultFrameworkForModel; }
|
|
4440
4440
|
});
|
|
4441
4441
|
Object.defineProperty(exports, "getEntityBadgeColor", {
|
|
4442
4442
|
enumerable: true,
|
|
4443
|
-
get: function () { return
|
|
4443
|
+
get: function () { return chunkBCE3FQVS_js.getEntityBadgeColor; }
|
|
4444
4444
|
});
|
|
4445
4445
|
Object.defineProperty(exports, "getEntityGradient", {
|
|
4446
4446
|
enumerable: true,
|
|
4447
|
-
get: function () { return
|
|
4447
|
+
get: function () { return chunkBCE3FQVS_js.getEntityGradient; }
|
|
4448
4448
|
});
|
|
4449
4449
|
Object.defineProperty(exports, "getEntityHandleColor", {
|
|
4450
4450
|
enumerable: true,
|
|
4451
|
-
get: function () { return
|
|
4451
|
+
get: function () { return chunkBCE3FQVS_js.getEntityHandleColor; }
|
|
4452
4452
|
});
|
|
4453
4453
|
Object.defineProperty(exports, "getEntityIcon", {
|
|
4454
4454
|
enumerable: true,
|
|
4455
|
-
get: function () { return
|
|
4455
|
+
get: function () { return chunkBCE3FQVS_js.getEntityIcon; }
|
|
4456
4456
|
});
|
|
4457
4457
|
Object.defineProperty(exports, "getEntityMinimapColor", {
|
|
4458
4458
|
enumerable: true,
|
|
4459
|
-
get: function () { return
|
|
4459
|
+
get: function () { return chunkBCE3FQVS_js.getEntityMinimapColor; }
|
|
4460
4460
|
});
|
|
4461
4461
|
Object.defineProperty(exports, "getFrameworkMeta", {
|
|
4462
4462
|
enumerable: true,
|
|
4463
|
-
get: function () { return
|
|
4463
|
+
get: function () { return chunkBCE3FQVS_js.getFrameworkMeta; }
|
|
4464
4464
|
});
|
|
4465
4465
|
Object.defineProperty(exports, "getNodeExecutionAccent", {
|
|
4466
4466
|
enumerable: true,
|
|
4467
|
-
get: function () { return
|
|
4467
|
+
get: function () { return chunkBCE3FQVS_js.getNodeExecutionAccent; }
|
|
4468
4468
|
});
|
|
4469
4469
|
Object.defineProperty(exports, "getNodeExecutionAccentRgb", {
|
|
4470
4470
|
enumerable: true,
|
|
4471
|
-
get: function () { return
|
|
4471
|
+
get: function () { return chunkBCE3FQVS_js.getNodeExecutionAccentRgb; }
|
|
4472
4472
|
});
|
|
4473
4473
|
Object.defineProperty(exports, "isModelCompatibleWithFramework", {
|
|
4474
4474
|
enumerable: true,
|
|
4475
|
-
get: function () { return
|
|
4475
|
+
get: function () { return chunkBCE3FQVS_js.isModelCompatibleWithFramework; }
|
|
4476
4476
|
});
|
|
4477
4477
|
Object.defineProperty(exports, "useModalStore", {
|
|
4478
4478
|
enumerable: true,
|
|
4479
|
-
get: function () { return
|
|
4479
|
+
get: function () { return chunkBCE3FQVS_js.useModalStore; }
|
|
4480
4480
|
});
|
|
4481
4481
|
Object.defineProperty(exports, "useWorkflowBuilderClient", {
|
|
4482
4482
|
enumerable: true,
|
|
4483
|
-
get: function () { return
|
|
4483
|
+
get: function () { return chunkBCE3FQVS_js.useWorkflowBuilderClient; }
|
|
4484
4484
|
});
|
|
4485
4485
|
Object.defineProperty(exports, "useWorkflowBuilderClientOptional", {
|
|
4486
4486
|
enumerable: true,
|
|
4487
|
-
get: function () { return
|
|
4487
|
+
get: function () { return chunkBCE3FQVS_js.useWorkflowBuilderClientOptional; }
|
|
4488
4488
|
});
|
|
4489
4489
|
Object.defineProperty(exports, "useWorkflowStore", {
|
|
4490
4490
|
enumerable: true,
|
|
4491
|
-
get: function () { return
|
|
4491
|
+
get: function () { return chunkBCE3FQVS_js.useWorkflowStore; }
|
|
4492
4492
|
});
|
|
4493
4493
|
Object.defineProperty(exports, "GraphNodeBadge", {
|
|
4494
4494
|
enumerable: true,
|
package/dist/astrlabe/index.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import '../chunk-JB6RNAD2.mjs';
|
|
3
3
|
export { topologicalSortAgents, validateGraphNodeConfigs, validateNodeConfig, validateWorkflowGraph } from '../chunk-53SRKVKQ.mjs';
|
|
4
|
-
import { Workspace, useModalStore, CATEGORY_COLORS, CATEGORY_PILL_COLORS, ICON_MAP, WorkflowCanvas, getEntityIcon, getEntityGradient, useWorkflowStore, LOGIC_ICON_MAP, LOGIC_NODE_GRADIENTS, getFrameworkMeta, getCompatibleModels, isModelCompatibleWithFramework, FRAMEWORK_META, isFrameworkCompatibleWithProviders } from '../chunk-
|
|
5
|
-
export { AgentFlowNode, AgentToolFlowNode, AnswerFlowNode, AnthropicIcon, CodeFlowNode, CrewAIIcon, DocumentExtractorFlowNode, EndFlowNode, EntityFlowNode, FRAMEWORK_META, GoogleADKIcon, GroupFlowNode, HttpRequestFlowNode, IfElseFlowNode, IterationFlowNode, IterationStartFlowNode, KnowledgeBaseFlowNode, LOGIC_ICON_MAP, LOGIC_NODE_BADGE_COLORS, LOGIC_NODE_GRADIENTS, LOGIC_NODE_HANDLE_COLORS, LangChainIcon, ListOperatorFlowNode, LogicNodeModal, MINIMAP_NODE_COLORS, ModelProviderFlowNode, NODE_EXECUTION_ACCENT_COLORS, NodeCard, NodeContextMenu, NoteFlowNode, OpenAIIcon, PanelContextMenu, ParameterExtractorFlowNode, QuestionClassifierFlowNode, RuleFlowNode, SelectionContextMenu, StartFlowNode, StrandsIcon, TemplateTransformFlowNode, ToolFlowNode, VariableAggregatorFlowNode, VariableAssignerFlowNode, WorkflowBuilderProvider, Workspace, getCompatibleModels, getDefaultFrameworkForModel, getEntityBadgeColor, getEntityGradient, getEntityHandleColor, getEntityIcon, getEntityMinimapColor, getFrameworkMeta, getNodeExecutionAccent, getNodeExecutionAccentRgb, isModelCompatibleWithFramework, useModalStore, useWorkflowBuilderClient, useWorkflowBuilderClientOptional, useWorkflowStore } from '../chunk-
|
|
4
|
+
import { Workspace, useModalStore, CATEGORY_COLORS, CATEGORY_PILL_COLORS, ICON_MAP, WorkflowCanvas, getEntityIcon, getEntityGradient, useWorkflowStore, LOGIC_ICON_MAP, LOGIC_NODE_GRADIENTS, getFrameworkMeta, getCompatibleModels, isModelCompatibleWithFramework, FRAMEWORK_META, isFrameworkCompatibleWithProviders } from '../chunk-3VHSRL3N.mjs';
|
|
5
|
+
export { AgentFlowNode, AgentToolFlowNode, AnswerFlowNode, AnthropicIcon, CodeFlowNode, CrewAIIcon, DocumentExtractorFlowNode, EndFlowNode, EntityFlowNode, FRAMEWORK_META, GoogleADKIcon, GroupFlowNode, HttpRequestFlowNode, IfElseFlowNode, IterationFlowNode, IterationStartFlowNode, KnowledgeBaseFlowNode, LOGIC_ICON_MAP, LOGIC_NODE_BADGE_COLORS, LOGIC_NODE_GRADIENTS, LOGIC_NODE_HANDLE_COLORS, LangChainIcon, ListOperatorFlowNode, LogicNodeModal, MINIMAP_NODE_COLORS, ModelProviderFlowNode, NODE_EXECUTION_ACCENT_COLORS, NodeCard, NodeContextMenu, NoteFlowNode, OpenAIIcon, PanelContextMenu, ParameterExtractorFlowNode, QuestionClassifierFlowNode, RuleFlowNode, SelectionContextMenu, StartFlowNode, StrandsIcon, TemplateTransformFlowNode, ToolFlowNode, VariableAggregatorFlowNode, VariableAssignerFlowNode, WorkflowBuilderProvider, Workspace, getCompatibleModels, getDefaultFrameworkForModel, getEntityBadgeColor, getEntityGradient, getEntityHandleColor, getEntityIcon, getEntityMinimapColor, getFrameworkMeta, getNodeExecutionAccent, getNodeExecutionAccentRgb, isModelCompatibleWithFramework, useModalStore, useWorkflowBuilderClient, useWorkflowBuilderClientOptional, useWorkflowStore } from '../chunk-3VHSRL3N.mjs';
|
|
6
6
|
import { GlassModal, Button, FormInput, FormTextarea, FormSelect, FormGrid, Badge, ToggleSwitch, Input, DynamicIslandConfirm } from '../chunk-LLFU42KC.mjs';
|
|
7
7
|
import { useTranslations } from '../chunk-7VJ7CMMT.mjs';
|
|
8
8
|
import '../chunk-QWG2FMUN.mjs';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var chunkBCE3FQVS_js = require('../chunk-BCE3FQVS.js');
|
|
5
5
|
require('../chunk-TUEYBNWL.js');
|
|
6
6
|
require('../chunk-YXN2K77G.js');
|
|
7
7
|
require('../chunk-S7KHTUHA.js');
|
|
@@ -13,7 +13,7 @@ require('../chunk-C7BI5LQ6.js');
|
|
|
13
13
|
|
|
14
14
|
Object.defineProperty(exports, "Workspace", {
|
|
15
15
|
enumerable: true,
|
|
16
|
-
get: function () { return
|
|
16
|
+
get: function () { return chunkBCE3FQVS_js.Workspace; }
|
|
17
17
|
});
|
|
18
18
|
//# sourceMappingURL=workflow-canvas.js.map
|
|
19
19
|
//# sourceMappingURL=workflow-canvas.js.map
|