@univerjs/sheets-formula 0.2.12 → 0.2.14

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.
Files changed (40) hide show
  1. package/lib/cjs/index.js +4 -4
  2. package/lib/es/index.js +328 -236
  3. package/lib/locale/en-US.json +201 -169
  4. package/lib/locale/ru-RU.json +201 -169
  5. package/lib/locale/vi-VN.json +496 -44
  6. package/lib/locale/zh-CN.json +209 -177
  7. package/lib/locale/zh-TW.json +213 -181
  8. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +6 -6
  9. package/lib/types/common/plugin-name.d.ts +1 -1
  10. package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +1 -1
  11. package/lib/types/controllers/prompt.controller.d.ts +7 -6
  12. package/lib/types/controllers/utils/ref-range-formula.d.ts +6 -0
  13. package/lib/types/formula-ui-plugin.d.ts +3 -3
  14. package/lib/types/locale/en-US.d.ts +103 -71
  15. package/lib/types/locale/function-list/logical/en-US.d.ts +22 -10
  16. package/lib/types/locale/function-list/logical/ja-JP.d.ts +22 -10
  17. package/lib/types/locale/function-list/logical/vi-VN.d.ts +22 -10
  18. package/lib/types/locale/function-list/logical/zh-CN.d.ts +22 -10
  19. package/lib/types/locale/function-list/logical/zh-TW.d.ts +22 -10
  20. package/lib/types/locale/function-list/lookup/en-US.d.ts +46 -14
  21. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +46 -14
  22. package/lib/types/locale/function-list/lookup/vi-VN.d.ts +126 -4
  23. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +46 -14
  24. package/lib/types/locale/function-list/lookup/zh-TW.d.ts +46 -14
  25. package/lib/types/locale/function-list/math/en-US.d.ts +35 -47
  26. package/lib/types/locale/function-list/math/ja-JP.d.ts +35 -47
  27. package/lib/types/locale/function-list/math/vi-VN.d.ts +276 -0
  28. package/lib/types/locale/function-list/math/zh-CN.d.ts +35 -47
  29. package/lib/types/locale/function-list/math/zh-TW.d.ts +35 -47
  30. package/lib/types/locale/ru-RU.d.ts +103 -71
  31. package/lib/types/locale/vi-VN.d.ts +424 -14
  32. package/lib/types/locale/zh-CN.d.ts +103 -71
  33. package/lib/types/locale/zh-TW.d.ts +103 -71
  34. package/lib/types/services/description.service.d.ts +1 -1
  35. package/lib/types/services/prompt.service.d.ts +1 -1
  36. package/lib/types/services/register-function.service.d.ts +1 -1
  37. package/lib/types/services/remote/remote-register-function.service.d.ts +1 -1
  38. package/lib/types/views/more-functions/interface.d.ts +1 -1
  39. package/lib/umd/index.js +4 -4
  40. package/package.json +26 -24
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/sheets-formula",
3
- "version": "0.2.12",
3
+ "version": "0.2.14",
4
4
  "private": false,
5
5
  "author": "DreamNum <developer@univer.ai>",
6
6
  "license": "Apache-2.0",
@@ -51,18 +51,30 @@
51
51
  "peerDependencies": {
52
52
  "react": "^16.9.0 || ^17.0.0 || ^18.0.0",
53
53
  "rxjs": ">=7.0.0",
54
- "@univerjs/core": "0.2.12",
55
- "@univerjs/design": "0.2.12",
56
- "@univerjs/engine-formula": "0.2.12",
57
- "@univerjs/docs": "0.2.12",
58
- "@univerjs/engine-render": "0.2.12",
59
- "@univerjs/rpc": "0.2.12",
60
- "@univerjs/sheets": "0.2.12",
61
- "@univerjs/sheets-ui": "0.2.12",
62
- "@univerjs/ui": "0.2.12"
54
+ "@univerjs/core": "0.2.14",
55
+ "@univerjs/design": "0.2.14",
56
+ "@univerjs/docs-ui": "0.2.14",
57
+ "@univerjs/engine-formula": "0.2.14",
58
+ "@univerjs/engine-render": "0.2.14",
59
+ "@univerjs/docs": "0.2.14",
60
+ "@univerjs/rpc": "0.2.14",
61
+ "@univerjs/sheets-ui": "0.2.14",
62
+ "@univerjs/sheets": "0.2.14",
63
+ "@univerjs/ui": "0.2.14"
63
64
  },
64
65
  "dependencies": {
65
- "@univerjs/icons": "^0.1.77"
66
+ "@univerjs/icons": "^0.1.78",
67
+ "@univerjs/core": "0.2.14",
68
+ "@univerjs/design": "0.2.14",
69
+ "@univerjs/docs-ui": "0.2.14",
70
+ "@univerjs/engine-formula": "0.2.14",
71
+ "@univerjs/engine-render": "0.2.14",
72
+ "@univerjs/rpc": "0.2.14",
73
+ "@univerjs/docs": "0.2.14",
74
+ "@univerjs/sheets": "0.2.14",
75
+ "@univerjs/sheets-numfmt": "0.2.14",
76
+ "@univerjs/sheets-ui": "0.2.14",
77
+ "@univerjs/ui": "0.2.14"
66
78
  },
67
79
  "devDependencies": {
68
80
  "@types/react": "^18.3.5",
@@ -70,20 +82,10 @@
70
82
  "less": "^4.2.0",
71
83
  "react": "18.3.1",
72
84
  "rxjs": "^7.8.1",
73
- "typescript": "^5.5.4",
74
- "vite": "^5.4.2",
85
+ "typescript": "^5.6.2",
86
+ "vite": "^5.4.4",
75
87
  "vitest": "^2.0.5",
76
- "@univerjs/core": "0.2.12",
77
- "@univerjs/design": "0.2.12",
78
- "@univerjs/docs": "0.2.12",
79
- "@univerjs/engine-formula": "0.2.12",
80
- "@univerjs/engine-render": "0.2.12",
81
- "@univerjs/rpc": "0.2.12",
82
- "@univerjs/sheets": "0.2.12",
83
- "@univerjs/sheets-numfmt": "0.2.12",
84
- "@univerjs/shared": "0.2.12",
85
- "@univerjs/sheets-ui": "0.2.12",
86
- "@univerjs/ui": "0.2.12"
88
+ "@univerjs-infra/shared": "0.2.14"
87
89
  },
88
90
  "univerSpace": {
89
91
  ".": {