pptx-react-viewer 1.1.3 → 1.1.4
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/dist/index.js +587 -288
- package/dist/index.mjs +587 -288
- package/dist/pptx-viewer.css +1 -1
- package/dist/viewer/index.js +587 -288
- package/dist/viewer/index.mjs +587 -288
- package/node_modules/emf-converter/package.json +2 -2
- package/node_modules/mtx-decompressor/package.json +2 -2
- package/node_modules/pptx-viewer-core/dist/{SvgExporter-BMjoxMDV.d.ts → SvgExporter-0TxiiorD.d.ts} +1 -1
- package/node_modules/pptx-viewer-core/dist/{SvgExporter-z6AbXRQg.d.mts → SvgExporter-BQ4KbRO9.d.mts} +1 -1
- package/node_modules/pptx-viewer-core/dist/cli/index.d.mts +2 -2
- package/node_modules/pptx-viewer-core/dist/cli/index.d.ts +2 -2
- package/node_modules/pptx-viewer-core/dist/cli/index.js +2711 -304
- package/node_modules/pptx-viewer-core/dist/cli/index.mjs +2711 -304
- package/node_modules/pptx-viewer-core/dist/converter/index.d.mts +3 -3
- package/node_modules/pptx-viewer-core/dist/converter/index.d.ts +3 -3
- package/node_modules/pptx-viewer-core/dist/index.d.mts +692 -44
- package/node_modules/pptx-viewer-core/dist/index.d.ts +692 -44
- package/node_modules/pptx-viewer-core/dist/index.js +2794 -373
- package/node_modules/pptx-viewer-core/dist/index.mjs +2785 -373
- package/node_modules/pptx-viewer-core/dist/{presentation-CchuDGfU.d.mts → presentation-ArhfImJ5.d.mts} +225 -8
- package/node_modules/pptx-viewer-core/dist/{presentation-CchuDGfU.d.ts → presentation-ArhfImJ5.d.ts} +225 -8
- package/node_modules/pptx-viewer-core/dist/{text-operations-CeukUztU.d.mts → text-operations-CLj-sJyk.d.mts} +1 -1
- package/node_modules/pptx-viewer-core/dist/{text-operations-e7JxgI5l.d.ts → text-operations-rhJV-A_W.d.ts} +1 -1
- package/node_modules/pptx-viewer-core/package.json +5 -5
- package/package.json +20 -20
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "emf-converter",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Convert EMF/WMF metafile binaries to PNG data URLs using Canvas",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"canvas",
|
|
@@ -48,6 +48,6 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"tsup": "^8.5.1",
|
|
50
50
|
"typescript": "^5.9.3",
|
|
51
|
-
"vitest": "^4.1.
|
|
51
|
+
"vitest": "^4.1.5"
|
|
52
52
|
}
|
|
53
53
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mtx-decompressor",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "MicroType Express (MTX) font decompressor — extracts TTF/OTF from compressed EOT containers.",
|
|
5
5
|
"homepage": "https://github.com/ChristopherVR/pptx-viewer",
|
|
6
6
|
"bugs": {
|
|
@@ -39,6 +39,6 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"tsup": "^8.5.1",
|
|
41
41
|
"typescript": "^5.9.3",
|
|
42
|
-
"vitest": "^4.1.
|
|
42
|
+
"vitest": "^4.1.5"
|
|
43
43
|
}
|
|
44
44
|
}
|
package/node_modules/pptx-viewer-core/dist/{SvgExporter-BMjoxMDV.d.ts → SvgExporter-0TxiiorD.d.ts}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as PptxData, P as PptxElement, K as TextSegment, l as PptxSlide } from './presentation-
|
|
1
|
+
import { m as PptxData, P as PptxElement, K as TextSegment, l as PptxSlide } from './presentation-ArhfImJ5.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Platform adapter for file system operations.
|
package/node_modules/pptx-viewer-core/dist/{SvgExporter-z6AbXRQg.d.mts → SvgExporter-BQ4KbRO9.d.mts}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as PptxData, P as PptxElement, K as TextSegment, l as PptxSlide } from './presentation-
|
|
1
|
+
import { m as PptxData, P as PptxElement, K as TextSegment, l as PptxSlide } from './presentation-ArhfImJ5.mjs';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Platform adapter for file system operations.
|
|
@@ -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-CLj-sJyk.mjs';
|
|
3
|
+
import '../presentation-ArhfImJ5.mjs';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* CLI command handlers for pptx-cli.
|
|
@@ -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-rhJV-A_W.js';
|
|
3
|
+
import '../presentation-ArhfImJ5.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* CLI command handlers for pptx-cli.
|