@knime/scripting-editor 0.0.26 → 0.0.28

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.
@@ -30,9 +30,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
30
30
  language: string;
31
31
  currentPaneSizes: PaneSizes;
32
32
  }, {}>, {
33
- controls?(_: {
34
- class: string;
35
- }): any;
33
+ controls?(_: {}): any;
36
34
  }>;
37
35
  export default _default;
38
36
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -44,9 +44,12 @@ declare const _default: import("vue").DefineComponent<{
44
44
  type: BooleanConstructor;
45
45
  default: boolean;
46
46
  };
47
+ initialPaneSizes: {
48
+ type: PropType<PaneSizes>;
49
+ default: PaneSizes;
50
+ };
47
51
  }, unknown, {
48
52
  currentPaneSizes: PaneSizes;
49
- initialPaneSizes: PaneSizes;
50
53
  previousPaneSizes: PaneSizes;
51
54
  commonMenuItems: MenuItem[];
52
55
  editorModel: editor.ITextModel | null;
@@ -112,6 +115,10 @@ declare const _default: import("vue").DefineComponent<{
112
115
  type: BooleanConstructor;
113
116
  default: boolean;
114
117
  };
118
+ initialPaneSizes: {
119
+ type: PropType<PaneSizes>;
120
+ default: PaneSizes;
121
+ };
115
122
  }>> & {
116
123
  "onMonaco-created"?: ((...args: any[]) => any) | undefined;
117
124
  "onMenu-item-clicked"?: ((...args: any[]) => any) | undefined;
@@ -123,5 +130,6 @@ declare const _default: import("vue").DefineComponent<{
123
130
  menuItems: MenuItem[];
124
131
  rightPaneLayout: "fixed" | "relative";
125
132
  showControlBar: boolean;
133
+ initialPaneSizes: PaneSizes;
126
134
  }, {}>;
127
135
  export default _default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knime/scripting-editor",
3
3
  "type": "module",
4
- "version": "0.0.26",
4
+ "version": "0.0.28",
5
5
  "description": "Shared Scripting Editor components for KNIME",
6
6
  "author": "KNIME AG, Zurich, Switzerland",
7
7
  "license": "See the file license.txt",