pptx-kit 0.6.3 → 0.8.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-284n4GCu.js +16056 -0
- package/dist/api-284n4GCu.js.map +1 -0
- package/dist/index-Dz2acMvu.d.ts +5249 -0
- package/dist/index.d.ts +2 -5192
- package/dist/index.js +1 -13724
- package/dist/node.d.ts +5 -4
- package/dist/node.js +18 -13735
- package/dist/node.js.map +1 -1
- package/package.json +7 -7
- package/dist/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# pptx-kit
|
|
2
2
|
|
|
3
|
+
## 0.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7200690: Drop Node.js 22 support. The minimum supported version is now Node 24.16. The published runtime bundles are unchanged; this only raises the `engines` floor and the CI/test matrix to Node 24.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- ffeaef0: Numbered lists now carry a bullet font and explicit start number
|
|
12
|
+
|
|
13
|
+
`setShapeBullets('number')` / `setParagraphBullet(..., 'number')` emitted only
|
|
14
|
+
`<a:buAutoNum>`, with no `<a:buFont>` — so the auto-number glyph fell through to
|
|
15
|
+
whatever font happened to apply, instead of the theme's major font that
|
|
16
|
+
PowerPoint and PptxGenJS use. Numbered lists now emit
|
|
17
|
+
`<a:buFont typeface="+mj-lt"/>` ahead of the number and write the default
|
|
18
|
+
`startAt="1"` explicitly, matching PowerPoint-authored output.
|
|
19
|
+
|
|
20
|
+
## 0.7.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- 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.
|
|
25
|
+
|
|
3
26
|
## 0.6.3
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|