jspreadsheet 10.0.11 → 10.0.13
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 +5 -1
- package/dist/index.js +623 -623
- package/dist/jspreadsheet.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -479,10 +479,12 @@ declare namespace jspreadsheet {
|
|
|
479
479
|
render?: string | ((td: HTMLElement, value: number|string, x: number, y: number, worksheet: worksheetInstance, options: Column) => void);
|
|
480
480
|
/** The format of the date or numbers in the cell. Default for the calendar: "DD/MM/YYYY". */
|
|
481
481
|
format?: string;
|
|
482
|
+
/** Locale for Intl.NumberFormat */
|
|
483
|
+
locale?: string,
|
|
482
484
|
/** Whether the column is a primary key. */
|
|
483
485
|
primaryKey?: boolean;
|
|
484
486
|
/** Extended configuration for the column. */
|
|
485
|
-
options?: Calendar | Dropdown;
|
|
487
|
+
options?: Calendar | Dropdown | object;
|
|
486
488
|
/** Whether the column is read-only. */
|
|
487
489
|
readOnly?: boolean;
|
|
488
490
|
/** Whether to process the raw data when copying or downloading. Default: true. */
|
|
@@ -993,6 +995,8 @@ declare namespace jspreadsheet {
|
|
|
993
995
|
gridline?: boolean;
|
|
994
996
|
/** Floating images */
|
|
995
997
|
images?: Image[];
|
|
998
|
+
/** Cached values. This can be used to skip calculations during onload */
|
|
999
|
+
cache?: Record<string, string|number>;
|
|
996
1000
|
}
|
|
997
1001
|
|
|
998
1002
|
interface spreadsheetInstance {
|