@codingame/monaco-vscode-views-service-override 4.4.0 → 4.5.0-improve-code-splitting.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/index.d.ts +3 -3
- package/index.js +8 -8
- package/package.json +13 -11
- package/tools/editor.d.ts +1 -1
- package/tools/editor.js +12 -12
- package/tools/views.js +6 -6
- package/tools.js +38 -1
- package/views.d.ts +2 -2
- package/views.js +29 -113
- package/vscode/src/vs/platform/actions/browser/toolbar.d.ts +6 -5
- package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.d.ts +10 -9
- package/vscode/src/vs/workbench/browser/parts/compositePart.d.ts +6 -6
- package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.d.ts +7 -6
- package/vscode/src/vs/workbench/browser/parts/paneCompositePart.d.ts +12 -10
- package/vscode/src/vs/workbench/browser/parts/panel/panelPart.d.ts +11 -11
- package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.d.ts +11 -11
- package/vscode/src/vs/workbench/services/activity/browser/activityService.d.ts +28 -0
- package/assets/fake.html +0 -10
- package/assets/index-no-csp.html +0 -1230
- package/assets/index.html +0 -1231
- package/assets/service-worker.js +0 -457
- package/override/vs/platform/dialogs/common/dialogs.js +0 -10
- package/tools/editorAssets.js +0 -4
- package/tools/url.js +0 -10
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { IWorkbenchLayoutService } from 'vscode/vscode/vs/workbench/services/layout/browser/layoutService';
|
|
2
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
3
|
-
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView';
|
|
4
|
-
import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding';
|
|
1
|
+
import { IWorkbenchLayoutService } from 'vscode/vscode/vs/workbench/services/layout/browser/layoutService.service';
|
|
2
|
+
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
3
|
+
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
4
|
+
import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
|
|
5
5
|
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
6
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
7
|
-
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification';
|
|
8
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
9
|
-
import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions';
|
|
10
|
-
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views';
|
|
11
|
-
import { IMenuService } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
6
|
+
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
7
|
+
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
|
|
8
|
+
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
9
|
+
import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
10
|
+
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views.service';
|
|
11
|
+
import { IMenuService } from 'vscode/vscode/vs/platform/actions/common/actions.service';
|
|
12
12
|
import { AbstractPaneCompositePart, CompositeBarPosition } from '../paneCompositePart.js';
|
|
13
|
-
import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands';
|
|
13
|
+
import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
|
|
14
14
|
import { IPaneCompositeBarOptions } from '../paneCompositeBar.js';
|
|
15
15
|
|
|
16
16
|
declare class PanelPart extends AbstractPaneCompositePart {
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
2
2
|
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
3
|
-
import { IWorkbenchLayoutService } from 'vscode/vscode/vs/workbench/services/layout/browser/layoutService';
|
|
4
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
5
|
-
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView';
|
|
6
|
-
import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding';
|
|
7
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
8
|
-
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification';
|
|
9
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
3
|
+
import { IWorkbenchLayoutService } from 'vscode/vscode/vs/workbench/services/layout/browser/layoutService.service';
|
|
4
|
+
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
5
|
+
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
6
|
+
import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
|
|
7
|
+
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
8
|
+
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
|
|
10
9
|
import { AnchorAlignment } from 'vscode/vscode/vs/base/browser/ui/contextview/contextview';
|
|
11
|
-
import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions';
|
|
10
|
+
import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
12
11
|
import { LayoutPriority } from 'vscode/vscode/vs/base/browser/ui/splitview/splitview';
|
|
13
|
-
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views';
|
|
12
|
+
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views.service';
|
|
14
13
|
import { AbstractPaneCompositePart, CompositeBarPosition } from '../paneCompositePart.js';
|
|
15
14
|
import { ActivityBarCompositeBar } from '../activitybar/activitybarPart.js';
|
|
16
15
|
import { IPaneCompositeBarOptions } from '../paneCompositeBar.js';
|
|
17
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
16
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
17
|
+
import { IMenuService } from 'vscode/vscode/vs/platform/actions/common/actions.service';
|
|
18
18
|
|
|
19
19
|
declare class SidebarPart extends AbstractPaneCompositePart {
|
|
20
20
|
private readonly configurationService;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { IActivity } from 'vscode/vscode/vs/workbench/services/activity/common/activity';
|
|
2
|
+
import { IActivityService } from 'vscode/vscode/vs/workbench/services/activity/common/activity.service';
|
|
3
|
+
import { Disposable, IDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
4
|
+
import { ViewContainer } from 'vscode/vscode/vs/workbench/common/views';
|
|
5
|
+
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views.service';
|
|
6
|
+
import { Event } from 'vscode/vscode/vs/base/common/event';
|
|
7
|
+
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
8
|
+
|
|
9
|
+
declare class ActivityService extends Disposable implements IActivityService {
|
|
10
|
+
private readonly viewDescriptorService;
|
|
11
|
+
private readonly instantiationService;
|
|
12
|
+
_serviceBrand: undefined;
|
|
13
|
+
private readonly viewActivities;
|
|
14
|
+
private readonly _onDidChangeActivity;
|
|
15
|
+
readonly onDidChangeActivity: Event<string | ViewContainer>;
|
|
16
|
+
private readonly viewContainerActivities;
|
|
17
|
+
private readonly globalActivities;
|
|
18
|
+
constructor(viewDescriptorService: IViewDescriptorService, instantiationService: IInstantiationService);
|
|
19
|
+
showViewContainerActivity(viewContainerId: string, activity: IActivity): IDisposable;
|
|
20
|
+
getViewContainerActivities(viewContainerId: string): IActivity[];
|
|
21
|
+
showViewActivity(viewId: string, activity: IActivity): IDisposable;
|
|
22
|
+
showAccountsActivity(activity: IActivity): IDisposable;
|
|
23
|
+
showGlobalActivity(activity: IActivity): IDisposable;
|
|
24
|
+
getActivity(id: string): IActivity[];
|
|
25
|
+
private showActivity;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export { ActivityService };
|