@xterm/xterm 6.1.0-beta.234 → 6.1.0-beta.236
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 +2 -2
- package/package.json +2 -2
- package/src/common/InputHandler.ts +0 -4
- 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.236",
|
|
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": "c28f3c8d73dce01f95b9df93774225a8faf1ead8"
|
|
115
115
|
}
|
|
@@ -2590,10 +2590,6 @@ export class InputHandler extends Disposable implements IInputHandler {
|
|
|
2590
2590
|
* | 3 | CMY color. | #N |
|
|
2591
2591
|
* | 4 | CMYK color. | #N |
|
|
2592
2592
|
* | 5 | Indexed (256 colors) as `Ps ; 5 ; INDEX` or `Ps : 5 : INDEX`. | #Y |
|
|
2593
|
-
*
|
|
2594
|
-
*
|
|
2595
|
-
* FIXME: blinking is implemented in attrs, but not working in renderers?
|
|
2596
|
-
* FIXME: remove dead branch for p=100
|
|
2597
2593
|
*/
|
|
2598
2594
|
public charAttributes(params: IParams): boolean {
|
|
2599
2595
|
// Optimize a single SGR0.
|
package/src/common/Version.ts
CHANGED