@elyra/pipeline-schemas 3.0.110 → 3.0.111

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.
@@ -595,12 +595,13 @@
595
595
  "default": true
596
596
  },
597
597
  "row_selection": {
598
- "description": "Determines how many rows can be selected at a time. 'multiple-edit': select multiple rows and allow the editing of column values for all selected rows.",
598
+ "description": "Determines how many rows can be selected at a time. 'multiple-edit': select multiple rows and allow the editing of column values for all selected rows. 'none': suppress all row selection UI.",
599
599
  "type": "string",
600
600
  "enum": [
601
601
  "single",
602
602
  "multiple",
603
- "multiple-edit"
603
+ "multiple-edit",
604
+ "none"
604
605
  ]
605
606
  },
606
607
  "header": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyra/pipeline-schemas",
3
- "version": "3.0.110",
3
+ "version": "3.0.111",
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",
@@ -760,9 +760,9 @@ export interface ComplexTypeDefinition {
760
760
  */
761
761
  add_remove_rows?: boolean;
762
762
  /**
763
- * Determines how many rows can be selected at a time. 'multiple-edit': select multiple rows and allow the editing of column values for all selected rows.
763
+ * Determines how many rows can be selected at a time. 'multiple-edit': select multiple rows and allow the editing of column values for all selected rows. 'none': suppress all row selection UI.
764
764
  */
765
- row_selection?: "single" | "multiple" | "multiple-edit";
765
+ row_selection?: "single" | "multiple" | "multiple-edit" | "none";
766
766
  /**
767
767
  * Determines if the table header should be displayed
768
768
  */