jspreadsheet 11.11.6 → 11.12.0
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 +3 -1
- package/dist/index.js +566 -567
- package/dist/jspreadsheet.css +5 -4
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -784,6 +784,8 @@ declare namespace jspreadsheet {
|
|
|
784
784
|
forceUpdateOnPaste?: boolean;
|
|
785
785
|
/** Render jspreadsheet spreadsheet on full screen mode. Default: false */
|
|
786
786
|
fullscreen?: boolean;
|
|
787
|
+
/** Make sure the formulas are capital letter. Default: true */
|
|
788
|
+
secureFormulas?: boolean;
|
|
787
789
|
/** Enable formula debug. Default: false */
|
|
788
790
|
debugFormulas?: boolean,
|
|
789
791
|
/** Execute formulas. Default: true */
|
|
@@ -839,7 +841,7 @@ declare namespace jspreadsheet {
|
|
|
839
841
|
x: number,
|
|
840
842
|
y: number,
|
|
841
843
|
[key: string]: any,
|
|
842
|
-
}
|
|
844
|
+
}[]
|
|
843
845
|
) => void;
|
|
844
846
|
/** Before a new row is inserted. You can cancel the insert event by returning false. */
|
|
845
847
|
onbeforeinsertrow?: (worksheet: worksheetInstance, newRow: Record<string, any>[]) => false | newRow[] | undefined;
|