@silurus/ooxml 0.12.0 → 0.14.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 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
 
@@ -478,6 +480,17 @@ export const PptxViewerComponent = component$<{ src: string }>(({ src }) => {
478
480
  | | Slicers (static, Office 2010 extension) | ✅ |
479
481
  | | Pivot tables | ❌ Not planned |
480
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`.
481
494
 
482
495
  ---
483
496