@univerjs/engine-formula 0.10.8 → 0.10.9
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 +2 -2
- package/lib/es/index.js +2045 -1967
- package/lib/index.js +2045 -1967
- package/lib/types/engine/utils/value-object.d.ts +17 -2
- package/lib/types/functions/compatibility/betadist/index.d.ts +1 -1
- package/lib/types/functions/compatibility/hypgeomdist/index.d.ts +1 -1
- package/lib/types/functions/compatibility/lognormdist/index.d.ts +1 -1
- package/lib/types/functions/compatibility/negbinomdist/index.d.ts +1 -1
- package/lib/types/functions/compatibility/normsdist/index.d.ts +2 -2
- package/lib/types/functions/compatibility/tdist/index.d.ts +1 -1
- package/lib/types/functions/logical/if/index.d.ts +1 -2
- package/lib/types/functions/lookup/function-map.d.ts +1 -3
- package/lib/types/functions/lookup/xlookup/index.d.ts +1 -2
- package/lib/types/functions/lookup/xmatch/index.d.ts +3 -3
- package/lib/types/functions/math/sumifs/index.d.ts +3 -1
- package/lib/types/functions/statistical/averageif/index.d.ts +2 -9
- package/lib/types/functions/statistical/averageifs/index.d.ts +4 -3
- package/lib/types/functions/statistical/beta-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/beta-inv/index.d.ts +1 -1
- package/lib/types/functions/statistical/binom-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/binom-dist-range/index.d.ts +1 -1
- package/lib/types/functions/statistical/binom-inv/index.d.ts +1 -1
- package/lib/types/functions/statistical/chisq-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/chisq-dist-rt/index.d.ts +1 -1
- package/lib/types/functions/statistical/chisq-inv/index.d.ts +1 -1
- package/lib/types/functions/statistical/chisq-inv-rt/index.d.ts +1 -1
- package/lib/types/functions/statistical/countif/index.d.ts +3 -1
- package/lib/types/functions/statistical/countifs/index.d.ts +4 -2
- package/lib/types/functions/statistical/expon-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/f-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/f-dist-rt/index.d.ts +1 -1
- package/lib/types/functions/statistical/f-inv/index.d.ts +1 -1
- package/lib/types/functions/statistical/f-inv-rt/index.d.ts +1 -1
- package/lib/types/functions/statistical/forecast/index.d.ts +1 -1
- package/lib/types/functions/statistical/function-map.d.ts +1 -2
- package/lib/types/functions/statistical/gamma-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/gamma-inv/index.d.ts +1 -1
- package/lib/types/functions/statistical/hypgeom-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/lognorm-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/lognorm-inv/index.d.ts +1 -1
- package/lib/types/functions/statistical/maxifs/index.d.ts +4 -3
- package/lib/types/functions/statistical/minifs/index.d.ts +4 -3
- package/lib/types/functions/statistical/negbinom-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/norm-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/norm-inv/index.d.ts +1 -1
- package/lib/types/functions/statistical/norm-s-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/norm-s-inv/index.d.ts +1 -1
- package/lib/types/functions/statistical/poisson-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/prob/index.d.ts +1 -1
- package/lib/types/functions/statistical/standardize/index.d.ts +1 -1
- package/lib/types/functions/statistical/t-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/t-dist-2t/index.d.ts +1 -1
- package/lib/types/functions/statistical/t-dist-rt/index.d.ts +1 -1
- package/lib/types/functions/statistical/t-inv/index.d.ts +1 -1
- package/lib/types/functions/statistical/t-inv-2t/index.d.ts +1 -1
- package/lib/types/functions/statistical/t-test/index.d.ts +1 -1
- package/lib/types/functions/statistical/weibull-dist/index.d.ts +1 -1
- package/lib/types/functions/statistical/z-test/index.d.ts +1 -1
- package/lib/umd/index.js +2 -2
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/engine-formula",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.9",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "UniverSheet normal base-formula-engine",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -60,15 +60,15 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@flatten-js/interval-tree": "^1.1.3",
|
|
62
62
|
"decimal.js": "^10.6.0",
|
|
63
|
-
"@univerjs/core": "0.10.
|
|
64
|
-
"@univerjs/rpc": "0.10.
|
|
63
|
+
"@univerjs/core": "0.10.9",
|
|
64
|
+
"@univerjs/rpc": "0.10.9"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"rxjs": "^7.8.2",
|
|
68
68
|
"typescript": "^5.9.2",
|
|
69
69
|
"vite": "^7.1.4",
|
|
70
70
|
"vitest": "^3.2.4",
|
|
71
|
-
"@univerjs-infra/shared": "0.10.
|
|
71
|
+
"@univerjs-infra/shared": "0.10.9"
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|
|
74
74
|
"test": "vitest run",
|