@codingame/monaco-vscode-remote-agent-service-override 20.1.0 → 20.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-remote-agent-service-override",
3
- "version": "20.1.0",
3
+ "version": "20.2.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - remote-agent service-override",
6
6
  "keywords": [],
@@ -15,16 +15,16 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-158b9837-fc78-5d9c-86f5-9134e4358643-common": "20.1.0",
19
- "@codingame/monaco-vscode-1b4486de-4fe4-59c4-9e6d-34f265ff6625-common": "20.1.0",
20
- "@codingame/monaco-vscode-2a94c04a-b85b-5669-b06b-89c1bfa11cb9-common": "20.1.0",
21
- "@codingame/monaco-vscode-34a0ffd3-b9f5-5699-b43b-38af5732f38a-common": "20.1.0",
22
- "@codingame/monaco-vscode-4a3ac544-9a61-534c-88df-756262793ef7-common": "20.1.0",
23
- "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "20.1.0",
24
- "@codingame/monaco-vscode-a654b07e-8806-5425-b124-18f03ba8e11a-common": "20.1.0",
25
- "@codingame/monaco-vscode-abed5a84-8a82-5f84-9412-88a736235bae-common": "20.1.0",
26
- "@codingame/monaco-vscode-api": "20.1.0",
27
- "@codingame/monaco-vscode-environment-service-override": "20.1.0"
18
+ "@codingame/monaco-vscode-158b9837-fc78-5d9c-86f5-9134e4358643-common": "20.2.0",
19
+ "@codingame/monaco-vscode-1b4486de-4fe4-59c4-9e6d-34f265ff6625-common": "20.2.0",
20
+ "@codingame/monaco-vscode-2a94c04a-b85b-5669-b06b-89c1bfa11cb9-common": "20.2.0",
21
+ "@codingame/monaco-vscode-34a0ffd3-b9f5-5699-b43b-38af5732f38a-common": "20.2.0",
22
+ "@codingame/monaco-vscode-4a3ac544-9a61-534c-88df-756262793ef7-common": "20.2.0",
23
+ "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "20.2.0",
24
+ "@codingame/monaco-vscode-a654b07e-8806-5425-b124-18f03ba8e11a-common": "20.2.0",
25
+ "@codingame/monaco-vscode-abed5a84-8a82-5f84-9412-88a736235bae-common": "20.2.0",
26
+ "@codingame/monaco-vscode-api": "20.2.0",
27
+ "@codingame/monaco-vscode-environment-service-override": "20.2.0"
28
28
  },
29
29
  "main": "index.js",
30
30
  "module": "index.js",
@@ -6,6 +6,11 @@ import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
6
6
  import { IChannel } from "@codingame/monaco-vscode-4a3ac544-9a61-534c-88df-756262793ef7-common/vscode/vs/base/parts/ipc/common/ipc";
7
7
  import { IFileAtomicReadOptions, IFileDeleteOptions, IFileOpenOptions, IFileOverwriteOptions, IFileReadStreamOptions, FileSystemProviderCapabilities, FileType, IFileWriteOptions, IFileChange, IFileSystemProviderWithFileAtomicReadCapability, IFileSystemProviderWithFileCloneCapability, IFileSystemProviderWithFileFolderCopyCapability, IFileSystemProviderWithFileReadStreamCapability, IFileSystemProviderWithFileReadWriteCapability, IFileSystemProviderWithOpenReadWriteCloseCapability, IStat, IWatchOptions } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files";
8
8
  export declare const LOCAL_FILE_SYSTEM_CHANNEL_NAME = "localFilesystem";
9
+ /**
10
+ * An implementation of a local disk file system provider
11
+ * that is backed by a `IChannel` and thus implemented via
12
+ * IPC on a different process.
13
+ */
9
14
  export declare class DiskFileSystemProviderClient extends Disposable implements IFileSystemProviderWithFileReadWriteCapability, IFileSystemProviderWithOpenReadWriteCloseCapability, IFileSystemProviderWithFileReadStreamCapability, IFileSystemProviderWithFileFolderCopyCapability, IFileSystemProviderWithFileAtomicReadCapability, IFileSystemProviderWithFileCloneCapability {
10
15
  private readonly channel;
11
16
  private readonly extraCapabilities;
@@ -7,9 +7,21 @@ export interface IWebSocketFactory {
7
7
  create(url: string, debugLabel: string): IWebSocket;
8
8
  }
9
9
  export interface IWebSocketCloseEvent {
10
+ /**
11
+ * Returns the WebSocket connection close code provided by the server.
12
+ */
10
13
  readonly code: number;
14
+ /**
15
+ * Returns the WebSocket connection close reason provided by the server.
16
+ */
11
17
  readonly reason: string;
18
+ /**
19
+ * Returns true if the connection closed cleanly; false otherwise.
20
+ */
12
21
  readonly wasClean: boolean;
22
+ /**
23
+ * Underlying event.
24
+ */
13
25
  readonly event: unknown | undefined;
14
26
  }
15
27
  export interface IWebSocket {
@@ -1,3 +1,8 @@
1
+ /*---------------------------------------------------------------------------------------------
2
+ * Copyright (c) Microsoft Corporation. All rights reserved.
3
+ * Licensed under the MIT License. See License.txt in the project root for license information.
4
+ *--------------------------------------------------------------------------------------------*/
5
+
1
6
  .remote-help-content .monaco-list .monaco-list-row .remote-help-tree-node-item {
2
7
  display: flex;
3
8
  height: 22px;
@@ -7,6 +12,7 @@
7
12
  overflow: hidden;
8
13
  flex-wrap: nowrap;
9
14
  }
15
+
10
16
  .remote-help-content .monaco-list .monaco-list-row .remote-help-tree-node-item > .remote-help-tree-node-item-icon {
11
17
  background-size: 16px;
12
18
  background-position: left center;
@@ -18,12 +24,15 @@
18
24
  -webkit-font-smoothing: antialiased;
19
25
  -moz-osx-font-smoothing: grayscale;
20
26
  }
27
+
21
28
  .remote-help-content .monaco-list .monaco-list-row .monaco-tl-twistie {
22
29
  width: 0px !important;
23
30
  }
31
+
24
32
  .remote-help-tree-node-item-icon .monaco-icon-label-container > .monaco-icon-name-container {
25
33
  padding-left: 22px;
26
34
  }
35
+
27
36
  .remote-help-content .monaco-list .monaco-list-row .monaco-tl-twistie {
28
37
  width: 0px !important;
29
38
  }