jit-viewer 1.1.3 → 1.2.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/CHANGELOG.md +17 -0
- package/README.md +82 -781
- package/README.zh-CN.md +101 -330
- package/dist/iife/jit-viewer.min.css +1 -1
- package/dist/iife/jit-viewer.min.js +1 -1
- package/dist/index.cjs +5 -5
- package/dist/index.d.ts +105 -21
- package/dist/index.js +938 -206
- package/dist/style.css +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.2.0 - 2026-04-02
|
|
4
|
+
|
|
5
|
+
- Added CSV / TSV preview support with delimiter detection and table rendering
|
|
6
|
+
- Added native video preview support for `mp4`, `webm`, `ogg`, `ogv`, and `mov`
|
|
7
|
+
- Improved HTML, image, and dynamic file-type routing inside the viewer
|
|
8
|
+
- Fixed CSV preview overflow so large tables stay within the viewer layout
|
|
9
|
+
- Fixed video loading flow for local upload and remote preview cases
|
|
10
|
+
- Hardened branding protection so CSS hiding can trigger warning and self-recovery more reliably
|
|
11
|
+
|
|
12
|
+
## 1.1.4 - 2026-03-31
|
|
13
|
+
|
|
14
|
+
- Improved HTML preview rendering for local files and remote HTML content
|
|
15
|
+
- Added explicit HTML and image preview branches to the viewer runtime
|
|
16
|
+
- Moved the branding footer to the bottom of the viewer with dedicated footer styles
|
|
17
|
+
- Updated the vanilla HTML demo to support direct `.html` and `.htm` uploads
|