@xterm/xterm 5.6.0-beta.104 → 5.6.0-beta.106

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.104",
4
+ "version": "5.6.0-beta.106",
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": "f615ac58b302c32af49e2474775cee8b745147b6"
110
+ "commit": "e29c2360e7f98805ae00a9c8591871068cab7eb5"
111
111
  }
@@ -185,7 +185,7 @@ export class AccessibilityManager extends Disposable {
185
185
  const element = this._rowElements[i];
186
186
  if (element) {
187
187
  if (lineData.length === 0) {
188
- element.innerText = '\u00a0';
188
+ element.textContent = '\u00a0';
189
189
  this._rowColumns.set(element, [0, 1]);
190
190
  } else {
191
191
  element.textContent = lineData;