@elyra/pipeline-schemas 3.0.50 → 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.
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
"default": true
|
|
213
213
|
},
|
|
214
214
|
"description": {
|
|
215
|
-
"description": "Description of parameter with optional placement context",
|
|
215
|
+
"description": "Description of parameter with optional placement context and optional link",
|
|
216
216
|
"type": "object",
|
|
217
217
|
"allOf": [
|
|
218
218
|
{
|
|
@@ -227,6 +227,24 @@
|
|
|
227
227
|
"on_panel"
|
|
228
228
|
],
|
|
229
229
|
"default": "as_tooltip"
|
|
230
|
+
},
|
|
231
|
+
"link": {
|
|
232
|
+
"description": "Optional link in the description. tooltipLinkHandler callback must be defined whenever link object is added in uiHints.",
|
|
233
|
+
"type": "object",
|
|
234
|
+
"properties": {
|
|
235
|
+
"id": {
|
|
236
|
+
"description": "link id",
|
|
237
|
+
"type": "string"
|
|
238
|
+
},
|
|
239
|
+
"data": {
|
|
240
|
+
"description": "Data passed to the tooltipLinkHandler callback",
|
|
241
|
+
"type": "object",
|
|
242
|
+
"additionalProperties": true
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
"required": [
|
|
246
|
+
"id"
|
|
247
|
+
]
|
|
230
248
|
}
|
|
231
249
|
}
|
|
232
250
|
}
|
|
@@ -347,6 +365,11 @@
|
|
|
347
365
|
"description": "Determines if this column values can be filtered so that only rows that match the filter in column values are shown in the table. Applies to structure parameters and multiselect control only.",
|
|
348
366
|
"type": "boolean"
|
|
349
367
|
},
|
|
368
|
+
"resizable": {
|
|
369
|
+
"description": "Determines if this column can be resized in a table. When a column is resized, width of all the columns to the right of resized column is adjusted. Applies to structure parameters only.",
|
|
370
|
+
"type": "boolean",
|
|
371
|
+
"default": false
|
|
372
|
+
},
|
|
350
373
|
"language": {
|
|
351
374
|
"description": "The language for the expression editor syntax highlight and autocomplete workds. Applies to expression control type.",
|
|
352
375
|
"type": "string",
|
|
@@ -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