pptx-angular-viewer 1.11.0 → 1.12.0
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 +12 -0
- package/README.md +12 -0
- package/fesm2022/pptx-angular-viewer.mjs +718 -75
- package/fesm2022/pptx-angular-viewer.mjs.map +1 -1
- package/package.json +2 -2
- package/types/pptx-angular-viewer.d.ts +172 -11
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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.11.1](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-angular-viewer@1.11.1) - 2026-07-09
|
|
8
|
+
|
|
9
|
+
### Other
|
|
10
|
+
|
|
11
|
+
- Reconcile with origin/main before push (by @ChristopherVR) ([b8c46bc](https://github.com/ChristopherVR/pptx-viewer/commit/b8c46bc3622e301d3365f5c489144e5aa5401782))
|
|
12
|
+
|
|
13
|
+
## [1.11.0](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-angular-viewer@1.11.0) - 2026-07-09
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
- **angular:** Use lucide SVG icons and scrollable ribbon tabs (by @ChristopherVR) ([5a2e9aa](https://github.com/ChristopherVR/pptx-viewer/commit/5a2e9aaf07550f7dd1a6528dd3ce2bf8e5487da8))
|
|
18
|
+
|
|
7
19
|
## [1.10.0](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-angular-viewer@1.10.0) - 2026-07-08
|
|
8
20
|
|
|
9
21
|
## [1.9.1](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-angular-viewer@1.9.1) - 2026-07-08
|
package/README.md
CHANGED
|
@@ -115,6 +115,18 @@ bootstrapApplication(AppComponent, {
|
|
|
115
115
|
});
|
|
116
116
|
```
|
|
117
117
|
|
|
118
|
+
Two ready-made presets ship with the package: `vermilionLightTheme` (warm paper
|
|
119
|
+
canvas) and `vermilionDarkTheme` (dimmed presenter room), the same vermilion
|
|
120
|
+
brand look as the [documentation site](https://christophervr.github.io/pptx-viewer/):
|
|
121
|
+
|
|
122
|
+
```ts
|
|
123
|
+
import { vermilionLightTheme } from 'pptx-angular-viewer';
|
|
124
|
+
// [theme]="vermilionLightTheme" or provideViewerTheme(vermilionLightTheme)
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
The underlying palettes (`vermilionLightColors`, `vermilionDarkColors`) and
|
|
128
|
+
radius (`vermilionRadius`) are exported too for deriving your own variant.
|
|
129
|
+
|
|
118
130
|
### Reading the current presentation back
|
|
119
131
|
|
|
120
132
|
`getContent()` turns the current presentation back into `.pptx` bytes. Reach it
|