@univerjs/engine-formula 0.1.16 → 0.2.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 (78) hide show
  1. package/lib/cjs/index.js +1 -1
  2. package/lib/es/index.js +4972 -4258
  3. package/lib/types/basics/date.d.ts +12 -0
  4. package/lib/types/basics/regex.d.ts +5 -5
  5. package/lib/types/commands/mutations/set-formula-calculation.mutation.d.ts +3 -1
  6. package/lib/types/engine/analysis/__tests__/create-command-test-bed.d.ts +6 -6
  7. package/lib/types/engine/analysis/lexer-node.d.ts +1 -5
  8. package/lib/types/engine/ast-node/function-node.d.ts +1 -0
  9. package/lib/types/engine/dependency/dependency-tree.d.ts +1 -0
  10. package/lib/types/engine/reference-object/base-reference-object.d.ts +6 -6
  11. package/lib/types/engine/utils/math-kit.d.ts +6 -0
  12. package/lib/types/engine/utils/value-object.d.ts +27 -0
  13. package/lib/types/engine/value-object/primitive-object.d.ts +4 -2
  14. package/lib/types/functions/__tests__/create-function-test-bed.d.ts +6 -6
  15. package/lib/types/functions/date/datevalue/__tests__/index.spec.d.ts +16 -0
  16. package/lib/types/functions/date/datevalue/index.d.ts +9 -0
  17. package/lib/types/functions/date/now/__tests__/index.spec.d.ts +16 -0
  18. package/lib/types/functions/date/now/index.d.ts +8 -0
  19. package/lib/types/functions/date/time/__tests__/index.spec.d.ts +16 -0
  20. package/lib/types/functions/date/time/index.d.ts +9 -0
  21. package/lib/types/functions/date/timevalue/__tests__/index.spec.d.ts +16 -0
  22. package/lib/types/functions/date/timevalue/index.d.ts +9 -0
  23. package/lib/types/functions/date/today/index.d.ts +1 -2
  24. package/lib/types/functions/information/isref/index.d.ts +2 -2
  25. package/lib/types/functions/lookup/address/index.d.ts +2 -2
  26. package/lib/types/functions/lookup/choose/__tests__/index.spec.d.ts +16 -0
  27. package/lib/types/functions/lookup/choose/index.d.ts +10 -0
  28. package/lib/types/functions/lookup/function-map.d.ts +3 -3
  29. package/lib/types/functions/lookup/offset/index.d.ts +1 -0
  30. package/lib/types/functions/math/asin/__tests__/index.spec.d.ts +16 -0
  31. package/lib/types/functions/math/asin/index.d.ts +8 -0
  32. package/lib/types/functions/math/asinh/__tests__/index.spec.d.ts +16 -0
  33. package/lib/types/functions/math/asinh/index.d.ts +8 -0
  34. package/lib/types/functions/math/atan/__tests__/index.spec.d.ts +16 -0
  35. package/lib/types/functions/math/atan/index.d.ts +8 -0
  36. package/lib/types/functions/math/atan2/__tests__/index.spec.d.ts +16 -0
  37. package/lib/types/functions/math/atan2/index.d.ts +8 -0
  38. package/lib/types/functions/math/atanh/__tests__/index.spec.d.ts +16 -0
  39. package/lib/types/functions/math/atanh/index.d.ts +8 -0
  40. package/lib/types/functions/math/cos/__tests__/index.spec.d.ts +16 -0
  41. package/lib/types/functions/math/cos/index.d.ts +8 -0
  42. package/lib/types/functions/math/sumifs/index.d.ts +3 -2
  43. package/lib/types/functions/math/tan/__tests__/index.spec.d.ts +16 -0
  44. package/lib/types/functions/math/tan/index.d.ts +8 -0
  45. package/lib/types/functions/math/tanh/__tests__/index.spec.d.ts +16 -0
  46. package/lib/types/functions/math/tanh/index.d.ts +8 -0
  47. package/lib/types/functions/meta/compare/__tests__/index.spec.d.ts +16 -0
  48. package/lib/types/functions/statistical/avedev/__tests__/index.spec.d.ts +16 -0
  49. package/lib/types/functions/statistical/avedev/index.d.ts +8 -0
  50. package/lib/types/functions/statistical/averagea/__tests__/index.spec.d.ts +16 -0
  51. package/lib/types/functions/statistical/averagea/index.d.ts +8 -0
  52. package/lib/types/functions/statistical/averageif/__tests__/index.spec.d.ts +16 -0
  53. package/lib/types/functions/statistical/averageif/index.d.ts +18 -0
  54. package/lib/types/functions/statistical/averageifs/__tests__/index.spec.d.ts +16 -0
  55. package/lib/types/functions/statistical/averageifs/index.d.ts +10 -0
  56. package/lib/types/functions/statistical/countblank/__tests__/index.spec.d.ts +16 -0
  57. package/lib/types/functions/statistical/countblank/index.d.ts +8 -0
  58. package/lib/types/functions/statistical/countif/__tests__/index.spec.d.ts +16 -0
  59. package/lib/types/functions/statistical/countif/index.d.ts +10 -0
  60. package/lib/types/functions/statistical/countifs/__tests__/index.spec.d.ts +16 -0
  61. package/lib/types/functions/statistical/countifs/index.d.ts +12 -0
  62. package/lib/types/functions/statistical/function-map.d.ts +2 -1
  63. package/lib/types/functions/statistical/maxa/__tests__/index.spec.d.ts +16 -0
  64. package/lib/types/functions/statistical/maxa/index.d.ts +9 -0
  65. package/lib/types/functions/statistical/maxifs/index.d.ts +1 -0
  66. package/lib/types/functions/statistical/mina/__tests__/index.spec.d.ts +16 -0
  67. package/lib/types/functions/statistical/mina/index.d.ts +9 -0
  68. package/lib/types/functions/statistical/minifs/__tests__/index.spec.d.ts +16 -0
  69. package/lib/types/functions/statistical/minifs/index.d.ts +10 -0
  70. package/lib/types/functions/text/concat/__tests__/index.spec.d.ts +16 -0
  71. package/lib/types/functions/text/concat/index.d.ts +9 -0
  72. package/lib/types/functions/text/function-map.d.ts +2 -1
  73. package/lib/types/index.d.ts +9 -9
  74. package/lib/types/models/__tests__/create-command-test-bed.d.ts +6 -6
  75. package/lib/types/services/dependency-manager.service.d.ts +2 -2
  76. package/lib/types/services/runtime.service.d.ts +5 -0
  77. package/lib/umd/index.js +1 -1
  78. package/package.json +10 -10

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.