@alosha/xlsx 0.2.0 → 0.3.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/README.md +9 -2
- package/dist/chunk-6XXKAKLS.js +3663 -0
- package/dist/chunk-6XXKAKLS.js.map +1 -0
- package/dist/compat.cjs +4044 -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 +334 -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
|
|
@@ -153,8 +159,9 @@ porting a workbook that leans on drawings, streaming, or data validation.
|
|
|
153
159
|
- **No drawings, images, or charts.** These parts are ignored on read and not emitted on write.
|
|
154
160
|
- **No data validation, conditional formatting, or comments** yet.
|
|
155
161
|
|
|
156
|
-
See [`BENCHMARKS.md`](
|
|
157
|
-
|
|
162
|
+
See [`BENCHMARKS.md`](https://github.com/avlisodraude/alosha-xlsx/blob/main/BENCHMARKS.md) for
|
|
163
|
+
write/read throughput and output-size numbers against ExcelJS, and
|
|
164
|
+
[`CHANGELOG.md`](https://github.com/avlisodraude/alosha-xlsx/blob/main/CHANGELOG.md) for release notes.
|
|
158
165
|
|
|
159
166
|
## Development
|
|
160
167
|
|