@codingame/monaco-vscode-editor-api 11.1.1 → 12.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.
Files changed (35) hide show
  1. package/esm/vs/editor/browser/config/tabFocus.d.ts +1 -0
  2. package/esm/vs/editor/browser/coreCommands.d.ts +1 -0
  3. package/esm/vs/editor/common/commands/shiftCommand.d.ts +1 -0
  4. package/esm/vs/editor/contrib/bracketMatching/browser/bracketMatching.d.ts +1 -0
  5. package/esm/vs/editor/contrib/clipboard/browser/clipboard.d.ts +1 -0
  6. package/esm/vs/editor/contrib/contextmenu/browser/contextmenu.d.ts +1 -0
  7. package/esm/vs/editor/contrib/cursorUndo/browser/cursorUndo.d.ts +1 -0
  8. package/esm/vs/editor/contrib/find/browser/findController.d.ts +1 -0
  9. package/esm/vs/editor/contrib/format/browser/formatActions.d.ts +1 -0
  10. package/esm/vs/editor/contrib/hover/browser/hoverContribution.d.ts +1 -0
  11. package/esm/vs/editor/contrib/hover/browser/hoverContribution.js +1 -0
  12. package/esm/vs/editor/contrib/inlineCompletions/browser/inlineCompletions.contribution.d.ts +1 -0
  13. package/esm/vs/editor/editor.api.d.ts +7 -2
  14. package/esm/vs/editor/editor.api.js +4 -2311
  15. package/package.json +14 -9
  16. package/vscode/src/vs/editor/editor.api.d.ts +9338 -0
  17. package/vscode/src/vs/editor/editor.api.js +35 -0
  18. package/vscode/src/vs/editor/standalone/browser/colorizer.d.ts +17 -0
  19. package/vscode/src/vs/editor/standalone/browser/colorizer.js +178 -0
  20. package/vscode/src/vs/editor/standalone/browser/standalone-tokens.css.js +6 -0
  21. package/vscode/src/vs/editor/standalone/browser/standaloneEditor.d.ts +73 -0
  22. package/vscode/src/vs/editor/standalone/browser/standaloneEditor.js +347 -0
  23. package/vscode/src/vs/editor/standalone/browser/standaloneLanguages.d.ts +114 -0
  24. package/vscode/src/vs/editor/standalone/browser/standaloneLanguages.js +444 -0
  25. package/vscode/src/vs/editor/standalone/browser/standaloneWebWorker.d.ts +15 -0
  26. package/vscode/src/vs/editor/standalone/browser/standaloneWebWorker.js +66 -0
  27. package/vscode/src/vs/editor/standalone/common/monarch/monarchCommon.d.ts +72 -0
  28. package/vscode/src/vs/editor/standalone/common/monarch/monarchCommon.js +111 -0
  29. package/vscode/src/vs/editor/standalone/common/monarch/monarchCompile.d.ts +3 -0
  30. package/vscode/src/vs/editor/standalone/common/monarch/monarchCompile.js +476 -0
  31. package/vscode/src/vs/editor/standalone/common/monarch/monarchLexer.d.ts +33 -0
  32. package/vscode/src/vs/editor/standalone/common/monarch/monarchLexer.js +707 -0
  33. package/vscode/src/vs/editor/standalone/common/monarch/monarchTypes.d.ts +46 -0
  34. package/editor.api.d.ts +0 -7
  35. package/monaco.d.ts +0 -10
@@ -0,0 +1 @@
1
+ export * from 'vscode/vscode/vs/editor/browser/config/tabFocus'
@@ -0,0 +1 @@
1
+ export * from 'vscode/vscode/vs/editor/browser/coreCommands'
@@ -0,0 +1 @@
1
+ export * from 'vscode/vscode/vs/editor/common/commands/shiftCommand'
@@ -0,0 +1 @@
1
+ export * from 'vscode/vscode/vs/editor/contrib/bracketMatching/browser/bracketMatching'
@@ -0,0 +1 @@
1
+ export * from 'vscode/vscode/vs/editor/contrib/clipboard/browser/clipboard'
@@ -0,0 +1 @@
1
+ export * from 'vscode/vscode/vs/editor/contrib/contextmenu/browser/contextmenu'
@@ -0,0 +1 @@
1
+ export * from 'vscode/vscode/vs/editor/contrib/cursorUndo/browser/cursorUndo'
@@ -0,0 +1 @@
1
+ export * from 'vscode/vscode/vs/editor/contrib/find/browser/findController'
@@ -0,0 +1 @@
1
+ export * from 'vscode/vscode/vs/editor/contrib/format/browser/formatActions'
@@ -0,0 +1 @@
1
+ export * from 'vscode/vscode/vs/editor/contrib/hover/browser/hoverContribution'
@@ -0,0 +1 @@
1
+ export * from 'vscode/vscode/vs/editor/contrib/hover/browser/hoverContribution'
@@ -0,0 +1 @@
1
+ export * from 'vscode/vscode/vs/editor/contrib/inlineCompletions/browser/inlineCompletions.contribution'
@@ -1,2 +1,7 @@
1
- import '../../../editor.api.js';
2
- export { CancellationToken, CancellationTokenSource, Emitter, Environment, IDisposable, IEvent, IKeyboardEvent, IMarkdownString, IMouseEvent, IPosition, IRange, IScrollEvent, ISelection, ITrustedTypePolicy, ITrustedTypePolicyOptions, KeyCode, KeyMod, MarkdownStringTrustedOptions, MarkerSeverity, MarkerTag, Position, Range, Selection, SelectionDirection, Thenable, Token, Uri, UriComponents, editor, languages, worker } from 'vscode/vscode/vs/editor/editor.api';
1
+ import { createModelReference, writeFile } from "vscode/monaco";
2
+ export * from "../../../vscode/src/vs/editor/editor.api.js";
3
+ declare module "../../../vscode/src/vs/editor/editor.api.js" {
4
+ namespace editor {
5
+ export { createModelReference, writeFile };
6
+ }
7
+ }