@silurus/ooxml 0.33.1 → 0.34.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 -3
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +2 -2
- package/dist/pptx-BiCFrgHM.js +23301 -0
- package/dist/pptx-fT7k8Zgz.cjs +1 -0
- package/dist/pptx.cjs +1 -1
- package/dist/pptx.mjs +1 -1
- package/dist/{renderer-BOwyHm7d.cjs → renderer-8yNL4LpS.cjs} +1 -1
- package/dist/{renderer-ChX8p6Vl.js → renderer-DsT75h1z.js} +53 -20
- package/dist/types/index.d.ts +52 -0
- package/dist/types/pptx.d.ts +37 -0
- package/dist/types/xlsx.d.ts +15 -0
- package/dist/{xlsx-vrX8XqIh.cjs → xlsx-B2JQRvXf.cjs} +9 -9
- package/dist/{xlsx-ChuZ_oeP.js → xlsx-hRYBeCtQ.js} +517 -458
- package/dist/xlsx.cjs +1 -1
- package/dist/xlsx.mjs +1 -1
- package/package.json +1 -1
- package/dist/pptx-D8zbD_Gd.js +0 -23281
- package/dist/pptx-x0E1O-hf.cjs +0 -1
package/README.md
CHANGED
|
@@ -428,6 +428,7 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
|
|
|
428
428
|
| | Pivot tables | ❌ Not planned |
|
|
429
429
|
| | Data validation / comments | ❌ Not planned |
|
|
430
430
|
| **Interaction** | Cell selection (single / range / row / column / all) | ✅ |
|
|
431
|
+
| | Excel-style row / column header highlight on selection | ✅ |
|
|
431
432
|
| | Shift+click to extend, Ctrl+C to copy as TSV | ✅ |
|
|
432
433
|
| | Text selection inside cells (transparent overlay) | ✅ |
|
|
433
434
|
| | `onSelectionChange` callback, `getCellAt(x, y)` API | ✅ |
|
|
@@ -451,7 +452,9 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
|
|
|
451
452
|
| | Connectors (`cxnSp`) | ✅ |
|
|
452
453
|
| | Tables (`tbl` in `graphicFrame`) | ✅ |
|
|
453
454
|
| | Charts (bar, line, area, radar, waterfall) | ✅ |
|
|
454
|
-
| | Charts (pie,
|
|
455
|
+
| | Charts (pie, doughnut) | ✅ |
|
|
456
|
+
| | Charts (scatter — `scatterStyle` marker / line / smooth variants) | ✅ |
|
|
457
|
+
| | Charts (bubble — `bubbleSize` per-point area scaling) | ✅ |
|
|
455
458
|
| | SmartArt | ❌ |
|
|
456
459
|
| | OLE objects | ❌ |
|
|
457
460
|
| | Video / audio (poster + interactive playback) | ✅ |
|
|
@@ -484,7 +487,8 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
|
|
|
484
487
|
| | Letter spacing (`spc`) | ✅ |
|
|
485
488
|
| | Superscript / subscript | ✅ |
|
|
486
489
|
| | Hyperlinks (`hlinkClick` — theme `hlink` colour + auto underline) | ✅ |
|
|
487
|
-
| | Text shadow
|
|
490
|
+
| | Text shadow (`rPr > effectLst > outerShdw`) | ✅ |
|
|
491
|
+
| | Text outline (`rPr > a:ln`) | ✅ |
|
|
488
492
|
| **Text — paragraphs** | Horizontal alignment (left / center / right / justify) | ✅ |
|
|
489
493
|
| | Vertical anchor (top / center / bottom) | ✅ |
|
|
490
494
|
| | Line spacing (`spcPct`, `spcPts`) | ✅ |
|
|
@@ -492,7 +496,8 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
|
|
|
492
496
|
| | Bullet points (character and auto-numbered) | ✅ |
|
|
493
497
|
| | Tab stops | ✅ |
|
|
494
498
|
| | Indent / margin | ✅ |
|
|
495
|
-
| | Vertical /
|
|
499
|
+
| | Vertical text (`bodyPr@vert` — vert / vert270 / eaVert) | ✅ |
|
|
500
|
+
| | Right-to-left paragraph (`pPr@rtl` — Arabic / Hebrew default alignment + browser bidi) | ✅ |
|
|
496
501
|
| **Text — body** | Text padding (insets) | ✅ |
|
|
497
502
|
| | normAutoFit (shrink to fit) | ✅ |
|
|
498
503
|
| | spAutoFit (expand box; suppresses wrap when text fits in one line) | ✅ |
|
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./xlsx-
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./xlsx-B2JQRvXf.cjs`),t=require(`./pptx-fT7k8Zgz.cjs`),n=require(`./docx-DpX3h8ly.cjs`);Object.defineProperty(exports,`docx`,{enumerable:!0,get:function(){return n.t}}),Object.defineProperty(exports,`pptx`,{enumerable:!0,get:function(){return t.t}}),Object.defineProperty(exports,`xlsx`,{enumerable:!0,get:function(){return e.t}});
|
package/dist/index.mjs
CHANGED