auto-save 2026-05-14 00:02 (+3, ~4)

This commit is contained in:
2026-05-14 00:03:09 +08:00
parent 12daaa2be6
commit 4c11a4ccc4
7 changed files with 530 additions and 13 deletions

View File

@@ -2,6 +2,7 @@
import { type ReactNode } from "react"
import { Handle, Position } from "@xyflow/react"
import { CheckCircle2, Loader2, AlertCircle } from "lucide-react"
import { ResizeRight } from "./resize-handle"
export type NodeKind = "input" | "process" | "ai" | "output"
export type NodeStatus = "pending" | "running" | "done" | "failed"
@@ -74,6 +75,7 @@ export function NodeShell({
</div>
{hasSource && <Handle type="source" position={Position.Right} />}
<ResizeRight />
</div>
)
}