pptx-angular-viewer 1.1.53 → 1.1.55
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 +11 -0
- package/README.md +1 -1
- package/fesm2022/pptx-angular-viewer.mjs +6777 -836
- package/fesm2022/pptx-angular-viewer.mjs.map +1 -1
- package/package.json +2 -2
- package/types/pptx-angular-viewer.d.ts +1124 -114
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,22 @@ 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.54](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-angular-viewer@1.1.54) - 2026-07-02
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- **angular:** Inline Ctrl/Cmd+B/I/U formatting shortcuts (by @ChristopherVR) ([f633ad5](https://github.com/ChristopherVR/pptx-viewer/commit/f633ad568cc3dafbea2bf13187f59d1260dc50bf))
|
|
12
|
+
|
|
7
13
|
## [1.1.52](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-angular-viewer@1.1.52) - 2026-07-02
|
|
8
14
|
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
- **angular:** Secondary dialog and panel suite (by @ChristopherVR) ([aeb9083](https://github.com/ChristopherVR/pptx-viewer/commit/aeb90839707c051c97856eaa800ae0fe38f62314))
|
|
18
|
+
|
|
9
19
|
### Bug Fixes
|
|
10
20
|
|
|
11
21
|
- Format issues (by @ChristopherVR) ([bbf874d](https://github.com/ChristopherVR/pptx-viewer/commit/bbf874dda638932d6a435b28238cd822176d1cd6))
|
|
22
|
+
- **core:** Correct install docs and drop the retired @christophervr/pptx-viewer alias (by @ChristopherVR) ([6544b4e](https://github.com/ChristopherVR/pptx-viewer/commit/6544b4eaf086945ecd8a18b877de5a483032aa14))
|
|
12
23
|
- **core,angular:** Revert xmldom to 0.8.x and fix shared import specifiers (by @ChristopherVR) ([29eda31](https://github.com/ChristopherVR/pptx-viewer/commit/29eda3119836559b63bc08733dd9dd6398a69c8d))
|
|
13
24
|
|
|
14
25
|
## [1.1.51](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-angular-viewer@1.1.51) - 2026-06-27
|
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ as real HTML and CSS with full editing and export support.
|
|
|
10
10
|
|
|
11
11
|

|
|
12
12
|
|
|
13
|
-
The rendering is done by the framework-agnostic [`pptx-viewer-core`](https://www.npmjs.com/package/pptx-viewer-core) engine
|
|
13
|
+
The rendering is done by the framework-agnostic [`pptx-viewer-core`](https://www.npmjs.com/package/pptx-viewer-core) engine, 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
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
|
|