@xterm/xterm 5.6.0-beta.3 → 5.6.0-beta.31
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/README.md +5 -0
- package/css/xterm.css +6 -0
- package/lib/xterm.js +1 -1
- package/lib/xterm.js.map +1 -1
- package/package.json +8 -11
- package/src/browser/AccessibilityManager.ts +38 -10
- package/src/browser/Viewport.ts +15 -2
- package/src/browser/public/Terminal.ts +6 -4
- package/src/browser/renderer/dom/DomRenderer.ts +3 -5
- package/src/browser/renderer/shared/CustomGlyphs.ts +6 -0
- package/src/browser/services/CoreBrowserService.ts +7 -3
- package/src/common/EventEmitter.ts +6 -11
- package/src/common/InputHandler.ts +10 -6
- package/src/common/SortedList.ts +86 -10
- package/src/common/buffer/Buffer.ts +1 -1
- package/src/common/services/DecorationService.ts +2 -1
- package/typings/xterm.d.ts +5 -3
package/README.md
CHANGED
|
@@ -78,6 +78,7 @@ The xterm.js team maintains the following addons, but anyone can build them:
|
|
|
78
78
|
|
|
79
79
|
- [`@xterm/addon-attach`](https://github.com/xtermjs/xterm.js/tree/master/addons/addon-attach): Attaches to a server running a process via a websocket
|
|
80
80
|
- [`@xterm/addon-canvas`](https://github.com/xtermjs/xterm.js/tree/master/addons/addon-canvas): Renders xterm.js using a `canvas` element's 2d context
|
|
81
|
+
- [`@xterm/addon-clipboard`](https://github.com/xtermjs/xterm.js/tree/master/addons/addon-clipboard): Access the browser's clipboard
|
|
81
82
|
- [`@xterm/addon-fit`](https://github.com/xtermjs/xterm.js/tree/master/addons/addon-fit): Fits the terminal to the containing element
|
|
82
83
|
- [`@xterm/addon-image`](https://github.com/xtermjs/xterm.js/tree/master/addons/addon-image): Adds image support
|
|
83
84
|
- [`@xterm/addon-search`](https://github.com/xtermjs/xterm.js/tree/master/addons/addon-search): Adds search functionality
|
|
@@ -222,6 +223,10 @@ Xterm.js is used in several world-class applications to provide great terminal e
|
|
|
222
223
|
- [**Cloudtutor.io**](https://cloudtutor.io): innovative online learning platform that offers users access to an interactive lab.
|
|
223
224
|
- [**Helix Editor Playground**](https://github.com/tomgroenwoldt/helix-editor-playground): Online playground for the terminal based helix editor.
|
|
224
225
|
- [**Coder**](https://github.com/coder/coder): Self-Hosted Remote Development Environments
|
|
226
|
+
- [**Wave Terminal**](https://waveterm.dev): An open-source, ai-native, terminal built for seamless workflows.
|
|
227
|
+
- [**eva**](https://github.com/info24/eva): Eva is a web application for SSH remote login, developed in Go.
|
|
228
|
+
- [**OpenSFTP**](https://opensftp.com): Super beautiful SSH and SFTP integrated workspace client.
|
|
229
|
+
- [**balena**](https://www.balena.io/): Balena is a full-stack solution for developing, deploying, updating, and troubleshooting IoT Edge devices. We use xterm.js to manage & debug devices on [balenaCloud](https://www.balena.io/cloud).
|
|
225
230
|
- [And much more...](https://github.com/xtermjs/xterm.js/network/dependents?package_id=UGFja2FnZS0xNjYzMjc4OQ%3D%3D)
|
|
226
231
|
|
|
227
232
|
Do you use xterm.js in your application as well? Please [open a Pull Request](https://github.com/sourcelair/xterm.js/pulls) to include it here. We would love to have it on our list. Note: Please add any new contributions to the end of the list only.
|
package/css/xterm.css
CHANGED
|
@@ -157,10 +157,16 @@
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
.xterm .xterm-accessibility-tree {
|
|
160
|
+
font-family: monospace;
|
|
160
161
|
user-select: text;
|
|
161
162
|
white-space: pre;
|
|
162
163
|
}
|
|
163
164
|
|
|
165
|
+
.xterm .xterm-accessibility-tree > div {
|
|
166
|
+
transform-origin: left;
|
|
167
|
+
width: fit-content;
|
|
168
|
+
}
|
|
169
|
+
|
|
164
170
|
.xterm .live-region {
|
|
165
171
|
position: absolute;
|
|
166
172
|
left: -9999px;
|