@codingame/monaco-vscode-views-service-override 1.83.14 → 1.83.15
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 +9 -9
- package/tools/editor.d.ts +2 -2
- package/views.js +1 -1
- package/services.js +0 -94
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-views-service-override",
|
|
3
|
-
"version": "1.83.
|
|
3
|
+
"version": "1.83.15",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode": "npm:@codingame/monaco-vscode-api@1.83.
|
|
21
|
+
"vscode": "npm:@codingame/monaco-vscode-api@1.83.15",
|
|
22
22
|
"monaco-editor": "0.44.0",
|
|
23
|
-
"@codingame/monaco-vscode-bulk-edit-service-override": "1.83.
|
|
24
|
-
"@codingame/monaco-vscode-layout-service-override": "1.83.
|
|
25
|
-
"@codingame/monaco-vscode-quickaccess-service-override": "1.83.
|
|
26
|
-
"@codingame/monaco-vscode-keybindings-service-override": "1.83.
|
|
27
|
-
"@codingame/monaco-vscode-environment-service-override": "1.83.
|
|
28
|
-
"@codingame/monaco-vscode-extensions-service-override": "1.83.
|
|
29
|
-
"@codingame/monaco-vscode-files-service-override": "1.83.
|
|
23
|
+
"@codingame/monaco-vscode-bulk-edit-service-override": "1.83.15",
|
|
24
|
+
"@codingame/monaco-vscode-layout-service-override": "1.83.15",
|
|
25
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "1.83.15",
|
|
26
|
+
"@codingame/monaco-vscode-keybindings-service-override": "1.83.15",
|
|
27
|
+
"@codingame/monaco-vscode-environment-service-override": "1.83.15",
|
|
28
|
+
"@codingame/monaco-vscode-extensions-service-override": "1.83.15",
|
|
29
|
+
"@codingame/monaco-vscode-files-service-override": "1.83.15"
|
|
30
30
|
}
|
|
31
31
|
}
|
package/tools/editor.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { IResolvedTextEditorModel } from 'vscode/vscode/vs/editor/common/services/resolverService';
|
|
2
|
-
import { IReference } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
3
1
|
import { ICodeEditor } from 'vscode/vscode/vs/editor/browser/editorBrowser';
|
|
2
|
+
import { IReference } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
4
3
|
import { IEditorOptions } from 'vscode/vscode/vs/platform/editor/common/editor';
|
|
4
|
+
import { IResolvedTextEditorModel } from 'vscode/vscode/vs/editor/common/services/resolverService';
|
|
5
5
|
|
|
6
6
|
type OpenEditor = (modelRef: IReference<IResolvedTextEditorModel>, options: IEditorOptions | undefined, sideBySide?: boolean) => Promise<ICodeEditor | undefined>;
|
|
7
7
|
|
package/views.js
CHANGED
|
@@ -116,7 +116,7 @@ import getServiceOverride$4$1 from '@codingame/monaco-vscode-keybindings-service
|
|
|
116
116
|
import { changeUrlDomain } from './tools/url.js';
|
|
117
117
|
import { registerAssets } from 'vscode/assets';
|
|
118
118
|
import { onRenderWorkbench } from 'vscode/lifecycle';
|
|
119
|
-
import { withReadyServices } from '
|
|
119
|
+
import { withReadyServices } from 'vscode/services';
|
|
120
120
|
|
|
121
121
|
function createPart(id, role, classes) {
|
|
122
122
|
const part = document.createElement(role === 'status' ? 'footer' : 'div');
|
package/services.js
DELETED
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
import 'vscode/missing-services';
|
|
2
|
-
export { default as Severity } from 'monaco-editor/esm/vs/base/common/severity.js';
|
|
3
|
-
export { StorageScope, StorageTarget } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
4
|
-
import { StandaloneServices } from 'monaco-editor/esm/vs/editor/standalone/browser/standaloneServices.js';
|
|
5
|
-
export { StandaloneServices } from 'monaco-editor/esm/vs/editor/standalone/browser/standaloneServices.js';
|
|
6
|
-
import 'monaco-editor/esm/vs/base/common/objects.js';
|
|
7
|
-
import { IInstantiationService } from 'monaco-editor/esm/vs/platform/instantiation/common/instantiation.js';
|
|
8
|
-
export { IInstantiationService } from 'monaco-editor/esm/vs/platform/instantiation/common/instantiation.js';
|
|
9
|
-
export { IProductService } from 'monaco-editor/esm/vs/platform/product/common/productService.js';
|
|
10
|
-
import { DisposableStore } from 'monaco-editor/esm/vs/base/common/lifecycle.js';
|
|
11
|
-
import '@codingame/monaco-vscode-layout-service-override';
|
|
12
|
-
import '@codingame/monaco-vscode-environment-service-override';
|
|
13
|
-
import '@codingame/monaco-vscode-extensions-service-override';
|
|
14
|
-
import '@codingame/monaco-vscode-files-service-override';
|
|
15
|
-
import '@codingame/monaco-vscode-quickaccess-service-override';
|
|
16
|
-
import { serviceInitializedBarrier, serviceInitializedEmitter } from 'vscode/lifecycle';
|
|
17
|
-
import 'vscode/workbench';
|
|
18
|
-
export { SyncDescriptor } from 'monaco-editor/esm/vs/platform/instantiation/common/descriptors.js';
|
|
19
|
-
export { ICommandService } from 'monaco-editor/esm/vs/platform/commands/common/commands.js';
|
|
20
|
-
export { INotificationService, NeverShowAgainScope, NoOpNotification, NoOpProgress, NotificationPriority, NotificationsFilter } from 'monaco-editor/esm/vs/platform/notification/common/notification.js';
|
|
21
|
-
export { IBulkEditService } from 'monaco-editor/esm/vs/editor/browser/services/bulkEditService.js';
|
|
22
|
-
export { ICodeEditorService } from 'monaco-editor/esm/vs/editor/browser/services/codeEditorService.js';
|
|
23
|
-
export { ILanguageService } from 'monaco-editor/esm/vs/editor/common/languages/language.js';
|
|
24
|
-
export { ILanguageConfigurationService } from 'monaco-editor/esm/vs/editor/common/languages/languageConfigurationRegistry.js';
|
|
25
|
-
export { IEditorWorkerService } from 'monaco-editor/esm/vs/editor/common/services/editorWorker.js';
|
|
26
|
-
export { ILanguageFeaturesService } from 'monaco-editor/esm/vs/editor/common/services/languageFeatures.js';
|
|
27
|
-
export { IModelService } from 'monaco-editor/esm/vs/editor/common/services/model.js';
|
|
28
|
-
export { ITextModelService } from 'monaco-editor/esm/vs/editor/common/services/resolverService.js';
|
|
29
|
-
export { IClipboardService } from 'monaco-editor/esm/vs/platform/clipboard/common/clipboardService.js';
|
|
30
|
-
import './override/vs/platform/dialogs/common/dialogs.js';
|
|
31
|
-
export { IFileService } from 'monaco-editor/esm/vs/platform/files/common/files.js';
|
|
32
|
-
export { IMarkerService } from 'monaco-editor/esm/vs/platform/markers/common/markers.js';
|
|
33
|
-
export { IOpenerService } from 'monaco-editor/esm/vs/platform/opener/common/opener.js';
|
|
34
|
-
export { IQuickInputService } from 'monaco-editor/esm/vs/platform/quickinput/common/quickInput.js';
|
|
35
|
-
export { ITelemetryService } from 'monaco-editor/esm/vs/platform/telemetry/common/telemetry.js';
|
|
36
|
-
export { IUriIdentityService } from 'monaco-editor/esm/vs/platform/uriIdentity/common/uriIdentity.js';
|
|
37
|
-
export { IBreadcrumbsService } from 'vscode/vscode/vs/workbench/browser/parts/editor/breadcrumbs';
|
|
38
|
-
export { GroupDirection, GroupLocation, GroupOrientation, GroupsArrangement, GroupsOrder, IEditorGroupsService, MergeGroupMode } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService';
|
|
39
|
-
export { CloseDirection, EditorsOrder } from 'vscode/vscode/vs/workbench/common/editor';
|
|
40
|
-
export { EditorInput } from 'vscode/vscode/vs/workbench/common/editor/editorInput';
|
|
41
|
-
export { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
42
|
-
export { IEditorResolverService } from 'vscode/vscode/vs/workbench/services/editor/common/editorResolverService';
|
|
43
|
-
export { ITextEditorService } from 'vscode/vscode/vs/workbench/services/textfile/common/textEditorService';
|
|
44
|
-
export { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService';
|
|
45
|
-
export { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host';
|
|
46
|
-
export { ILanguageStatusService } from 'vscode/vscode/vs/workbench/services/languageStatus/common/languageStatusService';
|
|
47
|
-
export { IPaneCompositePartService } from 'vscode/vscode/vs/workbench/services/panecomposite/browser/panecomposite';
|
|
48
|
-
export { IPathService } from 'vscode/vscode/vs/workbench/services/path/common/pathService';
|
|
49
|
-
export { ITextFileService } from 'vscode/vscode/vs/workbench/services/textfile/common/textfiles';
|
|
50
|
-
export { IWorkingCopyFileService } from 'vscode/vscode/vs/workbench/services/workingCopy/common/workingCopyFileService';
|
|
51
|
-
export { IConfigurationService } from 'monaco-editor/esm/vs/platform/configuration/common/configuration.js';
|
|
52
|
-
export { IContextKeyService } from 'monaco-editor/esm/vs/platform/contextkey/common/contextkey.js';
|
|
53
|
-
export { IThemeService } from 'monaco-editor/esm/vs/platform/theme/common/themeService.js';
|
|
54
|
-
export { ISnippetsService } from 'vscode/vscode/vs/workbench/contrib/snippets/browser/snippets';
|
|
55
|
-
export { IWorkspaceContextService } from 'monaco-editor/esm/vs/platform/workspace/common/workspace.js';
|
|
56
|
-
export { IStorageService } from 'monaco-editor/esm/vs/platform/storage/common/storage.js';
|
|
57
|
-
export { IAudioCueService } from 'monaco-editor/esm/vs/platform/audioCues/browser/audioCueService.js';
|
|
58
|
-
export { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
59
|
-
export { ILogService, ILoggerService, LogLevel } from 'monaco-editor/esm/vs/platform/log/common/log.js';
|
|
60
|
-
export { IViewDescriptorService, IViewsService } from 'vscode/vscode/vs/workbench/common/views';
|
|
61
|
-
export { ILayoutService } from 'monaco-editor/esm/vs/platform/layout/browser/layoutService.js';
|
|
62
|
-
export { IPreferencesService } from 'vscode/vscode/vs/workbench/services/preferences/common/preferences';
|
|
63
|
-
export { IPreferencesSearchService } from 'vscode/vscode/vs/workbench/contrib/preferences/common/preferences';
|
|
64
|
-
export { IKeybindingEditingService } from 'vscode/vscode/vs/workbench/services/keybinding/common/keybindingEditing';
|
|
65
|
-
export { IOutputService } from 'vscode/vscode/vs/workbench/services/output/common/output';
|
|
66
|
-
export { GoFilter, GoScope, IHistoryService } from 'vscode/vscode/vs/workbench/services/history/common/history';
|
|
67
|
-
export { IRemoteAgentService } from 'vscode/vscode/vs/workbench/services/remote/common/remoteAgentService';
|
|
68
|
-
export { IRemoteAuthorityResolverService } from 'vscode/vscode/vs/platform/remote/common/remoteAuthorityResolver';
|
|
69
|
-
export { IRemoteSocketFactoryService } from 'vscode/vscode/vs/platform/remote/common/remoteSocketFactoryService';
|
|
70
|
-
export { ITerminalInstanceService, ITerminalService } from 'vscode/vscode/vs/workbench/contrib/terminal/browser/terminal';
|
|
71
|
-
export { IFilesConfigurationService } from 'vscode/vscode/vs/workbench/services/filesConfiguration/common/filesConfigurationService';
|
|
72
|
-
export { ILabelService } from 'monaco-editor/esm/vs/platform/label/common/label.js';
|
|
73
|
-
export { IActivityService } from 'vscode/vscode/vs/workbench/services/activity/common/activity';
|
|
74
|
-
export { IHoverService } from 'vscode/vscode/vs/workbench/services/hover/browser/hover';
|
|
75
|
-
export { IExplorerService } from 'vscode/vscode/vs/workbench/contrib/files/browser/files';
|
|
76
|
-
export { IStatusbarService } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar';
|
|
77
|
-
export { ITitleService } from 'vscode/vscode/vs/workbench/services/title/common/titleService';
|
|
78
|
-
export { IBannerService } from 'vscode/vscode/vs/workbench/services/banner/browser/bannerService';
|
|
79
|
-
export { IWorkspaceTrustEnablementService, IWorkspaceTrustManagementService, IWorkspaceTrustRequestService } from 'monaco-editor/esm/vs/platform/workspace/common/workspaceTrust.js';
|
|
80
|
-
export { IDialogService, IFileDialogService } from 'vscode/vscode/vs/platform/dialogs/common/dialogs';
|
|
81
|
-
|
|
82
|
-
function withReadyServices(callback) {
|
|
83
|
-
if (serviceInitializedBarrier.isOpen()) {
|
|
84
|
-
return StandaloneServices.get(IInstantiationService).invokeFunction(callback);
|
|
85
|
-
}
|
|
86
|
-
const disposable = new DisposableStore();
|
|
87
|
-
const listener = disposable.add(serviceInitializedEmitter.event(() => {
|
|
88
|
-
listener.dispose();
|
|
89
|
-
disposable.add(StandaloneServices.get(IInstantiationService).invokeFunction(callback));
|
|
90
|
-
}));
|
|
91
|
-
return disposable;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
export { withReadyServices };
|