@knime/scripting-editor 0.0.83 → 0.0.84

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.
@@ -4,7 +4,8 @@ import { default as ScriptingEditor } from '../src/components/ScriptingEditor.vu
4
4
  import { SettingsMenuItem } from '../src/components/SettingsPage.vue';
5
5
  import { default as useShouldFocusBePainted } from '../src/components/utils/shouldFocusBePainted';
6
6
  import { MIN_WIDTH_FOR_DISPLAYING_PANES, MIN_WIDTH_FOR_DISPLAYING_LEFT_PANE } from '../src/components/utils/paneSizes';
7
- import { InputOutputModel, COLUMN_INSERTION_EVENT } from '../src/components/InputOutputItem.vue';
7
+ import { InputOutputModel, SubItem, COLUMN_INSERTION_EVENT } from '../src/components/InputOutputItem.vue';
8
+ import { default as InputOutputPane } from '../src/components/InputOutputPane.vue';
8
9
  import { UseCodeEditorParams, UseCodeEditorReturn, UseDiffEditorParams, UseDiffEditorReturn, default as editor } from '../src/editor';
9
10
  import { useReadonlyStore } from '../src/store/readOnly';
10
11
  import { consoleHandler } from '../src/consoleHandler';
@@ -14,5 +15,5 @@ import { insertionEventHelper, InsertionEvent } from '../src/components/utils/in
14
15
  import { default as OutputTablePreview } from '../src/components/OutputTablePreview.vue';
15
16
  import { getInitialDataService, InitialDataServiceType, GenericInitialData, KAIConfig, PortConfigs, InputConnectionInfo } from '../src/initial-data-service';
16
17
  import { GenericNodeSettings, getSettingsService } from '../src/settings-service';
17
- export { COLUMN_INSERTION_EVENT, CompactTabBar, consoleHandler, editor, getInitialDataService, getScriptingService, getSettingsService, insertionEventHelper, MIN_WIDTH_FOR_DISPLAYING_LEFT_PANE, MIN_WIDTH_FOR_DISPLAYING_PANES, OutputConsole, OutputTablePreview, ScriptingEditor, setActiveEditorStoreForAi, useShouldFocusBePainted, useReadonlyStore, };
18
- export type { ConsoleHandler, ConsoleText, GenericInitialData, GenericNodeSettings, InitialDataServiceType, InputOutputModel, InsertionEvent, KAIConfig, PortConfigs, InputConnectionInfo, ScriptingServiceType, SettingsMenuItem, UseCodeEditorParams, UseCodeEditorReturn, UseDiffEditorParams, UseDiffEditorReturn, };
18
+ export { COLUMN_INSERTION_EVENT, CompactTabBar, consoleHandler, editor, getInitialDataService, getScriptingService, getSettingsService, insertionEventHelper, MIN_WIDTH_FOR_DISPLAYING_LEFT_PANE, MIN_WIDTH_FOR_DISPLAYING_PANES, OutputConsole, OutputTablePreview, ScriptingEditor, InputOutputPane, setActiveEditorStoreForAi, useShouldFocusBePainted, useReadonlyStore, };
19
+ export type { ConsoleHandler, ConsoleText, GenericInitialData, GenericNodeSettings, InitialDataServiceType, SubItem, InputOutputModel, InsertionEvent, KAIConfig, PortConfigs, InputConnectionInfo, ScriptingServiceType, SettingsMenuItem, UseCodeEditorParams, UseCodeEditorReturn, UseDiffEditorParams, UseDiffEditorReturn, };