@knime/scripting-editor 0.0.56 → 0.0.57
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/lib/main.d.ts +2 -1
- package/dist/main.js +4799 -4704
- package/dist/scripting-service-Bc8su0xD.js +6143 -0
- package/dist/scripting-service-instance.js +1 -1
- package/dist/src/components/InputOutputItem.vue.d.ts +5 -1
- package/dist/src/components/utils/shouldFocusBePainted.d.ts +7 -0
- package/package.json +1 -1
- package/dist/scripting-service-D2dMGdjE.js +0 -6185
|
@@ -25,7 +25,11 @@ export type InputOutputModel = {
|
|
|
25
25
|
export declare const INPUT_OUTPUT_DRAG_EVENT_ID = "input_output_drag_event";
|
|
26
26
|
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
27
27
|
inputOutputItem: InputOutputModel;
|
|
28
|
-
}>, {
|
|
28
|
+
}>, {
|
|
29
|
+
toggleExpansion: () => void;
|
|
30
|
+
setExpanded: (b: boolean) => void;
|
|
31
|
+
isExpanded: () => any;
|
|
32
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
29
33
|
inputOutputItem: InputOutputModel;
|
|
30
34
|
}>>>, {}, {}>;
|
|
31
35
|
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Composable that returns whether focus is currently painted. It turn focus
|
|
3
|
+
* painting on when the document is navigated using key presses, and off again
|
|
4
|
+
* when the document is clicked.
|
|
5
|
+
*/
|
|
6
|
+
declare const useShouldFocusBePainted: () => import('vue').Ref<boolean>;
|
|
7
|
+
export default useShouldFocusBePainted;
|
package/package.json
CHANGED