@univerjs/engine-formula 1.0.0-alpha.8 → 1.0.0-beta.0

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 (28) hide show
  1. package/lib/cjs/index.js +955 -857
  2. package/lib/es/index.js +955 -857
  3. package/lib/index.js +955 -857
  4. package/lib/types/basics/regex.d.ts +4 -4
  5. package/lib/types/engine/analysis/lexer-tree-builder.d.ts +4 -0
  6. package/lib/types/engine/analysis/lexer.d.ts +4 -2
  7. package/lib/types/engine/ast-node/base-ast-node.d.ts +1 -0
  8. package/lib/types/engine/ast-node/function-node.d.ts +1 -0
  9. package/lib/types/engine/ast-node/union-node.d.ts +8 -2
  10. package/lib/types/engine/reference-object/base-reference-object.d.ts +2 -1
  11. package/lib/types/engine/reference-object/multi-area-reference-object.d.ts +11 -3
  12. package/lib/types/engine/reference-object/table-reference-object.d.ts +1 -1
  13. package/lib/types/engine/utils/generate-ast-node.d.ts +1 -1
  14. package/lib/types/functions/base-function.d.ts +4 -0
  15. package/lib/types/functions/compatibility/rank/index.d.ts +1 -0
  16. package/lib/types/functions/information/isblank/index.d.ts +3 -3
  17. package/lib/types/functions/lookup/choose/index.d.ts +1 -0
  18. package/lib/types/functions/lookup/function-map.d.ts +4 -1
  19. package/lib/types/functions/lookup/match/index.d.ts +1 -0
  20. package/lib/types/functions/math/sumproduct/index.d.ts +1 -0
  21. package/lib/types/functions/statistical/median/index.d.ts +1 -0
  22. package/lib/types/functions/statistical/percentile-exc/index.d.ts +1 -0
  23. package/lib/types/functions/statistical/percentile-inc/index.d.ts +1 -0
  24. package/lib/types/functions/statistical/rank-avg/index.d.ts +1 -0
  25. package/lib/types/functions/statistical/rank-eq/index.d.ts +1 -0
  26. package/lib/types/functions/text/textjoin/index.d.ts +1 -0
  27. package/lib/umd/index.js +4 -4
  28. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/engine-formula",
3
- "version": "1.0.0-alpha.8",
3
+ "version": "1.0.0-beta.0",
4
4
  "private": false,
5
5
  "description": "Formula parsing, function registration, dependency management, and calculation engine for Univer.",
6
6
  "author": "DreamNum Co., Ltd. <developer@univer.ai>",
@@ -69,14 +69,14 @@
69
69
  "dependencies": {
70
70
  "@flatten-js/interval-tree": "1.1.3",
71
71
  "decimal.js": "^10.6.0",
72
- "@univerjs/core": "1.0.0-alpha.8",
73
- "@univerjs/rpc": "1.0.0-alpha.8"
72
+ "@univerjs/rpc": "1.0.0-beta.0",
73
+ "@univerjs/core": "1.0.0-beta.0"
74
74
  },
75
75
  "devDependencies": {
76
76
  "rxjs": "^7.8.2",
77
77
  "typescript": "^6.0.3",
78
78
  "vitest": "^4.1.10",
79
- "@univerjs-infra/shared": "1.0.0-alpha.8"
79
+ "@univerjs-infra/shared": "1.0.0-beta.0"
80
80
  },
81
81
  "scripts": {
82
82
  "test": "vitest run",