jspreadsheet 8.7.3 → 8.7.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 CHANGED
@@ -427,6 +427,8 @@ declare namespace jspreadsheet {
427
427
  onformulachain?: (worksheet: worksheetInstance, expressions: Array<object>) => void;
428
428
  /** Customize the items available when filter editor is open. */
429
429
  onopenfilter?: (worksheet: worksheetInstance, column: number, options: Array<object>) => void | Array<object>;
430
+ /** Intercept the ajax call before save. XHR ajax object */
431
+ onbeforesend?: (worksheet: worksheetInstance, xhr: object) => void
430
432
  /** Run every single table update action. Can bring performance issues if perform too much changes. */
431
433
  updateTable?: (worksheet: worksheetInstance, cell: Object, x: number, y: number, value: String) => void;
432
434
  /** Return false to cancel the contextMenu event, or return custom elements for the contextmenu. */