docx 9.6.0 → 9.6.1

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/dist/index.cjs CHANGED
@@ -14060,7 +14060,8 @@ const createFontTable = (fonts) => (
14060
14060
  (font, i) => createRegularFont({
14061
14061
  name: font.name,
14062
14062
  index: i + 1,
14063
- fontKey: font.fontKey
14063
+ fontKey: font.fontKey,
14064
+ characterSet: font.characterSet
14064
14065
  })
14065
14066
  )
14066
14067
  })
@@ -14060,7 +14060,8 @@ var __async = (__this, __arguments, generator) => {
14060
14060
  (font, i) => createRegularFont({
14061
14061
  name: font.name,
14062
14062
  index: i + 1,
14063
- fontKey: font.fontKey
14063
+ fontKey: font.fontKey,
14064
+ characterSet: font.characterSet
14064
14065
  })
14065
14066
  )
14066
14067
  })
package/dist/index.mjs CHANGED
@@ -14058,7 +14058,8 @@ const createFontTable = (fonts) => (
14058
14058
  (font, i) => createRegularFont({
14059
14059
  name: font.name,
14060
14060
  index: i + 1,
14061
- fontKey: font.fontKey
14061
+ fontKey: font.fontKey,
14062
+ characterSet: font.characterSet
14062
14063
  })
14063
14064
  )
14064
14065
  })
@@ -14062,7 +14062,8 @@ var __async = (__this, __arguments, generator) => {
14062
14062
  (font, i) => createRegularFont({
14063
14063
  name: font.name,
14064
14064
  index: i + 1,
14065
- fontKey: font.fontKey
14065
+ fontKey: font.fontKey,
14066
+ characterSet: font.characterSet
14066
14067
  })
14067
14068
  )
14068
14069
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docx",
3
- "version": "9.6.0",
3
+ "version": "9.6.1",
4
4
  "description": "Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.",
5
5
  "type": "module",
6
6
  "main": "dist/index.umd.cjs",