@elyra/pipeline-schemas 3.0.93 → 3.0.95

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.
@@ -228,12 +228,12 @@
228
228
  "type": "number"
229
229
  },
230
230
  "height": {
231
- "description": "Height of the node calculated by Common Canvas based on what customization options are enabled.",
231
+ "description": "@readonly Height of the node calculated by Common Canvas based on what customization options are enabled.",
232
232
  "type": "number",
233
233
  "readOnly": true
234
234
  },
235
235
  "width": {
236
- "description": "Width of the node calculated by Common Canvas based on what customization options are enabled.",
236
+ "description": "@readonly Width of the node calculated by Common Canvas based on what customization options are enabled.",
237
237
  "type": "number",
238
238
  "readOnly": true
239
239
  },
@@ -891,12 +891,12 @@
891
891
  "additionalProperties": false
892
892
  },
893
893
  "srcObj": {
894
- "description": "The source object for the link. This property is added by Common Canvas during processing of links.",
894
+ "description": "@readonly The source object for the link. This property is added by Common Canvas during processing of links.",
895
895
  "$ref": "#/definitions/canvas_node",
896
896
  "readOnly": true
897
897
  },
898
898
  "trgNode": {
899
- "description": "The target object for the link. This property is added by Common Canvas during processing of links.",
899
+ "description": "@readonly The target object for the link. This property is added by Common Canvas during processing of links.",
900
900
  "$ref": "#/definitions/canvas_node",
901
901
  "readOnly": true
902
902
  },
@@ -522,6 +522,11 @@
522
522
  "description": "Determines if a dropdown, outside of a table, can allow a custom value to be entered",
523
523
  "type": "boolean"
524
524
  },
525
+ "should_filter_item": {
526
+ "description": "Determines if a dropdown, outside of a table, can allow the dropdown items to be filtered by the custom value entered",
527
+ "type": "boolean",
528
+ "default": false
529
+ },
525
530
  "class_name": {
526
531
  "description": "Optional class name to set for this control",
527
532
  "type": "string"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyra/pipeline-schemas",
3
- "version": "3.0.93",
3
+ "version": "3.0.95",
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",
@@ -542,13 +542,13 @@ export interface CanvasNodeSharedProperties {
542
542
  */
543
543
  y_pos?: number;
544
544
  /**
545
- * Height of the node calculated by Common Canvas based on what customization options are enabled.
545
+ * @readonly Height of the node calculated by Common Canvas based on what customization options are enabled.
546
546
  */
547
- height?: number;
547
+ readonly height?: number;
548
548
  /**
549
- * Width of the node calculated by Common Canvas based on what customization options are enabled.
549
+ * @readonly Width of the node calculated by Common Canvas based on what customization options are enabled.
550
550
  */
551
- width?: number;
551
+ readonly width?: number;
552
552
  /**
553
553
  * Indicates whether a node has been resized or not. If true, resizeWidth and resizeHeight are used for node display. If false, the default width and height are used.
554
554
  */
@@ -931,13 +931,13 @@ export interface CanvasNodeLink {
931
931
  y_pos: number;
932
932
  };
933
933
  /**
934
- * The source object for the link. This property is added by Common Canvas during processing of links.
934
+ * @readonly The source object for the link. This property is added by Common Canvas during processing of links.
935
935
  */
936
- srcObj?: CanvasExecutionNode | CanvasSupernode | CanvasBindingEntryNode | CanvasBindingExitNode | CanvasModelNode;
936
+ readonly srcObj?: CanvasExecutionNode | CanvasSupernode | CanvasBindingEntryNode | CanvasBindingExitNode | CanvasModelNode;
937
937
  /**
938
- * The target object for the link. This property is added by Common Canvas during processing of links.
938
+ * @readonly The target object for the link. This property is added by Common Canvas during processing of links.
939
939
  */
940
- trgNode?: CanvasExecutionNode | CanvasSupernode | CanvasBindingEntryNode | CanvasBindingExitNode | CanvasModelNode;
940
+ readonly trgNode?: CanvasExecutionNode | CanvasSupernode | CanvasBindingEntryNode | CanvasBindingExitNode | CanvasModelNode;
941
941
  /**
942
942
  * optional link name (used in parameter sets when there are multiple input sources)
943
943
  */