@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.
- package/dist/main.js +744 -742
- package/dist/src/components/ScriptingEditor.vue.d.ts +7 -0
- package/package.json +1 -1
|
@@ -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;
|