@datatechsolutions/ui 2.11.78 → 2.11.79
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.d.mts +23 -3
- package/dist/astrlabe/index.d.ts +23 -3
- package/dist/astrlabe/index.js +185 -111
- package/dist/astrlabe/index.js.map +1 -1
- package/dist/astrlabe/index.mjs +79 -5
- package/dist/astrlabe/index.mjs.map +1 -1
- package/dist/astrlabe/workflow-canvas.js +2 -2
- package/dist/astrlabe/workflow-canvas.mjs +1 -1
- package/dist/{chunk-3VHSRL3N.mjs → chunk-J3OYJ44D.mjs} +10 -4
- package/dist/chunk-J3OYJ44D.mjs.map +1 -0
- package/dist/{chunk-BCE3FQVS.js → chunk-M7P2TQ6X.js} +10 -4
- package/dist/chunk-M7P2TQ6X.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-3VHSRL3N.mjs.map +0 -1
- package/dist/chunk-BCE3FQVS.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 chunkM7P2TQ6X_js = require('../chunk-M7P2TQ6X.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 = chunkM7P2TQ6X_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(chunkM7P2TQ6X_js.FRAMEWORK_META);
|
|
363
363
|
const hasProviderConstraints = connectedProviderTypes.length > 0;
|
|
364
|
-
const compatibleModels =
|
|
364
|
+
const compatibleModels = chunkM7P2TQ6X_js.getCompatibleModels(models, selectedFramework);
|
|
365
365
|
const handleFrameworkChange = react.useCallback((newFramework) => {
|
|
366
366
|
setSelectedFramework(newFramework);
|
|
367
|
-
if (!
|
|
368
|
-
const compatible =
|
|
367
|
+
if (!chunkM7P2TQ6X_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
|
|
368
|
+
const compatible = chunkM7P2TQ6X_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 = chunkM7P2TQ6X_js.FRAMEWORK_META[key];
|
|
380
380
|
const isSelected = key === selectedFramework;
|
|
381
|
-
const compatCount =
|
|
382
|
-
const isCompatibleWithProviders = !hasProviderConstraints ||
|
|
381
|
+
const compatCount = chunkM7P2TQ6X_js.getCompatibleModels(models, key).length;
|
|
382
|
+
const isCompatibleWithProviders = !hasProviderConstraints || chunkM7P2TQ6X_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 = chunkM7P2TQ6X_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 = chunkM7P2TQ6X_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) => chunkM7P2TQ6X_js.isModelCompatibleWithFramework(m.id, agentFramework)
|
|
603
603
|
);
|
|
604
604
|
const incompatibleModels = providerModels.models.filter(
|
|
605
|
-
(m) => !
|
|
605
|
+
(m) => !chunkM7P2TQ6X_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 = chunkM7P2TQ6X_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 = chunkM7P2TQ6X_js.useModalStore((s) => s.activeModal);
|
|
855
|
+
const agentData = chunkM7P2TQ6X_js.useModalStore((s) => s.agentData);
|
|
856
|
+
const closeModal = chunkM7P2TQ6X_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 = chunkM7P2TQ6X_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 ?? chunkM7P2TQ6X_js.CATEGORY_COLORS[categoryKey] ?? chunkM7P2TQ6X_js.CATEGORY_COLORS.external;
|
|
1224
|
+
const categoryPill = chunkM7P2TQ6X_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunkM7P2TQ6X_js.CATEGORY_PILL_COLORS.external;
|
|
1225
|
+
const IconComponent = chunkM7P2TQ6X_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 ? `${chunkM7P2TQ6X_js.CATEGORY_PILL_COLORS[cat] ?? chunkM7P2TQ6X_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
|
+
chunkM7P2TQ6X_js.WorkflowCanvas,
|
|
1378
1378
|
{
|
|
1379
1379
|
initialGraph,
|
|
1380
1380
|
agents: [],
|
|
@@ -1390,26 +1390,53 @@ 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 = chunkM7P2TQ6X_js.useModalStore((s) => s.activeModal);
|
|
1394
|
+
const data = chunkM7P2TQ6X_js.useModalStore((s) => s.pipelineSettingsData);
|
|
1395
|
+
const closeModal = chunkM7P2TQ6X_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("");
|
|
1399
|
+
const [slugValue, setSlugValue] = react.useState("");
|
|
1400
|
+
const [isDraft, setIsDraft] = react.useState(true);
|
|
1401
|
+
const [isActive, setIsActive] = react.useState(true);
|
|
1399
1402
|
const [isSaving, setIsSaving] = react.useState(false);
|
|
1403
|
+
const lifecycleAvailable = react.useMemo(() => {
|
|
1404
|
+
if (!data) return false;
|
|
1405
|
+
return data.isDraft !== void 0 || data.isActive !== void 0 || data.slug !== void 0;
|
|
1406
|
+
}, [data]);
|
|
1400
1407
|
react.useEffect(() => {
|
|
1401
1408
|
if (data) {
|
|
1402
1409
|
setNameValue(data.name);
|
|
1403
1410
|
setDescriptionValue(data.description);
|
|
1411
|
+
setSlugValue(data.slug ?? "");
|
|
1412
|
+
setIsDraft(data.isDraft ?? true);
|
|
1413
|
+
setIsActive(data.isActive ?? true);
|
|
1404
1414
|
}
|
|
1405
1415
|
}, [data]);
|
|
1406
1416
|
const handleSubmit = async (event) => {
|
|
1407
1417
|
event.preventDefault();
|
|
1408
1418
|
const trimmedName = nameValue.trim();
|
|
1409
1419
|
if (!trimmedName) return;
|
|
1420
|
+
const trimmedDescription = descriptionValue.trim();
|
|
1421
|
+
const trimmedSlug = slugValue.trim();
|
|
1422
|
+
const changes = {
|
|
1423
|
+
name: trimmedName,
|
|
1424
|
+
description: trimmedDescription
|
|
1425
|
+
};
|
|
1426
|
+
if (data) {
|
|
1427
|
+
if (trimmedSlug !== (data.slug ?? "")) {
|
|
1428
|
+
changes.slug = trimmedSlug.length > 0 ? trimmedSlug : null;
|
|
1429
|
+
}
|
|
1430
|
+
if (data.isDraft !== void 0 && isDraft !== data.isDraft) {
|
|
1431
|
+
changes.isDraft = isDraft;
|
|
1432
|
+
}
|
|
1433
|
+
if (data.isActive !== void 0 && isActive !== data.isActive) {
|
|
1434
|
+
changes.isActive = isActive;
|
|
1435
|
+
}
|
|
1436
|
+
}
|
|
1410
1437
|
setIsSaving(true);
|
|
1411
1438
|
try {
|
|
1412
|
-
await onSave(
|
|
1439
|
+
await onSave(changes);
|
|
1413
1440
|
closeModal();
|
|
1414
1441
|
} catch {
|
|
1415
1442
|
} finally {
|
|
@@ -1454,7 +1481,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1454
1481
|
maxWidth: "md",
|
|
1455
1482
|
footer,
|
|
1456
1483
|
onSubmit: handleSubmit,
|
|
1457
|
-
children: /* @__PURE__ */ jsxRuntime.jsxs("form", { id: "pipeline-settings-form", onSubmit: handleSubmit, className: "space-y-
|
|
1484
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("form", { id: "pipeline-settings-form", onSubmit: handleSubmit, className: "space-y-5", children: [
|
|
1458
1485
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1459
1486
|
chunkTUEYBNWL_js.FormInput,
|
|
1460
1487
|
{
|
|
@@ -1474,7 +1501,54 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1474
1501
|
placeholder: t("pipelineDescriptionPlaceholder"),
|
|
1475
1502
|
rows: 4
|
|
1476
1503
|
}
|
|
1477
|
-
)
|
|
1504
|
+
),
|
|
1505
|
+
lifecycleAvailable && /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
1506
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1507
|
+
chunkTUEYBNWL_js.FormInput,
|
|
1508
|
+
{
|
|
1509
|
+
label: t("pipelineSlug", { _: "Slug" }),
|
|
1510
|
+
value: slugValue,
|
|
1511
|
+
onValueChange: setSlugValue,
|
|
1512
|
+
placeholder: "fuel-pricing",
|
|
1513
|
+
hint: t("pipelineSlugHint", {
|
|
1514
|
+
_: "URL-friendly identifier. Leave blank to use the auto-generated one."
|
|
1515
|
+
})
|
|
1516
|
+
}
|
|
1517
|
+
),
|
|
1518
|
+
/* @__PURE__ */ jsxRuntime.jsxs("fieldset", { className: "space-y-2 rounded-xl border border-gray-200/60 bg-gray-50/60 p-3 dark:border-white/10 dark:bg-white/5", children: [
|
|
1519
|
+
/* @__PURE__ */ jsxRuntime.jsx("legend", { className: "px-1 text-xs font-medium text-gray-600 dark:text-gray-300", children: t("pipelineLifecycle", { _: "Lifecycle" }) }),
|
|
1520
|
+
/* @__PURE__ */ jsxRuntime.jsxs("label", { className: "flex items-center justify-between gap-3 text-sm text-gray-700 dark:text-gray-200", children: [
|
|
1521
|
+
/* @__PURE__ */ jsxRuntime.jsxs("span", { children: [
|
|
1522
|
+
t("pipelineIsDraft", { _: "Draft mode" }),
|
|
1523
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "ml-2 text-[11px] text-gray-400", children: isDraft ? t("pipelineIsDraftOn", { _: "Editable \u2014 changes do not affect runs." }) : t("pipelineIsDraftOff", { _: "Published \u2014 edits require a new version." }) })
|
|
1524
|
+
] }),
|
|
1525
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1526
|
+
"input",
|
|
1527
|
+
{
|
|
1528
|
+
type: "checkbox",
|
|
1529
|
+
checked: isDraft,
|
|
1530
|
+
onChange: (event) => setIsDraft(event.target.checked),
|
|
1531
|
+
className: "h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500"
|
|
1532
|
+
}
|
|
1533
|
+
)
|
|
1534
|
+
] }),
|
|
1535
|
+
/* @__PURE__ */ jsxRuntime.jsxs("label", { className: "flex items-center justify-between gap-3 text-sm text-gray-700 dark:text-gray-200", children: [
|
|
1536
|
+
/* @__PURE__ */ jsxRuntime.jsxs("span", { children: [
|
|
1537
|
+
t("pipelineIsActive", { _: "Active" }),
|
|
1538
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "ml-2 text-[11px] text-gray-400", children: isActive ? t("pipelineIsActiveOn", { _: "Visible in listings and runnable." }) : t("pipelineIsActiveOff", { _: "Archived \u2014 hidden from the default listing." }) })
|
|
1539
|
+
] }),
|
|
1540
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1541
|
+
"input",
|
|
1542
|
+
{
|
|
1543
|
+
type: "checkbox",
|
|
1544
|
+
checked: isActive,
|
|
1545
|
+
onChange: (event) => setIsActive(event.target.checked),
|
|
1546
|
+
className: "h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500"
|
|
1547
|
+
}
|
|
1548
|
+
)
|
|
1549
|
+
] })
|
|
1550
|
+
] })
|
|
1551
|
+
] })
|
|
1478
1552
|
] })
|
|
1479
1553
|
}
|
|
1480
1554
|
);
|
|
@@ -2266,8 +2340,8 @@ function CollapsibleSection({ title, icon, colorClass, defaultOpen = true, count
|
|
|
2266
2340
|
] });
|
|
2267
2341
|
}
|
|
2268
2342
|
function LogicNodeItemCard({ item, translationFunction }) {
|
|
2269
|
-
const IconComponent =
|
|
2270
|
-
const gradient =
|
|
2343
|
+
const IconComponent = chunkM7P2TQ6X_js.LOGIC_ICON_MAP[item.nodeType];
|
|
2344
|
+
const gradient = chunkM7P2TQ6X_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
|
|
2271
2345
|
const defaultConfig = chunkC7BI5LQ6_js.createDefaultLogicNodeConfig(item.nodeType);
|
|
2272
2346
|
const configJson = defaultConfig ? JSON.stringify(defaultConfig) : void 0;
|
|
2273
2347
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -2525,8 +2599,8 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
2525
2599
|
limit: entity.defaultLimit
|
|
2526
2600
|
});
|
|
2527
2601
|
const dsLogo = getDatasourceLogo(entity.id);
|
|
2528
|
-
const EntityIcon =
|
|
2529
|
-
const entityGradient =
|
|
2602
|
+
const EntityIcon = chunkM7P2TQ6X_js.getEntityIcon(entity.id);
|
|
2603
|
+
const entityGradient = chunkM7P2TQ6X_js.getEntityGradient(entity.id);
|
|
2530
2604
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2531
2605
|
"div",
|
|
2532
2606
|
{
|
|
@@ -2924,9 +2998,9 @@ function formatDuration2(durationMs) {
|
|
|
2924
2998
|
}
|
|
2925
2999
|
function RunPanel({ open, onClose, onRun, onStop }) {
|
|
2926
3000
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.runPanel");
|
|
2927
|
-
const nodes =
|
|
2928
|
-
const isRunning =
|
|
2929
|
-
const nodeResults =
|
|
3001
|
+
const nodes = chunkM7P2TQ6X_js.useWorkflowStore((state) => state.nodes);
|
|
3002
|
+
const isRunning = chunkM7P2TQ6X_js.useWorkflowStore((state) => state.isRunning);
|
|
3003
|
+
const nodeResults = chunkM7P2TQ6X_js.useWorkflowStore((state) => state.nodeResults);
|
|
2930
3004
|
const startNode = nodes.find((node) => node.type === "start");
|
|
2931
3005
|
const hasEndNode = nodes.some((node) => node.type === "end");
|
|
2932
3006
|
const hasValidStartConfig = Boolean(
|
|
@@ -3214,8 +3288,8 @@ function inferVariables(config, nodeType) {
|
|
|
3214
3288
|
}
|
|
3215
3289
|
function VariableInspector({ open, onClose }) {
|
|
3216
3290
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.variableInspector");
|
|
3217
|
-
const nodes =
|
|
3218
|
-
const edges =
|
|
3291
|
+
const nodes = chunkM7P2TQ6X_js.useWorkflowStore((state) => state.nodes);
|
|
3292
|
+
const edges = chunkM7P2TQ6X_js.useWorkflowStore((state) => state.edges);
|
|
3219
3293
|
const [expandedNodes, setExpandedNodes] = react.useState(/* @__PURE__ */ new Set());
|
|
3220
3294
|
const toggleNodeExpansion = react.useCallback((nodeId) => {
|
|
3221
3295
|
setExpandedNodes((current) => {
|
|
@@ -3277,8 +3351,8 @@ function VariableInspector({ open, onClose }) {
|
|
|
3277
3351
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-2 text-sm text-gray-500 dark:text-gray-400", children: translations("noNodes") })
|
|
3278
3352
|
] }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "divide-y divide-gray-100 dark:divide-gray-800", children: nodeVariableEntries.map((entry) => {
|
|
3279
3353
|
const isExpanded = expandedNodes.has(entry.nodeId);
|
|
3280
|
-
const IconComponent =
|
|
3281
|
-
const gradient =
|
|
3354
|
+
const IconComponent = chunkM7P2TQ6X_js.LOGIC_ICON_MAP[entry.nodeType];
|
|
3355
|
+
const gradient = chunkM7P2TQ6X_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
|
|
3282
3356
|
const inputVariables = entry.variables.filter((variable) => variable.direction === "input");
|
|
3283
3357
|
const outputVariables = entry.variables.filter((variable) => variable.direction === "output");
|
|
3284
3358
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": `variable-node-${entry.nodeId}`, children: [
|
|
@@ -3344,7 +3418,7 @@ function RunInputDialog({
|
|
|
3344
3418
|
onRun
|
|
3345
3419
|
}) {
|
|
3346
3420
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow.runInputDialog");
|
|
3347
|
-
const nodes =
|
|
3421
|
+
const nodes = chunkM7P2TQ6X_js.useWorkflowStore((state) => state.nodes);
|
|
3348
3422
|
const [values, setValues] = react.useState({});
|
|
3349
3423
|
const inputVariableNames = react.useMemo(() => {
|
|
3350
3424
|
const storeStartNode = nodes.find((node) => node.type === "start");
|
|
@@ -3425,8 +3499,8 @@ function PreviewPanel({ open, onClose, workflowId, loadRuns }) {
|
|
|
3425
3499
|
const [isLoadingRuns, setIsLoadingRuns] = react.useState(false);
|
|
3426
3500
|
const [selectedRun, setSelectedRun] = react.useState(null);
|
|
3427
3501
|
const [selectedNode, setSelectedNode] = react.useState(null);
|
|
3428
|
-
const isRunning =
|
|
3429
|
-
const nodeResults =
|
|
3502
|
+
const isRunning = chunkM7P2TQ6X_js.useWorkflowStore((state) => state.isRunning);
|
|
3503
|
+
const nodeResults = chunkM7P2TQ6X_js.useWorkflowStore((state) => state.nodeResults);
|
|
3430
3504
|
const refreshRuns = react.useCallback(async () => {
|
|
3431
3505
|
setIsLoadingRuns(true);
|
|
3432
3506
|
try {
|
|
@@ -3582,7 +3656,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
3582
3656
|
onAutoSaveGraph(graph);
|
|
3583
3657
|
}, [onAutoSaveGraph, onGraphSnapshot]);
|
|
3584
3658
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3585
|
-
|
|
3659
|
+
chunkM7P2TQ6X_js.Workspace,
|
|
3586
3660
|
{
|
|
3587
3661
|
...workspaceProps,
|
|
3588
3662
|
onGraphChange: handleGraphChange
|
|
@@ -3953,14 +4027,14 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
3953
4027
|
}
|
|
3954
4028
|
|
|
3955
4029
|
// 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 = () =>
|
|
4030
|
+
var useCanUndo = () => chunkM7P2TQ6X_js.useWorkflowStore((state) => state.past.length > 0);
|
|
4031
|
+
var useCanRedo = () => chunkM7P2TQ6X_js.useWorkflowStore((state) => state.future.length > 0);
|
|
4032
|
+
var useHasCopied = () => chunkM7P2TQ6X_js.useWorkflowStore((state) => state.clipboard !== null);
|
|
4033
|
+
var useContextMenu = () => chunkM7P2TQ6X_js.useWorkflowStore((state) => state.contextMenu);
|
|
4034
|
+
var useEditingNodeId = () => chunkM7P2TQ6X_js.useWorkflowStore((state) => state.editingNodeId);
|
|
4035
|
+
var useSelectedNodeCount = () => chunkM7P2TQ6X_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
|
|
4036
|
+
var useIsRunning = () => chunkM7P2TQ6X_js.useWorkflowStore((state) => state.isRunning);
|
|
4037
|
+
var useNodeResults = () => chunkM7P2TQ6X_js.useWorkflowStore((state) => state.nodeResults);
|
|
3964
4038
|
var DEFAULT_MAX_HISTORY = 50;
|
|
3965
4039
|
function useUndoRedo(nodes, edges, setNodes, setEdges, maxHistory = DEFAULT_MAX_HISTORY) {
|
|
3966
4040
|
const pastRef = react.useRef([]);
|
|
@@ -4256,239 +4330,239 @@ Object.defineProperty(exports, "validateWorkflowGraph", {
|
|
|
4256
4330
|
});
|
|
4257
4331
|
Object.defineProperty(exports, "AgentFlowNode", {
|
|
4258
4332
|
enumerable: true,
|
|
4259
|
-
get: function () { return
|
|
4333
|
+
get: function () { return chunkM7P2TQ6X_js.AgentFlowNode; }
|
|
4260
4334
|
});
|
|
4261
4335
|
Object.defineProperty(exports, "AgentToolFlowNode", {
|
|
4262
4336
|
enumerable: true,
|
|
4263
|
-
get: function () { return
|
|
4337
|
+
get: function () { return chunkM7P2TQ6X_js.AgentToolFlowNode; }
|
|
4264
4338
|
});
|
|
4265
4339
|
Object.defineProperty(exports, "AnswerFlowNode", {
|
|
4266
4340
|
enumerable: true,
|
|
4267
|
-
get: function () { return
|
|
4341
|
+
get: function () { return chunkM7P2TQ6X_js.AnswerFlowNode; }
|
|
4268
4342
|
});
|
|
4269
4343
|
Object.defineProperty(exports, "AnthropicIcon", {
|
|
4270
4344
|
enumerable: true,
|
|
4271
|
-
get: function () { return
|
|
4345
|
+
get: function () { return chunkM7P2TQ6X_js.AnthropicIcon; }
|
|
4272
4346
|
});
|
|
4273
4347
|
Object.defineProperty(exports, "CodeFlowNode", {
|
|
4274
4348
|
enumerable: true,
|
|
4275
|
-
get: function () { return
|
|
4349
|
+
get: function () { return chunkM7P2TQ6X_js.CodeFlowNode; }
|
|
4276
4350
|
});
|
|
4277
4351
|
Object.defineProperty(exports, "CrewAIIcon", {
|
|
4278
4352
|
enumerable: true,
|
|
4279
|
-
get: function () { return
|
|
4353
|
+
get: function () { return chunkM7P2TQ6X_js.CrewAIIcon; }
|
|
4280
4354
|
});
|
|
4281
4355
|
Object.defineProperty(exports, "DocumentExtractorFlowNode", {
|
|
4282
4356
|
enumerable: true,
|
|
4283
|
-
get: function () { return
|
|
4357
|
+
get: function () { return chunkM7P2TQ6X_js.DocumentExtractorFlowNode; }
|
|
4284
4358
|
});
|
|
4285
4359
|
Object.defineProperty(exports, "EndFlowNode", {
|
|
4286
4360
|
enumerable: true,
|
|
4287
|
-
get: function () { return
|
|
4361
|
+
get: function () { return chunkM7P2TQ6X_js.EndFlowNode; }
|
|
4288
4362
|
});
|
|
4289
4363
|
Object.defineProperty(exports, "EntityFlowNode", {
|
|
4290
4364
|
enumerable: true,
|
|
4291
|
-
get: function () { return
|
|
4365
|
+
get: function () { return chunkM7P2TQ6X_js.EntityFlowNode; }
|
|
4292
4366
|
});
|
|
4293
4367
|
Object.defineProperty(exports, "FRAMEWORK_META", {
|
|
4294
4368
|
enumerable: true,
|
|
4295
|
-
get: function () { return
|
|
4369
|
+
get: function () { return chunkM7P2TQ6X_js.FRAMEWORK_META; }
|
|
4296
4370
|
});
|
|
4297
4371
|
Object.defineProperty(exports, "GoogleADKIcon", {
|
|
4298
4372
|
enumerable: true,
|
|
4299
|
-
get: function () { return
|
|
4373
|
+
get: function () { return chunkM7P2TQ6X_js.GoogleADKIcon; }
|
|
4300
4374
|
});
|
|
4301
4375
|
Object.defineProperty(exports, "GroupFlowNode", {
|
|
4302
4376
|
enumerable: true,
|
|
4303
|
-
get: function () { return
|
|
4377
|
+
get: function () { return chunkM7P2TQ6X_js.GroupFlowNode; }
|
|
4304
4378
|
});
|
|
4305
4379
|
Object.defineProperty(exports, "HttpRequestFlowNode", {
|
|
4306
4380
|
enumerable: true,
|
|
4307
|
-
get: function () { return
|
|
4381
|
+
get: function () { return chunkM7P2TQ6X_js.HttpRequestFlowNode; }
|
|
4308
4382
|
});
|
|
4309
4383
|
Object.defineProperty(exports, "IfElseFlowNode", {
|
|
4310
4384
|
enumerable: true,
|
|
4311
|
-
get: function () { return
|
|
4385
|
+
get: function () { return chunkM7P2TQ6X_js.IfElseFlowNode; }
|
|
4312
4386
|
});
|
|
4313
4387
|
Object.defineProperty(exports, "IterationFlowNode", {
|
|
4314
4388
|
enumerable: true,
|
|
4315
|
-
get: function () { return
|
|
4389
|
+
get: function () { return chunkM7P2TQ6X_js.IterationFlowNode; }
|
|
4316
4390
|
});
|
|
4317
4391
|
Object.defineProperty(exports, "IterationStartFlowNode", {
|
|
4318
4392
|
enumerable: true,
|
|
4319
|
-
get: function () { return
|
|
4393
|
+
get: function () { return chunkM7P2TQ6X_js.IterationStartFlowNode; }
|
|
4320
4394
|
});
|
|
4321
4395
|
Object.defineProperty(exports, "KnowledgeBaseFlowNode", {
|
|
4322
4396
|
enumerable: true,
|
|
4323
|
-
get: function () { return
|
|
4397
|
+
get: function () { return chunkM7P2TQ6X_js.KnowledgeBaseFlowNode; }
|
|
4324
4398
|
});
|
|
4325
4399
|
Object.defineProperty(exports, "LOGIC_ICON_MAP", {
|
|
4326
4400
|
enumerable: true,
|
|
4327
|
-
get: function () { return
|
|
4401
|
+
get: function () { return chunkM7P2TQ6X_js.LOGIC_ICON_MAP; }
|
|
4328
4402
|
});
|
|
4329
4403
|
Object.defineProperty(exports, "LOGIC_NODE_BADGE_COLORS", {
|
|
4330
4404
|
enumerable: true,
|
|
4331
|
-
get: function () { return
|
|
4405
|
+
get: function () { return chunkM7P2TQ6X_js.LOGIC_NODE_BADGE_COLORS; }
|
|
4332
4406
|
});
|
|
4333
4407
|
Object.defineProperty(exports, "LOGIC_NODE_GRADIENTS", {
|
|
4334
4408
|
enumerable: true,
|
|
4335
|
-
get: function () { return
|
|
4409
|
+
get: function () { return chunkM7P2TQ6X_js.LOGIC_NODE_GRADIENTS; }
|
|
4336
4410
|
});
|
|
4337
4411
|
Object.defineProperty(exports, "LOGIC_NODE_HANDLE_COLORS", {
|
|
4338
4412
|
enumerable: true,
|
|
4339
|
-
get: function () { return
|
|
4413
|
+
get: function () { return chunkM7P2TQ6X_js.LOGIC_NODE_HANDLE_COLORS; }
|
|
4340
4414
|
});
|
|
4341
4415
|
Object.defineProperty(exports, "LangChainIcon", {
|
|
4342
4416
|
enumerable: true,
|
|
4343
|
-
get: function () { return
|
|
4417
|
+
get: function () { return chunkM7P2TQ6X_js.LangChainIcon; }
|
|
4344
4418
|
});
|
|
4345
4419
|
Object.defineProperty(exports, "ListOperatorFlowNode", {
|
|
4346
4420
|
enumerable: true,
|
|
4347
|
-
get: function () { return
|
|
4421
|
+
get: function () { return chunkM7P2TQ6X_js.ListOperatorFlowNode; }
|
|
4348
4422
|
});
|
|
4349
4423
|
Object.defineProperty(exports, "LogicNodeModal", {
|
|
4350
4424
|
enumerable: true,
|
|
4351
|
-
get: function () { return
|
|
4425
|
+
get: function () { return chunkM7P2TQ6X_js.LogicNodeModal; }
|
|
4352
4426
|
});
|
|
4353
4427
|
Object.defineProperty(exports, "MINIMAP_NODE_COLORS", {
|
|
4354
4428
|
enumerable: true,
|
|
4355
|
-
get: function () { return
|
|
4429
|
+
get: function () { return chunkM7P2TQ6X_js.MINIMAP_NODE_COLORS; }
|
|
4356
4430
|
});
|
|
4357
4431
|
Object.defineProperty(exports, "ModelProviderFlowNode", {
|
|
4358
4432
|
enumerable: true,
|
|
4359
|
-
get: function () { return
|
|
4433
|
+
get: function () { return chunkM7P2TQ6X_js.ModelProviderFlowNode; }
|
|
4360
4434
|
});
|
|
4361
4435
|
Object.defineProperty(exports, "NODE_EXECUTION_ACCENT_COLORS", {
|
|
4362
4436
|
enumerable: true,
|
|
4363
|
-
get: function () { return
|
|
4437
|
+
get: function () { return chunkM7P2TQ6X_js.NODE_EXECUTION_ACCENT_COLORS; }
|
|
4364
4438
|
});
|
|
4365
4439
|
Object.defineProperty(exports, "NodeCard", {
|
|
4366
4440
|
enumerable: true,
|
|
4367
|
-
get: function () { return
|
|
4441
|
+
get: function () { return chunkM7P2TQ6X_js.NodeCard; }
|
|
4368
4442
|
});
|
|
4369
4443
|
Object.defineProperty(exports, "NodeContextMenu", {
|
|
4370
4444
|
enumerable: true,
|
|
4371
|
-
get: function () { return
|
|
4445
|
+
get: function () { return chunkM7P2TQ6X_js.NodeContextMenu; }
|
|
4372
4446
|
});
|
|
4373
4447
|
Object.defineProperty(exports, "NoteFlowNode", {
|
|
4374
4448
|
enumerable: true,
|
|
4375
|
-
get: function () { return
|
|
4449
|
+
get: function () { return chunkM7P2TQ6X_js.NoteFlowNode; }
|
|
4376
4450
|
});
|
|
4377
4451
|
Object.defineProperty(exports, "OpenAIIcon", {
|
|
4378
4452
|
enumerable: true,
|
|
4379
|
-
get: function () { return
|
|
4453
|
+
get: function () { return chunkM7P2TQ6X_js.OpenAIIcon; }
|
|
4380
4454
|
});
|
|
4381
4455
|
Object.defineProperty(exports, "PanelContextMenu", {
|
|
4382
4456
|
enumerable: true,
|
|
4383
|
-
get: function () { return
|
|
4457
|
+
get: function () { return chunkM7P2TQ6X_js.PanelContextMenu; }
|
|
4384
4458
|
});
|
|
4385
4459
|
Object.defineProperty(exports, "ParameterExtractorFlowNode", {
|
|
4386
4460
|
enumerable: true,
|
|
4387
|
-
get: function () { return
|
|
4461
|
+
get: function () { return chunkM7P2TQ6X_js.ParameterExtractorFlowNode; }
|
|
4388
4462
|
});
|
|
4389
4463
|
Object.defineProperty(exports, "QuestionClassifierFlowNode", {
|
|
4390
4464
|
enumerable: true,
|
|
4391
|
-
get: function () { return
|
|
4465
|
+
get: function () { return chunkM7P2TQ6X_js.QuestionClassifierFlowNode; }
|
|
4392
4466
|
});
|
|
4393
4467
|
Object.defineProperty(exports, "RuleFlowNode", {
|
|
4394
4468
|
enumerable: true,
|
|
4395
|
-
get: function () { return
|
|
4469
|
+
get: function () { return chunkM7P2TQ6X_js.RuleFlowNode; }
|
|
4396
4470
|
});
|
|
4397
4471
|
Object.defineProperty(exports, "SelectionContextMenu", {
|
|
4398
4472
|
enumerable: true,
|
|
4399
|
-
get: function () { return
|
|
4473
|
+
get: function () { return chunkM7P2TQ6X_js.SelectionContextMenu; }
|
|
4400
4474
|
});
|
|
4401
4475
|
Object.defineProperty(exports, "StartFlowNode", {
|
|
4402
4476
|
enumerable: true,
|
|
4403
|
-
get: function () { return
|
|
4477
|
+
get: function () { return chunkM7P2TQ6X_js.StartFlowNode; }
|
|
4404
4478
|
});
|
|
4405
4479
|
Object.defineProperty(exports, "StrandsIcon", {
|
|
4406
4480
|
enumerable: true,
|
|
4407
|
-
get: function () { return
|
|
4481
|
+
get: function () { return chunkM7P2TQ6X_js.StrandsIcon; }
|
|
4408
4482
|
});
|
|
4409
4483
|
Object.defineProperty(exports, "TemplateTransformFlowNode", {
|
|
4410
4484
|
enumerable: true,
|
|
4411
|
-
get: function () { return
|
|
4485
|
+
get: function () { return chunkM7P2TQ6X_js.TemplateTransformFlowNode; }
|
|
4412
4486
|
});
|
|
4413
4487
|
Object.defineProperty(exports, "ToolFlowNode", {
|
|
4414
4488
|
enumerable: true,
|
|
4415
|
-
get: function () { return
|
|
4489
|
+
get: function () { return chunkM7P2TQ6X_js.ToolFlowNode; }
|
|
4416
4490
|
});
|
|
4417
4491
|
Object.defineProperty(exports, "VariableAggregatorFlowNode", {
|
|
4418
4492
|
enumerable: true,
|
|
4419
|
-
get: function () { return
|
|
4493
|
+
get: function () { return chunkM7P2TQ6X_js.VariableAggregatorFlowNode; }
|
|
4420
4494
|
});
|
|
4421
4495
|
Object.defineProperty(exports, "VariableAssignerFlowNode", {
|
|
4422
4496
|
enumerable: true,
|
|
4423
|
-
get: function () { return
|
|
4497
|
+
get: function () { return chunkM7P2TQ6X_js.VariableAssignerFlowNode; }
|
|
4424
4498
|
});
|
|
4425
4499
|
Object.defineProperty(exports, "WorkflowBuilderProvider", {
|
|
4426
4500
|
enumerable: true,
|
|
4427
|
-
get: function () { return
|
|
4501
|
+
get: function () { return chunkM7P2TQ6X_js.WorkflowBuilderProvider; }
|
|
4428
4502
|
});
|
|
4429
4503
|
Object.defineProperty(exports, "Workspace", {
|
|
4430
4504
|
enumerable: true,
|
|
4431
|
-
get: function () { return
|
|
4505
|
+
get: function () { return chunkM7P2TQ6X_js.Workspace; }
|
|
4432
4506
|
});
|
|
4433
4507
|
Object.defineProperty(exports, "getCompatibleModels", {
|
|
4434
4508
|
enumerable: true,
|
|
4435
|
-
get: function () { return
|
|
4509
|
+
get: function () { return chunkM7P2TQ6X_js.getCompatibleModels; }
|
|
4436
4510
|
});
|
|
4437
4511
|
Object.defineProperty(exports, "getDefaultFrameworkForModel", {
|
|
4438
4512
|
enumerable: true,
|
|
4439
|
-
get: function () { return
|
|
4513
|
+
get: function () { return chunkM7P2TQ6X_js.getDefaultFrameworkForModel; }
|
|
4440
4514
|
});
|
|
4441
4515
|
Object.defineProperty(exports, "getEntityBadgeColor", {
|
|
4442
4516
|
enumerable: true,
|
|
4443
|
-
get: function () { return
|
|
4517
|
+
get: function () { return chunkM7P2TQ6X_js.getEntityBadgeColor; }
|
|
4444
4518
|
});
|
|
4445
4519
|
Object.defineProperty(exports, "getEntityGradient", {
|
|
4446
4520
|
enumerable: true,
|
|
4447
|
-
get: function () { return
|
|
4521
|
+
get: function () { return chunkM7P2TQ6X_js.getEntityGradient; }
|
|
4448
4522
|
});
|
|
4449
4523
|
Object.defineProperty(exports, "getEntityHandleColor", {
|
|
4450
4524
|
enumerable: true,
|
|
4451
|
-
get: function () { return
|
|
4525
|
+
get: function () { return chunkM7P2TQ6X_js.getEntityHandleColor; }
|
|
4452
4526
|
});
|
|
4453
4527
|
Object.defineProperty(exports, "getEntityIcon", {
|
|
4454
4528
|
enumerable: true,
|
|
4455
|
-
get: function () { return
|
|
4529
|
+
get: function () { return chunkM7P2TQ6X_js.getEntityIcon; }
|
|
4456
4530
|
});
|
|
4457
4531
|
Object.defineProperty(exports, "getEntityMinimapColor", {
|
|
4458
4532
|
enumerable: true,
|
|
4459
|
-
get: function () { return
|
|
4533
|
+
get: function () { return chunkM7P2TQ6X_js.getEntityMinimapColor; }
|
|
4460
4534
|
});
|
|
4461
4535
|
Object.defineProperty(exports, "getFrameworkMeta", {
|
|
4462
4536
|
enumerable: true,
|
|
4463
|
-
get: function () { return
|
|
4537
|
+
get: function () { return chunkM7P2TQ6X_js.getFrameworkMeta; }
|
|
4464
4538
|
});
|
|
4465
4539
|
Object.defineProperty(exports, "getNodeExecutionAccent", {
|
|
4466
4540
|
enumerable: true,
|
|
4467
|
-
get: function () { return
|
|
4541
|
+
get: function () { return chunkM7P2TQ6X_js.getNodeExecutionAccent; }
|
|
4468
4542
|
});
|
|
4469
4543
|
Object.defineProperty(exports, "getNodeExecutionAccentRgb", {
|
|
4470
4544
|
enumerable: true,
|
|
4471
|
-
get: function () { return
|
|
4545
|
+
get: function () { return chunkM7P2TQ6X_js.getNodeExecutionAccentRgb; }
|
|
4472
4546
|
});
|
|
4473
4547
|
Object.defineProperty(exports, "isModelCompatibleWithFramework", {
|
|
4474
4548
|
enumerable: true,
|
|
4475
|
-
get: function () { return
|
|
4549
|
+
get: function () { return chunkM7P2TQ6X_js.isModelCompatibleWithFramework; }
|
|
4476
4550
|
});
|
|
4477
4551
|
Object.defineProperty(exports, "useModalStore", {
|
|
4478
4552
|
enumerable: true,
|
|
4479
|
-
get: function () { return
|
|
4553
|
+
get: function () { return chunkM7P2TQ6X_js.useModalStore; }
|
|
4480
4554
|
});
|
|
4481
4555
|
Object.defineProperty(exports, "useWorkflowBuilderClient", {
|
|
4482
4556
|
enumerable: true,
|
|
4483
|
-
get: function () { return
|
|
4557
|
+
get: function () { return chunkM7P2TQ6X_js.useWorkflowBuilderClient; }
|
|
4484
4558
|
});
|
|
4485
4559
|
Object.defineProperty(exports, "useWorkflowBuilderClientOptional", {
|
|
4486
4560
|
enumerable: true,
|
|
4487
|
-
get: function () { return
|
|
4561
|
+
get: function () { return chunkM7P2TQ6X_js.useWorkflowBuilderClientOptional; }
|
|
4488
4562
|
});
|
|
4489
4563
|
Object.defineProperty(exports, "useWorkflowStore", {
|
|
4490
4564
|
enumerable: true,
|
|
4491
|
-
get: function () { return
|
|
4565
|
+
get: function () { return chunkM7P2TQ6X_js.useWorkflowStore; }
|
|
4492
4566
|
});
|
|
4493
4567
|
Object.defineProperty(exports, "GraphNodeBadge", {
|
|
4494
4568
|
enumerable: true,
|