@xterm/xterm 5.6.0-beta.47 → 5.6.0-beta.48

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.47",
4
+ "version": "5.6.0-beta.48",
5
5
  "main": "lib/xterm.js",
6
6
  "module": "lib/xterm.mjs",
7
7
  "style": "css/xterm.css",
@@ -119,7 +119,6 @@ export class InputHandler extends Disposable implements IInputHandler {
119
119
  private _parseBuffer: Uint32Array = new Uint32Array(4096);
120
120
  private _stringDecoder: StringToUtf32 = new StringToUtf32();
121
121
  private _utf8Decoder: Utf8ToUtf32 = new Utf8ToUtf32();
122
- private _workCell: CellData = new CellData();
123
122
  private _windowTitle = '';
124
123
  private _iconName = '';
125
124
  private _dirtyRowTracker: IDirtyRowTracker;