xls-codec 1.0.0 → 1.0.2

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 +3 -3
package/README.md CHANGED
@@ -19,7 +19,7 @@ Under active development, **read-only**. Built and shipped:
19
19
 
20
20
  ### Not built yet
21
21
 
22
- **The write path**, which is the substantial one. A conformant workbook has to emit a `BOF` history block, a complete `XF`/`Font`/`Format` table with the fifteen mandatory style records preceding any cell format, an `Index`/`DBCell` row-block lookup structure whose file offsets must agree with where the records actually land, and a compound-file _writer_ (`archive-codec` reads [MS-CFB] but does not write it). Shipping a plausible-looking writer that produced files Excel rejects would be worse than shipping none. Tracked on [#815](https://github.com/ExaDev/documents.js/issues/815).
22
+ **The write path**, which is the substantial one. A conformant workbook has to emit a `BOF` history block, a complete `XF`/`Font`/`Format` table with the fifteen mandatory style records preceding any cell format, an `Index`/`DBCell` row-block lookup structure whose file offsets must agree with where the records actually land, and a compound file to put the resulting `Workbook` stream into. The container half is no longer missing — [`archive-codec`](../archive-codec/README.md)'s `writeCompoundFile` writes [MS-CFB] as well as reading it — so what remains here is the BIFF8 record emission itself. Shipping a plausible-looking writer that produced files Excel rejects would be worse than shipping none. Tracked on [#815](https://github.com/ExaDev/documents.js/issues/815).
23
23
 
24
24
  Read-side gaps, each deliberate rather than overlooked:
25
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xls-codec",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Hand-written reader for the legacy Excel Binary File Format (.xls, BIFF8) as specified by [MS-XLS], mapping a workbook's record stream onto the shared document-schema.js spreadsheet model - the .xls codec for the documents.js family.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -67,8 +67,8 @@
67
67
  },
68
68
  "packageManager": "pnpm@11.6.0",
69
69
  "dependencies": {
70
- "archive-codec": "^1.2.0",
71
- "document-schema.js": "^5.4.0"
70
+ "archive-codec": "^1.3.0",
71
+ "document-schema.js": "^5.5.0"
72
72
  },
73
73
  "devDependencies": {
74
74
  "@arethetypeswrong/cli": "^0.18.5",