@alosha/xlsx 0.2.0 → 0.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.
- package/README.md +6 -0
- package/dist/chunk-6XXKAKLS.js +3663 -0
- package/dist/chunk-6XXKAKLS.js.map +1 -0
- package/dist/compat.cjs +4012 -0
- package/dist/compat.cjs.map +1 -0
- package/dist/compat.d.cts +110 -0
- package/dist/compat.d.ts +110 -0
- package/dist/compat.js +302 -0
- package/dist/compat.js.map +1 -0
- package/dist/index.cjs +6 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +1 -3657
- package/dist/index.js.map +1 -1
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -143,6 +143,12 @@ behave as you'd expect. Common differences to watch for:
|
|
|
143
143
|
Not everything ExcelJS does is implemented yet — check the feature matrix and limitations before
|
|
144
144
|
porting a workbook that leans on drawings, streaming, or data validation.
|
|
145
145
|
|
|
146
|
+
**Want a one-line import swap instead?** `@alosha/xlsx/compat` is an ExcelJS-shaped drop-in — same
|
|
147
|
+
`cell.type` numbers, same style-setter precedence, same `addRow`/`row.values`/`worksheet.columns`
|
|
148
|
+
behaviour — for code that shouldn't need to change beyond `import ExcelJS from "@alosha/xlsx/compat"`.
|
|
149
|
+
See [`docs/MIGRATION.md`](https://github.com/avlisodraude/alosha-xlsx/blob/main/docs/MIGRATION.md) for the supported/deferred matrix and the two
|
|
150
|
+
behavioural notes to check before porting.
|
|
151
|
+
|
|
146
152
|
## Known limitations
|
|
147
153
|
|
|
148
154
|
- **Hyperlink cells round-trip as their display text.** Setting a `{ text, hyperlink }` value
|