@xterm/headless 5.6.0-beta.9 → 5.6.0-beta.90
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.90",
|
|
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": "c21f32d012fb23b20a3d3de46e109ad9295fc1a4"
|
|
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
|
|
|
@@ -140,6 +142,13 @@ declare module '@xterm/headless' {
|
|
|
140
142
|
*/
|
|
141
143
|
minimumContrastRatio?: number;
|
|
142
144
|
|
|
145
|
+
/**
|
|
146
|
+
* Whether to reflow the line containing the cursor when the terminal is
|
|
147
|
+
* resized. Defaults to false, because shells usually handle this
|
|
148
|
+
* themselves.
|
|
149
|
+
*/
|
|
150
|
+
reflowCursorLine?: boolean;
|
|
151
|
+
|
|
143
152
|
/**
|
|
144
153
|
* Whether to rescale glyphs horizontally that are a single cell wide but
|
|
145
154
|
* have glyphs that would overlap following cell(s). This typically happens
|