@univerjs/engine-formula 0.1.0-beta.2 → 0.1.0-beta.4
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/{LICENSE.txt → LICENSE} +0 -2
- package/lib/cjs/index.js +1 -1
- package/lib/es/index.js +2812 -2093
- package/lib/types/basics/common.d.ts +1 -1
- package/lib/types/basics/error-type.d.ts +1 -1
- package/lib/types/basics/regex.d.ts +9 -9
- package/lib/types/engine/ast-node/reference-node.d.ts +2 -1
- package/lib/types/engine/reference-object/base-reference-object.d.ts +5 -5
- package/lib/types/engine/utils/__tests__/object-compare.spec.d.ts +16 -0
- package/lib/types/engine/utils/__tests__/r1c1-reference.spec.d.ts +16 -0
- package/lib/types/engine/utils/__tests__/reference.spec.d.ts +16 -0
- package/lib/types/engine/utils/array-object.d.ts +19 -0
- package/lib/types/engine/utils/compare.d.ts +5 -0
- package/lib/types/engine/utils/object-compare.d.ts +8 -2
- package/lib/types/engine/utils/r1c1-reference.d.ts +19 -0
- package/lib/types/engine/utils/reference.d.ts +80 -0
- package/lib/types/engine/value-object/array-value-object.d.ts +41 -8
- package/lib/types/engine/value-object/base-value-object.d.ts +10 -9
- package/lib/types/engine/value-object/primitive-object.d.ts +0 -1
- package/lib/types/functions/__tests__/{create-command-test-bed.d.ts → create-function-test-bed.d.ts} +1 -1
- package/lib/types/functions/base-function.d.ts +16 -1
- package/lib/types/functions/information/function-map.d.ts +3 -1
- package/lib/types/functions/information/isblank/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/information/isblank/index.d.ts +20 -0
- package/lib/types/functions/logical/and/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/logical/and/index.d.ts +20 -0
- package/lib/types/functions/logical/function-map.d.ts +2 -1
- package/lib/types/functions/logical/if/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/logical/if/index.d.ts +22 -0
- package/lib/types/functions/logical/iferror/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/logical/iferror/index.d.ts +20 -0
- package/lib/types/functions/lookup/address/index.d.ts +2 -3
- package/lib/types/functions/lookup/function-map.d.ts +4 -1
- package/lib/types/functions/lookup/hlookup/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/hlookup/index.d.ts +21 -0
- package/lib/types/functions/lookup/lookup/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/lookup/index.d.ts +23 -0
- package/lib/types/functions/lookup/offset/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/offset/index.d.ts +5 -3
- package/lib/types/functions/lookup/xlookup/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/xlookup/index.d.ts +24 -0
- package/lib/types/functions/math/sumif/index.d.ts +2 -3
- package/lib/types/functions/math/sumifs/index.d.ts +3 -2
- package/lib/types/functions/text/concatenate/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/text/concatenate/index.d.ts +2 -3
- package/lib/types/index.d.ts +2 -0
- package/lib/types/services/current-data.service.d.ts +1 -0
- package/lib/umd/index.js +1 -1
- package/package.json +26 -23