ooxml.js 6.2.0 → 6.3.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.
@@ -270,6 +270,7 @@ function readCell(cell, sharedStrings, context) {
270
270
  if (entry.borders !== void 0) cellEntry.borders = entry.borders;
271
271
  if (entry.alignment !== void 0) cellEntry.alignment = entry.alignment;
272
272
  if (entry.verticalAlignment !== void 0) cellEntry.verticalAlignment = entry.verticalAlignment;
273
+ if (entry.numberFormatCode !== void 0) cellEntry.numberFormatCode = entry.numberFormatCode;
273
274
  }
274
275
  return cellEntry;
275
276
  }
@@ -269,6 +269,7 @@ function readCell(cell, sharedStrings, context) {
269
269
  if (entry.borders !== void 0) cellEntry.borders = entry.borders;
270
270
  if (entry.alignment !== void 0) cellEntry.alignment = entry.alignment;
271
271
  if (entry.verticalAlignment !== void 0) cellEntry.verticalAlignment = entry.verticalAlignment;
272
+ if (entry.numberFormatCode !== void 0) cellEntry.numberFormatCode = entry.numberFormatCode;
272
273
  }
273
274
  return cellEntry;
274
275
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ooxml.js",
3
- "version": "6.2.0",
3
+ "version": "6.3.0",
4
4
  "description": "Type-safe, lossless round-trip conversion between OOXML packages (docx, pptx, xlsx) and JSON, built on Zod 4 codecs.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -81,7 +81,7 @@
81
81
  "packageManager": "pnpm@11.6.0",
82
82
  "dependencies": {
83
83
  "archive-codec": "^1.2.0",
84
- "document-schema.js": "^5.2.0",
84
+ "document-schema.js": "^5.3.0",
85
85
  "fast-xml-parser": "^5.10.1",
86
86
  "fflate": "^0.8.3",
87
87
  "zod": "^4.4.3"