@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.
- package/lib/cjs/index.js +23 -7
- package/lib/es/index.js +2918 -2552
- package/lib/index.css +1 -1
- package/lib/types/commands/operations/insert-function.operation.d.ts +1 -1
- package/lib/types/controllers/array-formula-display.controller.d.ts +3 -2
- package/lib/types/controllers/menu.d.ts +1 -1
- package/lib/types/controllers/numfmt-formula-display.controller.d.ts +28 -0
- package/lib/types/controllers/prompt.controller.d.ts +1 -0
- package/lib/types/controllers/trigger-calculation.controller.d.ts +5 -1
- package/lib/types/controllers/update-formula.controller.d.ts +1 -1
- package/lib/types/locale/en-US.d.ts +104 -57
- package/lib/types/locale/function-list/date/en-US.d.ts +12 -29
- package/lib/types/locale/function-list/date/ja-JP.d.ts +12 -29
- package/lib/types/locale/function-list/date/zh-CN.d.ts +12 -29
- package/lib/types/locale/function-list/information/en-US.d.ts +1 -5
- package/lib/types/locale/function-list/information/ja-JP.d.ts +1 -5
- package/lib/types/locale/function-list/information/zh-CN.d.ts +1 -5
- package/lib/types/locale/function-list/logical/en-US.d.ts +10 -6
- package/lib/types/locale/function-list/logical/ja-JP.d.ts +10 -6
- package/lib/types/locale/function-list/logical/zh-CN.d.ts +10 -6
- package/lib/types/locale/function-list/lookup/en-US.d.ts +64 -12
- package/lib/types/locale/function-list/lookup/ja-JP.d.ts +64 -12
- package/lib/types/locale/function-list/lookup/zh-CN.d.ts +64 -12
- package/lib/types/locale/function-list/math/en-US.d.ts +15 -3
- package/lib/types/locale/function-list/math/ja-JP.d.ts +20 -4
- package/lib/types/locale/function-list/math/zh-CN.d.ts +15 -3
- package/lib/types/locale/function-list/statistical/ja-JP.d.ts +2 -2
- package/lib/types/locale/function-list/text/en-US.d.ts +2 -2
- package/lib/types/locale/function-list/text/ja-JP.d.ts +2 -2
- package/lib/types/locale/function-list/text/zh-CN.d.ts +2 -2
- package/lib/types/locale/zh-CN.d.ts +104 -57
- package/lib/types/services/function-list/array.d.ts +1 -1
- package/lib/umd/index.js +22 -6
- 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
|
+
"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": "
|
|
52
|
+
"@wendellhu/redi": "^0.13.0",
|
|
41
53
|
"react": ">=16.9.0",
|
|
42
54
|
"rxjs": ">=7.0.0",
|
|
43
|
-
"@univerjs/
|
|
44
|
-
"@univerjs/
|
|
45
|
-
"@univerjs/
|
|
46
|
-
"@univerjs/engine-
|
|
47
|
-
"@univerjs/
|
|
48
|
-
"@univerjs/sheets
|
|
49
|
-
"@univerjs/
|
|
50
|
-
"@univerjs/ui": "0.1.0-beta.
|
|
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.
|
|
66
|
+
"@univerjs/icons": "^0.1.28"
|
|
54
67
|
},
|
|
55
68
|
"devDependencies": {
|
|
56
|
-
"@types/react": "^18.2.
|
|
69
|
+
"@types/react": "^18.2.57",
|
|
57
70
|
"@vitejs/plugin-react": "^4.2.1",
|
|
58
|
-
"@wendellhu/redi": "^0.
|
|
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.
|
|
64
|
-
"vitest": "^1.
|
|
65
|
-
"@univerjs/
|
|
66
|
-
"@univerjs/
|
|
67
|
-
"@univerjs/
|
|
68
|
-
"@univerjs/
|
|
69
|
-
"@univerjs/engine-
|
|
70
|
-
"@univerjs/
|
|
71
|
-
"@univerjs/sheets": "0.1.0-beta.
|
|
72
|
-
"@univerjs/sheets-
|
|
73
|
-
"@univerjs/ui": "0.1.0-beta.
|
|
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",
|