pptx-kit 0.6.2 → 0.7.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 +23 -0
- package/dist/api-DJkYUL_0.js +16052 -0
- package/dist/api-DJkYUL_0.js.map +1 -0
- package/dist/index-Dz2acMvu.d.ts +5249 -0
- package/dist/index.d.ts +2 -5192
- package/dist/index.js +1 -13705
- package/dist/node.d.ts +5 -4
- package/dist/node.js +18 -13716
- package/dist/node.js.map +1 -1
- package/package.json +6 -6
- package/dist/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# pptx-kit
|
|
2
2
|
|
|
3
|
+
## 0.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3ba1e3d: Drop Node.js 20 support. The minimum supported version is now Node 22.18. The build toolchain moved to tsdown, whose current release requires Node 22.18+; the published runtime bundles are unchanged.
|
|
8
|
+
|
|
9
|
+
## 0.6.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 099d77b: Emit PowerPoint's default cell insets on table cells
|
|
14
|
+
|
|
15
|
+
`addSlideTable` cells now carry the explicit default insets PowerPoint and
|
|
16
|
+
PptxGenJS both write — `<a:tcPr marL="91440" marR="91440" marT="45720"
|
|
17
|
+
marB="45720">` — plus a `<a:pPr marL="0" indent="0"><a:buNone/></a:pPr>` that
|
|
18
|
+
suppresses any inherited list bullet on the cell paragraph. The table renders
|
|
19
|
+
identically (these match the values PowerPoint applies when they're absent),
|
|
20
|
+
but the cell is now self-describing, so the output matches a PowerPoint- or
|
|
21
|
+
PptxGenJS-authored table byte-for-byte at the cell level.
|
|
22
|
+
|
|
23
|
+
Note: `getTableCellMargins` now returns the explicit `91440 / 45720` defaults
|
|
24
|
+
for a freshly-authored cell instead of `null`.
|
|
25
|
+
|
|
3
26
|
## 0.6.2
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|