@silurus/ooxml 0.11.0 → 0.13.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 +14 -0
- package/dist/{docx-5SgqrF74.cjs → docx-BWxysGzi.cjs} +1 -1
- package/dist/{docx-BdQTKYcj.js → docx-I_31kSX9.js} +50 -25
- package/dist/docx.cjs +1 -1
- package/dist/docx.mjs +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +3 -3
- package/dist/{pptx-CsVDY5Ej.js → pptx-8AYrKKlD.js} +153 -89
- package/dist/pptx-D0uqcB_p.cjs +1 -0
- package/dist/pptx.cjs +1 -1
- package/dist/pptx.mjs +1 -1
- package/dist/renderer-DB-DghvA.cjs +1 -0
- package/dist/renderer-rSBto6l5.js +683 -0
- package/dist/types/docx.d.ts +35 -3
- package/dist/types/index.d.ts +305 -7
- package/dist/types/pptx.d.ts +49 -1
- package/dist/types/xlsx.d.ts +216 -4
- package/dist/xlsx-B-twWw7w.js +2522 -0
- package/dist/xlsx-B4rNAWcg.cjs +10 -0
- package/dist/xlsx.cjs +1 -1
- package/dist/xlsx.mjs +1 -1
- package/package.json +1 -1
- package/dist/pptx-BGtPXrb6.cjs +0 -1
- package/dist/renderer-B8QsMFSc.cjs +0 -1
- package/dist/renderer-BrgdtBit.js +0 -564
- package/dist/xlsx-35w32FNQ.js +0 -2037
- package/dist/xlsx-DYZg9gH8.cjs +0 -9
package/README.md
CHANGED
|
@@ -417,6 +417,7 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
|
|
|
417
417
|
| **Theme** | Scheme colors (dk1/lt1/accent1–6) | ✅ |
|
|
418
418
|
| | Font scheme (`+mj-lt`, `+mn-lt`) | ✅ |
|
|
419
419
|
| | lumMod / lumOff / alpha transforms | ✅ |
|
|
420
|
+
| **Interaction** | Text selection (transparent overlay, native copy) | ✅ |
|
|
420
421
|
|
|
421
422
|
---
|
|
422
423
|
|
|
@@ -448,6 +449,7 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
|
|
|
448
449
|
| **Advanced** | Footnote / endnote reference markers | ✅ |
|
|
449
450
|
| | Track changes / comments | ❌ |
|
|
450
451
|
| | Mail merge fields | ❌ Not planned |
|
|
452
|
+
| **Interaction** | Text selection (transparent overlay, native copy) | ✅ |
|
|
451
453
|
|
|
452
454
|
---
|
|
453
455
|
|
|
@@ -475,8 +477,20 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
|
|
|
475
477
|
| | Charts (bar, line, area, radar) | ✅ |
|
|
476
478
|
| | Sparklines | ❌ Not planned |
|
|
477
479
|
| **Advanced** | Conditional formatting (`cellIs`, `colorScale`, `dataBar`, `iconSet`, `top10`, `aboveAverage`) | ✅ |
|
|
480
|
+
| | Slicers (static, Office 2010 extension) | ✅ |
|
|
478
481
|
| | Pivot tables | ❌ Not planned |
|
|
479
482
|
| | Data validation / comments | ❌ Not planned |
|
|
483
|
+
| **Interaction** | Cell selection (single / range / row / column / all) | ✅ |
|
|
484
|
+
| | Shift+click to extend, Ctrl+C to copy as TSV | ✅ |
|
|
485
|
+
| | Text selection inside cells (transparent overlay) | ✅ |
|
|
486
|
+
| | `onSelectionChange` callback, `getCellAt(x, y)` API | ✅ |
|
|
487
|
+
|
|
488
|
+
---
|
|
489
|
+
|
|
490
|
+
## Companion packages
|
|
491
|
+
|
|
492
|
+
- **[`packages/vscode-extension/`](packages/vscode-extension/)** — VS Code extension (`ooxml-viewer`) that registers `CustomEditorProvider`s for `.xlsx`, `.docx`, and `.pptx`. Open Office files directly in the editor with the same Canvas renderer plus selection/copy.
|
|
493
|
+
- **[`packages/mcp-server/`](packages/mcp-server/)** — Rust MCP server (`ooxml-mcp-server`) exposing the parsers as tools for AI agents (Claude, Copilot, Codex, etc.). Provides structured queries (`xlsx_get_cell_range`, `docx_get_structure`, `pptx_get_slide_structure`, …) so agents can inspect OOXML files without shelling out to `unzip`.
|
|
480
494
|
|
|
481
495
|
---
|
|
482
496
|
|