@xterm/headless 6.0.0 → 6.1.0-beta.10
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.0.
|
|
4
|
+
"version": "6.1.0-beta.10",
|
|
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": "579573e77d2bcf50c056543fad6f1334b957e6d1"
|
|
29
29
|
}
|
|
@@ -64,13 +64,21 @@ declare module '@xterm/headless' {
|
|
|
64
64
|
cursorWidth?: number;
|
|
65
65
|
|
|
66
66
|
/**
|
|
67
|
-
* Whether to draw custom glyphs
|
|
68
|
-
*
|
|
69
|
-
*
|
|
70
|
-
*
|
|
71
|
-
*
|
|
67
|
+
* Whether to draw custom glyphs instead of using the font for the following
|
|
68
|
+
* unicode ranges:
|
|
69
|
+
*
|
|
70
|
+
* - Box Drawing (U+2500-U+257F)
|
|
71
|
+
* - Box Elements (U+2580-U+259F)
|
|
72
|
+
* - Powerline Symbols (U+E0A0–U+E0BF)
|
|
73
|
+
* - Symbols for Legacy Computing (U+1FB00–U+1FBFF)
|
|
74
|
+
*
|
|
75
|
+
* This will typically result in better rendering with continuous lines,
|
|
76
|
+
* even when line height and letter spacing is used. Note that this doesn't
|
|
77
|
+
* work with the DOM renderer which renders all characters using the font.
|
|
78
|
+
* The default is true.
|
|
72
79
|
*/
|
|
73
80
|
customGlyphs?: boolean;
|
|
81
|
+
|
|
74
82
|
/**
|
|
75
83
|
* Whether input should be disabled.
|
|
76
84
|
*/
|
|
@@ -81,13 +89,6 @@ declare module '@xterm/headless' {
|
|
|
81
89
|
*/
|
|
82
90
|
drawBoldTextInBrightColors?: boolean;
|
|
83
91
|
|
|
84
|
-
/**
|
|
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.
|
|
88
|
-
*/
|
|
89
|
-
fastScrollModifier?: 'none' | 'alt' | 'ctrl' | 'shift';
|
|
90
|
-
|
|
91
92
|
/**
|
|
92
93
|
* The spacing in whole pixels between characters.
|
|
93
94
|
*/
|
|
@@ -214,25 +215,6 @@ declare module '@xterm/headless' {
|
|
|
214
215
|
*/
|
|
215
216
|
theme?: ITheme;
|
|
216
217
|
|
|
217
|
-
/**
|
|
218
|
-
* Whether "Windows mode" is enabled. Because Windows backends winpty and
|
|
219
|
-
* conpty operate by doing line wrapping on their side, xterm.js does not
|
|
220
|
-
* have access to wrapped lines. When Windows mode is enabled the following
|
|
221
|
-
* changes will be in effect:
|
|
222
|
-
*
|
|
223
|
-
* - Reflow is disabled.
|
|
224
|
-
* - Lines are assumed to be wrapped if the last character of the line is
|
|
225
|
-
* not whitespace.
|
|
226
|
-
*
|
|
227
|
-
* When using conpty on Windows 11 version >= 21376, it is recommended to
|
|
228
|
-
* disable this because native text wrapping sequences are output correctly
|
|
229
|
-
* thanks to https://github.com/microsoft/terminal/issues/405
|
|
230
|
-
*
|
|
231
|
-
* @deprecated Use {@link windowsPty}. This value will be ignored if
|
|
232
|
-
* windowsPty is set.
|
|
233
|
-
*/
|
|
234
|
-
windowsMode?: boolean;
|
|
235
|
-
|
|
236
218
|
/**
|
|
237
219
|
* Compatibility information when the pty is known to be hosted on Windows.
|
|
238
220
|
* Setting this will turn on certain heuristics/workarounds depending on the
|