@univerjs/sheets-formula 0.1.0-beta.0 → 0.1.0-beta.2
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 +8 -6
- package/lib/es/index.js +13695 -2372
- package/lib/index.css +1 -1
- package/lib/types/commands/operations/insert-function.operation.d.ts +12 -1
- package/lib/types/controllers/utils.d.ts +3 -2
- package/lib/types/formula-ui-plugin.d.ts +6 -1
- package/lib/types/index.d.ts +6 -0
- package/lib/types/locale/en-US.d.ts +89 -80
- package/lib/types/locale/function-list/compatibility/en-US.d.ts +0 -54
- package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +0 -54
- package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +0 -54
- package/lib/types/locale/function-list/logical/en-US.d.ts +6 -2
- package/lib/types/locale/function-list/logical/ja-JP.d.ts +6 -2
- package/lib/types/locale/function-list/logical/zh-CN.d.ts +6 -2
- package/lib/types/locale/function-list/lookup/en-US.d.ts +24 -4
- package/lib/types/locale/function-list/lookup/ja-JP.d.ts +24 -4
- package/lib/types/locale/function-list/lookup/zh-CN.d.ts +24 -4
- package/lib/types/locale/function-list/math/en-US.d.ts +4 -20
- package/lib/types/locale/function-list/math/ja-JP.d.ts +4 -20
- package/lib/types/locale/function-list/math/zh-CN.d.ts +4 -20
- package/lib/types/locale/zh-CN.d.ts +89 -80
- package/lib/types/services/description.service.d.ts +22 -1
- package/lib/types/services/formula-custom-function.service.d.ts +34 -0
- package/lib/types/services/function-list/array.d.ts +1 -1
- package/lib/types/services/function-list/compatibility.d.ts +1 -1
- package/lib/types/services/function-list/cube.d.ts +1 -1
- package/lib/types/services/function-list/database.d.ts +1 -1
- package/lib/types/services/function-list/date.d.ts +1 -1
- package/lib/types/services/function-list/engineering.d.ts +1 -1
- package/lib/types/services/function-list/financial.d.ts +1 -1
- package/lib/types/services/function-list/information.d.ts +1 -1
- package/lib/types/services/function-list/logical.d.ts +1 -1
- package/lib/types/services/function-list/lookup.d.ts +1 -1
- package/lib/types/services/function-list/text.d.ts +1 -1
- package/lib/types/services/function-list/web.d.ts +1 -1
- package/lib/types/services/register-function.service.d.ts +70 -0
- package/lib/umd/index.js +8 -6
- package/package.json +26 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/sheets-formula",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.2",
|
|
4
4
|
"author": "DreamNum <developer@univer.ai>",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./lib/cjs/index.js",
|
|
@@ -33,43 +33,43 @@
|
|
|
33
33
|
],
|
|
34
34
|
"private": false,
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@univerjs/icons": "^0.1.
|
|
36
|
+
"@univerjs/icons": "^0.1.25",
|
|
37
|
+
"@wendellhu/redi": "^0.12.13",
|
|
38
|
+
"react": "^18.2.0",
|
|
39
|
+
"rxjs": "^7.8.1",
|
|
40
|
+
"@univerjs/core": "0.1.0-beta.2",
|
|
41
|
+
"@univerjs/design": "0.1.0-beta.2",
|
|
42
|
+
"@univerjs/docs": "0.1.0-beta.2",
|
|
43
|
+
"@univerjs/engine-render": "0.1.0-beta.2",
|
|
44
|
+
"@univerjs/engine-formula": "0.1.0-beta.2",
|
|
45
|
+
"@univerjs/sheets": "0.1.0-beta.2",
|
|
46
|
+
"@univerjs/sheets-ui": "0.1.0-beta.2",
|
|
47
|
+
"@univerjs/ui": "0.1.0-beta.2"
|
|
37
48
|
},
|
|
38
49
|
"devDependencies": {
|
|
39
|
-
"@types/react": "^18.2.
|
|
50
|
+
"@types/react": "^18.2.46",
|
|
40
51
|
"@vitejs/plugin-react": "^4.2.1",
|
|
41
|
-
"@vitest/coverage-istanbul": "^1.
|
|
42
|
-
"@wendellhu/redi": "^0.12.12",
|
|
52
|
+
"@vitest/coverage-istanbul": "^1.1.1",
|
|
43
53
|
"happy-dom": "^12.10.3",
|
|
44
54
|
"less": "^4.2.0",
|
|
45
|
-
"react": "^18.2.0",
|
|
46
|
-
"rxjs": "^7.8.1",
|
|
47
55
|
"typescript": "^5.3.3",
|
|
48
|
-
"vite": "^5.0.
|
|
49
|
-
"vite-plugin-dts": "^3.
|
|
56
|
+
"vite": "^5.0.10",
|
|
57
|
+
"vite-plugin-dts": "^3.7.0",
|
|
50
58
|
"vite-plugin-externals": "^0.6.2",
|
|
51
|
-
"vitest": "^1.
|
|
52
|
-
"@univerjs/core": "0.1.0-beta.0",
|
|
53
|
-
"@univerjs/design": "0.1.0-beta.0",
|
|
54
|
-
"@univerjs/engine-formula": "0.1.0-beta.0",
|
|
55
|
-
"@univerjs/engine-render": "0.1.0-beta.0",
|
|
56
|
-
"@univerjs/sheets": "0.1.0-beta.0",
|
|
57
|
-
"@univerjs/sheets-ui": "0.1.0-beta.0",
|
|
58
|
-
"@univerjs/docs": "0.1.0-beta.0",
|
|
59
|
-
"@univerjs/ui": "0.1.0-beta.0"
|
|
59
|
+
"vitest": "^1.1.1"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
62
|
"@wendellhu/redi": ">=0.12.12",
|
|
63
63
|
"react": ">=16.9.0",
|
|
64
64
|
"rxjs": ">=7.0.0",
|
|
65
|
-
"@univerjs/core": "0.1.0-beta.
|
|
66
|
-
"@univerjs/design": "0.1.0-beta.
|
|
67
|
-
"@univerjs/docs": "0.1.0-beta.
|
|
68
|
-
"@univerjs/engine-
|
|
69
|
-
"@univerjs/
|
|
70
|
-
"@univerjs/
|
|
71
|
-
"@univerjs/ui": "0.1.0-beta.
|
|
72
|
-
"@univerjs/
|
|
65
|
+
"@univerjs/core": "0.1.0-beta.2",
|
|
66
|
+
"@univerjs/design": "0.1.0-beta.2",
|
|
67
|
+
"@univerjs/docs": "0.1.0-beta.2",
|
|
68
|
+
"@univerjs/engine-formula": "0.1.0-beta.2",
|
|
69
|
+
"@univerjs/engine-render": "0.1.0-beta.2",
|
|
70
|
+
"@univerjs/sheets": "0.1.0-beta.2",
|
|
71
|
+
"@univerjs/sheets-ui": "0.1.0-beta.2",
|
|
72
|
+
"@univerjs/ui": "0.1.0-beta.2"
|
|
73
73
|
},
|
|
74
74
|
"scripts": {
|
|
75
75
|
"build": "tsc && vite build"
|