jspreadsheet 11.11.7 → 11.12.1
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 +5 -1
- package/dist/index.js +568 -568
- package/dist/jspreadsheet.css +5 -4
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -625,6 +625,8 @@ declare namespace jspreadsheet {
|
|
|
625
625
|
wrap?: boolean;
|
|
626
626
|
/** The rotation angle for the text value, between -90 and 90. Default: null. */
|
|
627
627
|
rotate?: number;
|
|
628
|
+
/** Can be used to map JSON properties or help to group type radio cells */
|
|
629
|
+
name?: string;
|
|
628
630
|
/** Record editor */
|
|
629
631
|
worksheetId?: string;
|
|
630
632
|
worksheetColumn?: number;
|
|
@@ -784,6 +786,8 @@ declare namespace jspreadsheet {
|
|
|
784
786
|
forceUpdateOnPaste?: boolean;
|
|
785
787
|
/** Render jspreadsheet spreadsheet on full screen mode. Default: false */
|
|
786
788
|
fullscreen?: boolean;
|
|
789
|
+
/** Make sure the formulas are capital letter. Default: true */
|
|
790
|
+
secureFormulas?: boolean;
|
|
787
791
|
/** Enable formula debug. Default: false */
|
|
788
792
|
debugFormulas?: boolean,
|
|
789
793
|
/** Execute formulas. Default: true */
|
|
@@ -839,7 +843,7 @@ declare namespace jspreadsheet {
|
|
|
839
843
|
x: number,
|
|
840
844
|
y: number,
|
|
841
845
|
[key: string]: any,
|
|
842
|
-
}
|
|
846
|
+
}[]
|
|
843
847
|
) => void;
|
|
844
848
|
/** Before a new row is inserted. You can cancel the insert event by returning false. */
|
|
845
849
|
onbeforeinsertrow?: (worksheet: worksheetInstance, newRow: Record<string, any>[]) => false | newRow[] | undefined;
|