pptx-angular-viewer 1.1.50 → 1.1.52
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 +6 -0
- package/README.md +9 -11
- package/fesm2022/pptx-angular-viewer.mjs +5360 -1147
- package/fesm2022/pptx-angular-viewer.mjs.map +1 -1
- package/package.json +3 -3
- package/pptx-angular-viewer.css +1 -1
- package/types/pptx-angular-viewer.d.ts +328 -35
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.51](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-angular-viewer@1.1.51) - 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.45](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-angular-viewer@1.1.45) - 2026-06-25
|
|
8
14
|
|
|
9
15
|
### Other
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ as real HTML and CSS with full editing and export support.
|
|
|
12
12
|
|
|
13
13
|
The rendering is done by the framework-agnostic [`pptx-viewer-core`](https://www.npmjs.com/package/pptx-viewer-core) engine (also published as [`@christophervr/pptx-viewer`](https://www.npmjs.com/package/@christophervr/pptx-viewer) -- the two names are identical releases), which turns a `.pptx` file into a structured slide model. This package is the Angular layer that draws that model on screen, and the engine is **bundled in**, so you install just one package.
|
|
14
14
|
|
|
15
|
-
<samp>**[▶️ Try the live demo](https://christophervr.github.io/pptx-viewer/demo-angular/)** · **[📦 npm](https://www.npmjs.com/package/pptx-angular-viewer)** · **[📖 Full docs](https://christophervr.github.io/pptx-viewer/)**</samp>
|
|
15
|
+
<samp>**[▶️ Try the live demo](https://christophervr.github.io/pptx-viewer/demo-angular/)** · **[📦 npm](https://www.npmjs.com/package/pptx-angular-viewer)** · **[📖 Full docs](https://christophervr.github.io/pptx-viewer/)** · **[🧩 Core SDK](https://www.npmjs.com/package/pptx-viewer-core)**</samp>
|
|
16
16
|
|
|
17
17
|
> **[▶️ Try the live demo](https://christophervr.github.io/pptx-viewer/demo-angular/)**: open a `.pptx` and render it in your browser, no install required.
|
|
18
18
|
|
|
@@ -164,19 +164,17 @@ async save() {
|
|
|
164
164
|
## Limitations
|
|
165
165
|
|
|
166
166
|
The Angular package has reached functional parity with the React package: all 11
|
|
167
|
-
element types render; the full Tailwind 4 Office ribbon is wired; editing
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
the slide master or layout template are not yet wired.
|
|
173
|
-
- **Eyedropper on Firefox/Safari** - Angular uses the native `EyeDropper` API;
|
|
174
|
-
React adds a rasterize-and-sample fallback for browsers that don't support it.
|
|
167
|
+
element types render; the full Tailwind 4 Office ribbon is wired; editing
|
|
168
|
+
(including slide master/layout template editing), presentation, export,
|
|
169
|
+
collaboration, comments, and mobile chrome all work. The remaining items are
|
|
170
|
+
polish/cosmetic, not behavioural gaps:
|
|
171
|
+
|
|
175
172
|
- **Pixel-level cosmetic differences** - Some toolbar controls are not pixel-
|
|
176
173
|
identical to their React counterparts (spacing, split-button affordances,
|
|
177
174
|
dropdown chrome).
|
|
178
|
-
- **3D models** - GLB/GLTF models
|
|
179
|
-
optional
|
|
175
|
+
- **3D models need the Three.js peer** - GLB/GLTF models render interactively when
|
|
176
|
+
the optional `three` peer dependency is installed, and fall back to their poster
|
|
177
|
+
image otherwise (the same as the React package).
|
|
180
178
|
|
|
181
179
|
The `pptx-viewer-core` engine parses all element data, so you can access it from
|
|
182
180
|
the model even where the UI does not expose it yet. Progress and design notes live
|