@univerjs/sheets-formula 0.1.1 → 0.1.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/README.md +775 -2
- package/lib/cjs/index.js +21 -9
- package/lib/es/index.js +1372 -1427
- package/lib/types/controllers/prompt.controller.d.ts +1 -1
- package/lib/types/locale/en-US.d.ts +42 -78
- package/lib/types/locale/function-list/information/en-US.d.ts +8 -40
- package/lib/types/locale/function-list/information/zh-CN.d.ts +8 -40
- package/lib/types/locale/function-list/lookup/en-US.d.ts +16 -24
- package/lib/types/locale/function-list/lookup/ja-JP.d.ts +16 -24
- package/lib/types/locale/function-list/lookup/zh-CN.d.ts +16 -24
- package/lib/types/locale/function-list/math/en-US.d.ts +10 -6
- package/lib/types/locale/function-list/math/ja-JP.d.ts +10 -6
- package/lib/types/locale/function-list/math/zh-CN.d.ts +10 -6
- package/lib/types/locale/function-list/statistical/en-US.d.ts +8 -8
- package/lib/types/locale/function-list/statistical/ja-JP.d.ts +8 -8
- package/lib/types/locale/function-list/statistical/zh-CN.d.ts +8 -8
- package/lib/types/locale/zh-CN.d.ts +42 -78
- package/lib/umd/index.js +21 -9
- package/package.json +21 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/sheets-formula",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "DreamNum <developer@univer.ai>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -52,18 +52,18 @@
|
|
|
52
52
|
"@wendellhu/redi": "^0.13.0",
|
|
53
53
|
"react": ">=16.9.0",
|
|
54
54
|
"rxjs": ">=7.0.0",
|
|
55
|
-
"@univerjs/core": "0.1.
|
|
56
|
-
"@univerjs/design": "0.1.
|
|
57
|
-
"@univerjs/docs": "0.1.
|
|
58
|
-
"@univerjs/engine-formula": "0.1.
|
|
59
|
-
"@univerjs/
|
|
60
|
-
"@univerjs/sheets": "0.1.
|
|
61
|
-
"@univerjs/
|
|
62
|
-
"@univerjs/sheets-ui": "0.1.
|
|
63
|
-
"@univerjs/ui": "0.1.
|
|
55
|
+
"@univerjs/core": "0.1.2",
|
|
56
|
+
"@univerjs/design": "0.1.2",
|
|
57
|
+
"@univerjs/docs": "0.1.2",
|
|
58
|
+
"@univerjs/engine-formula": "0.1.2",
|
|
59
|
+
"@univerjs/sheets": "0.1.2",
|
|
60
|
+
"@univerjs/sheets-numfmt": "0.1.2",
|
|
61
|
+
"@univerjs/engine-render": "0.1.2",
|
|
62
|
+
"@univerjs/sheets-ui": "0.1.2",
|
|
63
|
+
"@univerjs/ui": "0.1.2"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@univerjs/icons": "^0.1.
|
|
66
|
+
"@univerjs/icons": "^0.1.30"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@types/react": "^18.2.57",
|
|
@@ -75,16 +75,16 @@
|
|
|
75
75
|
"typescript": "^5.3.3",
|
|
76
76
|
"vite": "^5.1.4",
|
|
77
77
|
"vitest": "^1.3.1",
|
|
78
|
-
"@univerjs/core": "0.1.
|
|
79
|
-
"@univerjs/
|
|
80
|
-
"@univerjs/
|
|
81
|
-
"@univerjs/
|
|
82
|
-
"@univerjs/
|
|
83
|
-
"@univerjs/
|
|
84
|
-
"@univerjs/sheets": "0.1.
|
|
85
|
-
"@univerjs/sheets-numfmt": "0.1.
|
|
86
|
-
"@univerjs/ui": "0.1.
|
|
87
|
-
"@univerjs/
|
|
78
|
+
"@univerjs/core": "0.1.2",
|
|
79
|
+
"@univerjs/docs": "0.1.2",
|
|
80
|
+
"@univerjs/design": "0.1.2",
|
|
81
|
+
"@univerjs/engine-formula": "0.1.2",
|
|
82
|
+
"@univerjs/engine-render": "0.1.2",
|
|
83
|
+
"@univerjs/shared": "0.1.2",
|
|
84
|
+
"@univerjs/sheets": "0.1.2",
|
|
85
|
+
"@univerjs/sheets-numfmt": "0.1.2",
|
|
86
|
+
"@univerjs/sheets-ui": "0.1.2",
|
|
87
|
+
"@univerjs/ui": "0.1.2"
|
|
88
88
|
},
|
|
89
89
|
"scripts": {
|
|
90
90
|
"lint:types": "tsc --noEmit",
|