@univerjs/sheets-numfmt 0.6.2 → 0.6.3

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.
@@ -15,11 +15,11 @@ export interface IFWorkbookNumfmtMixin {
15
15
  *
16
16
  * // Set the locale en_US for number formatting.
17
17
  * fWorkbook.setNumfmtLocal('en_US');
18
- * console.log(fRange.getValue()); // 1,234.57
18
+ * console.log(fRange.getDisplayValue()); // 1,234.57
19
19
  *
20
20
  * // Set the locale de_DE for number formatting.
21
21
  * fWorkbook.setNumfmtLocal('de_DE');
22
- * console.log(fRange.getValue()); // 1.234,57
22
+ * console.log(fRange.getDisplayValue()); // 1.234,57
23
23
  * ```
24
24
  */
25
25
  setNumfmtLocal(local: INumfmtLocalTag): FWorkbook;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/sheets-numfmt",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "private": false,
5
5
  "description": "UniverSheet numfmt plugin",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -53,17 +53,17 @@
53
53
  "rxjs": ">=7.0.0"
54
54
  },
55
55
  "dependencies": {
56
- "@univerjs/core": "0.6.2",
57
- "@univerjs/engine-formula": "0.6.2",
58
- "@univerjs/engine-numfmt": "0.6.2",
59
- "@univerjs/sheets": "0.6.2"
56
+ "@univerjs/core": "0.6.3",
57
+ "@univerjs/engine-formula": "0.6.3",
58
+ "@univerjs/engine-numfmt": "0.6.3",
59
+ "@univerjs/sheets": "0.6.3"
60
60
  },
61
61
  "devDependencies": {
62
62
  "rxjs": "^7.8.1",
63
- "typescript": "^5.7.3",
63
+ "typescript": "^5.8.2",
64
64
  "vite": "^6.2.0",
65
65
  "vitest": "^3.0.7",
66
- "@univerjs-infra/shared": "0.6.2"
66
+ "@univerjs-infra/shared": "0.6.3"
67
67
  },
68
68
  "scripts": {
69
69
  "test": "vitest run",