jspreadsheet 11.9.4 → 11.9.6
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 +4 -0
- package/dist/index.js +561 -562
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -938,6 +938,8 @@ declare namespace jspreadsheet {
|
|
|
938
938
|
onchangereferences?: (worksheet: object, affected: object, deletedTokens: string[], deletedColumns: string[], deletedRows: string[]) => void;
|
|
939
939
|
/** When the cell is changed */
|
|
940
940
|
onchangeproperty?: (worksheet: object, records: object[]) => void;
|
|
941
|
+
/** Fire when there is a change in the config */
|
|
942
|
+
onchangeconfig?: (worksheet: object, config: string|object, spreadsheetLevel?: boolean) => void;
|
|
941
943
|
/** General event handler */
|
|
942
944
|
onevent?: (worksheet: worksheetInstance, method: string, a?: any, b?: any, c?: any, d?: any, e?: any, f?: any) => any
|
|
943
945
|
/** Return false to cancel the contextMenu event, or return custom elements for the contextmenu. */
|
|
@@ -974,6 +976,8 @@ declare namespace jspreadsheet {
|
|
|
974
976
|
international?: International;
|
|
975
977
|
/** Persistence handler */
|
|
976
978
|
persistence?: (method: string, args: object) => void;
|
|
979
|
+
/** Spreadsheet name */
|
|
980
|
+
name?: string;
|
|
977
981
|
}
|
|
978
982
|
|
|
979
983
|
interface Worksheet {
|