feat: full screen node

This commit is contained in:
2026-03-11 20:22:32 +01:00
parent 0b8c18a43f
commit 86d264e83a
11 changed files with 151 additions and 12 deletions

View File

@@ -42,6 +42,7 @@ export function registerBuiltinNodes(): void {
title: nodeId ?? '',
}),
connectionLabel: 'adding input',
supportsFullscreen: true,
})
registerNodeType({
@@ -58,6 +59,7 @@ export function registerBuiltinNodes(): void {
menuLabel: 'Renderer',
menuIcon: <Sparkles className={ICON_CLASS} />,
connectionLabel: 'rendering',
supportsFullscreen: true,
})
registerNodeType({
@@ -75,6 +77,7 @@ export function registerBuiltinNodes(): void {
menuLabel: 'Agent',
menuIcon: <Bot className={ICON_CLASS} />,
connectionLabel: 'prompt/context',
supportsFullscreen: true,
})
registerNodeType({
@@ -128,5 +131,6 @@ export function registerBuiltinNodes(): void {
menuIcon: <Code2 className={ICON_CLASS} />,
getResetData: () => ({ body: '' }),
connectionLabel: 'adding input',
supportsFullscreen: true,
})
}