@xterm/xterm 6.1.0-beta.96 → 6.1.0-beta.98

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/xterm",
3
3
  "description": "Full xterm terminal, in your browser",
4
- "version": "6.1.0-beta.96",
4
+ "version": "6.1.0-beta.98",
5
5
  "main": "lib/xterm.js",
6
6
  "module": "lib/xterm.mjs",
7
7
  "style": "css/xterm.css",
@@ -116,5 +116,5 @@
116
116
  "ws": "^8.2.3",
117
117
  "xterm-benchmark": "^0.3.1"
118
118
  },
119
- "commit": "49a8ac8fc00a1f5e90d96d1a29843209456a9e97"
119
+ "commit": "934b5dc8faa8897398075e782f5a246544928feb"
120
120
  }
@@ -2520,6 +2520,8 @@ export class InputHandler extends Disposable implements IInputHandler {
2520
2520
  * | 53 | Overlined. | #Y |
2521
2521
  * | 55 | Not Overlined. | #Y |
2522
2522
  * | 58 | Underline color: Extended color. | #P[Support for RGB and indexed colors, see below.] |
2523
+ * | 221 | Not bold (kitty extension). | #Y |
2524
+ * | 222 | Not faint (kitty extension). | #Y |
2523
2525
  * | 90 - 97 | Bright foreground color (analogous to 30 - 37). | #Y |
2524
2526
  * | 100 - 107 | Bright background color (analogous to 40 - 47). | #Y |
2525
2527
  *
@@ -2652,6 +2654,12 @@ export class InputHandler extends Disposable implements IInputHandler {
2652
2654
  } else if (p === 55) {
2653
2655
  // not overline
2654
2656
  attr.bg &= ~BgFlags.OVERLINE;
2657
+ } else if (p === 221) {
2658
+ // not bold (kitty extension)
2659
+ attr.fg &= ~FgFlags.BOLD;
2660
+ } else if (p === 222) {
2661
+ // not faint (kitty extension)
2662
+ attr.bg &= ~BgFlags.DIM;
2655
2663
  } else if (p === 59) {
2656
2664
  attr.extended = attr.extended.clone();
2657
2665
  attr.extended.underlineColor = -1;
@@ -6,4 +6,4 @@
6
6
  /**
7
7
  * The xterm.js version. This is updated by the publish script from package.json.
8
8
  */
9
- export const XTERM_VERSION = '6.1.0-beta.96';
9
+ export const XTERM_VERSION = '6.1.0-beta.98';