@univerjs/engine-formula 0.1.0-beta.0 → 0.1.0-beta.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 (95) hide show
  1. package/lib/cjs/index.js +1 -1
  2. package/lib/es/index.js +3852 -3182
  3. package/lib/types/basics/common.d.ts +28 -26
  4. package/lib/types/basics/error-type.d.ts +1 -1
  5. package/lib/types/basics/function.d.ts +5 -1
  6. package/lib/types/basics/inverted-index-cache.d.ts +2 -2
  7. package/lib/types/basics/object-class-type.d.ts +1 -0
  8. package/lib/types/basics/regex.d.ts +9 -10
  9. package/lib/types/commands/mutations/register-function.mutation.d.ts +30 -0
  10. package/lib/types/commands/mutations/unregister-function.mutation.d.ts +30 -0
  11. package/lib/types/controller/formula.controller.d.ts +5 -1
  12. package/lib/types/controller/register-function.controller.d.ts +26 -0
  13. package/lib/types/engine/analysis/__tests__/create-command-test-bed.d.ts +4 -0
  14. package/lib/types/engine/analysis/lexer-tree-builder.d.ts +1 -0
  15. package/lib/types/engine/ast-node/base-ast-node.d.ts +1 -0
  16. package/lib/types/engine/ast-node/function-node.d.ts +11 -2
  17. package/lib/types/engine/ast-node/lambda-node.d.ts +9 -3
  18. package/lib/types/engine/ast-node/lambda-parameter-node.d.ts +0 -1
  19. package/lib/types/engine/ast-node/union-node.d.ts +2 -3
  20. package/lib/types/engine/dependency/dependency-tree.d.ts +3 -1
  21. package/lib/types/engine/reference-object/base-reference-object.d.ts +28 -17
  22. package/lib/types/engine/reference-object/range-reference-object.d.ts +2 -2
  23. package/lib/types/engine/utils/compare.d.ts +4 -0
  24. package/lib/types/engine/value-object/array-value-object.d.ts +12 -7
  25. package/lib/types/engine/value-object/base-value-object.d.ts +15 -0
  26. package/lib/types/engine/value-object/lambda-value-object.d.ts +30 -0
  27. package/lib/types/engine/value-object/primitive-object.d.ts +1 -0
  28. package/lib/types/functions/base-function.d.ts +38 -2
  29. package/lib/types/functions/compatibility/function-map.d.ts +1 -3
  30. package/lib/types/functions/compatibility/function-names.d.ts +38 -1
  31. package/lib/types/functions/cube/function-names.d.ts +7 -0
  32. package/lib/types/functions/database/function-names.d.ts +12 -0
  33. package/lib/types/functions/date/function-names.d.ts +25 -0
  34. package/lib/types/functions/engineering/function-names.d.ts +54 -0
  35. package/lib/types/functions/financial/function-names.d.ts +55 -0
  36. package/lib/types/functions/information/function-names.d.ts +21 -0
  37. package/lib/types/functions/logical/function-map.d.ts +3 -1
  38. package/lib/types/functions/logical/function-names.d.ts +19 -0
  39. package/lib/types/functions/logical/lambda/index.d.ts +24 -0
  40. package/lib/types/functions/{lookup/indirect/indirect.d.ts → logical/makearray/index.d.ts} +5 -4
  41. package/lib/types/functions/lookup/address/__tests__/index.spec.d.ts +16 -0
  42. package/lib/types/functions/lookup/address/index.d.ts +22 -0
  43. package/lib/types/functions/lookup/function-map.d.ts +5 -2
  44. package/lib/types/functions/lookup/function-names.d.ts +36 -1
  45. package/lib/types/functions/lookup/indirect/__test__/index.spec.d.ts +16 -0
  46. package/lib/types/functions/{meta/plus/plus.d.ts → lookup/indirect/index.d.ts} +4 -3
  47. package/lib/types/functions/lookup/vlookup/__tests__/index.spec.d.ts +16 -0
  48. package/lib/types/functions/lookup/vlookup/index.d.ts +21 -0
  49. package/lib/types/functions/math/abs/__tests__/index.spec.d.ts +16 -0
  50. package/lib/types/functions/{statistical/count/count.d.ts → math/abs/index.d.ts} +2 -2
  51. package/lib/types/functions/math/acos/__tests__/index.spec.d.ts +16 -0
  52. package/lib/types/functions/{statistical/counta/counta.d.ts → math/acos/index.d.ts} +2 -2
  53. package/lib/types/functions/math/acosh/__tests__/index.spec.d.ts +16 -0
  54. package/lib/types/functions/{statistical/min/min.d.ts → math/acosh/index.d.ts} +2 -3
  55. package/lib/types/functions/math/acot/__tests__/index.spec.d.ts +16 -0
  56. package/lib/types/functions/{meta/minus/minus.d.ts → math/acot/index.d.ts} +2 -2
  57. package/lib/types/functions/math/function-map.d.ts +1 -1
  58. package/lib/types/functions/math/function-names.d.ts +79 -1
  59. package/lib/types/functions/math/sum/{sum.d.ts → index.d.ts} +2 -2
  60. package/lib/types/functions/math/sumif/__tests__/index.spec.d.ts +16 -0
  61. package/lib/types/functions/math/sumifs/__tests__/index.spec.d.ts +16 -0
  62. package/lib/types/functions/meta/compare/{compare.d.ts → index.d.ts} +1 -2
  63. package/lib/types/functions/meta/divided/{divided.d.ts → index.d.ts} +1 -2
  64. package/lib/types/functions/meta/function-map.d.ts +2 -3
  65. package/lib/types/functions/meta/minus/index.d.ts +20 -0
  66. package/lib/types/functions/meta/multiply/{multiply.d.ts → index.d.ts} +1 -2
  67. package/lib/types/functions/meta/plus/index.d.ts +20 -0
  68. package/lib/types/functions/statistical/average/{average.d.ts → index.d.ts} +2 -2
  69. package/lib/types/functions/statistical/count/index.d.ts +20 -0
  70. package/lib/types/functions/statistical/counta/index.d.ts +20 -0
  71. package/lib/types/functions/statistical/function-map.d.ts +1 -1
  72. package/lib/types/functions/statistical/function-names.d.ts +107 -1
  73. package/lib/types/functions/statistical/max/{max.d.ts → index.d.ts} +2 -2
  74. package/lib/types/functions/statistical/min/index.d.ts +21 -0
  75. package/lib/types/functions/text/function-map.d.ts +3 -1
  76. package/lib/types/functions/text/function-names.d.ts +47 -0
  77. package/lib/types/functions/web/function-names.d.ts +3 -0
  78. package/lib/types/index.d.ts +19 -0
  79. package/lib/types/models/formula-data.model.d.ts +3 -1
  80. package/lib/types/plugin.d.ts +4 -0
  81. package/lib/types/services/current-data.service.d.ts +1 -0
  82. package/lib/types/services/feature-calculation-manager.service.d.ts +1 -1
  83. package/lib/types/services/function.service.d.ts +4 -0
  84. package/lib/types/services/other-formula-manager.service.d.ts +2 -2
  85. package/lib/types/services/runtime.service.d.ts +11 -5
  86. package/lib/umd/index.js +1 -1
  87. package/package.json +10 -10
  88. package/lib/types/functions/meta/union/union.d.ts +0 -23
  89. /package/lib/types/{functions/math/sumif/__tests__/sumif.spec.d.ts → engine/analysis/__tests__/parser.spec.d.ts} +0 -0
  90. /package/lib/types/functions/{math/sumifs/__tests__/sumifs.spec.d.ts → logical/makearray/__test__/index.spec.d.ts} +0 -0
  91. /package/lib/types/functions/lookup/offset/{offset.d.ts → index.d.ts} +0 -0
  92. /package/lib/types/functions/math/power/{power.d.ts → index.d.ts} +0 -0
  93. /package/lib/types/functions/math/sumif/{sumif.d.ts → index.d.ts} +0 -0
  94. /package/lib/types/functions/math/sumifs/{sumifs.d.ts → index.d.ts} +0 -0
  95. /package/lib/types/functions/{compatibility/concatenate/concatenate.d.ts → text/concatenate/index.d.ts} +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.