@codingame/monaco-vscode-view-banner-service-override 23.1.0 → 23.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-view-banner-service-override",
3
- "version": "23.1.0",
3
+ "version": "23.2.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-4bf376c2-03c7-58cb-8303-c67aeefa3d3d-common": "23.1.0",
19
- "@codingame/monaco-vscode-85886bdb-61c5-52f1-8eb7-d1d32f6f8cbd-common": "23.1.0",
20
- "@codingame/monaco-vscode-api": "23.1.0"
18
+ "@codingame/monaco-vscode-4bf376c2-03c7-58cb-8303-c67aeefa3d3d-common": "23.2.0",
19
+ "@codingame/monaco-vscode-85886bdb-61c5-52f1-8eb7-d1d32f6f8cbd-common": "23.2.0",
20
+ "@codingame/monaco-vscode-api": "23.2.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(2973, "Close Banner"));
162
+ const label = item.closeLabel ?? ( localize(2992, "Close Banner"));
163
163
  const closeAction = this._register(( new Action(
164
164
  'banner.close',
165
165
  label,
@@ -220,7 +220,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
220
220
  });
221
221
  class FocusBannerAction extends Action2 {
222
222
  static { this.ID = 'workbench.action.focusBanner'; }
223
- static { this.LABEL = ( localize2(2974, "Focus Banner")); }
223
+ static { this.LABEL = ( localize2(2993, "Focus Banner")); }
224
224
  constructor() {
225
225
  super({
226
226
  id: FocusBannerAction.ID,