@codingame/monaco-vscode-api 13.1.3 → 13.1.4
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 +8 -8
- package/vscode/src/vs/base/common/event.d.ts +1 -1
- package/vscode/src/vs/editor/browser/editorBrowser.d.ts +1 -1
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +1 -1
- package/vscode/src/vs/editor/common/editorCommon.d.ts +1 -1
- package/vscode/src/vs/editor/common/model.d.ts +1 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneCodeEditor.d.ts +5 -5
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-api",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-base-service-override": "13.1.
|
|
19
|
-
"@codingame/monaco-vscode-environment-service-override": "13.1.
|
|
20
|
-
"@codingame/monaco-vscode-extensions-service-override": "13.1.
|
|
21
|
-
"@codingame/monaco-vscode-files-service-override": "13.1.
|
|
22
|
-
"@codingame/monaco-vscode-host-service-override": "13.1.
|
|
23
|
-
"@codingame/monaco-vscode-layout-service-override": "13.1.
|
|
24
|
-
"@codingame/monaco-vscode-quickaccess-service-override": "13.1.
|
|
18
|
+
"@codingame/monaco-vscode-base-service-override": "13.1.4",
|
|
19
|
+
"@codingame/monaco-vscode-environment-service-override": "13.1.4",
|
|
20
|
+
"@codingame/monaco-vscode-extensions-service-override": "13.1.4",
|
|
21
|
+
"@codingame/monaco-vscode-files-service-override": "13.1.4",
|
|
22
|
+
"@codingame/monaco-vscode-host-service-override": "13.1.4",
|
|
23
|
+
"@codingame/monaco-vscode-layout-service-override": "13.1.4",
|
|
24
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "13.1.4",
|
|
25
25
|
"marked": "14.0.0"
|
|
26
26
|
},
|
|
27
27
|
"main": "services.js",
|
|
@@ -3,7 +3,7 @@ import { DisposableStore, IDisposable } from "./lifecycle.js";
|
|
|
3
3
|
import { LinkedList } from "./linkedList.js";
|
|
4
4
|
import { IObservable } from "./observable.js";
|
|
5
5
|
import { MicrotaskDelay } from "./symbols.js";
|
|
6
|
-
type Event<T> = import("vscode").Event<T>;
|
|
6
|
+
export type Event<T> = import("vscode").Event<T>;
|
|
7
7
|
export declare namespace Event {
|
|
8
8
|
const None: Event<any>;
|
|
9
9
|
function defer(event: Event<unknown>, disposable?: DisposableStore): Event<void>;
|
|
@@ -233,7 +233,7 @@ export interface IDiffEditorConstructionOptions extends IDiffEditorOptions, IEdi
|
|
|
233
233
|
originalAriaLabel?: string;
|
|
234
234
|
modifiedAriaLabel?: string;
|
|
235
235
|
}
|
|
236
|
-
type ICodeEditor = import("monaco-editor
|
|
236
|
+
export type ICodeEditor = import("monaco-editor").editor.ICodeEditor;
|
|
237
237
|
export interface IActiveCodeEditor extends ICodeEditor {
|
|
238
238
|
getPosition(): Position;
|
|
239
239
|
getSelection(): Selection;
|
|
@@ -13,7 +13,7 @@ export declare enum EditorAutoIndentStrategy {
|
|
|
13
13
|
Advanced = 3,
|
|
14
14
|
Full = 4
|
|
15
15
|
}
|
|
16
|
-
type IEditorOptions = import("monaco-editor
|
|
16
|
+
export type IEditorOptions = import("monaco-editor").editor.IEditorOptions;
|
|
17
17
|
export declare const MINIMAP_GUTTER_WIDTH = 8;
|
|
18
18
|
export interface IDiffEditorBaseOptions {
|
|
19
19
|
enableSplitViewResizing?: boolean;
|
|
@@ -100,7 +100,7 @@ export declare enum ScrollType {
|
|
|
100
100
|
Smooth = 0,
|
|
101
101
|
Immediate = 1
|
|
102
102
|
}
|
|
103
|
-
type IEditor = import("monaco-editor
|
|
103
|
+
export type IEditor = import("monaco-editor").editor.IEditor;
|
|
104
104
|
export interface IDiffEditor extends IEditor {
|
|
105
105
|
getModel(): IDiffEditorModel | null;
|
|
106
106
|
getOriginalEditor(): IEditor;
|
|
@@ -220,7 +220,7 @@ export interface ITextSnapshot {
|
|
|
220
220
|
read(): string | null;
|
|
221
221
|
}
|
|
222
222
|
export declare function isITextSnapshot(obj: any): obj is ITextSnapshot;
|
|
223
|
-
type ITextModel = import("monaco-editor
|
|
223
|
+
export type ITextModel = import("monaco-editor").editor.ITextModel;
|
|
224
224
|
export declare function isITextModel(obj: IEditorModel): obj is ITextModel;
|
|
225
225
|
export interface IAttachedView {
|
|
226
226
|
setVisibleLines(visibleLines: {
|
|
@@ -27,7 +27,7 @@ import { ILanguageFeaturesService } from "../../common/services/languageFeatures
|
|
|
27
27
|
import { DiffEditorWidget } from "../../browser/widget/diffEditor/diffEditorWidget.js";
|
|
28
28
|
import { IAccessibilitySignalService } from "../../../platform/accessibilitySignal/browser/accessibilitySignalService.service.js";
|
|
29
29
|
import { IHoverService } from "../../../platform/hover/browser/hover.service.js";
|
|
30
|
-
type IActionDescriptor = import("monaco-editor
|
|
30
|
+
export type IActionDescriptor = import("monaco-editor").editor.IActionDescriptor;
|
|
31
31
|
export interface IGlobalEditorOptions {
|
|
32
32
|
tabSize?: number;
|
|
33
33
|
insertSpaces?: boolean;
|
|
@@ -42,10 +42,10 @@ export interface IGlobalEditorOptions {
|
|
|
42
42
|
theme?: string;
|
|
43
43
|
autoDetectHighContrast?: boolean;
|
|
44
44
|
}
|
|
45
|
-
type IStandaloneEditorConstructionOptions = import("monaco-editor
|
|
46
|
-
type IStandaloneDiffEditorConstructionOptions = import("monaco-editor
|
|
47
|
-
type IStandaloneCodeEditor = import("monaco-editor
|
|
48
|
-
type IStandaloneDiffEditor = import("monaco-editor
|
|
45
|
+
export type IStandaloneEditorConstructionOptions = import("monaco-editor").editor.IStandaloneEditorConstructionOptions;
|
|
46
|
+
export type IStandaloneDiffEditorConstructionOptions = import("monaco-editor").editor.IStandaloneDiffEditorConstructionOptions;
|
|
47
|
+
export type IStandaloneCodeEditor = import("monaco-editor").editor.IStandaloneCodeEditor;
|
|
48
|
+
export type IStandaloneDiffEditor = import("monaco-editor").editor.IStandaloneDiffEditor;
|
|
49
49
|
export declare class StandaloneCodeEditor extends CodeEditorWidget implements IStandaloneCodeEditor {
|
|
50
50
|
private readonly _standaloneKeybindingService;
|
|
51
51
|
constructor(domElement: HTMLElement, _options: Readonly<IStandaloneEditorConstructionOptions>, instantiationService: IInstantiationService, codeEditorService: ICodeEditorService, commandService: ICommandService, contextKeyService: IContextKeyService, hoverService: IHoverService, keybindingService: IKeybindingService, themeService: IThemeService, notificationService: INotificationService, accessibilityService: IAccessibilityService, languageConfigurationService: ILanguageConfigurationService, languageFeaturesService: ILanguageFeaturesService);
|
|
@@ -100,7 +100,7 @@ export declare class StandaloneConfigurationService implements IConfigurationSer
|
|
|
100
100
|
}
|
|
101
101
|
export declare function updateConfigurationService(configurationService: IConfigurationService, source: any, isDiffEditor: boolean): void;
|
|
102
102
|
export declare const standaloneEditorWorkerDescriptor: IWorkerDescriptor;
|
|
103
|
-
type IEditorOverrideServices = import("monaco-editor
|
|
103
|
+
export type IEditorOverrideServices = import("monaco-editor").editor.IEditorOverrideServices;
|
|
104
104
|
export declare namespace StandaloneServices {
|
|
105
105
|
function get<T>(serviceId: ServiceIdentifier<T>): T;
|
|
106
106
|
function initialize(overrides: IEditorOverrideServices): IInstantiationService;
|