@codingame/monaco-vscode-view-banner-service-override 21.6.0 → 22.0.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-view-banner-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "22.0.1",
|
|
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": "
|
|
19
|
-
"@codingame/monaco-vscode-85886bdb-61c5-52f1-8eb7-d1d32f6f8cbd-common": "
|
|
20
|
-
"@codingame/monaco-vscode-api": "
|
|
18
|
+
"@codingame/monaco-vscode-4bf376c2-03c7-58cb-8303-c67aeefa3d3d-common": "22.0.1",
|
|
19
|
+
"@codingame/monaco-vscode-85886bdb-61c5-52f1-8eb7-d1d32f6f8cbd-common": "22.0.1",
|
|
20
|
+
"@codingame/monaco-vscode-api": "22.0.1"
|
|
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(
|
|
162
|
+
const label = item.closeLabel ?? ( localize(2953, "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(
|
|
222
|
+
static { this.LABEL = ( localize2(2954, "Focus Banner")); }
|
|
223
223
|
constructor() {
|
|
224
224
|
super({
|
|
225
225
|
id: FocusBannerAction.ID,
|