@codingame/monaco-vscode-editor-api 13.1.3 → 13.1.5
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-editor-api",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - monaco-editor compatible api",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common": "13.1.
|
|
19
|
-
"@codingame/monaco-vscode-api": "13.1.
|
|
18
|
+
"@codingame/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common": "13.1.5",
|
|
19
|
+
"@codingame/monaco-vscode-api": "13.1.5"
|
|
20
20
|
},
|
|
21
21
|
"exports": {
|
|
22
22
|
".": "./esm/vs/editor/editor.api.js",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
import {
|
|
2
|
+
import { WrappingIndent, EditorOptions, EditorAutoIndentStrategy } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/config/editorOptions';
|
|
3
3
|
import { createMonacoBaseAPI } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/editorBaseApi';
|
|
4
4
|
import { createMonacoEditorAPI } from './standalone/browser/standaloneEditor.js';
|
|
5
5
|
import { createMonacoLanguagesAPI } from './standalone/browser/standaloneLanguages.js';
|
|
@@ -8,17 +8,17 @@ import { FontMeasurements } from '@codingame/monaco-vscode-api/vscode/vs/editor/
|
|
|
8
8
|
import { EditorCommand } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorExtensions';
|
|
9
9
|
import { ICodeEditorService } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/services/codeEditorService';
|
|
10
10
|
import { createWebWorker as createWebWorker$1 } from './standaloneWebWorker.js';
|
|
11
|
-
import {
|
|
11
|
+
import { EditorOptions, ApplyUpdateResult, ConfigurationChangedEvent } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/config/editorOptions';
|
|
12
12
|
import { EditorZoom } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/config/editorZoom';
|
|
13
|
-
import {
|
|
13
|
+
import { FontInfo, BareFontInfo } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/config/fontInfo';
|
|
14
14
|
import { EditorType } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/editorCommon';
|
|
15
15
|
import { TokenizationRegistry } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages';
|
|
16
16
|
import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language';
|
|
17
17
|
import { PLAINTEXT_LANGUAGE_ID } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/modesRegistry';
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
18
|
+
import { nullTokenize, NullState } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/nullTokenize';
|
|
19
|
+
import { FindMatch, TextModelResolvedOptions } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/model';
|
|
20
20
|
import { IModelService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model';
|
|
21
|
-
import {
|
|
21
|
+
import { ShowLightbulbIconMode, PositionAffinity, InjectedTextCursorStops, WrappingIndent, TrackedRangeStickiness, TextEditorCursorStyle, TextEditorCursorBlinkingStyle, ScrollType, ScrollbarVisibility, RenderMinimap, RenderLineNumbersType, GlyphMarginLane, OverviewRulerLane, OverlayWidgetPositionPreference, MouseTargetType, MinimapSectionHeaderStyle, MinimapPosition, EndOfLineSequence, EndOfLinePreference, EditorOption, EditorAutoIndentStrategy, DefaultEndOfLine, CursorChangeReason, ContentWidgetPositionPreference, AccessibilitySupport } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/standalone/standaloneEnums';
|
|
22
22
|
import { Colorizer } from './colorizer.js';
|
|
23
23
|
import { StandaloneEditor, StandaloneDiffEditor2, createTextModel } from '@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneCodeEditor';
|
|
24
24
|
import { StandaloneServices, StandaloneKeybindingService } from '@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneServices';
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
import { Color } from '@codingame/monaco-vscode-api/vscode/vs/base/common/color';
|
|
3
3
|
import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
|
|
4
4
|
import { MetadataConsts } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/encodedTokenAttributes';
|
|
5
|
-
import { EncodedTokenizationResult, Token, TokenizationResult, LazyTokenizationSupport, TokenizationRegistry,
|
|
5
|
+
import { EncodedTokenizationResult, Token, TokenizationResult, LazyTokenizationSupport, TokenizationRegistry, SelectedSuggestionInfo, FoldingRangeKind } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages';
|
|
6
6
|
import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language';
|
|
7
7
|
import { ILanguageConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/languageConfigurationRegistry';
|
|
8
8
|
import { ModesRegistry } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/modesRegistry';
|
|
9
9
|
import { ILanguageFeaturesService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatures';
|
|
10
|
-
import {
|
|
10
|
+
import { HoverVerbosityAction, PartialAcceptTriggerKind, NewSymbolNameTriggerKind, NewSymbolNameTag, CodeActionTriggerType, InlineEditTriggerKind, InlineCompletionTriggerKind, InlayHintKind, SignatureHelpTriggerKind, CompletionTriggerKind, IndentAction, SymbolTag, SymbolKind, CompletionItemInsertTextRule, CompletionItemTag, CompletionItemKind, DocumentHighlightKind } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/standalone/standaloneEnums';
|
|
11
11
|
import { StandaloneServices } from '@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneServices';
|
|
12
12
|
import { compile } from '../common/monarch/monarchCompile.js';
|
|
13
13
|
import { MonarchTokenizer } from '../common/monarch/monarchLexer.js';
|