@knime/scripting-editor 0.0.42 → 0.0.44
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.
|
@@ -15,10 +15,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15
15
|
type: StringConstructor;
|
|
16
16
|
default: null;
|
|
17
17
|
};
|
|
18
|
-
loadScriptFromService: {
|
|
19
|
-
type: BooleanConstructor;
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
18
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "monaco-created"[], "monaco-created", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
19
|
language: {
|
|
24
20
|
type: StringConstructor;
|
|
@@ -36,10 +32,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
36
32
|
type: StringConstructor;
|
|
37
33
|
default: null;
|
|
38
34
|
};
|
|
39
|
-
loadScriptFromService: {
|
|
40
|
-
type: BooleanConstructor;
|
|
41
|
-
default: boolean;
|
|
42
|
-
};
|
|
43
35
|
}>> & {
|
|
44
36
|
"onMonaco-created"?: ((...args: any[]) => any) | undefined;
|
|
45
37
|
}, {
|
|
@@ -47,6 +39,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
47
39
|
fileName: string;
|
|
48
40
|
initialScript: string;
|
|
49
41
|
diffScript: string;
|
|
50
|
-
loadScriptFromService: boolean;
|
|
51
42
|
}, {}>;
|
|
52
43
|
export default _default;
|
|
@@ -3,6 +3,7 @@ import type { ConsoleText } from "./components/OutputConsole.vue";
|
|
|
3
3
|
import type { InputOutputModel } from "./components/InputOutputItem.vue";
|
|
4
4
|
export type NodeSettings = {
|
|
5
5
|
script: string;
|
|
6
|
+
scriptUsedFlowVariable?: string;
|
|
6
7
|
};
|
|
7
8
|
declare class ScriptingService {
|
|
8
9
|
private _knimeService;
|
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.44",
|
|
5
5
|
"description": "Shared Scripting Editor components for KNIME",
|
|
6
6
|
"author": "KNIME AG, Zurich, Switzerland",
|
|
7
7
|
"license": "See the file license.txt",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"install-husky": "cd .. && husky install ./org.knime.scripting.editor.js/.husky"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@knime/ui-extension-service": "0.
|
|
27
|
+
"@knime/ui-extension-service": "0.21.0",
|
|
28
28
|
"@vueuse/core": "10.4.1",
|
|
29
29
|
"handlebars": "4.7.8",
|
|
30
30
|
"monaco-editor": "0.43.0",
|