@codingame/monaco-vscode-view-banner-service-override 2.2.2 → 3.1.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-view-banner-service-override",
3
- "version": "2.2.2",
3
+ "version": "3.1.0",
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@2.2.2",
21
+ "vscode": "npm:@codingame/monaco-vscode-api@3.1.0",
22
22
  "vscode-marked": "npm:marked@=3.0.2"
23
23
  }
24
24
  }
@@ -1,6 +1,6 @@
1
1
  import { __decorate, __param } from '../../../../../../../external/tslib/tslib.es6.js';
2
2
  import './media/bannerpart.css.js';
3
- import { localizeWithPath } from 'vscode/vscode/vs/nls';
3
+ import { localize2WithPath } from 'vscode/vscode/vs/nls';
4
4
  import { addDisposableListener, EventType, clearNode, $, append, asCSSUrl } from 'vscode/vscode/vs/base/browser/dom';
5
5
  import { ActionBar } from 'vscode/vscode/vs/base/browser/ui/actionbar/actionbar';
6
6
  import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
@@ -213,7 +213,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
213
213
  });
214
214
  class FocusBannerAction extends Action2 {
215
215
  static { this.ID = 'workbench.action.focusBanner'; }
216
- static { this.LABEL = ( localizeWithPath(
216
+ static { this.LABEL = ( localize2WithPath(
217
217
  'vs/workbench/browser/parts/banner/bannerPart',
218
218
  'focusBanner',
219
219
  "Focus Banner"
@@ -221,7 +221,7 @@ class FocusBannerAction extends Action2 {
221
221
  constructor() {
222
222
  super({
223
223
  id: FocusBannerAction.ID,
224
- title: { value: FocusBannerAction.LABEL, original: 'Focus Banner' },
224
+ title: FocusBannerAction.LABEL,
225
225
  category: Categories.View,
226
226
  f1: true
227
227
  });