@knime/scripting-editor 0.0.32 → 0.0.34

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.
@@ -54,6 +54,11 @@ declare const _default: import("vue").DefineComponent<{
54
54
  commonMenuItems: MenuItem[];
55
55
  editorModel: editor.ITextModel | null;
56
56
  showSettingsPage: boolean;
57
+ bottomPaneOptions: {
58
+ value: string;
59
+ label: string;
60
+ }[];
61
+ bottomPaneActiveTab: import("vue").Ref<string>;
57
62
  }, {
58
63
  usedMainPaneSize(): number;
59
64
  usedHorizontalCodeEditorPaneSize(): number;
@@ -1,5 +1,6 @@
1
1
  import { editor as monaco } from "monaco-editor";
2
2
  import type { ConsoleText } from "./components/OutputConsole.vue";
3
+ import type { InputOutputModel } from "./components/InputOutputItem.vue";
3
4
  export type NodeSettings = {
4
5
  script: string;
5
6
  };
@@ -31,6 +32,9 @@ declare class ScriptingService {
31
32
  pasteToEditor(textToPaste: string): void;
32
33
  supportsCodeAssistant(): Promise<boolean>;
33
34
  inputsAvailable(): Promise<boolean>;
35
+ getFlowVariableInputs(): Promise<InputOutputModel>;
36
+ getInputObjects(): Promise<InputOutputModel[]>;
37
+ getOutputObjects(): Promise<InputOutputModel[]>;
34
38
  }
35
39
  export type ScriptingServiceType = Pick<ScriptingService, keyof ScriptingService>;
36
40
  declare const getScriptingService: (mock?: ScriptingServiceType) => ScriptingServiceType;
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knime/scripting-editor",
3
3
  "type": "module",
4
- "version": "0.0.32",
4
+ "version": "0.0.34",
5
5
  "description": "Shared Scripting Editor components for KNIME",
6
6
  "author": "KNIME AG, Zurich, Switzerland",
7
7
  "license": "See the file license.txt",
@@ -50,6 +50,7 @@
50
50
  "@vue/test-utils": "2.4.1",
51
51
  "@vue/tsconfig": "0.4.0",
52
52
  "eslint": "8.45.0",
53
+ "consola": "2.15.3",
53
54
  "eslint-import-resolver-typescript": "3.5.5",
54
55
  "eslint-plugin-vue": "9.15.1",
55
56
  "husky": "8.0.3",