jspreadsheet 10.3.6 → 10.4.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 +2 -535
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -861,8 +861,10 @@ declare namespace jspreadsheet {
|
|
|
861
861
|
snapToGrid?: boolean;
|
|
862
862
|
/** Space between the table and the end of the container. Default: 100 */
|
|
863
863
|
spacing?: number;
|
|
864
|
-
/** Pre
|
|
864
|
+
/** Pre-calculation helps to calculate all formula and cache the results. Default true */
|
|
865
865
|
preCalculation?: boolean;
|
|
866
|
+
/** Consider the use of column name in formulas. Default: true [ For example: =Countries*10 ] */
|
|
867
|
+
columnNamesInFormulas?: boolean;
|
|
866
868
|
}
|
|
867
869
|
|
|
868
870
|
interface Worksheet {
|
|
@@ -1585,6 +1587,8 @@ declare namespace jspreadsheet {
|
|
|
1585
1587
|
deleteMedia: (items: object[]|string[]) => void;
|
|
1586
1588
|
/** Add a global formula to the tracking system. Use from formula pro. Only use if necessary. */
|
|
1587
1589
|
setTracking: () => void;
|
|
1590
|
+
/** Internal column names */
|
|
1591
|
+
names: object;
|
|
1588
1592
|
}
|
|
1589
1593
|
}
|
|
1590
1594
|
|