@xterm/xterm 6.1.0-beta.190 → 6.1.0-beta.191
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/lib/xterm.js +1 -1
- package/lib/xterm.js.map +1 -1
- package/lib/xterm.mjs +3 -3
- package/lib/xterm.mjs.map +2 -2
- package/package.json +2 -2
- package/src/browser/renderer/dom/DomRenderer.ts +3 -0
- package/src/common/Version.ts +1 -1
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.
|
|
4
|
+
"version": "6.1.0-beta.191",
|
|
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": "
|
|
122
|
+
"commit": "fb25eb8f79fd223acef90828dc2990bb7e196a1d"
|
|
123
123
|
}
|
|
@@ -184,6 +184,9 @@ export class DomRenderer extends Disposable implements IRenderer {
|
|
|
184
184
|
// refresh() being called during the mousedown handler to start a selection.
|
|
185
185
|
` pointer-events: none;` +
|
|
186
186
|
` color: ${colors.foreground.css};` +
|
|
187
|
+
`}`;
|
|
188
|
+
styles +=
|
|
189
|
+
`${this._terminalSelector} .${ROW_CONTAINER_CLASS}, ${this._terminalSelector} .${ROW_CONTAINER_CLASS} span {` +
|
|
187
190
|
` font-family: ${this._optionsService.rawOptions.fontFamily};` +
|
|
188
191
|
` font-size: ${this._optionsService.rawOptions.fontSize}px;` +
|
|
189
192
|
` font-kerning: none;` +
|
package/src/common/Version.ts
CHANGED