@knime/scripting-editor 0.0.86 → 0.0.88

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.
@@ -1,3 +1,4 @@
1
+ import { l as e } from "./log-BmIREpQ5.js";
1
2
  const o = [
2
3
  {
3
4
  name: "Input table 1",
@@ -20,7 +21,7 @@ const o = [
20
21
  }
21
22
  ]
22
23
  }
23
- ], n = [
24
+ ], r = [
24
25
  {
25
26
  // flow variable port
26
27
  status: "OK",
@@ -31,12 +32,12 @@ const o = [
31
32
  status: "OK",
32
33
  isOptional: !1
33
34
  }
34
- ], r = [
35
+ ], a = [
35
36
  {
36
37
  name: "Output table 1",
37
38
  portType: "table"
38
39
  }
39
- ], a = {
40
+ ], i = {
40
41
  name: "Flow Variables",
41
42
  portType: "flowVariable",
42
43
  subItems: [
@@ -56,7 +57,7 @@ const o = [
56
57
  supported: !1
57
58
  }
58
59
  ]
59
- }, i = {
60
+ }, n = {
60
61
  inputPorts: [
61
62
  {
62
63
  nodeId: "root",
@@ -79,25 +80,23 @@ const o = [
79
80
  ]
80
81
  }, s = {
81
82
  inputObjects: o,
82
- outputObjects: r,
83
- flowVariables: a,
84
- inputPortConfigs: i,
83
+ outputObjects: a,
84
+ flowVariables: i,
85
+ inputPortConfigs: n,
85
86
  kAiConfig: {
86
87
  codeAssistantEnabled: !0,
87
88
  codeAssistantInstalled: !0,
88
89
  hubId: "My Mocked KNIME Hub"
89
90
  },
90
- inputConnectionInfo: n
91
- }, l = (t, ...e) => {
92
- typeof consola > "u" ? console.log(t, ...e) : consola.log(t, ...e);
93
- }, p = (t) => ({
94
- getInitialData: () => (l("Called initial data service mock getInitialData"), Promise.resolve(t ?? s))
91
+ inputConnectionInfo: r
92
+ }, l = (t) => ({
93
+ getInitialData: () => (e("Called initial data service mock getInitialData"), Promise.resolve(t ?? s))
95
94
  });
96
95
  export {
97
- a as DEFAULT_FLOW_VARIABLE_INPUTS,
96
+ i as DEFAULT_FLOW_VARIABLE_INPUTS,
98
97
  s as DEFAULT_INITIAL_DATA,
99
98
  o as DEFAULT_INPUT_OBJECTS,
100
- r as DEFAULT_OUTPUT_OBJECTS,
101
- n as DEFAULT_PORT_INFORMATION,
102
- p as createInitialDataServiceMock
99
+ a as DEFAULT_OUTPUT_OBJECTS,
100
+ r as DEFAULT_PORT_INFORMATION,
101
+ l as createInitialDataServiceMock
103
102
  };
@@ -15,5 +15,6 @@ import { insertionEventHelper, InsertionEvent } from '../src/components/utils/in
15
15
  import { default as OutputTablePreview } from '../src/components/OutputTablePreview.vue';
16
16
  import { getInitialDataService, InitialDataServiceType, GenericInitialData, KAIConfig, PortConfigs, InputConnectionInfo } from '../src/initial-data-service';
17
17
  import { GenericNodeSettings, getSettingsService } from '../src/settings-service';
18
- export { COLUMN_INSERTION_EVENT, CompactTabBar, consoleHandler, editor, initConsoleEventHandler, getInitialDataService, getScriptingService, getSettingsService, insertionEventHelper, MIN_WIDTH_FOR_DISPLAYING_LEFT_PANE, MIN_WIDTH_FOR_DISPLAYING_PANES, OutputConsole, OutputTablePreview, ScriptingEditor, InputOutputPane, setActiveEditorStoreForAi, setConsoleHandler, useShouldFocusBePainted, useReadonlyStore, };
18
+ import { useRegisterScriptSettingsChange } from '../src/components/utils/useRegisterScriptSettingsChange';
19
+ export { COLUMN_INSERTION_EVENT, CompactTabBar, consoleHandler, editor, initConsoleEventHandler, getInitialDataService, getScriptingService, getSettingsService, insertionEventHelper, MIN_WIDTH_FOR_DISPLAYING_LEFT_PANE, MIN_WIDTH_FOR_DISPLAYING_PANES, OutputConsole, OutputTablePreview, ScriptingEditor, InputOutputPane, setActiveEditorStoreForAi, setConsoleHandler, useShouldFocusBePainted, useReadonlyStore, useRegisterScriptSettingsChange, };
19
20
  export type { ConsoleHandler, ConsoleText, GenericInitialData, GenericNodeSettings, InitialDataServiceType, SubItem, InputOutputModel, InsertionEvent, KAIConfig, PortConfigs, InputConnectionInfo, ScriptingServiceType, SettingsMenuItem, UseCodeEditorParams, UseCodeEditorReturn, UseDiffEditorParams, UseDiffEditorReturn, };
@@ -0,0 +1,6 @@
1
+ const n = (o, ...l) => {
2
+ typeof consola > "u" ? console.log(o, ...l) : consola.log(o, ...l);
3
+ };
4
+ export {
5
+ n as l
6
+ };