@codingame/monaco-vscode-editor-api 11.1.2 → 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.
- package/esm/vs/editor/browser/config/tabFocus.d.ts +1 -0
- package/esm/vs/editor/browser/coreCommands.d.ts +1 -0
- package/esm/vs/editor/common/commands/shiftCommand.d.ts +1 -0
- package/esm/vs/editor/contrib/bracketMatching/browser/bracketMatching.d.ts +1 -0
- package/esm/vs/editor/contrib/clipboard/browser/clipboard.d.ts +1 -0
- package/esm/vs/editor/contrib/contextmenu/browser/contextmenu.d.ts +1 -0
- package/esm/vs/editor/contrib/cursorUndo/browser/cursorUndo.d.ts +1 -0
- package/esm/vs/editor/contrib/find/browser/findController.d.ts +1 -0
- package/esm/vs/editor/contrib/format/browser/formatActions.d.ts +1 -0
- package/esm/vs/editor/contrib/hover/browser/hoverContribution.d.ts +1 -0
- package/esm/vs/editor/contrib/hover/browser/hoverContribution.js +1 -0
- package/esm/vs/editor/contrib/inlineCompletions/browser/inlineCompletions.contribution.d.ts +1 -0
- package/esm/vs/editor/editor.api.d.ts +7 -2
- package/esm/vs/editor/editor.api.js +4 -2311
- package/package.json +14 -9
- package/vscode/src/vs/editor/editor.api.d.ts +9338 -0
- package/vscode/src/vs/editor/editor.api.js +35 -0
- package/vscode/src/vs/editor/standalone/browser/colorizer.d.ts +17 -0
- package/vscode/src/vs/editor/standalone/browser/colorizer.js +178 -0
- package/vscode/src/vs/editor/standalone/browser/standalone-tokens.css.js +6 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneEditor.d.ts +73 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneEditor.js +347 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneLanguages.d.ts +114 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneLanguages.js +444 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneWebWorker.d.ts +15 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneWebWorker.js +66 -0
- package/vscode/src/vs/editor/standalone/common/monarch/monarchCommon.d.ts +72 -0
- package/vscode/src/vs/editor/standalone/common/monarch/monarchCommon.js +111 -0
- package/vscode/src/vs/editor/standalone/common/monarch/monarchCompile.d.ts +3 -0
- package/vscode/src/vs/editor/standalone/common/monarch/monarchCompile.js +476 -0
- package/vscode/src/vs/editor/standalone/common/monarch/monarchLexer.d.ts +33 -0
- package/vscode/src/vs/editor/standalone/common/monarch/monarchLexer.js +707 -0
- package/vscode/src/vs/editor/standalone/common/monarch/monarchTypes.d.ts +46 -0
- package/editor.api.d.ts +0 -7
- 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
|
|
2
|
-
export
|
|
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
|
+
}
|