@codingame/monaco-vscode-view-title-bar-service-override 31.0.1 → 32.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-title-bar-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "32.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - view-title-bar service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-api": "
|
|
18
|
+
"@codingame/monaco-vscode-api": "32.0.1"
|
|
19
19
|
},
|
|
20
20
|
"main": "index.js",
|
|
21
21
|
"module": "index.js",
|
|
@@ -208,13 +208,13 @@ let CommandCenterCenterViewItem = class CommandCenterCenterViewItem extends Base
|
|
|
208
208
|
label = that._windowTitle.fileName ?? label;
|
|
209
209
|
}
|
|
210
210
|
if (!label) {
|
|
211
|
-
label = ( localize(
|
|
211
|
+
label = ( localize(3768, "Search"));
|
|
212
212
|
}
|
|
213
213
|
if (prefix) {
|
|
214
|
-
label = ( localize(
|
|
214
|
+
label = ( localize(3769, "{0} {1}", prefix, label));
|
|
215
215
|
}
|
|
216
216
|
if (suffix) {
|
|
217
|
-
label = ( localize(
|
|
217
|
+
label = ( localize(3770, "{0} {1}", label, suffix));
|
|
218
218
|
}
|
|
219
219
|
return label.replaceAll(/\r\n|\r|\n/g, "⏎");
|
|
220
220
|
}
|
|
@@ -235,13 +235,13 @@ let CommandCenterCenterViewItem = class CommandCenterCenterViewItem extends Base
|
|
|
235
235
|
getTooltip() {
|
|
236
236
|
const kb = this._keybindingService.lookupKeybinding(this.action.id)?.getLabel();
|
|
237
237
|
const title = kb ? ( localize(
|
|
238
|
-
|
|
238
|
+
3771,
|
|
239
239
|
"Search {0} ({1}) — {2}",
|
|
240
240
|
this._windowTitle.workspaceName,
|
|
241
241
|
kb,
|
|
242
242
|
this._windowTitle.value
|
|
243
243
|
)) : ( localize(
|
|
244
|
-
|
|
244
|
+
3772,
|
|
245
245
|
"Search {0} — {1}",
|
|
246
246
|
this._windowTitle.workspaceName,
|
|
247
247
|
this._windowTitle.value
|
|
@@ -252,7 +252,7 @@ let CommandCenterCenterViewItem = class CommandCenterCenterViewItem extends Base
|
|
|
252
252
|
CommandCenterCenterViewItem = CommandCenterCenterViewItem_1 = ( __decorate([( __param(3, IHoverService)), ( __param(4, IKeybindingService)), ( __param(5, IInstantiationService)), ( __param(6, IEditorGroupsService)), ( __param(7, IConfigurationService))], CommandCenterCenterViewItem));
|
|
253
253
|
MenuRegistry.appendMenuItem(MenuId.CommandCenter, {
|
|
254
254
|
submenu: MenuId.CommandCenterCenter,
|
|
255
|
-
title: ( localize(
|
|
255
|
+
title: ( localize(3773, "Command Center")),
|
|
256
256
|
icon: Codicon.shield,
|
|
257
257
|
order: 101
|
|
258
258
|
});
|
|
@@ -16,6 +16,7 @@ import { MenuId } from "@codingame/monaco-vscode-api/vscode/vs/platform/actions/
|
|
|
16
16
|
import { IMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions.service";
|
|
17
17
|
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
18
18
|
import { IHostService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service";
|
|
19
|
+
import { IActionViewItemService } from "@codingame/monaco-vscode-api/vscode/vs/platform/actions/browser/actionViewItemService.service";
|
|
19
20
|
import { IEditorGroupsContainer } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService";
|
|
20
21
|
import { IEditorGroupsService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service";
|
|
21
22
|
import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
@@ -71,6 +72,7 @@ export declare class BrowserTitlebarPart extends Part implements ITitlebarPart {
|
|
|
71
72
|
private readonly hostService;
|
|
72
73
|
private readonly menuService;
|
|
73
74
|
private readonly keybindingService;
|
|
75
|
+
private readonly actionViewItemService;
|
|
74
76
|
readonly minimumWidth: number;
|
|
75
77
|
readonly maximumWidth: number;
|
|
76
78
|
get minimumHeight(): number;
|
|
@@ -111,7 +113,7 @@ export declare class BrowserTitlebarPart extends Part implements ITitlebarPart {
|
|
|
111
113
|
private readonly isCompactContextKey;
|
|
112
114
|
private readonly windowTitle;
|
|
113
115
|
protected readonly instantiationService: IInstantiationService;
|
|
114
|
-
constructor(id: string, targetWindow: CodeWindow, editorGroupsContainer: IEditorGroupsContainer, contextMenuService: IContextMenuService, configurationService: IConfigurationService, environmentService: IBrowserWorkbenchEnvironmentService, instantiationService: IInstantiationService, themeService: IThemeService, storageService: IStorageService, layoutService: IWorkbenchLayoutService, contextKeyService: IContextKeyService, hostService: IHostService, editorService: IEditorService, menuService: IMenuService, keybindingService: IKeybindingService);
|
|
116
|
+
constructor(id: string, targetWindow: CodeWindow, editorGroupsContainer: IEditorGroupsContainer, contextMenuService: IContextMenuService, configurationService: IConfigurationService, environmentService: IBrowserWorkbenchEnvironmentService, instantiationService: IInstantiationService, themeService: IThemeService, storageService: IStorageService, layoutService: IWorkbenchLayoutService, contextKeyService: IContextKeyService, hostService: IHostService, editorService: IEditorService, menuService: IMenuService, keybindingService: IKeybindingService, actionViewItemService: IActionViewItemService);
|
|
115
117
|
private registerListeners;
|
|
116
118
|
private onBlur;
|
|
117
119
|
private onFocus;
|
|
@@ -149,7 +151,7 @@ export declare class BrowserTitlebarPart extends Part implements ITitlebarPart {
|
|
|
149
151
|
dispose(): void;
|
|
150
152
|
}
|
|
151
153
|
export declare class MainBrowserTitlebarPart extends BrowserTitlebarPart {
|
|
152
|
-
constructor(contextMenuService: IContextMenuService, configurationService: IConfigurationService, environmentService: IBrowserWorkbenchEnvironmentService, instantiationService: IInstantiationService, themeService: IThemeService, storageService: IStorageService, layoutService: IWorkbenchLayoutService, contextKeyService: IContextKeyService, hostService: IHostService, editorGroupService: IEditorGroupsService, editorService: IEditorService, menuService: IMenuService, keybindingService: IKeybindingService);
|
|
154
|
+
constructor(contextMenuService: IContextMenuService, configurationService: IConfigurationService, environmentService: IBrowserWorkbenchEnvironmentService, instantiationService: IInstantiationService, themeService: IThemeService, storageService: IStorageService, layoutService: IWorkbenchLayoutService, contextKeyService: IContextKeyService, hostService: IHostService, editorGroupService: IEditorGroupsService, editorService: IEditorService, menuService: IMenuService, keybindingService: IKeybindingService, actionViewItemService: IActionViewItemService);
|
|
153
155
|
}
|
|
154
156
|
export interface IAuxiliaryTitlebarPart extends ITitlebarPart, IView {
|
|
155
157
|
readonly container: HTMLElement;
|
|
@@ -163,6 +165,6 @@ export declare class AuxiliaryBrowserTitlebarPart extends BrowserTitlebarPart im
|
|
|
163
165
|
private readonly mainTitlebar;
|
|
164
166
|
private static COUNTER;
|
|
165
167
|
get height(): number;
|
|
166
|
-
constructor(container: HTMLElement, editorGroupsContainer: IEditorGroupsContainer, mainTitlebar: BrowserTitlebarPart, contextMenuService: IContextMenuService, configurationService: IConfigurationService, environmentService: IBrowserWorkbenchEnvironmentService, instantiationService: IInstantiationService, themeService: IThemeService, storageService: IStorageService, layoutService: IWorkbenchLayoutService, contextKeyService: IContextKeyService, hostService: IHostService, editorGroupService: IEditorGroupsService, editorService: IEditorService, menuService: IMenuService, keybindingService: IKeybindingService);
|
|
168
|
+
constructor(container: HTMLElement, editorGroupsContainer: IEditorGroupsContainer, mainTitlebar: BrowserTitlebarPart, contextMenuService: IContextMenuService, configurationService: IConfigurationService, environmentService: IBrowserWorkbenchEnvironmentService, instantiationService: IInstantiationService, themeService: IThemeService, storageService: IStorageService, layoutService: IWorkbenchLayoutService, contextKeyService: IContextKeyService, hostService: IHostService, editorGroupService: IEditorGroupsService, editorService: IEditorService, menuService: IMenuService, keybindingService: IKeybindingService, actionViewItemService: IActionViewItemService);
|
|
167
169
|
get preventZoom(): boolean;
|
|
168
170
|
}
|
|
@@ -32,6 +32,7 @@ import { WindowTitle } from '@codingame/monaco-vscode-api/vscode/vs/workbench/br
|
|
|
32
32
|
import { CommandCenterControl } from './commandCenterControl.js';
|
|
33
33
|
import { Categories } from '@codingame/monaco-vscode-api/vscode/vs/platform/action/common/actionCommonCategories';
|
|
34
34
|
import { MenuWorkbenchToolBar, HiddenItemStrategy, WorkbenchToolBar } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/browser/toolbar';
|
|
35
|
+
import { IActionViewItemService } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/browser/actionViewItemService.service';
|
|
35
36
|
import { GLOBAL_ACTIVITY_ID, ACCOUNTS_ACTIVITY_ID } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/activity';
|
|
36
37
|
import { SimpleGlobalActivityActionViewItem, SimpleAccountActivityActionViewItem, isAccountsActionVisible, AccountsActivityActionViewItem } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/globalCompositeBar';
|
|
37
38
|
import { HoverPosition } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/hover/hoverWidget';
|
|
@@ -45,7 +46,7 @@ import { EditorPane } from '@codingame/monaco-vscode-api/vscode/vs/workbench/bro
|
|
|
45
46
|
import { IKeybindingService } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service';
|
|
46
47
|
import { EditorCommandsContextActionRunner } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/editor/editorTabsControl';
|
|
47
48
|
import { mainWindow } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/window';
|
|
48
|
-
import { ACCOUNTS_ACTIVITY_TILE_ACTION, GLOBAL_ACTIVITY_TITLE_ACTION } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/titlebar/titlebarActions';
|
|
49
|
+
import { TitleBarLeadingActionsGroup, ACCOUNTS_ACTIVITY_TILE_ACTION, GLOBAL_ACTIVITY_TITLE_ACTION } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/titlebar/titlebarActions';
|
|
49
50
|
import { createInstantHoverDelegate } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/hover/hoverDelegateFactory';
|
|
50
51
|
import { CommandsRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands';
|
|
51
52
|
import { safeIntl } from '@codingame/monaco-vscode-api/vscode/vs/base/common/date';
|
|
@@ -76,7 +77,7 @@ let BrowserTitleService = class BrowserTitleService extends MultiWindowParts {
|
|
|
76
77
|
constructor() {
|
|
77
78
|
super({
|
|
78
79
|
id: `workbench.action.focusTitleBar`,
|
|
79
|
-
title: ( localize2(
|
|
80
|
+
title: ( localize2(3809, "Focus Title Bar")),
|
|
80
81
|
category: Categories.View,
|
|
81
82
|
f1: true,
|
|
82
83
|
precondition: TitleBarVisibleContext
|
|
@@ -192,7 +193,8 @@ let BrowserTitlebarPart = class BrowserTitlebarPart extends Part {
|
|
|
192
193
|
hostService,
|
|
193
194
|
editorService,
|
|
194
195
|
menuService,
|
|
195
|
-
keybindingService
|
|
196
|
+
keybindingService,
|
|
197
|
+
actionViewItemService
|
|
196
198
|
) {
|
|
197
199
|
super(id, {
|
|
198
200
|
hasTitle: false
|
|
@@ -206,6 +208,7 @@ let BrowserTitlebarPart = class BrowserTitlebarPart extends Part {
|
|
|
206
208
|
this.hostService = hostService;
|
|
207
209
|
this.menuService = menuService;
|
|
208
210
|
this.keybindingService = keybindingService;
|
|
211
|
+
this.actionViewItemService = actionViewItemService;
|
|
209
212
|
this.minimumWidth = 0;
|
|
210
213
|
this.maximumWidth = Number.POSITIVE_INFINITY;
|
|
211
214
|
this._onMenubarVisibilityChange = this._register(( new Emitter()));
|
|
@@ -450,6 +453,20 @@ let BrowserTitlebarPart = class BrowserTitlebarPart extends Part {
|
|
|
450
453
|
}
|
|
451
454
|
}
|
|
452
455
|
actionViewItemProvider(action, options) {
|
|
456
|
+
for (const menuId of [MenuId.TitleBar, MenuId.LayoutControlMenu]) {
|
|
457
|
+
const customViewItem = this.actionViewItemService.lookUp(menuId, action.id);
|
|
458
|
+
if (customViewItem) {
|
|
459
|
+
const result = customViewItem(
|
|
460
|
+
action,
|
|
461
|
+
options,
|
|
462
|
+
this.instantiationService,
|
|
463
|
+
getWindowId(this.element ? getWindow(this.element) : mainWindow)
|
|
464
|
+
);
|
|
465
|
+
if (result) {
|
|
466
|
+
return result;
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
}
|
|
453
470
|
if (!this.isAuxiliary) {
|
|
454
471
|
if (action.id === GLOBAL_ACTIVITY_ID) {
|
|
455
472
|
return this.instantiationService.createInstance(SimpleGlobalActivityActionViewItem, {
|
|
@@ -484,7 +501,7 @@ let BrowserTitlebarPart = class BrowserTitlebarPart extends Part {
|
|
|
484
501
|
this.instantiationService.createInstance(WorkbenchToolBar, this.actionToolBarElement, {
|
|
485
502
|
contextMenu: MenuId.TitleBarContext,
|
|
486
503
|
orientation: ActionsOrientation.HORIZONTAL,
|
|
487
|
-
ariaLabel: ( localize(
|
|
504
|
+
ariaLabel: ( localize(3810, "Title actions")),
|
|
488
505
|
getKeyBinding: action => this.getKeybinding(action),
|
|
489
506
|
overflowBehavior: {
|
|
490
507
|
maxItems: 9,
|
|
@@ -536,6 +553,18 @@ let BrowserTitlebarPart = class BrowserTitlebarPart extends Part {
|
|
|
536
553
|
this.editorActionsChangeDisposable.add(editorActions.onDidChange(() => updateToolBarActions()));
|
|
537
554
|
}
|
|
538
555
|
}
|
|
556
|
+
if (this.globalToolbarMenu) {
|
|
557
|
+
const leading = {
|
|
558
|
+
primary: [],
|
|
559
|
+
secondary: []
|
|
560
|
+
};
|
|
561
|
+
fillInActionBarActions(
|
|
562
|
+
this.globalToolbarMenu.getActions(),
|
|
563
|
+
leading,
|
|
564
|
+
actionGroup => actionGroup === TitleBarLeadingActionsGroup
|
|
565
|
+
);
|
|
566
|
+
actions.primary.push(...leading.primary);
|
|
567
|
+
}
|
|
539
568
|
if (this.layoutToolbarMenu) {
|
|
540
569
|
fillInActionBarActions(
|
|
541
570
|
this.layoutToolbarMenu.getActions(),
|
|
@@ -544,7 +573,8 @@ let BrowserTitlebarPart = class BrowserTitlebarPart extends Part {
|
|
|
544
573
|
);
|
|
545
574
|
}
|
|
546
575
|
if (this.globalToolbarMenu) {
|
|
547
|
-
|
|
576
|
+
const trailingGroups = this.globalToolbarMenu.getActions().filter(([group]) => group !== TitleBarLeadingActionsGroup);
|
|
577
|
+
fillInActionBarActions(trailingGroups, actions);
|
|
548
578
|
}
|
|
549
579
|
if (this.activityActionsEnabled) {
|
|
550
580
|
if (isAccountsActionVisible(this.storageService)) {
|
|
@@ -703,7 +733,7 @@ let BrowserTitlebarPart = class BrowserTitlebarPart extends Part {
|
|
|
703
733
|
super.dispose();
|
|
704
734
|
}
|
|
705
735
|
};
|
|
706
|
-
BrowserTitlebarPart = ( __decorate([( __param(3, IContextMenuService)), ( __param(4, IConfigurationService)), ( __param(5, IBrowserWorkbenchEnvironmentService)), ( __param(6, IInstantiationService)), ( __param(7, IThemeService)), ( __param(8, IStorageService)), ( __param(9, IWorkbenchLayoutService)), ( __param(10, IContextKeyService)), ( __param(11, IHostService)), ( __param(12, IEditorService)), ( __param(13, IMenuService)), ( __param(14, IKeybindingService))], BrowserTitlebarPart));
|
|
736
|
+
BrowserTitlebarPart = ( __decorate([( __param(3, IContextMenuService)), ( __param(4, IConfigurationService)), ( __param(5, IBrowserWorkbenchEnvironmentService)), ( __param(6, IInstantiationService)), ( __param(7, IThemeService)), ( __param(8, IStorageService)), ( __param(9, IWorkbenchLayoutService)), ( __param(10, IContextKeyService)), ( __param(11, IHostService)), ( __param(12, IEditorService)), ( __param(13, IMenuService)), ( __param(14, IKeybindingService)), ( __param(15, IActionViewItemService))], BrowserTitlebarPart));
|
|
707
737
|
let MainBrowserTitlebarPart = class MainBrowserTitlebarPart extends BrowserTitlebarPart {
|
|
708
738
|
constructor(
|
|
709
739
|
contextMenuService,
|
|
@@ -718,7 +748,8 @@ let MainBrowserTitlebarPart = class MainBrowserTitlebarPart extends BrowserTitle
|
|
|
718
748
|
editorGroupService,
|
|
719
749
|
editorService,
|
|
720
750
|
menuService,
|
|
721
|
-
keybindingService
|
|
751
|
+
keybindingService,
|
|
752
|
+
actionViewItemService
|
|
722
753
|
) {
|
|
723
754
|
super(
|
|
724
755
|
Parts.TITLEBAR_PART,
|
|
@@ -735,11 +766,12 @@ let MainBrowserTitlebarPart = class MainBrowserTitlebarPart extends BrowserTitle
|
|
|
735
766
|
hostService,
|
|
736
767
|
editorService,
|
|
737
768
|
menuService,
|
|
738
|
-
keybindingService
|
|
769
|
+
keybindingService,
|
|
770
|
+
actionViewItemService
|
|
739
771
|
);
|
|
740
772
|
}
|
|
741
773
|
};
|
|
742
|
-
MainBrowserTitlebarPart = ( __decorate([( __param(0, IContextMenuService)), ( __param(1, IConfigurationService)), ( __param(2, IBrowserWorkbenchEnvironmentService)), ( __param(3, IInstantiationService)), ( __param(4, IThemeService)), ( __param(5, IStorageService)), ( __param(6, IWorkbenchLayoutService)), ( __param(7, IContextKeyService)), ( __param(8, IHostService)), ( __param(9, IEditorGroupsService)), ( __param(10, IEditorService)), ( __param(11, IMenuService)), ( __param(12, IKeybindingService))], MainBrowserTitlebarPart));
|
|
774
|
+
MainBrowserTitlebarPart = ( __decorate([( __param(0, IContextMenuService)), ( __param(1, IConfigurationService)), ( __param(2, IBrowserWorkbenchEnvironmentService)), ( __param(3, IInstantiationService)), ( __param(4, IThemeService)), ( __param(5, IStorageService)), ( __param(6, IWorkbenchLayoutService)), ( __param(7, IContextKeyService)), ( __param(8, IHostService)), ( __param(9, IEditorGroupsService)), ( __param(10, IEditorService)), ( __param(11, IMenuService)), ( __param(12, IKeybindingService)), ( __param(13, IActionViewItemService))], MainBrowserTitlebarPart));
|
|
743
775
|
let AuxiliaryBrowserTitlebarPart = class AuxiliaryBrowserTitlebarPart extends BrowserTitlebarPart {
|
|
744
776
|
static {
|
|
745
777
|
AuxiliaryBrowserTitlebarPart_1 = this;
|
|
@@ -766,7 +798,8 @@ let AuxiliaryBrowserTitlebarPart = class AuxiliaryBrowserTitlebarPart extends Br
|
|
|
766
798
|
editorGroupService,
|
|
767
799
|
editorService,
|
|
768
800
|
menuService,
|
|
769
|
-
keybindingService
|
|
801
|
+
keybindingService,
|
|
802
|
+
actionViewItemService
|
|
770
803
|
) {
|
|
771
804
|
const id = AuxiliaryBrowserTitlebarPart_1.COUNTER++;
|
|
772
805
|
super(
|
|
@@ -784,7 +817,8 @@ let AuxiliaryBrowserTitlebarPart = class AuxiliaryBrowserTitlebarPart extends Br
|
|
|
784
817
|
hostService,
|
|
785
818
|
editorService,
|
|
786
819
|
menuService,
|
|
787
|
-
keybindingService
|
|
820
|
+
keybindingService,
|
|
821
|
+
actionViewItemService
|
|
788
822
|
);
|
|
789
823
|
this.container = container;
|
|
790
824
|
this.mainTitlebar = mainTitlebar;
|
|
@@ -793,6 +827,6 @@ let AuxiliaryBrowserTitlebarPart = class AuxiliaryBrowserTitlebarPart extends Br
|
|
|
793
827
|
return getZoomFactor(getWindow(this.element)) < 1 || !this.mainTitlebar.hasZoomableElements;
|
|
794
828
|
}
|
|
795
829
|
};
|
|
796
|
-
AuxiliaryBrowserTitlebarPart = AuxiliaryBrowserTitlebarPart_1 = ( __decorate([( __param(3, IContextMenuService)), ( __param(4, IConfigurationService)), ( __param(5, IBrowserWorkbenchEnvironmentService)), ( __param(6, IInstantiationService)), ( __param(7, IThemeService)), ( __param(8, IStorageService)), ( __param(9, IWorkbenchLayoutService)), ( __param(10, IContextKeyService)), ( __param(11, IHostService)), ( __param(12, IEditorGroupsService)), ( __param(13, IEditorService)), ( __param(14, IMenuService)), ( __param(15, IKeybindingService))], AuxiliaryBrowserTitlebarPart));
|
|
830
|
+
AuxiliaryBrowserTitlebarPart = AuxiliaryBrowserTitlebarPart_1 = ( __decorate([( __param(3, IContextMenuService)), ( __param(4, IConfigurationService)), ( __param(5, IBrowserWorkbenchEnvironmentService)), ( __param(6, IInstantiationService)), ( __param(7, IThemeService)), ( __param(8, IStorageService)), ( __param(9, IWorkbenchLayoutService)), ( __param(10, IContextKeyService)), ( __param(11, IHostService)), ( __param(12, IEditorGroupsService)), ( __param(13, IEditorService)), ( __param(14, IMenuService)), ( __param(15, IKeybindingService)), ( __param(16, IActionViewItemService))], AuxiliaryBrowserTitlebarPart));
|
|
797
831
|
|
|
798
832
|
export { AuxiliaryBrowserTitlebarPart, BrowserTitleService, BrowserTitlebarPart, MainBrowserTitlebarPart };
|