@univerjs/sheets-formula 0.1.0-beta.3 → 0.1.0-beta.5

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 (34) hide show
  1. package/lib/cjs/index.js +23 -7
  2. package/lib/es/index.js +2918 -2552
  3. package/lib/index.css +1 -1
  4. package/lib/types/commands/operations/insert-function.operation.d.ts +1 -1
  5. package/lib/types/controllers/array-formula-display.controller.d.ts +3 -2
  6. package/lib/types/controllers/menu.d.ts +1 -1
  7. package/lib/types/controllers/numfmt-formula-display.controller.d.ts +28 -0
  8. package/lib/types/controllers/prompt.controller.d.ts +1 -0
  9. package/lib/types/controllers/trigger-calculation.controller.d.ts +5 -1
  10. package/lib/types/controllers/update-formula.controller.d.ts +1 -1
  11. package/lib/types/locale/en-US.d.ts +104 -57
  12. package/lib/types/locale/function-list/date/en-US.d.ts +12 -29
  13. package/lib/types/locale/function-list/date/ja-JP.d.ts +12 -29
  14. package/lib/types/locale/function-list/date/zh-CN.d.ts +12 -29
  15. package/lib/types/locale/function-list/information/en-US.d.ts +1 -5
  16. package/lib/types/locale/function-list/information/ja-JP.d.ts +1 -5
  17. package/lib/types/locale/function-list/information/zh-CN.d.ts +1 -5
  18. package/lib/types/locale/function-list/logical/en-US.d.ts +10 -6
  19. package/lib/types/locale/function-list/logical/ja-JP.d.ts +10 -6
  20. package/lib/types/locale/function-list/logical/zh-CN.d.ts +10 -6
  21. package/lib/types/locale/function-list/lookup/en-US.d.ts +64 -12
  22. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +64 -12
  23. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +64 -12
  24. package/lib/types/locale/function-list/math/en-US.d.ts +15 -3
  25. package/lib/types/locale/function-list/math/ja-JP.d.ts +20 -4
  26. package/lib/types/locale/function-list/math/zh-CN.d.ts +15 -3
  27. package/lib/types/locale/function-list/statistical/ja-JP.d.ts +2 -2
  28. package/lib/types/locale/function-list/text/en-US.d.ts +2 -2
  29. package/lib/types/locale/function-list/text/ja-JP.d.ts +2 -2
  30. package/lib/types/locale/function-list/text/zh-CN.d.ts +2 -2
  31. package/lib/types/locale/zh-CN.d.ts +104 -57
  32. package/lib/types/services/function-list/array.d.ts +1 -1
  33. package/lib/umd/index.js +22 -6
  34. package/package.json +38 -24
package/package.json CHANGED
@@ -1,9 +1,21 @@
1
1
  {
2
2
  "name": "@univerjs/sheets-formula",
3
- "version": "0.1.0-beta.3",
3
+ "version": "0.1.0-beta.5",
4
4
  "private": false,
5
5
  "author": "DreamNum <developer@univer.ai>",
6
6
  "license": "Apache-2.0",
7
+ "funding": {
8
+ "type": "opencollective",
9
+ "url": "https://opencollective.com/univer"
10
+ },
11
+ "homepage": "https://univer.ai",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/dream-num/univer"
15
+ },
16
+ "bugs": {
17
+ "url": "https://github.com/dream-num/univer/issues"
18
+ },
7
19
  "sideEffects": [
8
20
  "**/*.css"
9
21
  ],
@@ -37,40 +49,42 @@
37
49
  "npm": ">=8.0.0"
38
50
  },
39
51
  "peerDependencies": {
40
- "@wendellhu/redi": ">=0.12.13",
52
+ "@wendellhu/redi": "^0.13.0",
41
53
  "react": ">=16.9.0",
42
54
  "rxjs": ">=7.0.0",
43
- "@univerjs/core": "0.1.0-beta.3",
44
- "@univerjs/design": "0.1.0-beta.3",
45
- "@univerjs/engine-formula": "0.1.0-beta.3",
46
- "@univerjs/engine-render": "0.1.0-beta.3",
47
- "@univerjs/sheets": "0.1.0-beta.3",
48
- "@univerjs/sheets-ui": "0.1.0-beta.3",
49
- "@univerjs/docs": "0.1.0-beta.3",
50
- "@univerjs/ui": "0.1.0-beta.3"
55
+ "@univerjs/docs": "0.1.0-beta.5",
56
+ "@univerjs/core": "0.1.0-beta.5",
57
+ "@univerjs/design": "0.1.0-beta.5",
58
+ "@univerjs/engine-formula": "0.1.0-beta.5",
59
+ "@univerjs/engine-render": "0.1.0-beta.5",
60
+ "@univerjs/sheets": "0.1.0-beta.5",
61
+ "@univerjs/sheets-numfmt": "0.1.0-beta.5",
62
+ "@univerjs/sheets-ui": "0.1.0-beta.5",
63
+ "@univerjs/ui": "0.1.0-beta.5"
51
64
  },
52
65
  "dependencies": {
53
- "@univerjs/icons": "^0.1.26"
66
+ "@univerjs/icons": "^0.1.28"
54
67
  },
55
68
  "devDependencies": {
56
- "@types/react": "^18.2.48",
69
+ "@types/react": "^18.2.57",
57
70
  "@vitejs/plugin-react": "^4.2.1",
58
- "@wendellhu/redi": "^0.12.13",
71
+ "@wendellhu/redi": "^0.13.0",
59
72
  "less": "^4.2.0",
60
73
  "react": "^18.2.0",
61
74
  "rxjs": "^7.8.1",
62
75
  "typescript": "^5.3.3",
63
- "vite": "^5.0.12",
64
- "vitest": "^1.2.1",
65
- "@univerjs/core": "0.1.0-beta.3",
66
- "@univerjs/design": "0.1.0-beta.3",
67
- "@univerjs/docs": "0.1.0-beta.3",
68
- "@univerjs/shared": "0.1.0-beta.3",
69
- "@univerjs/engine-formula": "0.1.0-beta.3",
70
- "@univerjs/engine-render": "0.1.0-beta.3",
71
- "@univerjs/sheets": "0.1.0-beta.3",
72
- "@univerjs/sheets-ui": "0.1.0-beta.3",
73
- "@univerjs/ui": "0.1.0-beta.3"
76
+ "vite": "^5.1.4",
77
+ "vitest": "^1.3.1",
78
+ "@univerjs/docs": "0.1.0-beta.5",
79
+ "@univerjs/engine-formula": "0.1.0-beta.5",
80
+ "@univerjs/core": "0.1.0-beta.5",
81
+ "@univerjs/design": "0.1.0-beta.5",
82
+ "@univerjs/engine-render": "0.1.0-beta.5",
83
+ "@univerjs/shared": "0.1.0-beta.5",
84
+ "@univerjs/sheets": "0.1.0-beta.5",
85
+ "@univerjs/sheets-numfmt": "0.1.0-beta.5",
86
+ "@univerjs/ui": "0.1.0-beta.5",
87
+ "@univerjs/sheets-ui": "0.1.0-beta.5"
74
88
  },
75
89
  "scripts": {
76
90
  "lint:types": "tsc --noEmit",