@knime/scripting-editor 0.0.89 → 0.0.90

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.
@@ -2,11 +2,13 @@ import { Component } from 'vue';
2
2
  export type SubItem<PropType extends Record<string, any>> = {
3
3
  name: string;
4
4
  /**
5
- * The type of the subItem. Can be a string, in which case that is displayed as
6
- * the type, or a component with optional props, in which case the component is
7
- * responsible for displaying the type.
5
+ * The type of the subItem that is displayed in the inputOutputPane
8
6
  */
9
- type: string | {
7
+ type: string;
8
+ /**
9
+ * An optional Component that is displayed before the name of the subItem.
10
+ */
11
+ icon?: {
10
12
  component: Component;
11
13
  props?: PropType;
12
14
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knime/scripting-editor",
3
3
  "type": "module",
4
- "version": "0.0.89",
4
+ "version": "0.0.90",
5
5
  "description": "Shared Scripting Editor components for KNIME",
6
6
  "author": "KNIME AG, Zurich, Switzerland",
7
7
  "license": "See the file license.txt",