docx-plus 0.1.6 → 0.1.7
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/README.md +1 -3
- package/dist/index.cjs +1284 -10
- package/dist/index.d.cts +146 -3
- package/dist/index.d.mts +146 -3
- package/dist/index.iife.js +1284 -10
- package/dist/index.mjs +1270 -11
- package/dist/index.umd.js +1284 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,13 +53,11 @@ Easily generate and modify .docx files with JS/TS. Works for Node and on the Bro
|
|
|
53
53
|
**docx-plus** provides comprehensive coverage of the WordprocessingML, DrawingML, and Shared Math specifications within ISO/IEC 29500-4. This includes:
|
|
54
54
|
|
|
55
55
|
- **WordprocessingML**: paragraphs, runs, tables (full row/cell/table properties), sections, headers/footers, footnotes/endnotes, table of contents, numbering/lists, styles, bookmarks, hyperlinks, SDT content controls, form fields, track changes, comments, bibliography sources, math equations, ruby annotations, and more
|
|
56
|
-
- **DrawingML**: shapes, images, text bodies, colors (all 6 color types + 29 transforms), fills (solid, gradient, pattern, group), outlines, effects (28 types with recursive containers), 3D scenes, custom geometry, and
|
|
56
|
+
- **DrawingML**: shapes, images, text bodies, colors (all 6 color types + 29 transforms), fills (solid, gradient, pattern, group), outlines, effects (28 types with recursive containers), 3D scenes, custom geometry, image adjustments, **charts** (bar, column, line, pie, area, scatter), and **SmartArt** diagrams (process, hierarchy, cycle, pyramid, list)
|
|
57
57
|
- **Shared Math**: all equation structures (fraction, radical, n-ary, integrals, matrices, accents, delimiters, etc.)
|
|
58
58
|
|
|
59
59
|
**Not in scope** (separate OOXML domains with their own dedicated specifications):
|
|
60
60
|
|
|
61
|
-
- **SmartArt** (`dgm:`) — graphical diagram engine
|
|
62
|
-
- **Charts** (`c:`) — native OOXML charting (typically handled by charting libraries)
|
|
63
61
|
- **Mail Merge** — field codes are supported, but external data source connections are not
|
|
64
62
|
- **Cover Pages** — `docPartObj` SDT is supported, but Building Blocks part references require template files
|
|
65
63
|
|