@elyra/pipeline-schemas 3.0.52 → 3.0.53
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.
|
@@ -159,6 +159,18 @@
|
|
|
159
159
|
"description": "Width of expanded supernode. If not provided an appropriate width is calculated.",
|
|
160
160
|
"type": "number"
|
|
161
161
|
},
|
|
162
|
+
"is_resized": {
|
|
163
|
+
"description": "Indicates whether a node has been resized or not. If true, resize_width and resize_height are used for node display. If false, the default width and height are used.",
|
|
164
|
+
"type": "boolean"
|
|
165
|
+
},
|
|
166
|
+
"resize_height": {
|
|
167
|
+
"description": "Height of resized node. The node will be displayed with this height, when is_resized is true, in preference to its default height.",
|
|
168
|
+
"type": "boolean"
|
|
169
|
+
},
|
|
170
|
+
"resize_width": {
|
|
171
|
+
"description": "Width of resized node. The node will be displayed with this width, when is_resized is true, in preference to its default width.",
|
|
172
|
+
"type": "boolean"
|
|
173
|
+
},
|
|
162
174
|
"attributes": {
|
|
163
175
|
"description": "additional attributes",
|
|
164
176
|
"type": "string"
|
package/package.json
CHANGED