node-pptx-templater 1.0.20 → 1.1.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 +39 -0
- package/README.md +170 -2073
- package/package.json +11 -1
- package/src/core/PPTXTemplater.js +985 -28
- package/src/index.js +3 -1
- package/src/managers/TableManager.js +714 -115
- package/src/utils/logger.js +76 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-pptx-templater",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "High-performance, low-level PowerPoint (PPTX) OpenXML template engine for Node.js. Dynamically replace text, insert images, update charts (with Excel workbook data caching), and merge table cells without PowerPoint corruption or Repair Mode prompts.",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -22,11 +22,21 @@
|
|
|
22
22
|
"format:check": "prettier --check \"src/**/*.js\" \"tests/**/*.js\"",
|
|
23
23
|
"benchmark": "node benchmarks/run.js",
|
|
24
24
|
"docs:build": "node scripts/generate-docs.js",
|
|
25
|
+
"docs:validate": "node scripts/validate-docs.js",
|
|
26
|
+
"docs:inventory": "node scripts/generate-feature-inventory.js",
|
|
25
27
|
"validate": "node scripts/validate-setup.js",
|
|
26
28
|
"example:basic": "node examples/basic-usage.js",
|
|
27
29
|
"example:charts": "node examples/chart-update.js",
|
|
28
30
|
"example:tables": "node examples/table-update.js",
|
|
29
31
|
"example:slides": "node examples/slide-selection.js",
|
|
32
|
+
"example:images": "node examples/image-operations.js",
|
|
33
|
+
"example:shapes": "node examples/shape-operations.js",
|
|
34
|
+
"example:zorder": "node examples/z-order.js",
|
|
35
|
+
"example:slide-import": "node examples/slide-import.js",
|
|
36
|
+
"example:text-search": "node examples/text-search.js",
|
|
37
|
+
"example:table-extraction": "node examples/table-extraction.js",
|
|
38
|
+
"example:nested-rows": "node examples/nested-table-rows.js",
|
|
39
|
+
"example:xml-folder": "node examples/xml-folder-workflow.js",
|
|
30
40
|
"prepublishOnly": "npm run lint && npm run test"
|
|
31
41
|
},
|
|
32
42
|
"keywords": [
|