@niicojs/excel 0.3.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/LICENSE +20 -20
- package/README.md +585 -585
- package/dist/index.cjs +498 -489
- package/dist/index.d.cts +5 -0
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +498 -489
- package/package.json +1 -1
- package/src/index.ts +45 -45
- package/src/pivot-cache.ts +300 -300
- package/src/pivot-table.ts +684 -684
- package/src/range.ts +154 -154
- package/src/shared-strings.ts +178 -178
- package/src/styles.ts +819 -819
- package/src/table.ts +386 -386
- package/src/types.ts +313 -307
- package/src/utils/address.ts +121 -121
- package/src/utils/xml.ts +140 -140
- package/src/workbook.ts +1390 -1390
- package/src/worksheet.ts +879 -869
package/dist/index.d.ts
CHANGED
|
@@ -265,6 +265,11 @@ interface SheetToJsonConfig {
|
|
|
265
265
|
* How to serialize Date values. Defaults to 'jsDate'.
|
|
266
266
|
*/
|
|
267
267
|
dateHandling?: DateHandling;
|
|
268
|
+
/**
|
|
269
|
+
* If true, return formatted text (as displayed in Excel) instead of raw values.
|
|
270
|
+
* All values will be returned as strings. Defaults to false.
|
|
271
|
+
*/
|
|
272
|
+
asText?: boolean;
|
|
268
273
|
}
|
|
269
274
|
|
|
270
275
|
/**
|