@knime/scripting-editor 0.0.122 → 0.0.123

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.
@@ -11,6 +11,12 @@ interface Props {
11
11
  * In pixels.
12
12
  */
13
13
  initialPaneSizes?: PaneSizes;
14
+ /**
15
+ * Maximum allowed pane sizes in pixels.
16
+ * Keys correspond to panes in `PaneSizes`; omitted keys fall back to the
17
+ * component's default maximum sizes.
18
+ */
19
+ maxPaneSizes?: Partial<PaneSizes>;
14
20
  /**
15
21
  * Called on apply if the main editor is being used. This function must be implemented
16
22
  * to join the settings from the main editor and other settings like from the
@@ -156,6 +162,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
156
162
  }) => unknown;
157
163
  modelOrView: "model" | "view";
158
164
  initialPaneSizes: PaneSizes;
165
+ maxPaneSizes: Partial<PaneSizes>;
159
166
  additionalBottomPaneTabContent: SlottedTab[];
160
167
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
161
168
  editorSplitPane: HTMLDivElement;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knime/scripting-editor",
3
3
  "type": "module",
4
- "version": "0.0.122",
4
+ "version": "0.0.123",
5
5
  "description": "Shared Scripting Editor components for KNIME",
6
6
  "repository": {
7
7
  "type": "git",