docxmlater 9.8.7 → 9.8.8
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 +16 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ A comprehensive, production-ready TypeScript/JavaScript framework for creating,
|
|
|
43
43
|
|
|
44
44
|
### Rich Content
|
|
45
45
|
|
|
46
|
-
- Images (PNG, JPEG, GIF, SVG) with positioning and
|
|
46
|
+
- Images (PNG, JPEG, GIF, SVG, EMF, WMF) with positioning, text wrapping, and full ECMA-376 DrawingML attribute coverage
|
|
47
47
|
- Headers & footers (different first page, odd/even pages)
|
|
48
48
|
- Hyperlinks (external URLs, internal bookmarks)
|
|
49
49
|
- Hyperlink defragmentation utility (fixes fragmented links from Google Docs)
|
|
@@ -59,7 +59,7 @@ A comprehensive, production-ready TypeScript/JavaScript framework for creating,
|
|
|
59
59
|
- Compatibility mode detection and upgrade (Word 2003/2007/2010/2013+ modes)
|
|
60
60
|
- Table of contents generation with customizable heading levels and relative indentation
|
|
61
61
|
- Fields: merge fields, date/time, page numbers, TOC fields
|
|
62
|
-
- Footnotes and endnotes
|
|
62
|
+
- Footnotes and endnotes (full round-trip with save pipeline, parsing, and clear API)
|
|
63
63
|
- Content controls (Structured Document Tags)
|
|
64
64
|
- Form field data preservation (text input, checkbox, dropdown per ECMA-376 §17.16)
|
|
65
65
|
- w14 run effects passthrough (Word 2010+ ligatures, numForm, textOutline, etc.)
|
|
@@ -70,6 +70,7 @@ A comprehensive, production-ready TypeScript/JavaScript framework for creating,
|
|
|
70
70
|
- Multiple sections with different page layouts
|
|
71
71
|
- Page orientation, size, and margins
|
|
72
72
|
- Preserved element round-trip (math equations, alternate content, custom XML)
|
|
73
|
+
- Unified shading model with theme color support and inheritance resolution
|
|
73
74
|
|
|
74
75
|
### Developer Tools
|
|
75
76
|
|
|
@@ -348,6 +349,17 @@ Documents with tracked changes can cause Word corruption errors during round-tri
|
|
|
348
349
|
- `getCompatibilityInfo()` - Get full parsed compat settings
|
|
349
350
|
- `upgradeToModernFormat()` - Upgrade to Word 2013+ mode (removes legacy flags)
|
|
350
351
|
|
|
352
|
+
**Footnotes & Endnotes:**
|
|
353
|
+
|
|
354
|
+
- `createFootnote(paragraph, text)` - Add footnote
|
|
355
|
+
- `createEndnote(paragraph, text)` - Add endnote
|
|
356
|
+
- `clearFootnotes()` / `clearEndnotes()` - Remove all notes
|
|
357
|
+
- `getFootnoteManager()` / `getEndnoteManager()` - Access note managers
|
|
358
|
+
|
|
359
|
+
**Shading:**
|
|
360
|
+
|
|
361
|
+
- `getComputedCellShading(table, row, col)` - Resolve effective cell shading with inheritance
|
|
362
|
+
|
|
351
363
|
**Saving:**
|
|
352
364
|
|
|
353
365
|
- `save(filepath)` - Save to file
|
|
@@ -570,7 +582,7 @@ const properties: DocumentProperties = {
|
|
|
570
582
|
|
|
571
583
|
## Version History
|
|
572
584
|
|
|
573
|
-
**Current Version: 9.
|
|
585
|
+
**Current Version: 9.8.8**
|
|
574
586
|
|
|
575
587
|
See [CHANGELOG.md](CHANGELOG.md) for detailed version history.
|
|
576
588
|
|
|
@@ -578,7 +590,7 @@ See [CHANGELOG.md](CHANGELOG.md) for detailed version history.
|
|
|
578
590
|
|
|
579
591
|
The framework includes comprehensive test coverage:
|
|
580
592
|
|
|
581
|
-
- **
|
|
593
|
+
- **2,683 test cases** across 121 test suites
|
|
582
594
|
- Tests cover all phases of implementation
|
|
583
595
|
- Integration tests for complex scenarios
|
|
584
596
|
- Performance benchmarks
|
package/package.json
CHANGED