Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#136 Add palette specific node properties #137

Merged
merged 2 commits into from
Nov 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,18 @@
"properties": {},
"additionalProperties": true
},
"palette_image": {
"description": "Image name for the node displayed in palette. If omitted the image from 'image' field will be used.",
"type": "string"
},
"palette_class_name": {
"description": "CSS class name applied to the <div> shown in palette for the node",
"type": "string"
},
"palette_disabled": {
"description": "Indicates whether the node in the palette is disabled. If true, prevents the node being dragged or double-clicked from palette.",
"type": "boolean"
},
"decorations": {
"description": "Array of decorations used to decorate nodes",
"type": "array",
Expand Down