@univerjs/sheets-formula 0.2.4 → 0.2.6

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 (49) hide show
  1. package/lib/cjs/index.js +4 -4
  2. package/lib/es/index.js +4882 -4712
  3. package/lib/index.css +1 -1
  4. package/lib/locale/en-US.json +387 -349
  5. package/lib/locale/ru-RU.json +315 -325
  6. package/lib/locale/vi-VN.json +177 -227
  7. package/lib/locale/zh-CN.json +391 -353
  8. package/lib/locale/zh-TW.json +403 -365
  9. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +7 -8
  10. package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +1 -2
  11. package/lib/types/controllers/formula-clipboard.controller.d.ts +1 -2
  12. package/lib/types/controllers/formula-ui.controller.d.ts +1 -2
  13. package/lib/types/controllers/menu.d.ts +1 -1
  14. package/lib/types/controllers/prompt.controller.d.ts +3 -0
  15. package/lib/types/controllers/update-formula.controller.d.ts +1 -2
  16. package/lib/types/formula-ui-plugin.d.ts +2 -3
  17. package/lib/types/locale/en-US.d.ts +207 -169
  18. package/lib/types/locale/function-list/date/en-US.d.ts +25 -17
  19. package/lib/types/locale/function-list/date/ja-JP.d.ts +25 -17
  20. package/lib/types/locale/function-list/date/zh-CN.d.ts +25 -17
  21. package/lib/types/locale/function-list/date/zh-TW.d.ts +27 -19
  22. package/lib/types/locale/function-list/information/en-US.d.ts +4 -12
  23. package/lib/types/locale/function-list/information/ja-JP.d.ts +4 -12
  24. package/lib/types/locale/function-list/information/zh-CN.d.ts +4 -12
  25. package/lib/types/locale/function-list/information/zh-TW.d.ts +4 -12
  26. package/lib/types/locale/function-list/lookup/en-US.d.ts +53 -21
  27. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +53 -21
  28. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +53 -21
  29. package/lib/types/locale/function-list/lookup/zh-TW.d.ts +53 -21
  30. package/lib/types/locale/function-list/math/en-US.d.ts +69 -111
  31. package/lib/types/locale/function-list/math/ja-JP.d.ts +69 -111
  32. package/lib/types/locale/function-list/math/zh-CN.d.ts +69 -111
  33. package/lib/types/locale/function-list/math/zh-TW.d.ts +71 -113
  34. package/lib/types/locale/function-list/text/en-US.d.ts +56 -8
  35. package/lib/types/locale/function-list/text/ja-JP.d.ts +56 -8
  36. package/lib/types/locale/function-list/text/zh-CN.d.ts +56 -8
  37. package/lib/types/locale/function-list/text/zh-TW.d.ts +56 -8
  38. package/lib/types/locale/ru-RU.d.ts +151 -161
  39. package/lib/types/locale/vi-VN.d.ts +73 -123
  40. package/lib/types/locale/zh-CN.d.ts +207 -169
  41. package/lib/types/locale/zh-TW.d.ts +211 -173
  42. package/lib/types/services/description.service.d.ts +2 -3
  43. package/lib/types/services/formula-ref-range.service.d.ts +1 -2
  44. package/lib/types/services/prompt.service.d.ts +2 -3
  45. package/lib/types/services/register-function.service.d.ts +2 -3
  46. package/lib/types/services/remote/remote-register-function.service.d.ts +1 -1
  47. package/lib/types/services/render-services/ref-selections.render-service.d.ts +5 -4
  48. package/lib/umd/index.js +4 -4
  49. package/package.json +25 -27
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/sheets-formula",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "private": false,
5
5
  "author": "DreamNum <developer@univer.ai>",
6
6
  "license": "Apache-2.0",
@@ -49,43 +49,41 @@
49
49
  "lib"
50
50
  ],
51
51
  "peerDependencies": {
52
- "@wendellhu/redi": "0.16.0",
53
52
  "react": "^16.9.0 || ^17.0.0 || ^18.0.0",
54
53
  "rxjs": ">=7.0.0",
55
- "@univerjs/core": "0.2.4",
56
- "@univerjs/docs": "0.2.4",
57
- "@univerjs/design": "0.2.4",
58
- "@univerjs/engine-formula": "0.2.4",
59
- "@univerjs/rpc": "0.2.4",
60
- "@univerjs/engine-render": "0.2.4",
61
- "@univerjs/sheets-ui": "0.2.4",
62
- "@univerjs/ui": "0.2.4",
63
- "@univerjs/sheets": "0.2.4"
54
+ "@univerjs/core": "0.2.6",
55
+ "@univerjs/design": "0.2.6",
56
+ "@univerjs/docs": "0.2.6",
57
+ "@univerjs/engine-formula": "0.2.6",
58
+ "@univerjs/rpc": "0.2.6",
59
+ "@univerjs/engine-render": "0.2.6",
60
+ "@univerjs/sheets": "0.2.6",
61
+ "@univerjs/sheets-ui": "0.2.6",
62
+ "@univerjs/ui": "0.2.6"
64
63
  },
65
64
  "dependencies": {
66
- "@univerjs/icons": "^0.1.65"
65
+ "@univerjs/icons": "^0.1.70"
67
66
  },
68
67
  "devDependencies": {
69
68
  "@types/react": "^18.3.3",
70
69
  "@vitejs/plugin-react": "^4.3.1",
71
- "@wendellhu/redi": "0.16.0",
72
70
  "less": "^4.2.0",
73
71
  "react": "18.3.1",
74
72
  "rxjs": "^7.8.1",
75
- "typescript": "^5.5.3",
76
- "vite": "^5.3.4",
77
- "vitest": "^2.0.3",
78
- "@univerjs/core": "0.2.4",
79
- "@univerjs/design": "0.2.4",
80
- "@univerjs/docs": "0.2.4",
81
- "@univerjs/engine-formula": "0.2.4",
82
- "@univerjs/engine-render": "0.2.4",
83
- "@univerjs/rpc": "0.2.4",
84
- "@univerjs/shared": "0.2.4",
85
- "@univerjs/sheets-numfmt": "0.2.4",
86
- "@univerjs/sheets-ui": "0.2.4",
87
- "@univerjs/sheets": "0.2.4",
88
- "@univerjs/ui": "0.2.4"
73
+ "typescript": "^5.5.4",
74
+ "vite": "^5.3.5",
75
+ "vitest": "^2.0.4",
76
+ "@univerjs/core": "0.2.6",
77
+ "@univerjs/design": "0.2.6",
78
+ "@univerjs/docs": "0.2.6",
79
+ "@univerjs/engine-formula": "0.2.6",
80
+ "@univerjs/rpc": "0.2.6",
81
+ "@univerjs/shared": "0.2.6",
82
+ "@univerjs/engine-render": "0.2.6",
83
+ "@univerjs/sheets": "0.2.6",
84
+ "@univerjs/sheets-numfmt": "0.2.6",
85
+ "@univerjs/sheets-ui": "0.2.6",
86
+ "@univerjs/ui": "0.2.6"
89
87
  },
90
88
  "univerSpace": {
91
89
  ".": {