@xterm/addon-image 0.10.0-beta.210 → 0.10.0-beta.211
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/addon-image.js +1 -1
- package/lib/addon-image.js.map +1 -1
- package/lib/addon-image.mjs +1 -1
- package/lib/addon-image.mjs.map +2 -2
- package/package.json +3 -3
- package/src/ImageAddon.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xterm/addon-image",
|
|
3
|
-
"version": "0.10.0-beta.
|
|
3
|
+
"version": "0.10.0-beta.211",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "The xterm.js authors",
|
|
6
6
|
"url": "https://xtermjs.org/"
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"sixel": "^0.16.0",
|
|
28
28
|
"xterm-wasm-parts": "^0.3.0"
|
|
29
29
|
},
|
|
30
|
-
"commit": "
|
|
30
|
+
"commit": "605a7c6e3020b23155ad0544c3e56e88dd295c20",
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@xterm/xterm": "^6.1.0-beta.
|
|
32
|
+
"@xterm/xterm": "^6.1.0-beta.211"
|
|
33
33
|
}
|
|
34
34
|
}
|
package/src/ImageAddon.ts
CHANGED
|
@@ -22,14 +22,14 @@ const DEFAULT_OPTIONS: IImageAddonOptions = {
|
|
|
22
22
|
pixelLimit: 16777216, // limit to 4096 * 4096 pixels
|
|
23
23
|
sixelSupport: true,
|
|
24
24
|
sixelScrolling: true,
|
|
25
|
-
sixelPaletteLimit:
|
|
26
|
-
sixelSizeLimit:
|
|
25
|
+
sixelPaletteLimit: 4096,
|
|
26
|
+
sixelSizeLimit: 33554432,
|
|
27
27
|
storageLimit: 128,
|
|
28
28
|
showPlaceholder: true,
|
|
29
29
|
iipSupport: true,
|
|
30
|
-
iipSizeLimit:
|
|
30
|
+
iipSizeLimit: 33554432,
|
|
31
31
|
kittySupport: true,
|
|
32
|
-
kittySizeLimit:
|
|
32
|
+
kittySizeLimit: 33554432
|
|
33
33
|
};
|
|
34
34
|
|
|
35
35
|
// max palette size supported by the sixel lib (compile time setting)
|