@univerjs/engine-formula 0.1.0-beta.1 → 0.1.0-beta.3

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/{LICENSE.txt → LICENSE} +0 -2
  2. package/lib/cjs/index.js +1 -1
  3. package/lib/es/index.js +4156 -3484
  4. package/lib/types/basics/common.d.ts +28 -26
  5. package/lib/types/basics/error-type.d.ts +1 -1
  6. package/lib/types/basics/function.d.ts +5 -1
  7. package/lib/types/basics/inverted-index-cache.d.ts +2 -2
  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/__tests__/parser.spec.d.ts +16 -0
  15. package/lib/types/engine/analysis/lexer-tree-builder.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 +0 -2
  18. package/lib/types/engine/ast-node/lambda-parameter-node.d.ts +0 -1
  19. package/lib/types/engine/dependency/dependency-tree.d.ts +3 -1
  20. package/lib/types/engine/reference-object/base-reference-object.d.ts +19 -14
  21. package/lib/types/engine/reference-object/range-reference-object.d.ts +2 -2
  22. package/lib/types/engine/utils/__tests__/object-compare.spec.d.ts +16 -0
  23. package/lib/types/engine/utils/__tests__/r1c1-reference.spec.d.ts +16 -0
  24. package/lib/types/engine/utils/__tests__/reference.spec.d.ts +16 -0
  25. package/lib/types/engine/utils/compare.d.ts +4 -0
  26. package/lib/types/engine/utils/object-compare.d.ts +1 -2
  27. package/lib/types/engine/utils/r1c1-reference.d.ts +19 -0
  28. package/lib/types/engine/utils/reference.d.ts +80 -0
  29. package/lib/types/engine/value-object/array-value-object.d.ts +15 -11
  30. package/lib/types/engine/value-object/base-value-object.d.ts +20 -6
  31. package/lib/types/engine/value-object/primitive-object.d.ts +1 -1
  32. package/lib/types/functions/array/function-map.d.ts +1 -3
  33. package/lib/types/functions/array/function-names.d.ts +0 -1
  34. package/lib/types/functions/base-function.d.ts +37 -2
  35. package/lib/types/functions/compatibility/function-map.d.ts +1 -3
  36. package/lib/types/functions/compatibility/function-names.d.ts +38 -1
  37. package/lib/types/functions/cube/function-names.d.ts +7 -0
  38. package/lib/types/functions/database/function-names.d.ts +12 -0
  39. package/lib/types/functions/date/function-names.d.ts +25 -0
  40. package/lib/types/functions/engineering/function-names.d.ts +54 -0
  41. package/lib/types/functions/financial/function-names.d.ts +55 -0
  42. package/lib/types/functions/information/function-names.d.ts +21 -0
  43. package/lib/types/functions/logical/function-map.d.ts +3 -1
  44. package/lib/types/functions/logical/function-names.d.ts +19 -0
  45. package/lib/types/functions/logical/lambda/index.d.ts +24 -0
  46. package/lib/types/functions/logical/makearray/__test__/index.spec.d.ts +16 -0
  47. package/lib/types/functions/lookup/address/__tests__/index.spec.d.ts +16 -0
  48. package/lib/types/functions/lookup/address/index.d.ts +21 -0
  49. package/lib/types/functions/lookup/function-map.d.ts +4 -1
  50. package/lib/types/functions/lookup/function-names.d.ts +36 -1
  51. package/lib/types/functions/lookup/indirect/__test__/index.spec.d.ts +16 -0
  52. package/lib/types/functions/lookup/indirect/index.d.ts +4 -3
  53. package/lib/types/functions/lookup/vlookup/__tests__/index.spec.d.ts +16 -0
  54. package/lib/types/functions/lookup/vlookup/index.d.ts +21 -0
  55. package/lib/types/functions/math/function-names.d.ts +75 -1
  56. package/lib/types/functions/math/sum/index.d.ts +1 -1
  57. package/lib/types/functions/math/sumif/index.d.ts +2 -3
  58. package/lib/types/functions/meta/compare/index.d.ts +1 -2
  59. package/lib/types/functions/meta/divided/index.d.ts +1 -2
  60. package/lib/types/functions/meta/minus/index.d.ts +1 -2
  61. package/lib/types/functions/meta/multiply/index.d.ts +1 -2
  62. package/lib/types/functions/meta/plus/index.d.ts +2 -3
  63. package/lib/types/functions/statistical/function-names.d.ts +107 -1
  64. package/lib/types/functions/text/function-map.d.ts +3 -1
  65. package/lib/types/functions/text/function-names.d.ts +47 -0
  66. package/lib/types/functions/web/function-names.d.ts +3 -0
  67. package/lib/types/index.d.ts +21 -0
  68. package/lib/types/models/formula-data.model.d.ts +3 -1
  69. package/lib/types/plugin.d.ts +4 -0
  70. package/lib/types/services/current-data.service.d.ts +1 -0
  71. package/lib/types/services/feature-calculation-manager.service.d.ts +1 -1
  72. package/lib/types/services/function.service.d.ts +4 -0
  73. package/lib/types/services/other-formula-manager.service.d.ts +2 -2
  74. package/lib/types/services/runtime.service.d.ts +11 -5
  75. package/lib/umd/index.js +1 -1
  76. package/package.json +26 -23
  77. /package/lib/types/functions/{array → logical}/makearray/index.d.ts +0 -0
  78. /package/lib/types/functions/{compatibility → text}/concatenate/index.d.ts +0 -0
@@ -1,5 +1,3 @@
1
-
2
-
3
1
  Apache License
4
2
  Version 2.0, January 2004
5
3
  http://www.apache.org/licenses/