@xterm/xterm 6.1.0-beta.225 → 6.1.0-beta.227
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/lib/xterm.js +1 -1
- package/lib/xterm.js.map +1 -1
- package/lib/xterm.mjs +1 -1
- package/lib/xterm.mjs.map +1 -1
- package/package.json +2 -2
- package/src/common/Types.ts +16 -16
- package/src/common/Version.ts +1 -1
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": "6.1.0-beta.
|
|
4
|
+
"version": "6.1.0-beta.227",
|
|
5
5
|
"main": "lib/xterm.js",
|
|
6
6
|
"module": "lib/xterm.mjs",
|
|
7
7
|
"style": "css/xterm.css",
|
|
@@ -111,5 +111,5 @@
|
|
|
111
111
|
"ws": "^8.2.3",
|
|
112
112
|
"xterm-benchmark": "^0.3.1"
|
|
113
113
|
},
|
|
114
|
-
"commit": "
|
|
114
|
+
"commit": "29a07f1d8f3466ffd3c7a37a92b96bf5e11b04ec"
|
|
115
115
|
}
|
package/src/common/Types.ts
CHANGED
|
@@ -528,8 +528,8 @@ export interface IInputHandler {
|
|
|
528
528
|
/** CSI ' } */ insertColumns(params: IParams): boolean;
|
|
529
529
|
/** CSI ' ~ */ deleteColumns(params: IParams): boolean;
|
|
530
530
|
|
|
531
|
-
/** OSC 0
|
|
532
|
-
|
|
531
|
+
/** OSC 0 */
|
|
532
|
+
/** OSC 2 */ setTitle(data: string): boolean;
|
|
533
533
|
/** OSC 4 */ setOrReportIndexedColor(data: string): boolean;
|
|
534
534
|
/** OSC 10 */ setOrReportFgColor(data: string): boolean;
|
|
535
535
|
/** OSC 11 */ setOrReportBgColor(data: string): boolean;
|
|
@@ -542,24 +542,24 @@ export interface IInputHandler {
|
|
|
542
542
|
/** ESC E */ nextLine(): boolean;
|
|
543
543
|
/** ESC = */ keypadApplicationMode(): boolean;
|
|
544
544
|
/** ESC > */ keypadNumericMode(): boolean;
|
|
545
|
-
/** ESC % G
|
|
546
|
-
|
|
547
|
-
/** ESC ( C
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
545
|
+
/** ESC % G */
|
|
546
|
+
/** ESC % @ */ selectDefaultCharset(): boolean;
|
|
547
|
+
/** ESC ( C */
|
|
548
|
+
/** ESC ) C */
|
|
549
|
+
/** ESC * C */
|
|
550
|
+
/** ESC + C */
|
|
551
|
+
/** ESC - C */
|
|
552
|
+
/** ESC . C */
|
|
553
|
+
/** ESC / C */ selectCharset(collectAndFlag: string): boolean;
|
|
554
554
|
/** ESC D */ index(): boolean;
|
|
555
555
|
/** ESC H */ tabSet(): boolean;
|
|
556
556
|
/** ESC M */ reverseIndex(): boolean;
|
|
557
557
|
/** ESC c */ fullReset(): boolean;
|
|
558
|
-
/** ESC n
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
558
|
+
/** ESC n */
|
|
559
|
+
/** ESC o */
|
|
560
|
+
/** ESC | */
|
|
561
|
+
/** ESC } */
|
|
562
|
+
/** ESC ~ */ setgLevel(level: number): boolean;
|
|
563
563
|
/** ESC # 8 */ screenAlignmentPattern(): boolean;
|
|
564
564
|
}
|
|
565
565
|
|
package/src/common/Version.ts
CHANGED