@knime/scripting-editor 0.0.92 → 0.0.93
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/lib/main.d.ts +2 -1
- package/dist/main.js +9318 -9341
- package/dist/src/components/utils/resizeLogic.d.ts +7 -7
- package/dist/src/display-mode.d.ts +10 -0
- package/package.json +2 -2
|
@@ -7,9 +7,9 @@ export declare const useResizeLogic: ({ initialPaneSizes, rightPaneMinimumWidthI
|
|
|
7
7
|
rootSplitPaneRef: UseElementBoundingReturn;
|
|
8
8
|
editorSplitPaneRef: UseElementBoundingReturn;
|
|
9
9
|
}) => {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
shouldCollapseAllPanes: import('vue').ComputedRef<boolean>;
|
|
11
|
+
shouldCollapseLeftPane: import('vue').ComputedRef<boolean>;
|
|
12
|
+
shouldShowButtonText: import('vue').ComputedRef<boolean>;
|
|
13
13
|
minRatioOfRightPaneInPercent: import('vue').ComputedRef<number>;
|
|
14
14
|
currentPaneSizes: import('vue').ComputedRef<{
|
|
15
15
|
left: number;
|
|
@@ -22,8 +22,8 @@ export declare const useResizeLogic: ({ initialPaneSizes, rightPaneMinimumWidthI
|
|
|
22
22
|
isLeftPaneCollapsed: import('vue').ComputedRef<boolean>;
|
|
23
23
|
isRightPaneCollapsed: import('vue').ComputedRef<boolean>;
|
|
24
24
|
isBottomPaneCollapsed: import('vue').ComputedRef<boolean>;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
doUpdatePreviousPaneSize: (pane: keyof PaneSizes) => void;
|
|
26
|
+
doResizePane: (size: number, pane: keyof PaneSizes, shouldUpdatePreviousPaneSize?: boolean) => void;
|
|
27
|
+
doUpdateRightPane: (size: number) => void;
|
|
28
|
+
doToggleCollapsePane: (pane: keyof PaneSizes) => void;
|
|
29
29
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Reactive reference for the display mode of the configuration panel.
|
|
3
|
+
*
|
|
4
|
+
* - `"small"`: The configuration panel is displayed alongside the workflow within the UI.
|
|
5
|
+
* - `"large"`: The configuration panel is displayed as an overlay over the UI or in a separate window.
|
|
6
|
+
*
|
|
7
|
+
* The initial value of `displayMode` is dynamically set based on the user's UI configuration.
|
|
8
|
+
* It automatically updates whenever the display mode changes within the `DialogService`.
|
|
9
|
+
*/
|
|
10
|
+
export declare const displayMode: import('vue').Ref<"small" | "large">;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/scripting-editor",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.93",
|
|
5
5
|
"description": "Shared Scripting Editor components for KNIME",
|
|
6
6
|
"author": "KNIME AG, Zurich, Switzerland",
|
|
7
7
|
"license": "See the file license.txt",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"@knime/components": "^1.4.5",
|
|
73
|
-
"@knime/ui-extension-service": "0.
|
|
73
|
+
"@knime/ui-extension-service": "1.0.0",
|
|
74
74
|
"monaco-editor": "0.45.x",
|
|
75
75
|
"vue": "3.4.27"
|
|
76
76
|
},
|