@xterm/headless 5.6.0-beta.140 → 5.6.0-beta.141
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": "5.6.0-beta.
|
|
4
|
+
"version": "5.6.0-beta.141",
|
|
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": "a9d3ca19f407c221447d30ea30d3a4c7953b1a4a"
|
|
29
29
|
}
|
|
@@ -1370,6 +1370,13 @@ declare module '@xterm/headless' {
|
|
|
1370
1370
|
* Send FocusIn/FocusOut events: `CSI ? 1 0 0 4 h`
|
|
1371
1371
|
*/
|
|
1372
1372
|
readonly sendFocusMode: boolean;
|
|
1373
|
+
/**
|
|
1374
|
+
* Synchronized Output Mode: `CSI ? 2 0 2 6 h`
|
|
1375
|
+
*
|
|
1376
|
+
* When enabled, output is buffered and only rendered when the mode is
|
|
1377
|
+
* disabled, allowing for atomic screen updates without tearing.
|
|
1378
|
+
*/
|
|
1379
|
+
readonly synchronizedOutputMode: boolean;
|
|
1373
1380
|
/**
|
|
1374
1381
|
* Auto-Wrap Mode (DECAWM): `CSI ? 7 h`
|
|
1375
1382
|
*/
|