@univerjs/engine-formula 0.4.1 → 0.4.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.
Files changed (116) hide show
  1. package/lib/cjs/index.js +2 -2
  2. package/lib/es/index.js +2865 -784
  3. package/lib/types/basics/database.d.ts +31 -0
  4. package/lib/types/basics/inverted-index-cache.d.ts +7 -18
  5. package/lib/types/basics/math.d.ts +12 -0
  6. package/lib/types/commands/mutations/set-formula-calculation.mutation.d.ts +0 -1
  7. package/lib/types/controller/calculate.controller.d.ts +0 -1
  8. package/lib/types/controller/config.schema.d.ts +5 -1
  9. package/lib/types/engine/analysis/__tests__/dependency.spec.d.ts +16 -0
  10. package/lib/types/engine/ast-node/base-ast-node.d.ts +1 -1
  11. package/lib/types/engine/ast-node/function-node.d.ts +2 -0
  12. package/lib/types/engine/ast-node/node-type.d.ts +13 -13
  13. package/lib/types/engine/dependency/dependency-tree.d.ts +14 -6
  14. package/lib/types/engine/reference-object/base-reference-object.d.ts +10 -0
  15. package/lib/types/engine/utils/char-kit.d.ts +5 -7
  16. package/lib/types/engine/utils/numfmt-kit.d.ts +13 -1
  17. package/lib/types/engine/utils/reference-cache.d.ts +3 -0
  18. package/lib/types/engine/utils/reference.d.ts +0 -2
  19. package/lib/types/engine/value-object/array-value-object.d.ts +1 -0
  20. package/lib/types/functions/base-function.d.ts +26 -1
  21. package/lib/types/functions/database/daverage/__tests__/index.spec.d.ts +16 -0
  22. package/lib/types/functions/database/daverage/index.d.ts +8 -0
  23. package/lib/types/functions/database/dcount/__tests__/index.spec.d.ts +16 -0
  24. package/lib/types/functions/database/dcount/index.d.ts +8 -0
  25. package/lib/types/functions/database/dcounta/__tests__/index.spec.d.ts +16 -0
  26. package/lib/types/functions/database/dcounta/index.d.ts +8 -0
  27. package/lib/types/functions/database/dget/__tests__/index.spec.d.ts +16 -0
  28. package/lib/types/functions/database/dget/index.d.ts +7 -0
  29. package/lib/types/functions/database/dmax/__tests__/index.spec.d.ts +16 -0
  30. package/lib/types/functions/database/dmax/index.d.ts +8 -0
  31. package/lib/types/functions/database/dmin/__tests__/index.spec.d.ts +16 -0
  32. package/lib/types/functions/database/dmin/index.d.ts +8 -0
  33. package/lib/types/functions/database/dproduct/__tests__/index.spec.d.ts +16 -0
  34. package/lib/types/functions/database/dproduct/index.d.ts +8 -0
  35. package/lib/types/functions/database/dstdev/__tests__/index.spec.d.ts +16 -0
  36. package/lib/types/functions/database/dstdev/index.d.ts +8 -0
  37. package/lib/types/functions/database/dstdevp/__tests__/index.spec.d.ts +16 -0
  38. package/lib/types/functions/database/dstdevp/index.d.ts +8 -0
  39. package/lib/types/functions/database/dsum/__tests__/index.spec.d.ts +16 -0
  40. package/lib/types/functions/database/dsum/index.d.ts +8 -0
  41. package/lib/types/functions/database/dvar/__tests__/index.spec.d.ts +16 -0
  42. package/lib/types/functions/database/dvar/index.d.ts +8 -0
  43. package/lib/types/functions/database/dvarp/__tests__/index.spec.d.ts +16 -0
  44. package/lib/types/functions/database/dvarp/index.d.ts +8 -0
  45. package/lib/types/functions/database/function-map.d.ts +3 -16
  46. package/lib/types/functions/financial/db/index.d.ts +1 -0
  47. package/lib/types/functions/financial/ddb/index.d.ts +1 -0
  48. package/lib/types/functions/financial/fv/index.d.ts +2 -1
  49. package/lib/types/functions/financial/ipmt/index.d.ts +2 -1
  50. package/lib/types/functions/financial/npv/index.d.ts +1 -0
  51. package/lib/types/functions/financial/pmt/index.d.ts +2 -1
  52. package/lib/types/functions/financial/ppmt/index.d.ts +2 -1
  53. package/lib/types/functions/financial/pv/index.d.ts +2 -1
  54. package/lib/types/functions/financial/sln/index.d.ts +1 -0
  55. package/lib/types/functions/financial/syd/index.d.ts +1 -0
  56. package/lib/types/functions/financial/tbillprice/index.d.ts +1 -0
  57. package/lib/types/functions/financial/vdb/index.d.ts +1 -0
  58. package/lib/types/functions/information/function-map.d.ts +1 -1
  59. package/lib/types/functions/information/sheet/__tests__/index.spec.d.ts +16 -0
  60. package/lib/types/functions/information/sheet/index.d.ts +10 -0
  61. package/lib/types/functions/information/sheets/__tests__/index.spec.d.ts +16 -0
  62. package/lib/types/functions/information/sheets/index.d.ts +8 -0
  63. package/lib/types/functions/lookup/xlookup/index.d.ts +1 -1
  64. package/lib/types/functions/math/arabic/__tests__/index.spec.d.ts +16 -0
  65. package/lib/types/functions/math/arabic/index.d.ts +8 -0
  66. package/lib/types/functions/math/roman/__tests__/index.spec.d.ts +16 -0
  67. package/lib/types/functions/math/roman/index.d.ts +9 -0
  68. package/lib/types/functions/math/sumif/index.d.ts +3 -1
  69. package/lib/types/functions/text/arraytotext/__test__/index.spec.d.ts +16 -0
  70. package/lib/types/functions/text/arraytotext/index.d.ts +9 -0
  71. package/lib/types/functions/text/asc/__test__/index.spec.d.ts +16 -0
  72. package/lib/types/functions/text/asc/index.d.ts +8 -0
  73. package/lib/types/functions/text/bahttext/__test__/index.spec.d.ts +16 -0
  74. package/lib/types/functions/text/bahttext/index.d.ts +9 -0
  75. package/lib/types/functions/text/char/__test__/index.spec.d.ts +16 -0
  76. package/lib/types/functions/text/char/index.d.ts +8 -0
  77. package/lib/types/functions/text/clean/__test__/index.spec.d.ts +16 -0
  78. package/lib/types/functions/text/clean/index.d.ts +8 -0
  79. package/lib/types/functions/text/code/__test__/index.spec.d.ts +16 -0
  80. package/lib/types/functions/text/code/index.d.ts +8 -0
  81. package/lib/types/functions/text/dbcs/__test__/index.spec.d.ts +16 -0
  82. package/lib/types/functions/text/dbcs/index.d.ts +8 -0
  83. package/lib/types/functions/text/dollar/__test__/index.spec.d.ts +16 -0
  84. package/lib/types/functions/text/dollar/index.d.ts +9 -0
  85. package/lib/types/functions/text/exact/__test__/index.spec.d.ts +16 -0
  86. package/lib/types/functions/text/exact/index.d.ts +8 -0
  87. package/lib/types/functions/text/fixed/__test__/index.spec.d.ts +16 -0
  88. package/lib/types/functions/text/fixed/index.d.ts +8 -0
  89. package/lib/types/functions/text/leftb/index.d.ts +1 -2
  90. package/lib/types/functions/text/numbervalue/__test__/index.spec.d.ts +16 -0
  91. package/lib/types/functions/text/numbervalue/index.d.ts +8 -0
  92. package/lib/types/functions/text/proper/__test__/index.spec.d.ts +16 -0
  93. package/lib/types/functions/text/proper/index.d.ts +8 -0
  94. package/lib/types/functions/text/right/__test__/index.spec.d.ts +16 -0
  95. package/lib/types/functions/text/right/index.d.ts +8 -0
  96. package/lib/types/functions/text/rightb/__test__/index.spec.d.ts +16 -0
  97. package/lib/types/functions/text/rightb/index.d.ts +8 -0
  98. package/lib/types/functions/text/substitute/__test__/index.spec.d.ts +16 -0
  99. package/lib/types/functions/text/substitute/index.d.ts +9 -0
  100. package/lib/types/functions/text/t/__test__/index.spec.d.ts +16 -0
  101. package/lib/types/functions/text/t/index.d.ts +7 -0
  102. package/lib/types/functions/text/unichar/__test__/index.spec.d.ts +16 -0
  103. package/lib/types/functions/text/unichar/index.d.ts +8 -0
  104. package/lib/types/functions/text/unicode/__test__/index.spec.d.ts +16 -0
  105. package/lib/types/functions/text/unicode/index.d.ts +8 -0
  106. package/lib/types/functions/text/value/__test__/index.spec.d.ts +16 -0
  107. package/lib/types/functions/text/value/index.d.ts +8 -0
  108. package/lib/types/functions/text/valuetotext/__test__/index.spec.d.ts +16 -0
  109. package/lib/types/functions/text/valuetotext/index.d.ts +8 -0
  110. package/lib/types/index.d.ts +2 -3
  111. package/lib/types/services/calculate-formula.service.d.ts +3 -4
  112. package/lib/types/services/current-data.service.d.ts +17 -2
  113. package/lib/types/services/dependency-manager.service.d.ts +17 -9
  114. package/lib/types/services/runtime.service.d.ts +10 -9
  115. package/lib/umd/index.js +2 -2
  116. package/package.json +5 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/engine-formula",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "private": false,
5
5
  "description": "UniverSheet normal base-formula-engine",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -49,17 +49,18 @@
49
49
  "rxjs": ">=7.0.0"
50
50
  },
51
51
  "dependencies": {
52
+ "@flatten-js/interval-tree": "^1.1.3",
52
53
  "decimal.js": "^10.4.3",
53
54
  "numfmt": "^2.5.2",
54
- "@univerjs/core": "0.4.1",
55
- "@univerjs/rpc": "0.4.1"
55
+ "@univerjs/core": "0.4.2",
56
+ "@univerjs/rpc": "0.4.2"
56
57
  },
57
58
  "devDependencies": {
58
59
  "rxjs": "^7.8.1",
59
60
  "typescript": "^5.6.3",
60
61
  "vite": "^5.4.8",
61
62
  "vitest": "^2.1.2",
62
- "@univerjs-infra/shared": "0.4.1"
63
+ "@univerjs-infra/shared": "0.4.2"
63
64
  },
64
65
  "univerSpace": {
65
66
  ".": {