@codingame/monaco-vscode-remote-agent-service-override 4.2.1 → 4.3.1
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 +3 -3
- package/remoteAgent.js +2 -2
- package/vscode/src/vs/platform/remote/browser/remoteAuthorityResolverService.js +1 -1
- package/vscode/src/vs/workbench/contrib/remote/browser/explorerViewItems.js +3 -3
- package/vscode/src/vs/workbench/contrib/remote/browser/media/remoteViewlet.css.js +1 -1
- package/vscode/src/vs/workbench/contrib/remote/browser/remote.js +3 -3
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteConnectionHealth.js +2 -2
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteIndicator.js +2 -2
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteStartEntry.js +1 -1
- package/vscode/src/vs/workbench/contrib/remote/browser/showCandidate.js +1 -1
- package/vscode/src/vs/workbench/contrib/remote/browser/tunnelFactory.js +1 -1
- package/vscode/src/vs/workbench/contrib/remote/common/remote.contribution.js +1 -1
- package/vscode/src/vs/workbench/services/remote/browser/browserRemoteResourceHandler.js +2 -2
- package/vscode/src/vs/workbench/services/remote/browser/remoteAgentService.js +2 -2
- package/vscode/src/vs/workbench/services/remote/common/abstractRemoteAgentService.js +1 -1
- package/vscode/src/vs/workbench/services/remote/common/remoteExtensionsScanner.js +1 -1
- package/vscode/src/vs/workbench/services/tunnel/browser/tunnelService.js +1 -1
- package/external/rollup-plugin-styles/dist/runtime/inject-css.js +0 -3
- package/external/tslib/tslib.es6.js +0 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-remote-agent-service-override",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@4.
|
|
22
|
-
"@codingame/monaco-vscode-environment-service-override": "4.
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@4.3.1",
|
|
22
|
+
"@codingame/monaco-vscode-environment-service-override": "4.3.1"
|
|
23
23
|
}
|
|
24
24
|
}
|
package/remoteAgent.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
|
|
3
3
|
import { IRemoteAgentService } from 'vscode/vscode/vs/workbench/services/remote/common/remoteAgentService';
|
|
4
4
|
import { RemoteAgentService } from './vscode/src/vs/workbench/services/remote/browser/remoteAgentService.js';
|
|
5
|
-
import {
|
|
5
|
+
import { RemoteSocketFactoryService, IRemoteSocketFactoryService } from 'vscode/vscode/vs/platform/remote/common/remoteSocketFactoryService';
|
|
6
6
|
import { IRemoteAuthorityResolverService } from 'vscode/vscode/vs/platform/remote/common/remoteAuthorityResolver';
|
|
7
7
|
import { RemoteAuthorityResolverService } from './vscode/src/vs/platform/remote/browser/remoteAuthorityResolverService.js';
|
|
8
8
|
import { BrowserSocketFactory } from './vscode/src/vs/platform/remote/browser/browserSocketFactory.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { mainWindow } from 'vscode/vscode/vs/base/browser/window';
|
|
3
3
|
import { DeferredPromise } from 'vscode/vscode/vs/base/common/async';
|
|
4
4
|
import { ErrorNoTelemetry } from 'vscode/vscode/vs/base/common/errors';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
|
-
import {
|
|
3
|
+
import { IRemoteExplorerService, REMOTE_EXPLORER_TYPE_KEY } from 'vscode/vscode/vs/workbench/services/remote/common/remoteExplorerService';
|
|
4
4
|
import { isStringArray } from 'vscode/vscode/vs/base/common/types';
|
|
5
5
|
import { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService';
|
|
6
6
|
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
7
|
-
import { RawContextKey,
|
|
7
|
+
import { RawContextKey, IContextKeyService, ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
8
8
|
import { MenuId, MenuRegistry, registerAction2, Action2 } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
9
9
|
import { VIEWLET_ID } from 'vscode/vscode/vs/workbench/contrib/remote/browser/remoteExplorer';
|
|
10
10
|
import { getVirtualWorkspaceLocation } from 'vscode/vscode/vs/platform/workspace/common/virtualWorkspace';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import n from '
|
|
1
|
+
import n from 'vscode/external/rollup-plugin-styles/dist/runtime/inject-css.js';
|
|
2
2
|
|
|
3
3
|
var css = ".remote-help-content .monaco-list .monaco-list-row .remote-help-tree-node-item{display:flex;flex:1;flex-wrap:nowrap;height:22px;line-height:22px;overflow:hidden;text-overflow:ellipsis}.remote-help-content .monaco-list .monaco-list-row .remote-help-tree-node-item>.remote-help-tree-node-item-icon{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-position:0;background-repeat:no-repeat;background-size:16px;height:22px;padding-right:6px;padding-top:3px;width:16px}.remote-help-tree-node-item-icon .monaco-icon-label-container>.monaco-icon-name-container{padding-left:22px}.remote-help-content .monaco-list .monaco-list-row .monaco-tl-twistie{width:0!important}";
|
|
4
4
|
n(css,{});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import './media/remoteViewlet.css.js';
|
|
3
3
|
import { localize2WithPath, localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
4
4
|
import { append, $, disposableWindowInterval } from 'vscode/vscode/vs/base/browser/dom';
|
|
@@ -12,11 +12,11 @@ import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/c
|
|
|
12
12
|
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
13
13
|
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
14
14
|
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView';
|
|
15
|
-
import {
|
|
15
|
+
import { IExtensionService, isProposedApiEnabled } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions';
|
|
16
16
|
import { FilterViewPaneContainer } from 'vscode/vscode/vs/workbench/browser/parts/views/viewsViewlet';
|
|
17
17
|
import { VIEWLET_ID } from 'vscode/vscode/vs/workbench/contrib/remote/browser/remoteExplorer';
|
|
18
18
|
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
19
|
-
import {
|
|
19
|
+
import { IViewDescriptorService, Extensions } from 'vscode/vscode/vs/workbench/common/views';
|
|
20
20
|
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
21
21
|
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener';
|
|
22
22
|
import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
2
|
-
import {
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
|
+
import { IRemoteAgentService, remoteConnectionLatencyMeasurer } from 'vscode/vscode/vs/workbench/services/remote/common/remoteAgentService';
|
|
3
3
|
import { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService';
|
|
4
4
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
5
5
|
import { isWeb } from 'vscode/vscode/vs/base/common/platform';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { localize2WithPath, localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { remoteConnectionLatencyMeasurer, IRemoteAgentService } from 'vscode/vscode/vs/workbench/services/remote/common/remoteAgentService';
|
|
4
4
|
import { RunOnceScheduler, retry } from 'vscode/vscode/vs/base/common/async';
|
|
5
5
|
import { Emitter, Event } from 'vscode/vscode/vs/base/common/event';
|
|
6
6
|
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
7
|
-
import { MenuId, registerAction2, Action2, MenuRegistry,
|
|
7
|
+
import { MenuId, registerAction2, Action2, MenuRegistry, IMenuService, MenuItemAction } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
8
8
|
import { IStatusbarService } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar';
|
|
9
9
|
import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label';
|
|
10
10
|
import { RawContextKey, ContextKeyExpr, IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { localize2WithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
4
4
|
import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
3
3
|
import { IBrowserWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/browser/environmentService';
|
|
4
4
|
import { IRemoteExplorerService } from 'vscode/vscode/vs/workbench/services/remote/common/remoteExplorerService';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { TunnelPrivacyId, TunnelProtocol, ITunnelService } from 'vscode/vscode/vs/platform/tunnel/common/tunnel';
|
|
4
4
|
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { Extensions, registerWorkbenchContribution2 } from 'vscode/vscode/vs/workbench/common/contributions';
|
|
3
3
|
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
4
4
|
import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { VSBuffer } from 'vscode/vscode/vs/base/common/buffer';
|
|
3
3
|
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
4
4
|
import { getMediaOrTextMime } from 'vscode/vscode/vs/base/common/mime';
|
|
5
5
|
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
6
|
-
import {
|
|
6
|
+
import { IFileService, FileOperationError } from 'vscode/vscode/vs/platform/files/common/files';
|
|
7
7
|
|
|
8
8
|
let BrowserRemoteResourceLoader = class BrowserRemoteResourceLoader extends Disposable {
|
|
9
9
|
constructor(fileService, provider) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService';
|
|
4
4
|
import { IRemoteAgentService } from 'vscode/vscode/vs/workbench/services/remote/common/remoteAgentService';
|
|
5
|
-
import {
|
|
5
|
+
import { IRemoteAuthorityResolverService, RemoteAuthorityResolverError } from 'vscode/vscode/vs/platform/remote/common/remoteAuthorityResolver';
|
|
6
6
|
import { AbstractRemoteAgentService } from '../common/abstractRemoteAgentService.js';
|
|
7
7
|
import { IProductService } from 'vscode/vscode/vs/platform/product/common/productService';
|
|
8
8
|
import { ISignService } from 'vscode/vscode/vs/platform/sign/common/sign';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
3
3
|
import { getDelayedChannel } from 'vscode/vscode/vs/base/parts/ipc/common/ipc';
|
|
4
4
|
import { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { IRemoteAgentService } from 'vscode/vscode/vs/workbench/services/remote/common/remoteAgentService';
|
|
3
3
|
import { RemoteExtensionsScannerChannelName } from 'vscode/vscode/vs/platform/remote/common/remoteExtensionsScanner';
|
|
4
4
|
import { language } from 'vscode/vscode/vs/base/common/platform';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __decorate, __param } from '
|
|
1
|
+
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
3
3
|
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log';
|
|
4
4
|
import { AbstractTunnelService, isTunnelProvider } from 'vscode/vscode/vs/platform/tunnel/common/tunnel';
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
var e=[],t=[];function n(n,r){if(n&&"undefined"!=typeof document){var a,s=!0===r.prepend?"prepend":"append",d=!0===r.singleTag,i="string"==typeof r.container?document.querySelector(r.container):document.getElementsByTagName("head")[0];if(d){var u=e.indexOf(i);-1===u&&(u=e.push(i)-1,t[u]={}),a=t[u]&&t[u][s]?t[u][s]:t[u][s]=c();}else a=c();65279===n.charCodeAt(0)&&(n=n.substring(1)),a.styleSheet?a.styleSheet.cssText+=n:a.appendChild(document.createTextNode(n));}function c(){var e=document.createElement("style");if(e.setAttribute("type","text/css"),r.attributes)for(var t=( Object.keys(r.attributes)),n=0;n<t.length;n++)e.setAttribute(t[n],r.attributes[t[n]]);var a="prepend"===s?"afterbegin":"beforeend";return i.insertAdjacentElement(a,e),e}}
|
|
2
|
-
|
|
3
|
-
export { n as default };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
function __decorate(decorators, target, key, desc) {
|
|
2
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
-
}
|
|
7
|
-
function __param(paramIndex, decorator) {
|
|
8
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export { __decorate, __param };
|