@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.
Files changed (60) hide show
  1. package/lib/cjs/index.js +2 -2
  2. package/lib/es/index.js +2045 -1967
  3. package/lib/index.js +2045 -1967
  4. package/lib/types/engine/utils/value-object.d.ts +17 -2
  5. package/lib/types/functions/compatibility/betadist/index.d.ts +1 -1
  6. package/lib/types/functions/compatibility/hypgeomdist/index.d.ts +1 -1
  7. package/lib/types/functions/compatibility/lognormdist/index.d.ts +1 -1
  8. package/lib/types/functions/compatibility/negbinomdist/index.d.ts +1 -1
  9. package/lib/types/functions/compatibility/normsdist/index.d.ts +2 -2
  10. package/lib/types/functions/compatibility/tdist/index.d.ts +1 -1
  11. package/lib/types/functions/logical/if/index.d.ts +1 -2
  12. package/lib/types/functions/lookup/function-map.d.ts +1 -3
  13. package/lib/types/functions/lookup/xlookup/index.d.ts +1 -2
  14. package/lib/types/functions/lookup/xmatch/index.d.ts +3 -3
  15. package/lib/types/functions/math/sumifs/index.d.ts +3 -1
  16. package/lib/types/functions/statistical/averageif/index.d.ts +2 -9
  17. package/lib/types/functions/statistical/averageifs/index.d.ts +4 -3
  18. package/lib/types/functions/statistical/beta-dist/index.d.ts +1 -1
  19. package/lib/types/functions/statistical/beta-inv/index.d.ts +1 -1
  20. package/lib/types/functions/statistical/binom-dist/index.d.ts +1 -1
  21. package/lib/types/functions/statistical/binom-dist-range/index.d.ts +1 -1
  22. package/lib/types/functions/statistical/binom-inv/index.d.ts +1 -1
  23. package/lib/types/functions/statistical/chisq-dist/index.d.ts +1 -1
  24. package/lib/types/functions/statistical/chisq-dist-rt/index.d.ts +1 -1
  25. package/lib/types/functions/statistical/chisq-inv/index.d.ts +1 -1
  26. package/lib/types/functions/statistical/chisq-inv-rt/index.d.ts +1 -1
  27. package/lib/types/functions/statistical/countif/index.d.ts +3 -1
  28. package/lib/types/functions/statistical/countifs/index.d.ts +4 -2
  29. package/lib/types/functions/statistical/expon-dist/index.d.ts +1 -1
  30. package/lib/types/functions/statistical/f-dist/index.d.ts +1 -1
  31. package/lib/types/functions/statistical/f-dist-rt/index.d.ts +1 -1
  32. package/lib/types/functions/statistical/f-inv/index.d.ts +1 -1
  33. package/lib/types/functions/statistical/f-inv-rt/index.d.ts +1 -1
  34. package/lib/types/functions/statistical/forecast/index.d.ts +1 -1
  35. package/lib/types/functions/statistical/function-map.d.ts +1 -2
  36. package/lib/types/functions/statistical/gamma-dist/index.d.ts +1 -1
  37. package/lib/types/functions/statistical/gamma-inv/index.d.ts +1 -1
  38. package/lib/types/functions/statistical/hypgeom-dist/index.d.ts +1 -1
  39. package/lib/types/functions/statistical/lognorm-dist/index.d.ts +1 -1
  40. package/lib/types/functions/statistical/lognorm-inv/index.d.ts +1 -1
  41. package/lib/types/functions/statistical/maxifs/index.d.ts +4 -3
  42. package/lib/types/functions/statistical/minifs/index.d.ts +4 -3
  43. package/lib/types/functions/statistical/negbinom-dist/index.d.ts +1 -1
  44. package/lib/types/functions/statistical/norm-dist/index.d.ts +1 -1
  45. package/lib/types/functions/statistical/norm-inv/index.d.ts +1 -1
  46. package/lib/types/functions/statistical/norm-s-dist/index.d.ts +1 -1
  47. package/lib/types/functions/statistical/norm-s-inv/index.d.ts +1 -1
  48. package/lib/types/functions/statistical/poisson-dist/index.d.ts +1 -1
  49. package/lib/types/functions/statistical/prob/index.d.ts +1 -1
  50. package/lib/types/functions/statistical/standardize/index.d.ts +1 -1
  51. package/lib/types/functions/statistical/t-dist/index.d.ts +1 -1
  52. package/lib/types/functions/statistical/t-dist-2t/index.d.ts +1 -1
  53. package/lib/types/functions/statistical/t-dist-rt/index.d.ts +1 -1
  54. package/lib/types/functions/statistical/t-inv/index.d.ts +1 -1
  55. package/lib/types/functions/statistical/t-inv-2t/index.d.ts +1 -1
  56. package/lib/types/functions/statistical/t-test/index.d.ts +1 -1
  57. package/lib/types/functions/statistical/weibull-dist/index.d.ts +1 -1
  58. package/lib/types/functions/statistical/z-test/index.d.ts +1 -1
  59. package/lib/umd/index.js +2 -2
  60. 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.8",
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.8",
64
- "@univerjs/rpc": "0.10.8"
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.8"
71
+ "@univerjs-infra/shared": "0.10.9"
72
72
  },
73
73
  "scripts": {
74
74
  "test": "vitest run",