Updated build packages, Updated png analyser page

Update package-lock.json and png-analyser.jinja
This commit is contained in:
2025-09-08 00:38:18 +02:00
parent 30da615199
commit 3e29592b48
2 changed files with 37 additions and 1 deletions

View File

@@ -5,9 +5,10 @@
"packages": {
"": {
"devDependencies": {
"browserify": "^17.0.1",
"html-minifier-terser": "^7.2.0",
"minify": "^10.2.0",
"rollup": "^3.27.2",
"rollup": "^4.48.1",
"sass": "^1.63.6",
"terser": "^5.19.0",
"typescript": "^5.1.6"

View File

@@ -1,3 +1,38 @@
{{ render_file_input(tool_id + "-test-input", true, ".png, .bmp", true, true) }}
<div class="w-full ox-auto">
<table class="table-stylish table-p-s border r-m w-full table-no-wrap">
<thead>
<tr>
<th class="bkgd-grid30">Offset</th>
<th class="bkgd-grid30">Chunk Header</th>
<th class="bkgd-grid30">Chunk Data</th>
<th class="bkgd-grid30">Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td class="t-monospace">0x0000</td>
<td>2</td>
<td>2</td>
<td>
<button class="p-xs r-s border btn-primary">
<i class="fa-duotone fa-solid fa-binary"></i><span class="ml-xxs mobile-hide">Hex dump</span>
</button>
<button class="p-xs r-s border btn-primary">
<i class="fa-duotone fa-solid fa-download"></i><span class="ml-xxs mobile-hide">Export</span>
</button>
</td>
</tr>
<tr>
<td class="t-monospace">0x0010</td>
<td>4</td>
<td>4</td>
<td>4</td>
</tr>
</tbody>
</table>
</div>