@knime/scripting-editor 0.0.25 → 0.0.27

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.
@@ -30,9 +30,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
30
30
  language: string;
31
31
  currentPaneSizes: PaneSizes;
32
32
  }, {}>, {
33
- controls?(_: {
34
- class: string;
35
- }): any;
33
+ controls?(_: {}): any;
36
34
  }>;
37
35
  export default _default;
38
36
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -12,6 +12,13 @@ export declare class MonacoLSPConnection {
12
12
  */
13
13
  static create(editorModel: editor.ITextModel, reader: MessageReader, writer: MessageWriter): Promise<MonacoLSPConnection>;
14
14
  private _connection;
15
+ /**
16
+ * Used to wait for the last change to be sent to the server. Monaco will
17
+ * always call onDidChangeContent first. While we send this change to the
18
+ * language server this promise is pending. Other requests that depend on
19
+ * the latest content must wait for this promise to resolve.
20
+ */
21
+ private _onChangeLock;
15
22
  private constructor();
16
23
  /**
17
24
  * Change the configuration of the language server.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knime/scripting-editor",
3
3
  "type": "module",
4
- "version": "0.0.25",
4
+ "version": "0.0.27",
5
5
  "description": "Shared Scripting Editor components for KNIME",
6
6
  "author": "KNIME AG, Zurich, Switzerland",
7
7
  "license": "See the file license.txt",