@silurus/ooxml 0.76.1 → 0.77.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/README.md +144 -32
- package/dist/{canvas-viewer-mechanics-CwVSOYke.js → canvas-viewer-mechanics-DTkBvITv.js} +318 -152
- package/dist/{document-pull-client-AAnwzlig.js → document-pull-client-iWr8-S7P.js} +4829 -4210
- package/dist/{docx-CCksIXd5.js → docx-B1gYS6eU.js} +612 -191
- package/dist/docx.mjs +3 -3
- package/dist/docx_parser_bg.wasm +0 -0
- package/dist/index.mjs +3 -3
- package/dist/node.mjs +5 -5
- package/dist/{pptx-CKAk5e-J.js → pptx-CQjtK_o7.js} +646 -258
- package/dist/pptx.mjs +4 -4
- package/dist/pptx_parser_bg.wasm +0 -0
- package/dist/{render-CLcpSi0m.js → render-Ca80nlG5.js} +1 -1
- package/dist/{render-worker-host-Bkf1jUcW.js → render-worker-host-BozYMmxO.js} +1 -1
- package/dist/render-worker-host-C96AiK8e.js +27 -0
- package/dist/{render-worker-host-CKOmXdyr.js → render-worker-host-EHG5j8FK.js} +1 -1
- package/dist/{session-B4Y54cbT.js → session-KvKxQAeL.js} +1 -1
- package/dist/{slide-pull-client-WCuYCjio.js → slide-pull-client-BXb67StB.js} +15 -11
- package/dist/types/docx.d.ts +130 -28
- package/dist/types/index.d.ts +414 -87
- package/dist/types/node.d.ts +36 -20
- package/dist/types/pptx.d.ts +136 -10
- package/dist/types/xlsx.d.ts +176 -55
- package/dist/{xlsx-BBmmZNQn.js → xlsx-RLCmd1Bm.js} +2074 -1140
- package/dist/xlsx.mjs +4 -4
- package/package.json +3 -2
- package/dist/render-worker-host-B8HAb_sK.js +0 -27
package/dist/xlsx.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { It as e, Lt as t, a as n, hn as r, mn as i } from "./line-metrics-BdCACYlq.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { i as
|
|
5
|
-
export { e as OoxmlDecodedImageLimitError, i as OoxmlError, r as OoxmlResourceLimitError,
|
|
2
|
+
import { w as a } from "./canvas-viewer-mechanics-DTkBvITv.js";
|
|
3
|
+
import { a as o, i as s, n as c, o as l, r as u, s as d } from "./xlsx-RLCmd1Bm.js";
|
|
4
|
+
import { i as f } from "./worksheet-pull-client-YzjJMOns.js";
|
|
5
|
+
export { s as MAX_SELECTION_AREAS, o as MAX_SELECTION_CONTEXT_CELLS, l as MAX_SELECTION_CONTEXT_TEXT_CHARACTERS, e as OoxmlDecodedImageLimitError, i as OoxmlError, r as OoxmlResourceLimitError, c as XlsxSheetViewer, u as XlsxViewer, d as XlsxWorkbook, a as autoResize, t as isOoxmlDecodedImageLimitError, n as openExternalHyperlink, f as resolveSharedStrings };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@silurus/ooxml",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.77.0",
|
|
4
4
|
"description": "Browser-based OOXML viewer (docx/xlsx/pptx) — Rust/WASM parser + Canvas renderer",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Yuki Yokotani <silurus.dev@gmail.com>",
|
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
"@storybook/html-vite": "^10.3.5",
|
|
79
79
|
"@types/node": "^25.6.0",
|
|
80
80
|
"mathjax": "^3.2.2",
|
|
81
|
+
"pngjs": "^7.0.0",
|
|
81
82
|
"rolldown-plugin-dts": "^0.28.0",
|
|
82
83
|
"rolldown": "^1.2.0",
|
|
83
84
|
"storybook": "^10.3.5",
|
|
@@ -103,7 +104,7 @@
|
|
|
103
104
|
"vrt:fidelity": "pnpm -r --workspace-concurrency=1 vrt:fidelity",
|
|
104
105
|
"vrt:worker": "pnpm --workspace-concurrency=1 --filter @silurus/ooxml-pptx --filter @silurus/ooxml-docx --filter @silurus/ooxml-xlsx vrt:worker",
|
|
105
106
|
"smoke": "playwright test --config tests/smoke/playwright.config.ts layouts",
|
|
106
|
-
"test": "vitest run",
|
|
107
|
+
"test": "vitest run && node --test tests/visual/private-corpus.test.mjs",
|
|
107
108
|
"check:no-inline-wasm": "node scripts/check-no-inline-wasm.mjs dist",
|
|
108
109
|
"lint": "ast-grep scan",
|
|
109
110
|
"lint:test": "ast-grep test --skip-snapshot-tests",
|