@elyra/pipeline-schemas 3.0.69 → 3.0.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +1 -1
- package/.github/workflows/publish.yml +1 -1
- package/CONTRIBUTING.md +1 -1
- package/README.md +1 -1
- package/code-of-conduct.md +1 -1
- package/common-canvas/README.md +1 -1
- package/common-pipeline/pipeline-flow/pipeline-flow-ui-v3-schema.json +12 -0
- package/common-pipeline/pipeline-flow/upgrade/upgrade-flow.js +1 -1
- package/package.json +1 -1
package/.eslintrc.js
CHANGED
package/CONTRIBUTING.md
CHANGED
package/README.md
CHANGED
package/code-of-conduct.md
CHANGED
package/common-canvas/README.md
CHANGED
|
@@ -205,6 +205,18 @@
|
|
|
205
205
|
"properties": {},
|
|
206
206
|
"additionalProperties": true
|
|
207
207
|
},
|
|
208
|
+
"palette_image": {
|
|
209
|
+
"description": "Image name for the node displayed in palette. If omitted the image from 'image' field will be used.",
|
|
210
|
+
"type": "string"
|
|
211
|
+
},
|
|
212
|
+
"palette_class_name": {
|
|
213
|
+
"description": "CSS class name applied to the <div> shown in palette for the node",
|
|
214
|
+
"type": "string"
|
|
215
|
+
},
|
|
216
|
+
"palette_disabled": {
|
|
217
|
+
"description": "Indicates whether the node in the palette is disabled. If true, prevents the node being dragged or double-clicked from palette.",
|
|
218
|
+
"type": "boolean"
|
|
219
|
+
},
|
|
208
220
|
"decorations": {
|
|
209
221
|
"description": "Array of decorations used to decorate nodes",
|
|
210
222
|
"type": "array",
|
package/package.json
CHANGED