pptx-angular-viewer 1.1.29 → 1.1.30
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 +3 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -13,9 +13,7 @@ the slides as real HTML and CSS, with slide navigation and zoom.
|
|
|
13
13
|
> The screenshot shows the full-featured **React** editor. This Angular package
|
|
14
14
|
> is at a **read-only viewer** milestone today; see [Limitations](#limitations).
|
|
15
15
|
|
|
16
|
-
The reading is done by the framework-agnostic `pptx-viewer-core` engine, which
|
|
17
|
-
turns a `.pptx` file into a structured slide model. This package is the Angular
|
|
18
|
-
layer that draws that model on screen.
|
|
16
|
+
The reading 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.
|
|
19
17
|
|
|
20
18
|
<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>
|
|
21
19
|
|
|
@@ -36,11 +34,10 @@ layer that draws that model on screen.
|
|
|
36
34
|
## Installation
|
|
37
35
|
|
|
38
36
|
```bash
|
|
39
|
-
npm install pptx-angular-viewer
|
|
37
|
+
npm install pptx-angular-viewer
|
|
40
38
|
```
|
|
41
39
|
|
|
42
|
-
**Peer requirements:** Angular 22+ (`@angular/core`, `@angular/common`)
|
|
43
|
-
`rxjs`, and `pptx-viewer-core`.
|
|
40
|
+
**Peer requirements:** Angular 22+ (`@angular/core`, `@angular/common`) and `rxjs`.
|
|
44
41
|
|
|
45
42
|
## Usage
|
|
46
43
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pptx-angular-viewer",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.30",
|
|
4
4
|
"description": "Angular PowerPoint viewer and editor component: render, edit, and export PPTX slides in the browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -44,12 +44,12 @@
|
|
|
44
44
|
"html2canvas-pro": "^2.0.4",
|
|
45
45
|
"jspdf": "^4.2.1",
|
|
46
46
|
"jszip": "^3.10.1",
|
|
47
|
+
"pptx-viewer-core": "^1.1.27",
|
|
47
48
|
"tslib": "^2.8.1"
|
|
48
49
|
},
|
|
49
50
|
"peerDependencies": {
|
|
50
51
|
"@angular/common": "^22.0.1",
|
|
51
52
|
"@angular/core": "^22.0.1",
|
|
52
|
-
"pptx-viewer-core": "^1.1.26",
|
|
53
53
|
"rxjs": "^7.8.0",
|
|
54
54
|
"three": "^0.184.0"
|
|
55
55
|
},
|