@codingame/monaco-vscode-editor-service-override 26.2.2 → 28.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.js CHANGED
@@ -131,6 +131,7 @@ class EmptyEditorGroupsService {
131
131
  this.copyGroup = unsupported;
132
132
  this.onDidChangeEditorPartOptions = Event.None;
133
133
  this.enforcePartOptions = unsupported;
134
+ this.createModalEditorPart = unsupported;
134
135
  }
135
136
  get contentDimension() {
136
137
  return unsupported();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-editor-service-override",
3
- "version": "26.2.2",
3
+ "version": "28.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - editor service-override",
6
6
  "keywords": [],
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "26.2.2"
18
+ "@codingame/monaco-vscode-api": "28.0.0"
19
19
  },
20
20
  "main": "index.js",
21
21
  "module": "index.js",
@@ -10,7 +10,7 @@ import { ITextModelService } from "@codingame/monaco-vscode-api/vscode/vs/editor
10
10
  import { type IStandaloneCodeEditor } from "@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneCodeEditor";
11
11
  import { Disposable, type IDisposable, type IReference } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
12
12
  import { EditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/browser/editorService";
13
- import { type IAuxiliaryEditorPart, type IEditorDropTargetDelegate, type IEditorPart, type IActiveEditorActions, type IEditorGroup, type IEditorWorkingSet, type IEditorGroupContextKeyProvider } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService";
13
+ import { type IAuxiliaryEditorPart, type IEditorDropTargetDelegate, type IEditorPart, type IActiveEditorActions, type IEditorGroup, type IEditorWorkingSet, type IEditorGroupContextKeyProvider, type IModalEditorPart } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService";
14
14
  import { IEditorGroupsService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service";
15
15
  import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
16
16
  import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
@@ -232,6 +232,8 @@ export declare class MonacoDelegateEditorGroupsService<D extends IEditorGroupsSe
232
232
  additionalGroups: StandaloneEditorGroup[];
233
233
  activeGroupOverride: StandaloneEditorGroup | undefined;
234
234
  constructor(delegate: D, emptyDelegate: boolean, openEditorFallback: OpenEditor | undefined, instantiationService: IInstantiationService);
235
+ createModalEditorPart: typeof unsupported;
236
+ activeModalEditorPart: IModalEditorPart | undefined;
235
237
  getScopedInstantiationService(): IInstantiationService;
236
238
  registerContextKeyProvider<T extends ContextKeyValue>(provider: IEditorGroupContextKeyProvider<T>): IDisposable;
237
239
  saveWorkingSet(name: string): IEditorWorkingSet;
@@ -263,7 +265,7 @@ export declare class MonacoDelegateEditorGroupsService<D extends IEditorGroupsSe
263
265
  _onDidRemoveGroup: Emitter<IEditorGroup>;
264
266
  onDidRemoveGroup: Event<IEditorGroup>;
265
267
  onDidMoveGroup: Event<IEditorGroup>;
266
- onDidActivateGroup: Event<IEditorGroup>;
268
+ onDidActivateGroup: Event<import("@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService").IEditorGroupActivationEvent>;
267
269
  onDidChangeGroupIndex: Event<IEditorGroup>;
268
270
  onDidChangeGroupLocked: Event<IEditorGroup>;
269
271
  get sideGroup(): IEditorGroupsService["sideGroup"];