jspreadsheet 9.2.6 → 9.2.7
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 +2 -0
- package/dist/index.js +455 -455
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -537,6 +537,8 @@ declare namespace jspreadsheet {
|
|
|
537
537
|
onchangefooter?: (worksheet: worksheetInstance, newValue: string, oldValue: string) => void;
|
|
538
538
|
/** When the value in a cell footer is changed. */
|
|
539
539
|
onchangefootervalue?: (worksheet: worksheetInstance, x: number, y: number, value: string) => void;
|
|
540
|
+
/** When the footer cell is rendered */
|
|
541
|
+
onrenderfootercell?: (worksheet: worksheetInstance, x: number, y: number, value: string, td: HTMLElement) => void;
|
|
540
542
|
/** On change nested headers */
|
|
541
543
|
onchangenested?: (worksheet: worksheetInstance, options: object) => void;
|
|
542
544
|
/** On change nested cell properties */
|