@knime/scripting-editor 0.0.108 → 0.0.110

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/README.md CHANGED
@@ -12,6 +12,16 @@ This package contains the Scripting Editor framework for KNIME Analytics Platfor
12
12
  npm install
13
13
  ```
14
14
 
15
+ ### Run Demo for UI Development
16
+
17
+ ```sh
18
+ npm run demo
19
+ ```
20
+
21
+ Opens a standalone demo at [http://localhost:3000](http://localhost:3000) with mocked backend services. Perfect for developing and testing UI components without needing to link to other projects or rebuild constantly.
22
+
23
+ See [demo/README.md](demo/README.md) for detailed documentation.
24
+
15
25
  ### Compile and Hot-Reload for Development
16
26
 
17
27
  ```sh
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
2
+ export default _default;
File without changes
@@ -0,0 +1,5 @@
1
+ import { GenericInitialData, GenericNodeSettings, InputOutputModel } from '../lib/main';
2
+ export declare const DEFAULT_INPUT_OBJECTS: InputOutputModel[];
3
+ export declare const DEFAULT_FLOW_VARIABLE_INPUTS: InputOutputModel;
4
+ export declare const DEFAULT_INITIAL_DATA: GenericInitialData;
5
+ export declare const DEFAULT_INITIAL_SETTINGS: GenericNodeSettings;
@@ -0,0 +1 @@
1
+ export {};
@@ -6,7 +6,7 @@ import { default as OutputTablePreview } from '../src/components/OutputTablePrev
6
6
  import { default as ScriptingEditor } from '../src/components/ScriptingEditor.vue';
7
7
  import { SettingsMenuItem } from '../src/components/SettingsPage.vue';
8
8
  import { InsertionEvent, insertionEventHelper } from '../src/components/utils/insertionEventHelper';
9
- import { MIN_WIDTH_FOR_DISPLAYING_LEFT_PANE, MIN_WIDTH_FOR_DISPLAYING_PANES } from '../src/components/utils/paneSizes';
9
+ import { PaneSizes } 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
12
  import { displayMode } from '../src/display-mode';
@@ -16,5 +16,5 @@ import { ScriptingServiceType, getScriptingService, initConsoleEventHandler } fr
16
16
  import { GenericNodeSettings, getSettingsService } from '../src/settings-service';
17
17
  import { setActiveEditorStoreForAi } from '../src/store/ai-bar';
18
18
  import { useReadonlyStore } from '../src/store/readOnly';
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, };
20
- export type { ConsoleHandler, ConsoleText, GenericInitialData, GenericNodeSettings, InitialDataServiceType, SubItem, SubItemType, InputOutputModel, InsertionEvent, KAIConfig, PortConfigs, InputConnectionInfo, ScriptingServiceType, SettingsMenuItem, UseCodeEditorParams, UseCodeEditorReturn, UseDiffEditorParams, UseDiffEditorReturn, };
19
+ export { COLUMN_INSERTION_EVENT, CompactTabBar, consoleHandler, displayMode, editor, initConsoleEventHandler, getInitialDataService, getScriptingService, getSettingsService, insertionEventHelper, OutputConsole, OutputTablePreview, ScriptingEditor, InputOutputPane, setActiveEditorStoreForAi, setConsoleHandler, useShouldFocusBePainted, useReadonlyStore, };
20
+ export type { ConsoleHandler, ConsoleText, GenericInitialData, GenericNodeSettings, InitialDataServiceType, SubItem, SubItemType, InputOutputModel, InsertionEvent, KAIConfig, PaneSizes, PortConfigs, InputConnectionInfo, ScriptingServiceType, SettingsMenuItem, UseCodeEditorParams, UseCodeEditorReturn, UseDiffEditorParams, UseDiffEditorReturn, };