@xterm/xterm 5.6.0-beta.99 → 6.0.0
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 +1 -0
- package/lib/xterm.js +1 -1
- package/lib/xterm.js.map +1 -1
- package/lib/xterm.mjs +15 -15
- package/lib/xterm.mjs.map +3 -3
- package/package.json +8 -8
- package/src/browser/AccessibilityManager.ts +1 -1
- package/src/browser/CoreBrowserTerminal.ts +24 -1
- package/src/browser/TimeBasedDebouncer.ts +2 -2
- package/src/browser/Viewport.ts +9 -4
- package/src/browser/input/MoveToCell.ts +3 -1
- package/src/browser/public/Terminal.ts +1 -0
- package/src/browser/services/RenderService.ts +101 -10
- package/src/browser/services/SelectionService.ts +8 -0
- package/src/common/InputHandler.ts +34 -8
- package/src/common/TaskQueue.ts +7 -7
- package/src/common/Types.ts +1 -0
- package/src/common/buffer/Buffer.ts +1 -74
- package/src/common/input/Keyboard.ts +0 -24
- package/src/common/input/WriteBuffer.ts +6 -5
- package/src/common/services/BufferService.ts +8 -5
- package/src/common/services/CoreMouseService.ts +48 -3
- package/src/common/services/CoreService.ts +5 -2
- package/src/common/services/OptionsService.ts +1 -0
- package/src/common/services/Services.ts +14 -1
- package/src/vs/base/common/async.ts +1 -1
- package/typings/xterm.d.ts +26 -28
- package/src/vs/typings/thenable.d.ts +0 -12
package/README.md
CHANGED
|
@@ -229,6 +229,7 @@ Xterm.js is used in several world-class applications to provide great terminal e
|
|
|
229
229
|
- [**pyTermTk**](https://github.com/ceccopierangiolieugenio/pyTermTk): Python Terminal Toolkit - a Spiced Up Cross Compatible TUI Library 🌶️, use xterm.js for the [HTML5 exporter](https://ceccopierangiolieugenio.github.io/pyTermTk/sandbox/sandbox.html).
|
|
230
230
|
- [**ecmaOS**](https://ecmaos.sh): A kernel and suite of applications tying modern web technologies into a browser-based operating system.
|
|
231
231
|
- [**LabEx**](https://labex.io): Interactive learning platform with hands-on labs and xterm.js-based online terminals, focused on learn-by-doing approach.
|
|
232
|
+
- [**EmuDevz**](https://afska.github.io/emudevz): A free coding game where players learn how to build an emulator from scratch.
|
|
232
233
|
- [And much more...](https://github.com/xtermjs/xterm.js/network/dependents?package_id=UGFja2FnZS0xNjYzMjc4OQ%3D%3D)
|
|
233
234
|
|
|
234
235
|
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.
|