@elyra/pipeline-schemas 3.0.49 → 3.0.52

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",
@@ -694,7 +717,7 @@
694
717
  },
695
718
  "carbon_icon": {
696
719
  "description": "Host provided name of Carbon icon to display. A callback function is required for the host application to return the jsx icon object imported from @carbon/icons-react library",
697
- "type": "object"
720
+ "type": "string"
698
721
  },
699
722
  "enabled": {
700
723
  "description": "Button will be enabled if true, disabled if false",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyra/pipeline-schemas",
3
- "version": "3.0.49",
3
+ "version": "3.0.52",
4
4
  "description": "pipeline-schemas",
5
5
  "main": "common-pipeline/pipeline-flow/upgrade/upgrade-flow.js",
6
6
  "homepage": "https://github.com/elyra-ai/pipeline-schemas",