pptx-viewer-core 1.4.0 → 1.5.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 +11 -0
- package/README.md +4 -2
- package/dist/{SvgExporter-C6DiFjN8.d.ts → SvgExporter-CVRYDmB3.d.ts} +1 -1
- package/dist/{SvgExporter-Hv9ofMZv.d.mts → SvgExporter-CWAfTaRU.d.mts} +1 -1
- package/dist/cli/index.d.mts +2 -2
- package/dist/cli/index.d.ts +2 -2
- package/dist/cli/index.js +0 -0
- package/dist/cli/index.mjs +0 -0
- package/dist/converter/index.d.mts +3 -3
- package/dist/converter/index.d.ts +3 -3
- package/dist/converter/index.js +0 -0
- package/dist/converter/index.mjs +0 -0
- package/dist/index.d.mts +326 -172
- package/dist/index.d.ts +326 -172
- package/dist/index.js +20508 -9649
- package/dist/index.mjs +20469 -9649
- package/dist/{presentation-BfnrtJV1.d.mts → presentation-BAMjUmQZ.d.mts} +420 -117
- package/dist/{presentation-BfnrtJV1.d.ts → presentation-BAMjUmQZ.d.ts} +420 -117
- package/dist/{text-operations-DMQi9vpL.d.mts → text-operations-BkiHFUME.d.mts} +1 -1
- package/dist/{text-operations-BjPf391u.d.ts → text-operations-DZ1WQcRn.d.ts} +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ 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.4.0](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-viewer-core@1.4.0) - 2026-07-13
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **build:** Restore compatibility after dependency updates (by @ChristopherVR) ([ddbfae6](https://github.com/ChristopherVR/pptx-viewer/commit/ddbfae687669b9e6c64fd3c3b16a592623b79c10))
|
|
12
|
+
|
|
13
|
+
### Dependencies
|
|
14
|
+
|
|
15
|
+
- **deps:** Update fast-xml-parser to 5.10.0 (by @dependabot[bot]) ([6080273](https://github.com/ChristopherVR/pptx-viewer/commit/6080273f6a6f603d10d69a71d54faad1e6d9bf05))
|
|
16
|
+
- **deps:** Update typescript to 7.0.2 (by @dependabot[bot]) ([0a7c1f1](https://github.com/ChristopherVR/pptx-viewer/commit/0a7c1f1f7f0ccdee9537f1e11177b6a39839d221))
|
|
17
|
+
|
|
7
18
|
## [1.3.1](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-viewer-core@1.3.1) - 2026-07-13
|
|
8
19
|
|
|
9
20
|
## [1.3.0](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-viewer-core@1.3.0) - 2026-07-11
|
package/README.md
CHANGED
|
@@ -8,9 +8,11 @@
|
|
|
8
8
|
|
|
9
9
|
Hand it the bytes of a `.pptx` file and it gives you back a structured, fully typed object that describes every slide: text, shapes, images, charts, tables, and more. Change anything in that object and write it back to a valid `.pptx`. You can also build new presentations from scratch with a simple chainable API, or turn a deck into Markdown.
|
|
10
10
|
|
|
11
|
-
There is no UI here: this is the engine on its own. Use it directly when you need to process `.pptx` files without a screen, for example on a server, in a script, or in a build step. The same engine powers the [
|
|
11
|
+
There is no UI here: this is the engine on its own. Use it directly when you need to process `.pptx` files without a screen, for example on a server, in a script, or in a build step. The same engine powers the [React](https://www.npmjs.com/package/pptx-react-viewer), [Vue](https://www.npmjs.com/package/pptx-vue-viewer), [Angular](https://www.npmjs.com/package/pptx-angular-viewer), [Svelte](https://www.npmjs.com/package/pptx-svelte-viewer), and [Vanilla JavaScript](https://www.npmjs.com/package/pptx-vanilla-viewer) viewers.
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+

|
|
14
|
+
|
|
15
|
+
<samp>**[📦 npm](https://www.npmjs.com/package/pptx-viewer-core)** · **[📖 Full docs](https://christophervr.github.io/pptx-viewer/)** · **[▶️ Live demo](https://christophervr.github.io/pptx-viewer/demo/)** · **[Choose a viewer](https://christophervr.github.io/pptx-viewer/guide/installation)**</samp>
|
|
14
16
|
|
|
15
17
|
---
|
|
16
18
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as PptxData, a as PptxElement,
|
|
1
|
+
import { m as PptxData, a as PptxElement, O as TextSegment, P as PptxSlide } from './presentation-BAMjUmQZ.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Platform adapter for file system operations.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as PptxData, a as PptxElement,
|
|
1
|
+
import { m as PptxData, a as PptxElement, O as TextSegment, P as PptxSlide } from './presentation-BAMjUmQZ.mjs';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Platform adapter for file system operations.
|
package/dist/cli/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { F as FindResult, M as MergeOptions } from '../text-operations-
|
|
3
|
-
import '../presentation-
|
|
2
|
+
import { F as FindResult, M as MergeOptions } from '../text-operations-BkiHFUME.mjs';
|
|
3
|
+
import '../presentation-BAMjUmQZ.mjs';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* CLI command handlers for pptx-cli.
|
package/dist/cli/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { F as FindResult, M as MergeOptions } from '../text-operations-
|
|
3
|
-
import '../presentation-
|
|
2
|
+
import { F as FindResult, M as MergeOptions } from '../text-operations-DZ1WQcRn.js';
|
|
3
|
+
import '../presentation-BAMjUmQZ.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* CLI command handlers for pptx-cli.
|
package/dist/cli/index.js
CHANGED
|
Binary file
|
package/dist/cli/index.mjs
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { T as TextSegmentRenderer } from '../SvgExporter-
|
|
2
|
-
export { C as ConversionOptions, a as ConversionResult, D as DocumentConverter, F as FileSystemAdapter, M as MediaContext, P as PptxConverterOptions, b as PptxMarkdownConverter, S as SlideProcessor, c as SlideProcessorOptions, d as SvgExportOptions, e as SvgExporter, f as dataUrlToMediaBytes, g as deriveOutputPath, h as generateMediaFilename, i as getDirectory, n as normalizePath } from '../SvgExporter-
|
|
3
|
-
import { P as PptxSlide } from '../presentation-
|
|
1
|
+
import { T as TextSegmentRenderer } from '../SvgExporter-CWAfTaRU.mjs';
|
|
2
|
+
export { C as ConversionOptions, a as ConversionResult, D as DocumentConverter, F as FileSystemAdapter, M as MediaContext, P as PptxConverterOptions, b as PptxMarkdownConverter, S as SlideProcessor, c as SlideProcessorOptions, d as SvgExportOptions, e as SvgExporter, f as dataUrlToMediaBytes, g as deriveOutputPath, h as generateMediaFilename, i as getDirectory, n as normalizePath } from '../SvgExporter-CWAfTaRU.mjs';
|
|
3
|
+
import { P as PptxSlide } from '../presentation-BAMjUmQZ.mjs';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Renders slide-level metadata sections (transition, animations,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { T as TextSegmentRenderer } from '../SvgExporter-
|
|
2
|
-
export { C as ConversionOptions, a as ConversionResult, D as DocumentConverter, F as FileSystemAdapter, M as MediaContext, P as PptxConverterOptions, b as PptxMarkdownConverter, S as SlideProcessor, c as SlideProcessorOptions, d as SvgExportOptions, e as SvgExporter, f as dataUrlToMediaBytes, g as deriveOutputPath, h as generateMediaFilename, i as getDirectory, n as normalizePath } from '../SvgExporter-
|
|
3
|
-
import { P as PptxSlide } from '../presentation-
|
|
1
|
+
import { T as TextSegmentRenderer } from '../SvgExporter-CVRYDmB3.js';
|
|
2
|
+
export { C as ConversionOptions, a as ConversionResult, D as DocumentConverter, F as FileSystemAdapter, M as MediaContext, P as PptxConverterOptions, b as PptxMarkdownConverter, S as SlideProcessor, c as SlideProcessorOptions, d as SvgExportOptions, e as SvgExporter, f as dataUrlToMediaBytes, g as deriveOutputPath, h as generateMediaFilename, i as getDirectory, n as normalizePath } from '../SvgExporter-CVRYDmB3.js';
|
|
3
|
+
import { P as PptxSlide } from '../presentation-BAMjUmQZ.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Renders slide-level metadata sections (transition, animations,
|
package/dist/converter/index.js
CHANGED
|
Binary file
|
package/dist/converter/index.mjs
CHANGED
|
Binary file
|