@silurus/ooxml 0.80.1 → 0.80.2
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 +4 -3
- package/dist/assets/render-worker-BD1_LaFD.js +9 -0
- package/dist/assets/render-worker-BIqMQFkZ.js +8 -0
- package/dist/assets/render-worker-DuvX4_li.js +22 -0
- package/dist/{canvas-viewer-mechanics-BdMdqj1R.js → canvas-viewer-mechanics-D-r6wHY_.js} +1 -1
- package/dist/{chart-number-format-tjYUR9eS.js → chart-number-format-qLhnk6hj.js} +57 -17
- package/dist/{document-pull-client-Dk2EnTL7.js → document-pull-client-Cukkyojh.js} +37 -19
- package/dist/{docx-Dw1kxR2M.js → docx-BlELeDNF.js} +5 -5
- package/dist/docx.mjs +3 -3
- package/dist/docx_parser_bg.wasm +0 -0
- package/dist/index.mjs +3 -3
- package/dist/{line-distribute-vYf5DWek.js → line-distribute-Bvtp0Gt6.js} +1 -1
- package/dist/{line-metrics-BY-aNaLO.js → line-metrics-DdEJYxjx.js} +3789 -2998
- package/dist/node.mjs +7 -7
- package/dist/{pptx-CE7xARJ_.js → pptx-JBkXh6Cy.js} +6 -6
- package/dist/pptx.mjs +4 -4
- package/dist/pptx_parser_bg.wasm +0 -0
- package/dist/region-map.mjs +29 -29
- package/dist/{render-C4IiRZiF.js → render-CoqMHcbF.js} +1 -1
- package/dist/{render-worker-host-BVOjz-oV.js → render-worker-host-Br7ZDyGE.js} +1 -1
- package/dist/{render-worker-host-D9mO9qMj.js → render-worker-host-CM1JXVqg.js} +1 -1
- package/dist/{render-worker-host-1VHH_HQk.js → render-worker-host-DFtd9Z-J.js} +1 -1
- package/dist/{resource-measurement-DOQetcWm.js → resource-measurement-CgMubiAI.js} +1 -1
- package/dist/{session-BYh13Iu2.js → session-DkPblDiq.js} +2 -2
- package/dist/{slide-pull-client-v6Feibq1.js → slide-pull-client-m2blvngt.js} +4 -4
- package/dist/{dash-CMzZIDz_.js → three-d-C28kqDym.js} +352 -90
- package/dist/three-d.mjs +509 -715
- package/dist/types/docx.d.ts +58 -7
- package/dist/types/index.d.ts +62 -11
- package/dist/types/node.d.ts +54 -3
- package/dist/types/pptx.d.ts +58 -7
- package/dist/types/region-map.d.ts +54 -3
- package/dist/types/three-d.d.ts +54 -3
- package/dist/types/xlsx.d.ts +58 -7
- package/dist/{worksheet-pull-client-Nk7nbD3-.js → worksheet-pull-client-BntP6RiO.js} +2 -2
- package/dist/{xlsx-zy51yoRg.js → xlsx-dhsUXUpX.js} +982 -958
- package/dist/xlsx.mjs +4 -4
- package/dist/xlsx_parser_bg.wasm +0 -0
- package/package.json +1 -1
- package/dist/assets/render-worker-BC6Wez97.js +0 -7
- package/dist/assets/render-worker-DidI5svV.js +0 -21
- package/dist/assets/render-worker-n3fNJ5XR.js +0 -8
package/README.md
CHANGED
|
@@ -431,8 +431,9 @@ overlay is enabled, links are interactive by default. XLSX hit-tests cells
|
|
|
431
431
|
directly, so links are interactive out of the box. An external link opens in a
|
|
432
432
|
new tab (scheme-sanitized to `http` / `https` / `mailto` / `tel`, `noopener`),
|
|
433
433
|
and an internal target navigates within the document (docx bookmark, pptx slide
|
|
434
|
-
jump, xlsx
|
|
435
|
-
|
|
434
|
+
jump, xlsx defined name or cell reference). XLSX references may switch sheets
|
|
435
|
+
and then scroll the destination cell into view; a range navigates to its first
|
|
436
|
+
cell. Pass `onHyperlinkClick(target)` to take over the click yourself.
|
|
436
437
|
Pass `enableHyperlinks: false` to disable hyperlink interactivity entirely — no
|
|
437
438
|
hit-testing, no pointer cursor over links, no default navigation, and
|
|
438
439
|
`onHyperlinkClick` is never called; links still render as authored but are inert.
|
|
@@ -706,7 +707,7 @@ file without uploading it.
|
|
|
706
707
|
| | Ctrl/⌘ + mouse-wheel and trackpad-pinch zoom (in addition to the slider) | ✅ |
|
|
707
708
|
| | Runtime fit / zoom API (`fitWidth` / `fitPage` / `getScale` / `setScale`, in addition to the slider) | ✅ |
|
|
708
709
|
| | In-document find (`findText` / `findNext` / `findPrev` / `clearFind` — matches tagged with sheet + cell) | ✅ |
|
|
709
|
-
| | Clickable hyperlinks (`onHyperlinkClick`; internal defined-name / cell navigation) | ✅ |
|
|
710
|
+
| | Clickable hyperlinks (`onHyperlinkClick`; internal defined-name / sheet-and-cell navigation, ranges use the first cell) | ✅ |
|
|
710
711
|
| | Drag-to-resize columns / rows by dragging header borders (`resizable` option, default on) — **view-only: changes the on-screen view only and never modifies the loaded file** | ✅ |
|
|
711
712
|
| | Customizable cell-selection color (`selectionColor` option, `setSelectionColor()`) | ✅ |
|
|
712
713
|
| **Loading** | Password-protected files ([MS-OFFCRYPTO] Agile Encryption — `load(bytes, { password })`, decrypted client-side via WebCrypto; legacy Standard / Extensible encryption → typed `unsupported-encryption`) | ✅ |
|