single-file-core 1.5.95 → 1.5.97
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/core/helper.js +27 -2
- package/core/lib/processor-helper-common.js +3 -8
- package/core/util.js +1 -7
- package/css-tree-build/build.js +0 -1
- package/eslint.config.mjs +23 -0
- package/modules/template-formatter.js +18 -20
- package/package.json +3 -2
- package/processors/compression/compression-extract.js +8 -7
- package/processors/compression/compression.js +1 -0
- package/processors/frame-tree/content/content-frame-tree.js +2 -2
- package/processors/hooks/content/content-hooks-frames-web.js +141 -95
- package/processors/hooks/content/content-hooks-frames.js +27 -17
- package/single-file-infobar.js +5 -4
- package/single-file.js +11 -6
- package/vendor/zip/z-worker.js +1 -1
- package/vendor/zip/zip.js +113 -3
- package/vendor/zip/zip.min.js +1 -1
- package/zip-build/package-lock.json +4 -4
- package/zip-build/package.json +1 -1
- package/zip-build/reserved-property-names.json +9 -3
|
@@ -6,12 +6,19 @@
|
|
|
6
6
|
"writable",
|
|
7
7
|
"CompressionStreamLike",
|
|
8
8
|
"DecompressionStreamLike",
|
|
9
|
+
"VERSION",
|
|
9
10
|
"configure",
|
|
10
11
|
"resetConfiguration",
|
|
11
12
|
"registerCodec",
|
|
12
13
|
"unregisterCodec",
|
|
13
|
-
"
|
|
14
|
+
"getRegisteredCodecs",
|
|
15
|
+
"getSupportedCompressionMethods",
|
|
16
|
+
"SupportedCompressionMethod",
|
|
14
17
|
"compressionMethod",
|
|
18
|
+
"compression",
|
|
19
|
+
"decompression",
|
|
20
|
+
"registered",
|
|
21
|
+
"CodecDefinition",
|
|
15
22
|
"format",
|
|
16
23
|
"codecURI",
|
|
17
24
|
"CompressionStream",
|
|
@@ -20,10 +27,10 @@
|
|
|
20
27
|
"CompressionStreamOptions",
|
|
21
28
|
"level",
|
|
22
29
|
"chunkSize",
|
|
30
|
+
"uncompressedSize",
|
|
23
31
|
"DecompressionStreamOptions",
|
|
24
32
|
"deflate64",
|
|
25
33
|
"rawBitFlag",
|
|
26
|
-
"uncompressedSize",
|
|
27
34
|
"Configuration",
|
|
28
35
|
"maxWorkers",
|
|
29
36
|
"terminateWorkerTimeout",
|
|
@@ -4745,7 +4752,6 @@
|
|
|
4745
4752
|
"DECR_WRAP",
|
|
4746
4753
|
"VENDOR",
|
|
4747
4754
|
"RENDERER",
|
|
4748
|
-
"VERSION",
|
|
4749
4755
|
"NEAREST",
|
|
4750
4756
|
"LINEAR",
|
|
4751
4757
|
"NEAREST_MIPMAP_NEAREST",
|