docx-plus 0.6.9 → 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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -14,7 +14,7 @@ This package re-exports everything from `@office-open/docx` for backward compati
14
14
 
15
15
  | | docx | docx-plus |
16
16
  | ----------------------- | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
17
- | ZIP handling | jszip | **fflate** (faster, smaller) |
17
+ | ZIP handling | jszip | **zlib** (native, with fflate browser fallback) |
18
18
  | Data conversion | Manual env detection (`Buffer.from` etc.) | **undio** (universal `toUint8Array`) |
19
19
  | `Packer.toStream()` | Removed (pseudo-streaming) | **Restored** with `ReadableStream<Uint8Array>` (cross-platform) |
20
20
  | Theme support | Partial (missing `ThemeColor`/`ThemeFont`) | **Full** (`ThemeColor`, `ThemeFont` enums, theme attributes on `Color`, `Underline`, `Border`, `Shading`) |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docx-plus",
3
- "version": "0.6.9",
3
+ "version": "0.7.0",
4
4
  "description": "Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.",
5
5
  "keywords": [
6
6
  "clippy",
@@ -44,7 +44,7 @@
44
44
  }
45
45
  },
46
46
  "dependencies": {
47
- "@office-open/docx": "0.6.9"
47
+ "@office-open/docx": "0.7.0"
48
48
  },
49
49
  "scripts": {
50
50
  "dev": "basis build --stub",