feat: Add sticky notes support to the new canvas (no-changelog) (#10031)

This commit is contained in:
Alex Grozav
2024-07-15 13:00:52 +03:00
committed by GitHub
parent 9302e33d55
commit cd24c71a9e
32 changed files with 653 additions and 147 deletions

View File

@@ -5,6 +5,7 @@ import { CanvasNodeRenderType } from '@/types';
export function createCanvasNodeData({
id = 'node',
name = 'Test Node',
type = 'test',
typeVersion = 1,
disabled = false,
@@ -21,13 +22,14 @@ export function createCanvasNodeData({
},
}: Partial<CanvasNodeData> = {}): CanvasNodeData {
return {
id,
name,
type,
typeVersion,
execution,
issues,
pinnedData,
runData,
id,
type,
typeVersion,
disabled,
inputs,
outputs,