@xterm/headless 6.1.0-beta.8 → 6.1.0-beta.9
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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xterm/headless",
|
|
3
3
|
"description": "A headless terminal component that runs in Node.js",
|
|
4
|
-
"version": "6.1.0-beta.
|
|
4
|
+
"version": "6.1.0-beta.9",
|
|
5
5
|
"main": "lib-headless/xterm-headless.js",
|
|
6
6
|
"module": "lib/xterm.mjs",
|
|
7
7
|
"types": "typings/xterm-headless.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"webgl",
|
|
26
26
|
"xterm"
|
|
27
27
|
],
|
|
28
|
-
"commit": "
|
|
28
|
+
"commit": "269d8c20aed41b71c743690b1fe70d82dbd420d6"
|
|
29
29
|
}
|
|
@@ -89,13 +89,6 @@ declare module '@xterm/headless' {
|
|
|
89
89
|
*/
|
|
90
90
|
drawBoldTextInBrightColors?: boolean;
|
|
91
91
|
|
|
92
|
-
/**
|
|
93
|
-
* The modifier key hold to multiply scroll speed.
|
|
94
|
-
* @deprecated This option is no longer available and will always use alt.
|
|
95
|
-
* Setting this will be ignored.
|
|
96
|
-
*/
|
|
97
|
-
fastScrollModifier?: 'none' | 'alt' | 'ctrl' | 'shift';
|
|
98
|
-
|
|
99
92
|
/**
|
|
100
93
|
* The spacing in whole pixels between characters.
|
|
101
94
|
*/
|
|
@@ -222,25 +215,6 @@ declare module '@xterm/headless' {
|
|
|
222
215
|
*/
|
|
223
216
|
theme?: ITheme;
|
|
224
217
|
|
|
225
|
-
/**
|
|
226
|
-
* Whether "Windows mode" is enabled. Because Windows backends winpty and
|
|
227
|
-
* conpty operate by doing line wrapping on their side, xterm.js does not
|
|
228
|
-
* have access to wrapped lines. When Windows mode is enabled the following
|
|
229
|
-
* changes will be in effect:
|
|
230
|
-
*
|
|
231
|
-
* - Reflow is disabled.
|
|
232
|
-
* - Lines are assumed to be wrapped if the last character of the line is
|
|
233
|
-
* not whitespace.
|
|
234
|
-
*
|
|
235
|
-
* When using conpty on Windows 11 version >= 21376, it is recommended to
|
|
236
|
-
* disable this because native text wrapping sequences are output correctly
|
|
237
|
-
* thanks to https://github.com/microsoft/terminal/issues/405
|
|
238
|
-
*
|
|
239
|
-
* @deprecated Use {@link windowsPty}. This value will be ignored if
|
|
240
|
-
* windowsPty is set.
|
|
241
|
-
*/
|
|
242
|
-
windowsMode?: boolean;
|
|
243
|
-
|
|
244
218
|
/**
|
|
245
219
|
* Compatibility information when the pty is known to be hosted on Windows.
|
|
246
220
|
* Setting this will turn on certain heuristics/workarounds depending on the
|