pptx-viewer-core 1.1.41 → 1.1.43

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/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to this project are documented here.
4
4
  This file is generated from [Conventional Commits](https://www.conventionalcommits.org)
5
5
  by [git-cliff](https://git-cliff.org); do not edit it by hand.
6
6
 
7
+ ## [1.1.42](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-viewer-core@1.1.42) - 2026-06-27
8
+
9
+ ### Bug Fixes
10
+
11
+ - Missing document links (by @ChristopherVR) ([f52bd6f](https://github.com/ChristopherVR/pptx-viewer/commit/f52bd6fd2fc4f564f018ecf5e84e64d24c8fd240))
12
+
7
13
  ## [1.1.28](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-viewer-core@1.1.28) - 2026-06-21
8
14
 
9
15
  ### Dependencies
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`, and `pptx-angular-viewer` UI components.
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** | 13 layout types, broken down into editable shapes |
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) are read-only: you get their preview image, not their contents.
177
- - **SmartArt** is broken into editable shapes using the drawing data PowerPoint already saved in the file. There is no engine that re-flows the layout if you change it.
178
- - **Chart editing is data-only**: you can change series, data points, categories, and the chart type. Other chart properties are read for display but cannot be edited.
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pptx-viewer-core",
3
- "version": "1.1.41",
3
+ "version": "1.1.43",
4
4
  "description": "PowerPoint PPTX engine: parse, edit, serialize, and convert .pptx files. Framework-agnostic TypeScript SDK.",
5
5
  "keywords": [
6
6
  "converter",
@@ -73,7 +73,7 @@
73
73
  "pack": "bun run build && bun pm pack"
74
74
  },
75
75
  "dependencies": {
76
- "emf-converter": "^1.4.2",
76
+ "emf-converter": "^1.5.0",
77
77
  "fast-xml-parser": "^5.9.3",
78
78
  "jszip": "^3.10.1",
79
79
  "mtx-decompressor": "^1.4.2"