jspreadsheet 9.1.1 → 9.1.4
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 -2
- package/dist/index.js +428 -428
- package/package.json +1 -1
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
|
|
572
|
+
freezeColumnControl?: boolean,
|
|
573
573
|
/** Enable freeze row manual control. Default: false */
|
|
574
|
-
freezeRowControl
|
|
574
|
+
freezeRowControl?: boolean,
|
|
575
575
|
/** Initial sorting [colNumber, direction]. Default: null */
|
|
576
576
|
orderBy?: [number, boolean];
|
|
577
577
|
/** Worksheet Unique Id. */
|