pptx-viewer-core 1.1.41 → 1.1.42
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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
|
|
11
11
|
Hand it the bytes of a `.pptx` file and it gives you back a structured, fully typed object that describes every slide: text, shapes, images, charts, tables, and more. Change anything in that object and write it back to a valid `.pptx`. You can also build new presentations from scratch with a simple chainable API, or turn a deck into Markdown.
|
|
12
12
|
|
|
13
|
-
There is no UI here: this is the engine on its own. Use it directly when you need to process `.pptx` files without a screen, for example on a server, in a script, or in a build step. The same engine powers the [`pptx-react-viewer`](https://www.npmjs.com/package/pptx-react-viewer), `pptx-vue-viewer
|
|
13
|
+
There is no UI here: this is the engine on its own. Use it directly when you need to process `.pptx` files without a screen, for example on a server, in a script, or in a build step. The same engine powers the [`pptx-react-viewer`](https://www.npmjs.com/package/pptx-react-viewer), [`pptx-vue-viewer`](https://www.npmjs.com/package/pptx-vue-viewer), and [`pptx-angular-viewer`](https://www.npmjs.com/package/pptx-angular-viewer) UI components.
|
|
14
14
|
|
|
15
|
-
<samp>**[📦 npm](https://www.npmjs.com/package/pptx-viewer-core)** · **[📖 Full docs](https://christophervr.github.io/pptx-viewer/)** · **[▶️ Live demo](https://christophervr.github.io/pptx-viewer/demo/)** · **[⚛️ React UI](https://www.npmjs.com/package/pptx-react-viewer)**</samp>
|
|
15
|
+
<samp>**[📦 npm](https://www.npmjs.com/package/pptx-viewer-core)** · **[📖 Full docs](https://christophervr.github.io/pptx-viewer/)** · **[▶️ Live demo](https://christophervr.github.io/pptx-viewer/demo/)** · **[⚛️ React UI](https://www.npmjs.com/package/pptx-react-viewer)** · **[🖖 Vue UI](https://www.npmjs.com/package/pptx-vue-viewer)** · **[🅰️ Angular UI](https://www.npmjs.com/package/pptx-angular-viewer)**</samp>
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
@@ -153,7 +153,7 @@ The `PptxData` you get from `load()` exposes `slides`, `canvasSize`, `theme`, `s
|
|
|
153
153
|
| **Chart types** | 23, including waterfall, funnel, treemap, sunburst, box-whisker, region-map, and combo charts; with trendlines, error bars, and embedded Excel data |
|
|
154
154
|
| **Transitions** | 42 types (including morph, vortex, ripple, and shred) |
|
|
155
155
|
| **Animations** | 40+ presets, including colour animation, motion paths, and text that builds in by word, letter, or paragraph |
|
|
156
|
-
| **SmartArt** |
|
|
156
|
+
| **SmartArt** | 14 layout families, broken into editable shapes with a live reflow engine for structural edits |
|
|
157
157
|
| **Fills** | Solid, gradient (linear, radial, path), image, and 48 patterns |
|
|
158
158
|
| **Themes** | 8 built-in presets, switchable at runtime, with layout and placeholder remapping |
|
|
159
159
|
| **Security** | AES-128/256 encryption and decryption, modify-password (SHA), and detection of digital signatures |
|
|
@@ -173,9 +173,9 @@ Under the hood the engine is split into many small, focused modules. If you want
|
|
|
173
173
|
|
|
174
174
|
## Limitations
|
|
175
175
|
|
|
176
|
-
- **OLE objects** (embedded Word docs, spreadsheets, and similar)
|
|
177
|
-
- **SmartArt** is broken into editable shapes
|
|
178
|
-
- **Chart editing
|
|
176
|
+
- **OLE objects** (embedded Word docs, spreadsheets, and similar) cannot be edited in place: you get their preview image and can extract/download the embedded payload, but not edit its contents.
|
|
177
|
+
- **SmartArt** is broken into editable shapes. It uses PowerPoint's own pre-computed shape geometry when present; after structural edits (add/remove/reorder/promote/demote nodes) a live reflow engine rebuilds the shapes, with an algorithmic fallback covering 14 layout families for diagrams PowerPoint never rendered.
|
|
178
|
+
- **Chart editing** covers data, categories, and chart type, plus legend, axes (scale, format, titles, gridlines, log/display units), data labels, trendlines, error bars, and per-series/per-point markers and fills. A handful of rarely-used chart properties remain read-only for display.
|
|
179
179
|
- **Strict-format files** (ISO/IEC 29500 Strict) are converted to the more common Transitional form when opened and converted back when saved.
|
|
180
180
|
|
|
181
181
|
See the [full docs](https://christophervr.github.io/pptx-viewer/) for the details behind each of these.
|