jspreadsheet 11.0.0-beta.12 → 11.0.0-beta.13
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 +11 -0
- package/dist/index.js +539 -539
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -935,6 +935,8 @@ declare namespace jspreadsheet {
|
|
|
935
935
|
columnNamesInFormulas?: boolean;
|
|
936
936
|
/** Namespace help with cross-calculations conflict names */
|
|
937
937
|
namespace?: string;
|
|
938
|
+
/** International configuration */
|
|
939
|
+
international?: International;
|
|
938
940
|
}
|
|
939
941
|
|
|
940
942
|
interface Worksheet {
|
|
@@ -1668,6 +1670,15 @@ declare namespace jspreadsheet {
|
|
|
1668
1670
|
/** Get the current zoom value. Default 1 */
|
|
1669
1671
|
getZoom: () => number;
|
|
1670
1672
|
}
|
|
1673
|
+
|
|
1674
|
+
interface International {
|
|
1675
|
+
/** User locale **/
|
|
1676
|
+
locale: string;
|
|
1677
|
+
/** General number format */
|
|
1678
|
+
NumberFormat?: Intl.NumberFormat;
|
|
1679
|
+
/** Not yet implemented */
|
|
1680
|
+
DateTimeFormat?: Intl.DateTimeFormat;
|
|
1681
|
+
}
|
|
1671
1682
|
}
|
|
1672
1683
|
|
|
1673
1684
|
export default jspreadsheet;
|