@knime/scripting-editor 0.0.92 → 0.0.94
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/initial-data-service-browser-mock.js +5 -6
- package/dist/lib/main.d.ts +2 -1
- package/dist/main.js +1852 -1869
- package/dist/scripting-service-browser-mock.js +16 -13
- package/dist/src/components/utils/resizeLogic.d.ts +7 -7
- package/dist/src/display-mode.d.ts +10 -0
- package/dist/src/initial-data-service.d.ts +1 -2
- package/dist/src/scripting-service.d.ts +1 -0
- package/package.json +2 -2
|
@@ -78,23 +78,22 @@ const o = [
|
|
|
78
78
|
]
|
|
79
79
|
}
|
|
80
80
|
]
|
|
81
|
-
},
|
|
81
|
+
}, p = {
|
|
82
82
|
inputObjects: o,
|
|
83
83
|
outputObjects: a,
|
|
84
84
|
flowVariables: i,
|
|
85
85
|
inputPortConfigs: n,
|
|
86
86
|
kAiConfig: {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
hubId: "My Mocked KNIME Hub"
|
|
87
|
+
hubId: "My Mocked KNIME Hub",
|
|
88
|
+
isKaiEnabled: !0
|
|
90
89
|
},
|
|
91
90
|
inputConnectionInfo: r
|
|
92
91
|
}, l = (t) => ({
|
|
93
|
-
getInitialData: () => (e("Called initial data service mock getInitialData"), Promise.resolve(t ??
|
|
92
|
+
getInitialData: () => (e("Called initial data service mock getInitialData"), Promise.resolve(t ?? p))
|
|
94
93
|
});
|
|
95
94
|
export {
|
|
96
95
|
i as DEFAULT_FLOW_VARIABLE_INPUTS,
|
|
97
|
-
|
|
96
|
+
p as DEFAULT_INITIAL_DATA,
|
|
98
97
|
o as DEFAULT_INPUT_OBJECTS,
|
|
99
98
|
a as DEFAULT_OUTPUT_OBJECTS,
|
|
100
99
|
r as DEFAULT_PORT_INFORMATION,
|
package/dist/lib/main.d.ts
CHANGED
|
@@ -9,11 +9,12 @@ import { InsertionEvent, insertionEventHelper } from '../src/components/utils/in
|
|
|
9
9
|
import { MIN_WIDTH_FOR_DISPLAYING_LEFT_PANE, MIN_WIDTH_FOR_DISPLAYING_PANES } from '../src/components/utils/paneSizes';
|
|
10
10
|
import { default as useShouldFocusBePainted } from '../src/components/utils/shouldFocusBePainted';
|
|
11
11
|
import { consoleHandler, setConsoleHandler } from '../src/consoleHandler';
|
|
12
|
+
import { displayMode } from '../src/display-mode';
|
|
12
13
|
import { UseCodeEditorParams, UseCodeEditorReturn, UseDiffEditorParams, UseDiffEditorReturn, default as editor } from '../src/editor';
|
|
13
14
|
import { GenericInitialData, InitialDataServiceType, InputConnectionInfo, KAIConfig, PortConfigs, getInitialDataService } from '../src/initial-data-service';
|
|
14
15
|
import { ScriptingServiceType, getScriptingService, initConsoleEventHandler } from '../src/scripting-service';
|
|
15
16
|
import { GenericNodeSettings, getSettingsService } from '../src/settings-service';
|
|
16
17
|
import { setActiveEditorStoreForAi } from '../src/store/ai-bar';
|
|
17
18
|
import { useReadonlyStore } from '../src/store/readOnly';
|
|
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, };
|
|
19
|
+
export { COLUMN_INSERTION_EVENT, CompactTabBar, consoleHandler, displayMode, 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, };
|
|
19
20
|
export type { ConsoleHandler, ConsoleText, GenericInitialData, GenericNodeSettings, InitialDataServiceType, SubItem, InputOutputModel, InsertionEvent, KAIConfig, PortConfigs, InputConnectionInfo, ScriptingServiceType, SettingsMenuItem, UseCodeEditorParams, UseCodeEditorReturn, UseDiffEditorParams, UseDiffEditorReturn, };
|