@codingame/monaco-vscode-view-banner-service-override 7.0.11 → 7.1.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": "7.
|
|
3
|
+
"version": "7.1.1",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"vscode": "npm:@codingame/monaco-vscode-api@7.
|
|
29
|
+
"vscode": "npm:@codingame/monaco-vscode-api@7.1.1"
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import './media/bannerpart.css.js';
|
|
3
|
-
import {
|
|
3
|
+
import { localize2 } from 'vscode/vscode/vs/nls';
|
|
4
4
|
import { addDisposableListener, EventType, clearNode, isHTMLElement, $, 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 'vscode/vscode/vs/platform/instantiation/common/extensions';
|
|
@@ -25,7 +25,6 @@ import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
|
25
25
|
import { widgetClose } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
|
|
26
26
|
import { BannerFocused } from 'vscode/vscode/vs/workbench/common/contextkeys';
|
|
27
27
|
|
|
28
|
-
const _moduleId = "vs/workbench/browser/parts/banner/bannerPart";
|
|
29
28
|
let BannerPart = class BannerPart extends Part {
|
|
30
29
|
get minimumHeight() {
|
|
31
30
|
return this.visible ? this.height : 0;
|
|
@@ -216,7 +215,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
|
|
|
216
215
|
});
|
|
217
216
|
class FocusBannerAction extends Action2 {
|
|
218
217
|
static { this.ID = 'workbench.action.focusBanner'; }
|
|
219
|
-
static { this.LABEL = (
|
|
218
|
+
static { this.LABEL = ( localize2(3032, "Focus Banner")); }
|
|
220
219
|
constructor() {
|
|
221
220
|
super({
|
|
222
221
|
id: FocusBannerAction.ID,
|