@codingame/monaco-vscode-view-banner-service-override 18.4.0 → 19.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-view-banner-service-override",
3
- "version": "18.4.0",
3
+ "version": "19.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - view-banner service-override",
6
6
  "keywords": [],
@@ -15,9 +15,9 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-34a0ffd3-b9f5-5699-b43b-38af5732f38a-common": "18.4.0",
19
- "@codingame/monaco-vscode-85886bdb-61c5-52f1-8eb7-d1d32f6f8cbd-common": "18.4.0",
20
- "@codingame/monaco-vscode-api": "18.4.0"
18
+ "@codingame/monaco-vscode-34a0ffd3-b9f5-5699-b43b-38af5732f38a-common": "19.0.0",
19
+ "@codingame/monaco-vscode-85886bdb-61c5-52f1-8eb7-d1d32f6f8cbd-common": "19.0.0",
20
+ "@codingame/monaco-vscode-api": "19.0.0"
21
21
  },
22
22
  "main": "index.js",
23
23
  "module": "index.js",
@@ -159,7 +159,7 @@ let BannerPart = class BannerPart extends Part {
159
159
  }
160
160
  const actionBarContainer = append(this.element, $('div.action-container'));
161
161
  this.actionBar = this._register(( new ActionBar(actionBarContainer)));
162
- const label = item.closeLabel ?? ( localize(2887, "Close Banner"));
162
+ const label = item.closeLabel ?? ( localize(2910, "Close Banner"));
163
163
  const closeAction = this._register(( new Action(
164
164
  'banner.close',
165
165
  label,
@@ -219,7 +219,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
219
219
  });
220
220
  class FocusBannerAction extends Action2 {
221
221
  static { this.ID = 'workbench.action.focusBanner'; }
222
- static { this.LABEL = ( localize2(2888, "Focus Banner")); }
222
+ static { this.LABEL = ( localize2(2911, "Focus Banner")); }
223
223
  constructor() {
224
224
  super({
225
225
  id: FocusBannerAction.ID,