@xterm/xterm 5.6.0-beta.142 → 5.6.0-beta.143
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.d.ts +0 -26
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xterm/xterm",
|
|
3
3
|
"description": "Full xterm terminal, in your browser",
|
|
4
|
-
"version": "5.6.0-beta.
|
|
4
|
+
"version": "5.6.0-beta.143",
|
|
5
5
|
"main": "lib/xterm.js",
|
|
6
6
|
"module": "lib/xterm.mjs",
|
|
7
7
|
"style": "css/xterm.css",
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
"ws": "^8.2.3",
|
|
108
108
|
"xterm-benchmark": "^0.3.1"
|
|
109
109
|
},
|
|
110
|
-
"commit": "
|
|
110
|
+
"commit": "5fa632518ee0faf6c8a693fa2d819e7b72ecca4d"
|
|
111
111
|
}
|
package/typings/xterm.d.ts
CHANGED
|
@@ -107,13 +107,6 @@ declare module '@xterm/xterm' {
|
|
|
107
107
|
*/
|
|
108
108
|
drawBoldTextInBrightColors?: boolean;
|
|
109
109
|
|
|
110
|
-
/**
|
|
111
|
-
* The modifier key hold to multiply scroll speed.
|
|
112
|
-
* @deprecated This option is no longer available and will always use alt.
|
|
113
|
-
* Setting this will be ignored.
|
|
114
|
-
*/
|
|
115
|
-
fastScrollModifier?: 'none' | 'alt' | 'ctrl' | 'shift';
|
|
116
|
-
|
|
117
110
|
/**
|
|
118
111
|
* The scroll speed multiplier used for fast scrolling when `Alt` is held.
|
|
119
112
|
*/
|
|
@@ -291,25 +284,6 @@ declare module '@xterm/xterm' {
|
|
|
291
284
|
*/
|
|
292
285
|
theme?: ITheme;
|
|
293
286
|
|
|
294
|
-
/**
|
|
295
|
-
* Whether "Windows mode" is enabled. Because Windows backends winpty and
|
|
296
|
-
* conpty operate by doing line wrapping on their side, xterm.js does not
|
|
297
|
-
* have access to wrapped lines. When Windows mode is enabled the following
|
|
298
|
-
* changes will be in effect:
|
|
299
|
-
*
|
|
300
|
-
* - Reflow is disabled.
|
|
301
|
-
* - Lines are assumed to be wrapped if the last character of the line is
|
|
302
|
-
* not whitespace.
|
|
303
|
-
*
|
|
304
|
-
* When using conpty on Windows 11 version >= 21376, it is recommended to
|
|
305
|
-
* disable this because native text wrapping sequences are output correctly
|
|
306
|
-
* thanks to https://github.com/microsoft/terminal/issues/405
|
|
307
|
-
*
|
|
308
|
-
* @deprecated Use {@link windowsPty}. This value will be ignored if
|
|
309
|
-
* windowsPty is set.
|
|
310
|
-
*/
|
|
311
|
-
windowsMode?: boolean;
|
|
312
|
-
|
|
313
287
|
/**
|
|
314
288
|
* Compatibility information when the pty is known to be hosted on Windows.
|
|
315
289
|
* Setting this will turn on certain heuristics/workarounds depending on the
|