@xterm/headless 5.6.0-beta.6 → 5.6.0-beta.60
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,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xterm/headless",
|
|
3
3
|
"description": "A headless terminal component that runs in Node.js",
|
|
4
|
-
"version": "5.6.0-beta.
|
|
4
|
+
"version": "5.6.0-beta.60",
|
|
5
5
|
"main": "lib-headless/xterm-headless.js",
|
|
6
|
+
"module": "lib/xterm.mjs",
|
|
6
7
|
"types": "typings/xterm-headless.d.ts",
|
|
7
8
|
"repository": "https://github.com/xtermjs/xterm.js",
|
|
8
9
|
"license": "MIT",
|
|
@@ -20,5 +21,6 @@
|
|
|
20
21
|
"vt100",
|
|
21
22
|
"webgl",
|
|
22
23
|
"xterm"
|
|
23
|
-
]
|
|
24
|
+
],
|
|
25
|
+
"commit": "7642f55a1c37bba54c81c606b698e222aab8dae0"
|
|
24
26
|
}
|
|
@@ -83,6 +83,8 @@ declare module '@xterm/headless' {
|
|
|
83
83
|
|
|
84
84
|
/**
|
|
85
85
|
* The modifier key hold to multiply scroll speed.
|
|
86
|
+
* @deprecated This option is no longer available and will always use alt.
|
|
87
|
+
* Setting this will be ignored.
|
|
86
88
|
*/
|
|
87
89
|
fastScrollModifier?: 'none' | 'alt' | 'ctrl' | 'shift';
|
|
88
90
|
|