jspreadsheet 9.1.3 → 9.1.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
@@ -569,9 +569,9 @@ declare namespace jspreadsheet {
569
569
  /** Freeze rows. Default: 0 */
570
570
  freezeRows?: number;
571
571
  /** Enable freeze column manual control. Default: false */
572
- freezeColumnControl: boolean,
572
+ freezeColumnControl?: boolean,
573
573
  /** Enable freeze row manual control. Default: false */
574
- freezeRowControl: boolean,
574
+ freezeRowControl?: boolean,
575
575
  /** Initial sorting [colNumber, direction]. Default: null */
576
576
  orderBy?: [number, boolean];
577
577
  /** Worksheet Unique Id. */
@@ -725,8 +725,10 @@ declare namespace jspreadsheet {
725
725
  dispatch: (event?: string) => void;
726
726
  /** Navigation down */
727
727
  down: (shiftKey?: boolean, ctrlKey?: boolean, jump?: boolean) => void;
728
- /** Download CSV */
728
+ /** If extension render exists, execute render extension else download CSV */
729
729
  download: (includeHeaders?: boolean, processed?: boolean) => void;
730
+ /** Download CSV */
731
+ downloadCSV: (includeHeaders?: boolean, processed?: boolean) => void;
730
732
  /** Edition controllers */
731
733
  edition: [];
732
734
  /** DOM Worksheet. Alias for worksheet */