690615:1449 237 #01
CI / CD Pipeline / build (push) Failing after 3m41s
CI / CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2026-06-15 14:49:26 +07:00
parent b46c0874f2
commit 4dde6570c1
54 changed files with 7802 additions and 727 deletions
@@ -106,7 +106,7 @@ interface VisualWorkflowBuilderProps {
onDslChange?: (dsl: string) => void;
}
const createNode = (
export const createNode = (
name: string,
yOffset: number,
options?: {
@@ -148,7 +148,7 @@ const createNode = (
};
};
const createEdge = (source: string, target: string, label: string): Edge => ({
export const createEdge = (source: string, target: string, label: string): Edge => ({
id: `e-${source}-${label}-${target}`,
source,
target,
@@ -156,7 +156,7 @@ const createEdge = (source: string, target: string, label: string): Edge => ({
markerEnd: { type: MarkerType.ArrowClosed },
});
function parseDSL(dsl: string): { nodes: Node[]; edges: Edge[] } {
export function parseDSL(dsl: string): { nodes: Node[]; edges: Edge[] } {
const nodes: Node[] = [];
const edges: Edge[] = [];
let yOffset = 50;