This commit is contained in:
2026-03-06 09:36:20 +01:00
parent 65b7cb37fe
commit fd3addb2cc
2 changed files with 27 additions and 3 deletions

View File

@@ -127,8 +127,19 @@ export default function ConfigNode({ id, data }: Props) {
Stored YAML: {storedYaml ? `${storedYaml.length} chars` : 'none'} Stored YAML: {storedYaml ? `${storedYaml.length} chars` : 'none'}
</div> </div>
<Handle type="source" position={Position.Right} id="out" style={{ background: '#10B981', right: -6 }} /> <Handle
<Handle type="target" position={Position.Left} id="in" style={{ background: '#F97316', left: -6 }} /> type="target"
position={Position.Left}
id="ain"
style={{ background: '#F97316', top: 20, width: 12, height: 12, borderRadius: 3 }}
/>
<Handle
type="source"
position={Position.Right}
id="out"
style={{ background: '#10B981', top: 20, width: 12, height: 12, borderRadius: 3 }}
/>
</div> </div>
) )
} }

View File

@@ -102,7 +102,20 @@ export default function RenderingNode({ id }: Props) {
<div className="text-xs text-gray-400">RENDERER</div> <div className="text-xs text-gray-400">RENDERER</div>
</div> </div>
<pre className="text-xs text-gray-800 max-h-40 overflow-auto p-3">{output}</pre> <pre className="text-xs text-gray-800 max-h-40 overflow-auto p-3">{output}</pre>
<Handle type="target" position={Position.Left} id="in" style={{ background: '#F97316' }} />
<Handle
type="target"
position={Position.Left}
id="ain"
style={{ background: '#F97316', top: 20, width: 12, height: 12, borderRadius: 3 }}
/>
<Handle
type="source"
position={Position.Right}
id="out"
style={{ background: '#10B981', top: 20, width: 12, height: 12, borderRadius: 3 }}
/>
</div> </div>
) )
} }