@codingame/monaco-vscode-remote-agent-service-override 4.5.2 → 5.0.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": "4.5.2",
3
+ "version": "5.0.0",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -26,7 +26,7 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "vscode": "npm:@codingame/monaco-vscode-api@4.5.2",
30
- "@codingame/monaco-vscode-environment-service-override": "4.5.2"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@5.0.0",
30
+ "@codingame/monaco-vscode-environment-service-override": "5.0.0"
31
31
  }
32
32
  }
@@ -46,6 +46,7 @@ import { getVirtualWorkspaceLocation } from 'vscode/vscode/vs/platform/workspace
46
46
  import { IWalkthroughsService } from 'vscode/vscode/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service';
47
47
  import { Schemas } from 'vscode/vscode/vs/base/common/network';
48
48
  import { mainWindow } from 'vscode/vscode/vs/base/browser/window';
49
+ import { IHoverService } from 'vscode/vscode/vs/platform/hover/browser/hover.service';
49
50
 
50
51
  const _moduleId = "vs/workbench/contrib/remote/browser/remote";
51
52
  class HelpTreeVirtualDelegate {
@@ -316,8 +317,8 @@ class IssueReporterItem extends HelpItemBase {
316
317
  let HelpPanel = class HelpPanel extends ViewPane {
317
318
  static { this.ID = '~remote.helpPanel'; }
318
319
  static { this.TITLE = ( localize2WithPath(_moduleId, 5, "Help and feedback")); }
319
- constructor(viewModel, options, keybindingService, contextMenuService, contextKeyService, configurationService, instantiationService, viewDescriptorService, openerService, quickInputService, commandService, remoteExplorerService, environmentService, themeService, telemetryService, workspaceContextService, walkthroughsService) {
320
- super(options, keybindingService, contextMenuService, configurationService, contextKeyService, viewDescriptorService, instantiationService, openerService, themeService, telemetryService);
320
+ constructor(viewModel, options, keybindingService, contextMenuService, contextKeyService, configurationService, instantiationService, viewDescriptorService, openerService, quickInputService, commandService, remoteExplorerService, environmentService, themeService, telemetryService, hoverService, workspaceContextService, walkthroughsService) {
321
+ super(options, keybindingService, contextMenuService, configurationService, contextKeyService, viewDescriptorService, instantiationService, openerService, themeService, telemetryService, hoverService);
321
322
  this.viewModel = viewModel;
322
323
  this.quickInputService = quickInputService;
323
324
  this.commandService = commandService;
@@ -374,8 +375,9 @@ HelpPanel = ( (__decorate([
374
375
  ( (__param(12, IWorkbenchEnvironmentService))),
375
376
  ( (__param(13, IThemeService))),
376
377
  ( (__param(14, ITelemetryService))),
377
- ( (__param(15, IWorkspaceContextService))),
378
- ( (__param(16, IWalkthroughsService)))
378
+ ( (__param(15, IHoverService))),
379
+ ( (__param(16, IWorkspaceContextService))),
380
+ ( (__param(17, IWalkthroughsService)))
379
381
  ], HelpPanel)));
380
382
  class HelpPanelDescriptor {
381
383
  constructor(viewModel) {