@knime/scripting-editor 0.0.81 → 0.0.83
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.d.ts +1 -0
- package/dist/initial-data-service-browser-mock.js +22 -10
- package/dist/lib/main.d.ts +2 -3
- package/dist/main.d.ts +1 -0
- package/dist/main.js +4558 -4518
- package/dist/scripting-service-browser-mock.d.ts +1 -0
- package/dist/settings-service-browser-mock.d.ts +1 -0
- package/dist/src/components/CodeEditorControlBar.vue.d.ts +11 -5
- package/dist/src/components/CompactTabBar.vue.d.ts +1 -1
- package/dist/src/components/HeaderBar.vue.d.ts +2 -3
- package/dist/src/components/InputOutputItem.vue.d.ts +3 -3
- package/dist/src/components/InputPortTableView.vue.d.ts +8 -8
- package/dist/src/components/InputPortTables.vue.d.ts +8 -9
- package/dist/src/components/MainEditorPane.vue.d.ts +9 -10
- package/dist/src/components/OutputConsole.vue.d.ts +0 -1
- package/dist/src/components/ScriptingEditorBottomPane.vue.d.ts +44 -19
- package/dist/src/components/SettingsPage.vue.d.ts +0 -1
- package/dist/src/components/ai-assistant/AiButton.vue.d.ts +3 -4
- package/dist/src/components/utils/resizeLogic.d.ts +0 -1
- package/dist/src/consoleHandler.d.ts +0 -1
- package/dist/src/editor.d.ts +0 -1
- package/dist/src/initial-data-service-browser-mock.d.ts +2 -2
- package/dist/src/initial-data-service.d.ts +14 -2
- package/dist/src/lsp/completion.d.ts +1 -2
- package/dist/src/lsp/connection.d.ts +0 -1
- package/dist/src/lsp/diagnostics.d.ts +0 -1
- package/dist/src/lsp/doc-sync.d.ts +0 -1
- package/dist/src/lsp/hover.d.ts +0 -1
- package/dist/src/lsp/knime-io.d.ts +0 -1
- package/dist/src/lsp/mapping-utils.d.ts +0 -1
- package/dist/src/lsp/signature-help.d.ts +1 -2
- package/dist/src/scripting-service-browser-mock.d.ts +0 -1
- package/dist/src/scripting-service.d.ts +0 -1
- package/dist/src/settings-helper.d.ts +0 -1
- package/dist/src/settings-service-browser-mock.d.ts +0 -1
- package/dist/src/store/ai-bar.d.ts +0 -1
- package/dist/src/store/io-selection.d.ts +0 -1
- package/dist/src/store/readOnly.d.ts +0 -1
- package/package.json +19 -19
- package/dist/src/components/ScriptingEditor.vue.d.ts +0 -97
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
import { MenuItem } from '@knime/components';
|
|
2
|
-
import { PaneSizes } from './utils/paneSizes';
|
|
3
|
-
import { GenericNodeSettings } from '../settings-service';
|
|
4
|
-
|
|
5
|
-
type TabItem = {
|
|
6
|
-
label: string;
|
|
7
|
-
value: string;
|
|
8
|
-
};
|
|
9
|
-
interface Props {
|
|
10
|
-
title?: string | null;
|
|
11
|
-
language: string;
|
|
12
|
-
fileName?: string | null;
|
|
13
|
-
rightPaneLayout?: "fixed" | "relative";
|
|
14
|
-
menuItems?: MenuItem[];
|
|
15
|
-
showControlBar?: boolean;
|
|
16
|
-
initialPaneSizes?: PaneSizes;
|
|
17
|
-
rightPaneMinimumWidthInPixel?: number;
|
|
18
|
-
toSettings?: (settings: GenericNodeSettings) => GenericNodeSettings;
|
|
19
|
-
additionalBottomPaneTabContent?: TabItem[];
|
|
20
|
-
}
|
|
21
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
22
|
-
title: null;
|
|
23
|
-
fileName: null;
|
|
24
|
-
rightPaneLayout: string;
|
|
25
|
-
menuItems: () => never[];
|
|
26
|
-
showControlBar: boolean;
|
|
27
|
-
initialPaneSizes: () => {
|
|
28
|
-
left: number;
|
|
29
|
-
right: number;
|
|
30
|
-
bottom: number;
|
|
31
|
-
};
|
|
32
|
-
rightPaneMinimumWidthInPixel: () => 0;
|
|
33
|
-
additionalBottomPaneTabContent: () => TabItem[];
|
|
34
|
-
toSettings: (settings: GenericNodeSettings) => GenericNodeSettings;
|
|
35
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
36
|
-
"menu-item-clicked": (...args: any[]) => void;
|
|
37
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
38
|
-
title: null;
|
|
39
|
-
fileName: null;
|
|
40
|
-
rightPaneLayout: string;
|
|
41
|
-
menuItems: () => never[];
|
|
42
|
-
showControlBar: boolean;
|
|
43
|
-
initialPaneSizes: () => {
|
|
44
|
-
left: number;
|
|
45
|
-
right: number;
|
|
46
|
-
bottom: number;
|
|
47
|
-
};
|
|
48
|
-
rightPaneMinimumWidthInPixel: () => 0;
|
|
49
|
-
additionalBottomPaneTabContent: () => TabItem[];
|
|
50
|
-
toSettings: (settings: GenericNodeSettings) => GenericNodeSettings;
|
|
51
|
-
}>>> & {
|
|
52
|
-
"onMenu-item-clicked"?: ((...args: any[]) => any) | undefined;
|
|
53
|
-
}, {
|
|
54
|
-
title: string | null;
|
|
55
|
-
menuItems: MenuItem<any, any>[];
|
|
56
|
-
showControlBar: boolean;
|
|
57
|
-
fileName: string | null;
|
|
58
|
-
toSettings: (settings: GenericNodeSettings) => GenericNodeSettings;
|
|
59
|
-
initialPaneSizes: PaneSizes;
|
|
60
|
-
rightPaneMinimumWidthInPixel: number;
|
|
61
|
-
rightPaneLayout: "fixed" | "relative";
|
|
62
|
-
additionalBottomPaneTabContent: TabItem[];
|
|
63
|
-
}, {}>, Partial<Record<string, (_: {
|
|
64
|
-
grabFocus: () => void;
|
|
65
|
-
}) => any>> & {
|
|
66
|
-
"settings-title"?(_: {}): any;
|
|
67
|
-
"settings-content"?(_: {}): any;
|
|
68
|
-
editor?(_: {}): any;
|
|
69
|
-
"code-editor-controls"?(_: {
|
|
70
|
-
showButtonText: boolean;
|
|
71
|
-
}): any;
|
|
72
|
-
"right-pane"?(_: {}): any;
|
|
73
|
-
"console-status"?(_: {}): any;
|
|
74
|
-
}>;
|
|
75
|
-
export default _default;
|
|
76
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
77
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
78
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
79
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
80
|
-
} : {
|
|
81
|
-
type: import('vue').PropType<T[K]>;
|
|
82
|
-
required: true;
|
|
83
|
-
};
|
|
84
|
-
};
|
|
85
|
-
type __VLS_WithDefaults<P, D> = {
|
|
86
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
87
|
-
default: D[K];
|
|
88
|
-
}> : P[K];
|
|
89
|
-
};
|
|
90
|
-
type __VLS_Prettify<T> = {
|
|
91
|
-
[K in keyof T]: T[K];
|
|
92
|
-
} & {};
|
|
93
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
94
|
-
new (): {
|
|
95
|
-
$slots: S;
|
|
96
|
-
};
|
|
97
|
-
};
|