@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.
- 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
package/package.json
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-editor-api",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "VSCode public API plugged on the monaco editor - monaco-editor compatible api",
|
|
4
6
|
"keywords": [],
|
|
5
7
|
"author": {
|
|
6
8
|
"name": "CodinGame",
|
|
@@ -9,8 +11,15 @@
|
|
|
9
11
|
"license": "MIT",
|
|
10
12
|
"repository": {
|
|
11
13
|
"type": "git",
|
|
12
|
-
"url": "git+
|
|
14
|
+
"url": "git+ssh://git@github.com/CodinGame/monaco-vscode-api.git"
|
|
15
|
+
},
|
|
16
|
+
"type": "module",
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@codingame/monaco-vscode-5452e2b7-9081-5f95-839b-4ab3544ce28f-common": "12.0.0",
|
|
19
|
+
"vscode": "npm:@codingame/monaco-vscode-api@12.0.0"
|
|
13
20
|
},
|
|
21
|
+
"peerDependencies": {},
|
|
22
|
+
"peerDependenciesMeta": {},
|
|
14
23
|
"exports": {
|
|
15
24
|
".": "./esm/vs/editor/editor.api.js",
|
|
16
25
|
"./esm/vs/editor/editor.api": "./esm/vs/editor/editor.api.js",
|
|
@@ -27,6 +36,8 @@
|
|
|
27
36
|
"./esm/vs/editor/contrib/format/browser/formatActions.js": "./esm/vs/editor/contrib/format/browser/formatActions.js",
|
|
28
37
|
"./esm/vs/editor/contrib/bracketMatching/browser/bracketMatching": "./esm/vs/editor/contrib/bracketMatching/browser/bracketMatching.js",
|
|
29
38
|
"./esm/vs/editor/contrib/bracketMatching/browser/bracketMatching.js": "./esm/vs/editor/contrib/bracketMatching/browser/bracketMatching.js",
|
|
39
|
+
"./esm/vs/editor/contrib/hover/browser/hoverContribution": "./esm/vs/editor/contrib/hover/browser/hoverContribution.js",
|
|
40
|
+
"./esm/vs/editor/contrib/hover/browser/hoverContribution.js": "./esm/vs/editor/contrib/hover/browser/hoverContribution.js",
|
|
30
41
|
"./esm/vs/editor/browser/coreCommands": "./esm/vs/editor/browser/coreCommands.js",
|
|
31
42
|
"./esm/vs/editor/browser/coreCommands.js": "./esm/vs/editor/browser/coreCommands.js",
|
|
32
43
|
"./esm/vs/editor/contrib/clipboard/browser/clipboard": "./esm/vs/editor/contrib/clipboard/browser/clipboard.js",
|
|
@@ -40,13 +51,7 @@
|
|
|
40
51
|
"./esm/vs/basic-languages/*": "./empty.js",
|
|
41
52
|
"./esm/vs/language/*": "./empty.js"
|
|
42
53
|
},
|
|
43
|
-
"type": "module",
|
|
44
|
-
"private": false,
|
|
45
|
-
"description": "VSCode public API plugged on the monaco editor - monaco-editor compatible api",
|
|
46
54
|
"main": "esm/vs/editor/editor.api.js",
|
|
47
55
|
"module": "esm/vs/editor/editor.api.js",
|
|
48
|
-
"types": "esm/vs/editor/editor.api.d.ts"
|
|
49
|
-
"dependencies": {
|
|
50
|
-
"vscode": "npm:@codingame/monaco-vscode-api@11.1.1"
|
|
51
|
-
}
|
|
56
|
+
"types": "esm/vs/editor/editor.api.d.ts"
|
|
52
57
|
}
|