@xterm/xterm 6.1.0-beta.173 → 6.1.0-beta.174
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/lib/xterm.js +1 -1
- package/lib/xterm.js.map +1 -1
- package/lib/xterm.mjs +1 -1
- package/lib/xterm.mjs.map +1 -1
- package/package.json +2 -2
- package/src/common/Types.ts +2 -2
- package/src/common/Version.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xterm/xterm",
|
|
3
3
|
"description": "Full xterm terminal, in your browser",
|
|
4
|
-
"version": "6.1.0-beta.
|
|
4
|
+
"version": "6.1.0-beta.174",
|
|
5
5
|
"main": "lib/xterm.js",
|
|
6
6
|
"module": "lib/xterm.mjs",
|
|
7
7
|
"style": "css/xterm.css",
|
|
@@ -119,5 +119,5 @@
|
|
|
119
119
|
"ws": "^8.2.3",
|
|
120
120
|
"xterm-benchmark": "^0.3.1"
|
|
121
121
|
},
|
|
122
|
-
"commit": "
|
|
122
|
+
"commit": "6651c4ca230617a146813551271c55a03fcc66c7"
|
|
123
123
|
}
|
package/src/common/Types.ts
CHANGED
|
@@ -101,13 +101,13 @@ export interface ICharset {
|
|
|
101
101
|
[key: string]: string | undefined;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
export type CharData = [number, string, number, number];
|
|
104
|
+
export type CharData = [attr: number, char: string, width: number, code: number];
|
|
105
105
|
|
|
106
106
|
export interface IColor {
|
|
107
107
|
readonly css: string;
|
|
108
108
|
readonly rgba: number; // 32-bit int with rgba in each byte
|
|
109
109
|
}
|
|
110
|
-
export type IColorRGB = [number, number, number];
|
|
110
|
+
export type IColorRGB = [red: number, green: number, blue: number];
|
|
111
111
|
|
|
112
112
|
export interface IExtendedAttrs {
|
|
113
113
|
ext: number;
|
package/src/common/Version.ts
CHANGED