Update xterm.js to 5.0.0

This commit is contained in:
Martchus 2022-09-15 23:13:32 +02:00
parent c7d8e71978
commit aa6e78f838
5 changed files with 10 additions and 7 deletions

View File

@ -8,6 +8,7 @@ const SearchAddon = exports.SearchAddon.SearchAddon;
export function makeTerminal() export function makeTerminal()
{ {
const terminal = new Terminal({ const terminal = new Terminal({
allowProposedApi: true,
disableStdin: true, disableStdin: true,
convertEol: true, convertEol: true,
scrollback: 500000, scrollback: 500000,

File diff suppressed because one or more lines are too long

View File

@ -163,9 +163,11 @@
opacity: 0.5; opacity: 0.5;
} }
.xterm-underline { .xterm-underline-1 { text-decoration: underline; }
text-decoration: underline; .xterm-underline-2 { text-decoration: double underline; }
} .xterm-underline-3 { text-decoration: wavy underline; }
.xterm-underline-4 { text-decoration: dotted underline; }
.xterm-underline-5 { text-decoration: dashed underline; }
.xterm-strikethrough { .xterm-strikethrough {
text-decoration: line-through; text-decoration: line-through;

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{ {
"dependencies": { "dependencies": {
"@mdi/font": "^6.6.96", "@mdi/font": "^6.6.96",
"xterm": "^4.16.0", "xterm": "^5.0.0",
"xterm-addon-search": "^0.8.2" "xterm-addon-search": "^0.10.0"
} }
} }