@codingame/monaco-vscode-editor-service-override 14.0.5 → 15.0.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/index.d.ts +1 -1
- package/index.js +2 -2
- package/package.json +9 -9
- package/service-override/tools/editor.d.ts +4 -3
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { IEditorOverrideServices } from "@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneServices";
|
|
2
|
-
import type { IResolvedTextEditorModel } from "@codingame/monaco-vscode-
|
|
2
|
+
import type { IResolvedTextEditorModel } from "@codingame/monaco-vscode-model-service-override/vscode/vs/editor/common/services/resolverService";
|
|
3
3
|
import type { IEditorOptions } from "@codingame/monaco-vscode-api/vscode/vs/platform/editor/common/editor";
|
|
4
4
|
import type { IReference } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
5
5
|
import { MonacoEditorService, type OpenEditor } from "./service-override/tools/editor.js";
|
package/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
3
|
import { Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
4
|
-
import { ICodeEditorService } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/services/codeEditorService';
|
|
4
|
+
import { ICodeEditorService } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/services/codeEditorService.service';
|
|
5
5
|
import { CodeEditorService } from '@codingame/monaco-vscode-b1e8558d-1726-5299-bc75-e43ee6d1a124-common/vscode/vs/workbench/services/editor/browser/codeEditorService';
|
|
6
6
|
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
7
7
|
import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
|
|
@@ -17,7 +17,7 @@ export { MonacoEditorService } from '@codingame/monaco-vscode-9efc1f50-c7de-55d6
|
|
|
17
17
|
import { unsupported } from '@codingame/monaco-vscode-api/tools';
|
|
18
18
|
import '@codingame/monaco-vscode-b1e8558d-1726-5299-bc75-e43ee6d1a124-common/vscode/vs/workbench/browser/parts/editor/editor.contribution._autosave';
|
|
19
19
|
import '@codingame/monaco-vscode-b1e8558d-1726-5299-bc75-e43ee6d1a124-common/vscode/vs/workbench/contrib/files/browser/files.contribution._fileEditorFactory';
|
|
20
|
-
import '@codingame/monaco-vscode-
|
|
20
|
+
import '@codingame/monaco-vscode-c4e2825a-b5b1-5f0e-b547-068c32e06d50-common/vscode/vs/workbench/contrib/files/browser/fileCommands._save';
|
|
21
21
|
|
|
22
22
|
class EmptyEditorPart {
|
|
23
23
|
constructor() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-editor-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - editor service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-
|
|
19
|
-
"@codingame/monaco-vscode-
|
|
20
|
-
"@codingame/monaco-vscode-
|
|
21
|
-
"@codingame/monaco-vscode-
|
|
18
|
+
"@codingame/monaco-vscode-9efc1f50-c7de-55d6-8b28-bcc88bd49b5a-common": "15.0.0",
|
|
19
|
+
"@codingame/monaco-vscode-api": "15.0.0",
|
|
20
|
+
"@codingame/monaco-vscode-b1e8558d-1726-5299-bc75-e43ee6d1a124-common": "15.0.0",
|
|
21
|
+
"@codingame/monaco-vscode-c4e2825a-b5b1-5f0e-b547-068c32e06d50-common": "15.0.0"
|
|
22
22
|
},
|
|
23
23
|
"main": "index.js",
|
|
24
24
|
"module": "index.js",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"default": "./index.js"
|
|
29
29
|
},
|
|
30
30
|
"./vscode/*": {
|
|
31
|
-
"
|
|
32
|
-
"
|
|
31
|
+
"types": "./vscode/src/*.d.ts",
|
|
32
|
+
"default": "./vscode/src/*.js"
|
|
33
33
|
},
|
|
34
34
|
"./*": {
|
|
35
|
-
"
|
|
36
|
-
"
|
|
35
|
+
"types": "./*.d.ts",
|
|
36
|
+
"default": "./*.js"
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"typesVersions": {
|
|
@@ -5,7 +5,8 @@ import { EditorInput } from "@codingame/monaco-vscode-api/vscode/vs/workbench/co
|
|
|
5
5
|
import type { IEditorOptions, IResourceEditorInput, ITextResourceEditorInput } from "@codingame/monaco-vscode-api/vscode/vs/platform/editor/common/editor";
|
|
6
6
|
import type { ICodeEditor, IDiffEditor } from "@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser";
|
|
7
7
|
import { type IEditorGroupView } from "@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/editor/editor";
|
|
8
|
-
import { type IResolvedTextEditorModel
|
|
8
|
+
import { type IResolvedTextEditorModel } from "@codingame/monaco-vscode-model-service-override/vscode/vs/editor/common/services/resolverService";
|
|
9
|
+
import { ITextModelService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/resolverService.service";
|
|
9
10
|
import { type IStandaloneCodeEditor } from "@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneCodeEditor";
|
|
10
11
|
import { Disposable, type IDisposable, type IReference } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
11
12
|
import { EditorService } from "@codingame/monaco-vscode-9efc1f50-c7de-55d6-8b28-bcc88bd49b5a-common/vscode/vs/workbench/services/editor/browser/editorService";
|
|
@@ -21,10 +22,10 @@ import { IFileService } from "@codingame/monaco-vscode-api/vscode/vs/platform/fi
|
|
|
21
22
|
import { ITextEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/textfile/common/textEditorService.service";
|
|
22
23
|
import { IHostService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service";
|
|
23
24
|
import { Emitter, Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
24
|
-
import { TextResourceEditorInput } from "@codingame/monaco-vscode-
|
|
25
|
+
import { TextResourceEditorInput } from "@codingame/monaco-vscode-86d65fc6-30f9-5dca-9501-e249de688591-common/vscode/vs/workbench/common/editor/textResourceEditorInput";
|
|
25
26
|
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
26
27
|
import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
|
|
27
|
-
import type { IGroupModelChangeEvent } from "@codingame/monaco-vscode-
|
|
28
|
+
import type { IGroupModelChangeEvent } from "@codingame/monaco-vscode-ad89fae6-94f0-5ac2-a185-22dea4b68ee0-common/vscode/vs/workbench/common/editor/editorGroupModel";
|
|
28
29
|
import type { EditorLayoutInfo } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/config/editorOptions";
|
|
29
30
|
import type { IRectangle } from "@codingame/monaco-vscode-api/vscode/vs/platform/window/common/window";
|
|
30
31
|
import type { ContextKeyValue } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey";
|