@silurus/ooxml 0.6.0 → 0.8.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 +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +2 -2
- package/dist/pptx-BGtPXrb6.cjs +1 -0
- package/dist/pptx-CsVDY5Ej.js +23787 -0
- package/dist/pptx.cjs +1 -1
- package/dist/pptx.mjs +1 -1
- package/dist/renderer-B8QsMFSc.cjs +1 -0
- package/dist/renderer-BrgdtBit.js +564 -0
- package/dist/types/index.d.ts +22 -0
- package/dist/types/pptx.d.ts +13 -0
- package/dist/types/xlsx.d.ts +9 -0
- package/dist/xlsx-5xusOvzv.js +1203 -0
- package/dist/xlsx-DZYw6i9i.cjs +4 -0
- package/dist/xlsx.cjs +1 -1
- package/dist/xlsx.mjs +1 -1
- package/package.json +2 -2
- package/dist/pptx-C4OquLff.cjs +0 -1
- package/dist/pptx-zFBzecSl.js +0 -1686
- package/dist/renderer-CkvTkvPm.cjs +0 -1
- package/dist/renderer-UsGKjfFU.js +0 -494
- package/dist/xlsx-8Jv9bmoU.js +0 -1196
- package/dist/xlsx-DS7QINM4.cjs +0 -4
package/README.md
CHANGED
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
[](https://www.npmjs.com/package/@silurus/ooxml)
|
|
7
7
|
[](./LICENSE)
|
|
8
8
|
|
|
9
|
-
**[Demo (Storybook)](https://
|
|
9
|
+
**[Demo (Storybook)](https://demo.silurus.dev)**
|
|
10
10
|
|
|
11
11
|
A browser-based viewer for Office Open XML documents that renders to an HTML Canvas element.
|
|
12
12
|
The parsers are written in Rust and compiled to WebAssembly; the renderers use the Canvas 2D API.
|
|
13
|
-
Each format also exposes a headless engine (`PptxPresentation` / `DocxDocument` / `XlsxWorkbook`) that renders into any caller-supplied canvas, so you can compose your own UI — scroll views, thumbnail grids, master-detail panes — instead of being locked into the built-in viewer. See the `Examples` section in [the Storybook demo](https://
|
|
13
|
+
Each format also exposes a headless engine (`PptxPresentation` / `DocxDocument` / `XlsxWorkbook`) that renders into any caller-supplied canvas, so you can compose your own UI — scroll views, thumbnail grids, master-detail panes — instead of being locked into the built-in viewer. See the `Examples` section in [the Storybook demo](https://demo.silurus.dev).
|
|
14
14
|
|
|
15
15
|
| PPTX | DOCX | XLSX |
|
|
16
16
|
|:---:|:---:|:---:|
|
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./pptx-
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./pptx-BGtPXrb6.cjs`),t=require(`./xlsx-DZYw6i9i.cjs`),n=require(`./docx-5SgqrF74.cjs`);Object.defineProperty(exports,`docx`,{enumerable:!0,get:function(){return n.t}}),Object.defineProperty(exports,`pptx`,{enumerable:!0,get:function(){return e.t}}),Object.defineProperty(exports,`xlsx`,{enumerable:!0,get:function(){return t.t}});
|
package/dist/index.mjs
CHANGED