@knime/scripting-editor 0.0.103 → 0.0.105
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/main.js +5563 -5439
- package/dist/src/components/CodeEditorControlBar.vue.d.ts +6 -5
- package/dist/src/components/CompactTabBar.vue.d.ts +5 -5
- package/dist/src/components/HeaderBar.vue.d.ts +872 -6
- package/dist/src/components/InfinityLoadingBar.vue.d.ts +1 -1
- package/dist/src/components/InputOutputItem.vue.d.ts +6 -13
- package/dist/src/components/InputOutputPane.vue.d.ts +32 -31
- package/dist/src/components/InputPortTableView.vue.d.ts +1 -18
- package/dist/src/components/InputPortTables.vue.d.ts +1 -18
- package/dist/src/components/MainEditorPane.vue.d.ts +4 -25
- package/dist/src/components/OutputConsole.vue.d.ts +6 -4
- package/dist/src/components/OutputTablePreview.vue.d.ts +2 -2
- package/dist/src/components/ScriptingEditorBottomPane.vue.d.ts +12 -32
- package/dist/src/components/SettingsPage.vue.d.ts +8 -7
- package/dist/src/components/ai-assistant/AiButton.vue.d.ts +203 -12
- package/dist/src/components/ai-assistant/AiDisclaimer.vue.d.ts +2 -6
- package/dist/src/components/ai-assistant/AiPopupContent.vue.d.ts +6 -2
- package/dist/src/components/ai-assistant/AiSuggestion.vue.d.ts +6 -4
- package/dist/src/components/utils/shouldFocusBePainted.d.ts +1 -1
- package/dist/src/display-mode.d.ts +1 -1
- package/dist/src/editor.d.ts +2 -2
- package/dist/src/settings-helper.d.ts +1 -1
- package/dist/src/settings-service-browser-mock.d.ts +1 -1
- package/dist/src/settings-service.d.ts +1 -1
- package/dist/src/store/ai-bar.d.ts +2 -2
- package/package.json +30 -32
|
@@ -14,7 +14,7 @@ export type PromptResponseStore = {
|
|
|
14
14
|
};
|
|
15
15
|
export declare const usePromptResponseStore: () => PromptResponseStore;
|
|
16
16
|
export declare const clearPromptResponseStore: () => void;
|
|
17
|
-
export declare const showDisclaimer: Ref<boolean>;
|
|
18
|
-
export declare const activeEditorStore: import('vue').ShallowRef<UseCodeEditorReturn | undefined>;
|
|
17
|
+
export declare const showDisclaimer: Ref<boolean, boolean>;
|
|
18
|
+
export declare const activeEditorStore: import('vue').ShallowRef<UseCodeEditorReturn | undefined, UseCodeEditorReturn | undefined>;
|
|
19
19
|
export declare const setActiveEditorStoreForAi: (store: UseCodeEditorReturn | undefined) => void;
|
|
20
20
|
export declare const currentInputOutputItems: Ref<InputOutputModel[]>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/scripting-editor",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.105",
|
|
5
5
|
"description": "Shared Scripting Editor components for KNIME",
|
|
6
6
|
"author": "KNIME AG, Zurich, Switzerland",
|
|
7
7
|
"license": "See the file license.txt",
|
|
@@ -21,14 +21,13 @@
|
|
|
21
21
|
"ci:lint:css": "npm run lint:css -- -f json -o test-results/stylelint.json",
|
|
22
22
|
"audit": "npm audit --omit dev",
|
|
23
23
|
"coverage": "vitest run --coverage",
|
|
24
|
-
"install-husky": "cd .. && husky ./org.knime.scripting.editor.js/.husky",
|
|
25
24
|
"postinstall": "license-check -c"
|
|
26
25
|
},
|
|
27
26
|
"dependencies": {
|
|
28
|
-
"@knime/styles": "
|
|
29
|
-
"@knime/ui-extension-renderer": "2.0
|
|
30
|
-
"@knime/utils": "
|
|
31
|
-
"@vueuse/core": "
|
|
27
|
+
"@knime/styles": "1.8.0",
|
|
28
|
+
"@knime/ui-extension-renderer": "2.2.0",
|
|
29
|
+
"@knime/utils": "1.5.3",
|
|
30
|
+
"@vueuse/core": "13.5.0",
|
|
32
31
|
"@xterm/addon-fit": "^0.10.0",
|
|
33
32
|
"@xterm/addon-unicode11": "^0.8.0",
|
|
34
33
|
"@xterm/xterm": "^5.5.0",
|
|
@@ -37,42 +36,41 @@
|
|
|
37
36
|
"vscode-languageserver-protocol": "3.17.5"
|
|
38
37
|
},
|
|
39
38
|
"devDependencies": {
|
|
40
|
-
"@knime/eslint-config": "
|
|
41
|
-
"@knime/licenses": "
|
|
42
|
-
"@
|
|
43
|
-
"@
|
|
39
|
+
"@knime/eslint-config": "9.1.1",
|
|
40
|
+
"@knime/licenses": "1.2.0",
|
|
41
|
+
"@tsconfig/node22": "22.0.2",
|
|
42
|
+
"@types/color-hash": "2.0.0",
|
|
44
43
|
"@types/jsdom": "21.1.7",
|
|
45
44
|
"@types/lodash-es": "^4.17.12",
|
|
46
|
-
"@types/node": "22.
|
|
45
|
+
"@types/node": "22.16.0",
|
|
47
46
|
"@types/splitpanes": "2.2.6",
|
|
48
|
-
"@vitejs/plugin-vue": "5.
|
|
49
|
-
"@vitest/coverage-v8": "2.1.
|
|
50
|
-
"@vue/eslint-config-prettier": "
|
|
51
|
-
"@vue/eslint-config-typescript": "
|
|
47
|
+
"@vitejs/plugin-vue": "5.2.4",
|
|
48
|
+
"@vitest/coverage-v8": "2.1.9",
|
|
49
|
+
"@vue/eslint-config-prettier": "10.2.0",
|
|
50
|
+
"@vue/eslint-config-typescript": "14.6.0",
|
|
52
51
|
"@vue/test-utils": "2.4.6",
|
|
53
|
-
"@vue/tsconfig": "0.
|
|
54
|
-
"consola": "
|
|
55
|
-
"eslint": "
|
|
56
|
-
"eslint-
|
|
57
|
-
"
|
|
58
|
-
"husky": "9.1.6",
|
|
59
|
-
"jsdom": "25.0.1",
|
|
52
|
+
"@vue/tsconfig": "0.7.0",
|
|
53
|
+
"consola": "3.4.2",
|
|
54
|
+
"eslint": "9.30.1",
|
|
55
|
+
"eslint-plugin-vue": "10.3.0",
|
|
56
|
+
"jsdom": "26.1.0",
|
|
60
57
|
"npm-run-all": "4.1.5",
|
|
61
|
-
"prettier": "3.
|
|
62
|
-
"stylelint": "16.
|
|
58
|
+
"prettier": "3.6.2",
|
|
59
|
+
"stylelint": "16.21.1",
|
|
63
60
|
"ts-xor": "1.3.0",
|
|
64
|
-
"vite": "5.4.
|
|
65
|
-
"vite-plugin-css-injected-by-js": "3.5.
|
|
66
|
-
"vite-plugin-dts": "4.
|
|
61
|
+
"vite": "5.4.19",
|
|
62
|
+
"vite-plugin-css-injected-by-js": "3.5.2",
|
|
63
|
+
"vite-plugin-dts": "4.5.4",
|
|
67
64
|
"vite-svg-loader": "5.1.0",
|
|
68
|
-
"vitest": "2.1.
|
|
69
|
-
"
|
|
65
|
+
"vitest": "2.1.9",
|
|
66
|
+
"@knime/components": "1.32.0",
|
|
67
|
+
"vue-tsc": "2.2.12"
|
|
70
68
|
},
|
|
71
69
|
"peerDependencies": {
|
|
72
|
-
"@knime/components": "
|
|
73
|
-
"@knime/ui-extension-service": "
|
|
70
|
+
"@knime/components": "1.32.0",
|
|
71
|
+
"@knime/ui-extension-service": "2.4.0",
|
|
74
72
|
"monaco-editor": "0.45.x",
|
|
75
|
-
"vue": "3.
|
|
73
|
+
"vue": "3.5.17"
|
|
76
74
|
},
|
|
77
75
|
"files": [
|
|
78
76
|
"dist"
|