@silurus/ooxml 0.63.0 → 0.64.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 +3 -0
- package/dist/docx-bm_nejFi.js +2196 -0
- package/dist/docx.mjs +2 -2
- package/dist/index.mjs +3 -3
- package/dist/pptx-BMkeLNP-.js +2035 -0
- package/dist/pptx.mjs +2 -2
- package/dist/render-worker-host-4w5qj_dW.js +27 -0
- package/dist/render-worker-host-CpdJg0Em.js +27 -0
- package/dist/render-worker-host-j-N9SY-5.js +27 -0
- package/dist/{src-DKY8GvmE.js → src-DaB2HHXH.js} +502 -304
- package/dist/types/docx.d.ts +32 -1
- package/dist/types/index.d.ts +166 -25
- package/dist/types/pptx.d.ts +69 -13
- package/dist/types/xlsx.d.ts +65 -11
- package/dist/xlsx-D8CS3kbR.js +3987 -0
- package/dist/xlsx.mjs +2 -2
- package/package.json +1 -1
- package/dist/docx-BgsF1tJ-.js +0 -2165
- package/dist/pptx-BijzE42K.js +0 -2002
- package/dist/render-worker-host-BQdHv6kk.js +0 -27
- package/dist/render-worker-host-CtonR-7J.js +0 -27
- package/dist/render-worker-host-hdFtyBVi.js +0 -27
- package/dist/xlsx-DlPbR_DJ.js +0 -3946
package/README.md
CHANGED
|
@@ -457,6 +457,7 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
|
|
|
457
457
|
| | Right-to-left table column order (`w:bidiVisual`, §17.4.1) | ✅ |
|
|
458
458
|
| | Math equations (OMML `m:oMath` / `m:oMathPara`, rendered via MathJax — opt-in `@silurus/ooxml/math`) | ✅ |
|
|
459
459
|
| | Images (inline and anchored, with text wrap) | ✅ |
|
|
460
|
+
| | SVG images (`asvg:svgBlip` MS-2016 extension — vector drawn from the embedded `.svg`, raster fallback) | ✅ |
|
|
460
461
|
| | Text boxes / drawing shapes (`wps:txbx`, `a:prstGeom` — 186 preset geometries via the shared engine; connector arrow heads `headEnd` / `tailEnd` (§20.1.8.3) and `prstDash` dash patterns (§20.1.8.48)) | ✅ |
|
|
461
462
|
| | WMF / EMF metafile images (legacy vector) | ❌ Not planned |
|
|
462
463
|
| **Advanced** | Footnotes — reference markers + bottom-of-page bodies with separator rule, numbered (`w:footnoteReference` / `w:footnoteRef`, §17.11) | ✅ |
|
|
@@ -496,6 +497,7 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
|
|
|
496
497
|
| | Row / column sizing (custom widths and heights) | ✅ |
|
|
497
498
|
| | Hidden rows / columns | ✅ |
|
|
498
499
|
| **Elements** | Images (`<xdr:twoCellAnchor>`) | ✅ |
|
|
500
|
+
| | SVG images (`asvg:svgBlip` MS-2016 extension — vector drawn from the embedded `.svg`, raster fallback) | ✅ |
|
|
499
501
|
| | Drawing shapes / text boxes (`xdr:sp`, `xdr:txBody` — 186 preset geometries via the shared engine, with `avLst` adjust handles) | ✅ |
|
|
500
502
|
| | Math equations in shapes (OMML `m:oMath` / `m:oMathPara` in `xdr:txBody`, incl. `a14:m` / `mc:AlternateContent`; rendered via MathJax — opt-in `@silurus/ooxml/math`) | ✅ |
|
|
501
503
|
| | Charts (bar, line, area, pie, doughnut, radar, scatter / bubble) | ✅ |
|
|
@@ -577,6 +579,7 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
|
|
|
577
579
|
| | Hyperlinks (`hlinkClick` — theme `hlink` colour + auto underline) | ✅ |
|
|
578
580
|
| | Text shadow (`rPr > effectLst > outerShdw`) | ✅ |
|
|
579
581
|
| | Text outline (`rPr > a:ln`) | ✅ |
|
|
582
|
+
| | Text highlight / marker (`a:highlight` — §21.1.2.3.4) | ✅ |
|
|
580
583
|
| | Math equations (OMML `m:oMath` / `m:oMathPara`, incl. `a14:m` / `mc:AlternateContent`; STIX Two Math via MathJax — opt-in `@silurus/ooxml/math`) | ✅ |
|
|
581
584
|
| **Text — paragraphs** | Horizontal alignment (left / center / right / justify) | ✅ |
|
|
582
585
|
| | Vertical anchor (top / center / bottom) | ✅ |
|