@xterm/xterm 5.6.0-beta.3 → 5.6.0-beta.30

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 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,9 @@ 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.
225
229
  - [And much more...](https://github.com/xtermjs/xterm.js/network/dependents?package_id=UGFja2FnZS0xNjYzMjc4OQ%3D%3D)
226
230
 
227
231
  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;