@codingame/monaco-vscode-editor-api 16.1.1 → 17.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-editor-api",
3
- "version": "16.1.1",
3
+ "version": "17.1.0",
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": "16.1.1",
19
- "@codingame/monaco-vscode-api": "16.1.1"
18
+ "@codingame/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common": "17.1.0",
19
+ "@codingame/monaco-vscode-api": "17.1.0"
20
20
  },
21
21
  "exports": {
22
22
  ".": "./esm/vs/editor/editor.api.js",
@@ -7,7 +7,7 @@ import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/
7
7
  import { ILanguageConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/languageConfigurationRegistry.service';
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.service';
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';
10
+ import { InlineCompletionEndOfLifeReasonKind, 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';
@@ -436,6 +436,7 @@ function createMonacoLanguagesAPI() {
436
436
  NewSymbolNameTriggerKind: NewSymbolNameTriggerKind,
437
437
  PartialAcceptTriggerKind: PartialAcceptTriggerKind,
438
438
  HoverVerbosityAction: HoverVerbosityAction,
439
+ InlineCompletionEndOfLifeReasonKind: InlineCompletionEndOfLifeReasonKind,
439
440
  FoldingRangeKind: FoldingRangeKind,
440
441
  SelectedSuggestionInfo: SelectedSuggestionInfo,
441
442
  };