jspreadsheet 11.2.1 → 11.2.3

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 CHANGED
@@ -925,6 +925,8 @@ declare namespace jspreadsheet {
925
925
  onbeforeloadimage?: (worksheet: object, img: HTMLElement, options: object) => undefined | string | boolean;
926
926
  /** Update references. When a table structure changes */
927
927
  onchangereferences?: (worksheet: object, affected: object, deletedTokens: string[], deletedColumns: string[], deletedRows: string[]) => void;
928
+ /** When the cell is changed */
929
+ onchangeproperty?: (worksheet: object, records: object[]) => void;
928
930
  /** General event handler */
929
931
  onevent?: (worksheet: worksheetInstance, method: string, a?: any, b?: any, c?: any, d?: any, e?: any, f?: any) => any
930
932
  /** Return false to cancel the contextMenu event, or return custom elements for the contextmenu. */