jspreadsheet 8.1.9 → 8.1.14
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/dist/index.d.ts +3 -1
- package/dist/index.js +416 -415
- package/dist/jspreadsheet.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -190,6 +190,8 @@ declare namespace jspreadsheet {
|
|
|
190
190
|
wordWrap?: boolean;
|
|
191
191
|
/** Process the raw data when copy or download. Default: true */
|
|
192
192
|
process?: boolean;
|
|
193
|
+
/** Try to cast numbers from a cell text. Default: true */
|
|
194
|
+
autoCasting?: boolean;
|
|
193
195
|
}
|
|
194
196
|
|
|
195
197
|
interface Row {
|
|
@@ -457,7 +459,7 @@ declare namespace jspreadsheet {
|
|
|
457
459
|
/** Consider first line as header. Default: true */
|
|
458
460
|
csvHeaders?: boolean;
|
|
459
461
|
/** Delimiter to consider when dealing with the CSV data. Default: ',' */
|
|
460
|
-
csvDelimiter?:
|
|
462
|
+
csvDelimiter?: string;
|
|
461
463
|
/** Allow column sorting */
|
|
462
464
|
columnSorting?: boolean;
|
|
463
465
|
/** Allow column dragging */
|