@codingame/monaco-vscode-view-banner-service-override 23.3.0 → 24.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": "
|
|
3
|
+
"version": "24.1.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,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-
|
|
19
|
-
"@codingame/monaco-vscode-85886bdb-61c5-52f1-8eb7-d1d32f6f8cbd-common": "23.3.0",
|
|
20
|
-
"@codingame/monaco-vscode-api": "23.3.0"
|
|
18
|
+
"@codingame/monaco-vscode-api": "24.1.0"
|
|
21
19
|
},
|
|
22
20
|
"main": "index.js",
|
|
23
21
|
"module": "index.js",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
2
2
|
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
3
3
|
import { IThemeService } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service";
|
|
4
|
-
import { Part } from "@codingame/monaco-vscode-
|
|
4
|
+
import { Part } from "@codingame/monaco-vscode-api/vscode/vs/workbench/browser/part";
|
|
5
5
|
import { IWorkbenchLayoutService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service";
|
|
6
6
|
import { IBannerItem } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/banner/browser/bannerService";
|
|
7
7
|
import { IBannerService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/banner/browser/bannerService.service";
|
|
@@ -11,7 +11,7 @@ import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/pl
|
|
|
11
11
|
import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
|
|
12
12
|
import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
|
|
13
13
|
import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
|
|
14
|
-
import { Part } from '@codingame/monaco-vscode-
|
|
14
|
+
import { Part } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/part';
|
|
15
15
|
import { Parts } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService';
|
|
16
16
|
import { IWorkbenchLayoutService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service';
|
|
17
17
|
import { Action } from '@codingame/monaco-vscode-api/vscode/vs/base/common/actions';
|
|
@@ -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(3010, "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(
|
|
223
|
+
static { this.LABEL = ( localize2(3011, "Focus Banner")); }
|
|
224
224
|
constructor() {
|
|
225
225
|
super({
|
|
226
226
|
id: FocusBannerAction.ID,
|
|
@@ -6,7 +6,7 @@ import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/workbench/com
|
|
|
6
6
|
import { IBannerService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/banner/browser/bannerService.service';
|
|
7
7
|
import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
|
|
8
8
|
import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
|
|
9
|
-
import { IBrowserWorkbenchEnvironmentService } from '@codingame/monaco-vscode-
|
|
9
|
+
import { IBrowserWorkbenchEnvironmentService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/environment/browser/environmentService.service';
|
|
10
10
|
import { URI } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uri';
|
|
11
11
|
import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
|
|
12
12
|
|