@xterm/xterm 5.6.0-beta.89 → 5.6.0-beta.90

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": "5.6.0-beta.89",
4
+ "version": "5.6.0-beta.90",
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": "66780c03d45cbe9e4f5c296a096e957504f49930"
110
+ "commit": "c21f32d012fb23b20a3d3de46e109ad9295fc1a4"
111
111
  }
@@ -93,7 +93,8 @@ export class CompositionHelper {
93
93
  */
94
94
  public keydown(ev: KeyboardEvent): boolean {
95
95
  if (this._isComposing || this._isSendingComposition) {
96
- if (ev.keyCode === 229) {
96
+ if (ev.keyCode === 20 || ev.keyCode === 229) {
97
+ // 20 is CapsLock, 229 is Enter
97
98
  // Continue composing if the keyCode is the "composition character"
98
99
  return false;
99
100
  }