@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.
- package/lib/cjs/index.js +1 -1
- package/lib/es/index.js +4972 -4258
- package/lib/types/basics/date.d.ts +12 -0
- package/lib/types/basics/regex.d.ts +5 -5
- package/lib/types/commands/mutations/set-formula-calculation.mutation.d.ts +3 -1
- package/lib/types/engine/analysis/__tests__/create-command-test-bed.d.ts +6 -6
- package/lib/types/engine/analysis/lexer-node.d.ts +1 -5
- package/lib/types/engine/ast-node/function-node.d.ts +1 -0
- package/lib/types/engine/dependency/dependency-tree.d.ts +1 -0
- package/lib/types/engine/reference-object/base-reference-object.d.ts +6 -6
- package/lib/types/engine/utils/math-kit.d.ts +6 -0
- package/lib/types/engine/utils/value-object.d.ts +27 -0
- package/lib/types/engine/value-object/primitive-object.d.ts +4 -2
- package/lib/types/functions/__tests__/create-function-test-bed.d.ts +6 -6
- package/lib/types/functions/date/datevalue/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/datevalue/index.d.ts +9 -0
- package/lib/types/functions/date/now/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/now/index.d.ts +8 -0
- package/lib/types/functions/date/time/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/time/index.d.ts +9 -0
- package/lib/types/functions/date/timevalue/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/timevalue/index.d.ts +9 -0
- package/lib/types/functions/date/today/index.d.ts +1 -2
- package/lib/types/functions/information/isref/index.d.ts +2 -2
- package/lib/types/functions/lookup/address/index.d.ts +2 -2
- package/lib/types/functions/lookup/choose/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/choose/index.d.ts +10 -0
- package/lib/types/functions/lookup/function-map.d.ts +3 -3
- package/lib/types/functions/lookup/offset/index.d.ts +1 -0
- package/lib/types/functions/math/asin/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/asin/index.d.ts +8 -0
- package/lib/types/functions/math/asinh/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/asinh/index.d.ts +8 -0
- package/lib/types/functions/math/atan/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/atan/index.d.ts +8 -0
- package/lib/types/functions/math/atan2/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/atan2/index.d.ts +8 -0
- package/lib/types/functions/math/atanh/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/atanh/index.d.ts +8 -0
- package/lib/types/functions/math/cos/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/cos/index.d.ts +8 -0
- package/lib/types/functions/math/sumifs/index.d.ts +3 -2
- package/lib/types/functions/math/tan/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/tan/index.d.ts +8 -0
- package/lib/types/functions/math/tanh/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/tanh/index.d.ts +8 -0
- package/lib/types/functions/meta/compare/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/statistical/avedev/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/statistical/avedev/index.d.ts +8 -0
- package/lib/types/functions/statistical/averagea/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/statistical/averagea/index.d.ts +8 -0
- package/lib/types/functions/statistical/averageif/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/statistical/averageif/index.d.ts +18 -0
- package/lib/types/functions/statistical/averageifs/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/statistical/averageifs/index.d.ts +10 -0
- package/lib/types/functions/statistical/countblank/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/statistical/countblank/index.d.ts +8 -0
- package/lib/types/functions/statistical/countif/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/statistical/countif/index.d.ts +10 -0
- package/lib/types/functions/statistical/countifs/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/statistical/countifs/index.d.ts +12 -0
- package/lib/types/functions/statistical/function-map.d.ts +2 -1
- package/lib/types/functions/statistical/maxa/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/statistical/maxa/index.d.ts +9 -0
- package/lib/types/functions/statistical/maxifs/index.d.ts +1 -0
- package/lib/types/functions/statistical/mina/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/statistical/mina/index.d.ts +9 -0
- package/lib/types/functions/statistical/minifs/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/statistical/minifs/index.d.ts +10 -0
- package/lib/types/functions/text/concat/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/text/concat/index.d.ts +9 -0
- package/lib/types/functions/text/function-map.d.ts +2 -1
- package/lib/types/index.d.ts +9 -9
- package/lib/types/models/__tests__/create-command-test-bed.d.ts +6 -6
- package/lib/types/services/dependency-manager.service.d.ts +2 -2
- package/lib/types/services/runtime.service.d.ts +5 -0
- package/lib/umd/index.js +1 -1
- 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.