@xterm/xterm 5.6.0-beta.4 → 5.6.0-beta.41

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
@@ -128,7 +129,6 @@ Xterm.js is used in several world-class applications to provide great terminal e
128
129
  - [**SourceLair**](https://www.sourcelair.com/): In-browser IDE that provides its users with fully-featured Linux terminals based on xterm.js.
129
130
  - [**Microsoft Visual Studio Code**](http://code.visualstudio.com/): Modern, versatile, and powerful open source code editor that provides an integrated terminal based on xterm.js.
130
131
  - [**ttyd**](https://github.com/tsl0922/ttyd): A command-line tool for sharing terminal over the web, with fully-featured terminal emulation based on xterm.js.
131
- - [**Katacoda**](https://www.katacoda.com/): Katacoda is an Interactive Learning Platform for software developers, covering the latest Cloud Native technologies.
132
132
  - [**Eclipse Che**](http://www.eclipse.org/che): Developer workspace server, cloud IDE, and Eclipse next-generation IDE.
133
133
  - [**Codenvy**](http://www.codenvy.com): Cloud workspaces for development teams.
134
134
  - [**CoderPad**](https://coderpad.io): Online interviewing platform for programmers. Run code in many programming languages, with results displayed by xterm.js.
@@ -222,6 +222,10 @@ Xterm.js is used in several world-class applications to provide great terminal e
222
222
  - [**Cloudtutor.io**](https://cloudtutor.io): innovative online learning platform that offers users access to an interactive lab.
223
223
  - [**Helix Editor Playground**](https://github.com/tomgroenwoldt/helix-editor-playground): Online playground for the terminal based helix editor.
224
224
  - [**Coder**](https://github.com/coder/coder): Self-Hosted Remote Development Environments
225
+ - [**Wave Terminal**](https://waveterm.dev): An open-source, ai-native, terminal built for seamless workflows.
226
+ - [**eva**](https://github.com/info24/eva): Eva is a web application for SSH remote login, developed in Go.
227
+ - [**OpenSFTP**](https://opensftp.com): Super beautiful SSH and SFTP integrated workspace client.
228
+ - [**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
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;