pptx-vanilla-viewer 0.7.0 → 0.8.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 +2 -0
- package/README.md +2 -2
- package/dist/chunk-AB4ASXBV.js +361 -0
- package/dist/chunk-T4UDC7PL.cjs +361 -0
- package/dist/dist-6AOZ42CA.cjs +1 -0
- package/dist/dist-HLWFTYQH.js +1 -0
- package/dist/index.cjs +150 -338
- package/dist/index.d.ts +658 -140
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +150 -338
- package/dist/smartart-3d-2R6SFYL3.cjs +1 -0
- package/dist/smartart-3d-FTALYBDI.js +1 -0
- package/dist/styles.css +64 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,8 @@ 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
|
+
## [0.7.0](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-vanilla-viewer@0.7.0) - 2026-07-15
|
|
8
|
+
|
|
7
9
|
## [0.6.0](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-vanilla-viewer@0.6.0) - 2026-07-13
|
|
8
10
|
|
|
9
11
|
### Features
|
package/README.md
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
[](https://github.com/ChristopherVR/pptx-viewer/blob/main/LICENSE)
|
|
5
5
|
|
|
6
6
|
Show, edit, and present Microsoft PowerPoint (`.pptx`) files directly in the
|
|
7
|
-
browser with **zero framework**: no React, Vue, or
|
|
7
|
+
browser with **zero framework**: no React, Vue, Angular, or Svelte required, no
|
|
8
8
|
server, no conversion step, no PowerPoint install. Call one factory function,
|
|
9
9
|
`createPptxViewer(container, options)`, and slides render as real HTML and
|
|
10
10
|
CSS.
|
|
11
11
|
|
|
12
|
-

|
|
13
13
|
|
|
14
14
|
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 plain-DOM layer that draws that model on screen, and the engine is **bundled in**, so you install just one package.
|
|
15
15
|
|