@xterm/headless 6.1.0-beta.6 → 6.1.0-beta.8
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 +2 -2
- package/typings/xterm-headless.d.ts +13 -5
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.8",
|
|
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": "54fcb1ea2fce8cbeb9a28cd147d0ab0ec54b57cc"
|
|
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
|
*/
|