🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@xterm/xterm

Package Overview
Dependencies
Maintainers
1
Versions
480
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xterm/xterm - npm Package Compare versions

Comparing version
6.1.0-beta.281
to
6.1.0-beta.282
+2
-2
package.json
{
"name": "@xterm/xterm",
"description": "Full xterm terminal, in your browser",
"version": "6.1.0-beta.281",
"version": "6.1.0-beta.282",
"main": "lib/xterm.js",

@@ -122,3 +122,3 @@ "module": "lib/xterm.mjs",

},
"commit": "2fe3fd13a164f956d0c6a2365fa89feaf4366074"
"commit": "3d929a1db0e01f94b3bd1c4f02d538ac5ea454ae"
}

@@ -138,5 +138,6 @@ /**

// If the selection start is trimmed, ensure the start column is 0.
// If the selection start row is trimmed away, reset to the buffer origin.
if (this.selectionStart && this.selectionStart[1] < 0) {
this.selectionStart[1] = 0;
this.selectionStart = [0, 0];
return true;
}

@@ -143,0 +144,0 @@ return false;

@@ -707,3 +707,3 @@ /**

}
this._model.selectionEnd[1] = Math.min(buffer.ydisp + this._bufferService.rows, buffer.lines.length - 1);
this._model.selectionEnd[1] = Math.min(buffer.ydisp + this._bufferService.rows - 1, buffer.lines.length - 1);
} else {

@@ -710,0 +710,0 @@ if (this._activeSelectionMode !== SelectionMode.COLUMN) {

@@ -9,2 +9,2 @@ /**

*/
export const XTERM_VERSION = '6.1.0-beta.281';
export const XTERM_VERSION = '6.1.0-beta.282';

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display