@christophervr/pptx-viewer 2.14.1 → 2.15.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 +6 -0
- package/README.md +17 -17
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ A release listed with no entries carried no Conventional Commit in this package'
|
|
|
7
7
|
scope: scripts/release-plan.mjs re-releases a package whenever any of its files
|
|
8
8
|
change, not only on conventional ones.
|
|
9
9
|
|
|
10
|
+
## [2.14.1](https://github.com/ChristopherVR/pptx-viewer/releases/tag/@christophervr/pptx-viewer@2.14.1) - 2026-09-14
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **i18n:** Localize inspector and ribbon controls (by @yunfeizhu) ([a657a76](https://github.com/ChristopherVR/pptx-viewer/commit/a657a766d653106f04d50f7b13a94a6c12c77f1e))
|
|
15
|
+
|
|
10
16
|
## [2.14.0](https://github.com/ChristopherVR/pptx-viewer/releases/tag/@christophervr/pptx-viewer@2.14.0) - 2026-09-13
|
|
11
17
|
|
|
12
18
|
### Features
|
package/README.md
CHANGED
|
@@ -74,18 +74,18 @@ const bytes = await viewerRef.current?.getContent(); // Uint8Array of a valid .p
|
|
|
74
74
|
|
|
75
75
|
## Features
|
|
76
76
|
|
|
77
|
-
| Feature | Description
|
|
78
|
-
| ------------------ |
|
|
79
|
-
| **View** | Render
|
|
80
|
-
| **Edit** | Insert
|
|
81
|
-
| **Present** | Fullscreen slideshow with
|
|
82
|
-
| **Export** | PNG/SVG/PDF/GIF/video/JSON slide export, save-as PPTX
|
|
83
|
-
| **Collaborate** | Real-time multi-user editing (powered by Yjs) with live presence, remote cursors, and user avatars
|
|
84
|
-
| **Print** | Print dialog with handout layouts and notes page formatting with overflow pagination
|
|
85
|
-
| **Annotate** | Pen/highlighter/laser pointer tools during presentations
|
|
86
|
-
| **Find & Replace** | Cross-slide text search with regex support
|
|
87
|
-
| **Accessibility** | Keyboard navigation, alt-text audit panel, screen reader support
|
|
88
|
-
| **3D** | GLB/GLTF model rendering via Three.js, 3D surface charts, CSS 3D shape/text extrusion
|
|
77
|
+
| Feature | Description |
|
|
78
|
+
| ------------------ | -------------------------------------------------------------------------------------------------------------------------------------- |
|
|
79
|
+
| **View** | Render shapes, text, images, tables, charts, SmartArt, connectors, media, ink, OLE objects, and 3D models with zoom |
|
|
80
|
+
| **Edit** | Insert, move, resize, and delete elements; edit text inline; modify styles; manage slides |
|
|
81
|
+
| **Present** | Fullscreen slideshow with animation presets, motion paths, transitions including morph, speaker notes, and presenter view with a timer |
|
|
82
|
+
| **Export** | PNG/SVG/PDF/GIF/video/JSON slide export, save-as PPTX |
|
|
83
|
+
| **Collaborate** | Real-time multi-user editing (powered by Yjs) with live presence, remote cursors, and user avatars |
|
|
84
|
+
| **Print** | Print dialog with handout layouts and notes page formatting with overflow pagination |
|
|
85
|
+
| **Annotate** | Pen/highlighter/laser pointer tools during presentations |
|
|
86
|
+
| **Find & Replace** | Cross-slide text search with regex support |
|
|
87
|
+
| **Accessibility** | Keyboard navigation, alt-text audit panel, screen reader support |
|
|
88
|
+
| **3D** | GLB/GLTF model rendering via Three.js, 3D surface charts, CSS 3D shape/text extrusion |
|
|
89
89
|
|
|
90
90
|
See the [full docs](https://christophervr.github.io/pptx-viewer/) for the complete API reference (props, ref handle, hooks), styling/theming, and localization guides - they apply to `@christophervr/pptx-viewer` exactly as written, since it re-exports the same component.
|
|
91
91
|
|
|
@@ -95,11 +95,11 @@ See the [full docs](https://christophervr.github.io/pptx-viewer/) for the comple
|
|
|
95
95
|
|
|
96
96
|
`@christophervr/pptx-viewer` is the name most people search or guess first, so as well as being the `npx` installer described below, **the package itself, imported as a library, re-exports `pptx-react-viewer` directly.** Everything [`pptx-react-viewer`](https://www.npmjs.com/package/pptx-react-viewer) exports (`PowerPointViewer`, `Toolbar`, `SlideCanvas`, theme helpers, and the rest) is re-exported from this package's root too, so the two names are interchangeable as a dependency. What differs is what you get from each command:
|
|
97
97
|
|
|
98
|
-
| You run/import | What you get
|
|
99
|
-
| ---------------------------------------------- |
|
|
100
|
-
| `npx @christophervr/pptx-viewer` | The interactive installer/scaffolder (see below)
|
|
101
|
-
| `import ... from '@christophervr/pptx-viewer'` | The React viewer component, re-exported from `pptx-react-viewer`.
|
|
102
|
-
| `import ... from 'pptx-react-viewer'` directly | The exact same component, one dependency lighter (no installer code pulled in).
|
|
98
|
+
| You run/import | What you get |
|
|
99
|
+
| ---------------------------------------------- | ------------------------------------------------------------------------------------------ |
|
|
100
|
+
| `npx @christophervr/pptx-viewer` | The interactive installer/scaffolder (see below). It does not import the viewer component. |
|
|
101
|
+
| `import ... from '@christophervr/pptx-viewer'` | The React viewer component, re-exported from `pptx-react-viewer`. |
|
|
102
|
+
| `import ... from 'pptx-react-viewer'` directly | The exact same component, one dependency lighter (no installer code pulled in). |
|
|
103
103
|
|
|
104
104
|
If you're building for Vue, Angular, Svelte, or vanilla JS instead, use the matching package from the table below directly - the re-export here is React-only.
|
|
105
105
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christophervr/pptx-viewer",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.15.0",
|
|
4
4
|
"description": "Interactive installer for the pptx-viewer family of packages (React, Vue, Angular, Svelte, vanilla JS, the core engine, the MCP server). Also a drop-in for pptx-react-viewer: importing this package re-exports the React component.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"pack": "bun run build && bun pm pack"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"pptx-react-viewer": "^3.
|
|
64
|
+
"pptx-react-viewer": "^3.18.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@types/node": "^26.5.1",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"tsdown": "^0.23.0",
|
|
71
71
|
"tsup": "^8.5.1",
|
|
72
72
|
"typescript": "^7.0.2",
|
|
73
|
-
"vitest": "^
|
|
73
|
+
"vitest": "^5.0.0"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
76
|
"@ai-sdk/react": "^4.0.59",
|