@silurus/ooxml 0.56.0 → 0.57.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 +8 -5
- package/dist/docx-BWAno6Ct.js +1661 -0
- package/dist/docx.mjs +2 -2
- package/dist/index.mjs +3 -3
- package/dist/pptx-5Y2LWU2Z.js +1614 -0
- package/dist/pptx.mjs +2 -2
- package/dist/src-BM-QyfQO.js +29312 -0
- package/dist/types/docx.d.ts +21 -21
- package/dist/types/index.d.ts +465 -11
- package/dist/types/pptx.d.ts +351 -24
- package/dist/types/xlsx.d.ts +83 -38
- package/dist/xlsx-qDuC11Rx.js +3502 -0
- package/dist/xlsx.mjs +2 -2
- package/package.json +1 -1
- package/dist/docx-g-cBdnSQ.js +0 -1661
- package/dist/pptx-DkKGg5bQ.js +0 -23667
- package/dist/src-CFPOemuW.js +0 -6810
- package/dist/xlsx-Bx216pgL.js +0 -3483
package/README.md
CHANGED
|
@@ -454,7 +454,7 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
|
|
|
454
454
|
| | Row / column sizing (custom widths and heights) | ✅ |
|
|
455
455
|
| | Hidden rows / columns | ✅ |
|
|
456
456
|
| **Elements** | Images (`<xdr:twoCellAnchor>`) | ✅ |
|
|
457
|
-
| | Drawing shapes / text boxes (`xdr:sp`, `xdr:txBody`) | ✅ |
|
|
457
|
+
| | Drawing shapes / text boxes (`xdr:sp`, `xdr:txBody` — 186 preset geometries via the shared engine, with `avLst` adjust handles) | ✅ |
|
|
458
458
|
| | 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`) | ✅ |
|
|
459
459
|
| | Charts (bar, line, area, radar, scatter / bubble) | ✅ |
|
|
460
460
|
| | Chart markers (circle / square / diamond / triangle / x / plus / star / dot / dash, per-point `<c:dPt>` overrides) | ✅ |
|
|
@@ -512,12 +512,15 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
|
|
|
512
512
|
| | Dash / dot styles | ✅ |
|
|
513
513
|
| | Arrow heads (`headEnd` / `tailEnd`) | ✅ |
|
|
514
514
|
| | Compound / double lines (`<a:ln cmpd="dbl|thinThick|thickThin|tri">` — straight connectors) | ✅ |
|
|
515
|
+
| | Picture border (`a:ln` on `p:pic`) — stroked along the clip silhouette | ✅ |
|
|
515
516
|
| **Shape effects** | Drop shadow (`outerShdw`) | ✅ |
|
|
516
517
|
| | Glow (`glow` — radius + colour) | ✅ |
|
|
517
|
-
| | Inner shadow (`innerShdw`
|
|
518
|
-
| | Soft edge (`softEdge`
|
|
519
|
-
| | Reflection (`reflection`
|
|
520
|
-
| |
|
|
518
|
+
| | Inner shadow (`innerShdw`) | ✅ |
|
|
519
|
+
| | Soft edge (`softEdge`) | ✅ |
|
|
520
|
+
| | Reflection (`reflection`) | ✅ |
|
|
521
|
+
| | 3D camera / perspective projection (`scene3d` camera + `rot`) on pictures | ✅ |
|
|
522
|
+
| | 3D contour edge (`sp3d` `contourW` / `contourClr`) on pictures — flat approximation, no bevel shading | ⚠️ |
|
|
523
|
+
| | Bevel / 3D extrusion (`sp3d` `bevelT` / `bevelB` / `extrusionH`) | ⚠️ parsed; rendering planned |
|
|
521
524
|
| **Text — characters** | Bold, italic, strikethrough (incl. `dblStrike`) | ✅ |
|
|
522
525
|
| | Underline styles (`sng` / `dbl` / `dotted` / `dash` / `dashLong` / `dotDash` / `dotDotDash` / `wavy` / `wavyDbl` and `*Heavy` variants) | ✅ |
|
|
523
526
|
| | Per-run underline colour (`uFill` / `uFillTx`) | ✅ |
|