@xterm/xterm 6.1.0-beta.167 → 6.1.0-beta.169

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.167",
4
+ "version": "6.1.0-beta.169",
5
5
  "main": "lib/xterm.js",
6
6
  "module": "lib/xterm.mjs",
7
7
  "style": "css/xterm.css",
@@ -119,5 +119,5 @@
119
119
  "ws": "^8.2.3",
120
120
  "xterm-benchmark": "^0.3.1"
121
121
  },
122
- "commit": "dedf3b15956b5185eae84d49f3fbd7593a2fc0fc"
122
+ "commit": "f4166a87ba2e0dcfe4e45120d03ebc8275ac7a5f"
123
123
  }
@@ -3570,7 +3570,7 @@ export class InputHandler extends Disposable implements IInputHandler {
3570
3570
  return true;
3571
3571
  }
3572
3572
  const flags = params.params[0] || 0;
3573
- const mode = params.params[1] || 1;
3573
+ const mode = params.length > 1 ? (params.params[1] || 1) : 1;
3574
3574
  const state = this._coreService.kittyKeyboard;
3575
3575
 
3576
3576
  switch (mode) {
@@ -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.167';
9
+ export const XTERM_VERSION = '6.1.0-beta.169';