@univerjs/engine-formula 0.1.0-beta.3 → 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/lib/cjs/index.js +1 -1
- package/lib/es/index.js +3535 -2988
- package/lib/types/basics/common.d.ts +1 -1
- package/lib/types/basics/error-type.d.ts +1 -1
- package/lib/types/engine/ast-node/reference-node.d.ts +2 -1
- 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 +7 -0
- package/lib/types/engine/value-object/array-value-object.d.ts +37 -3
- package/lib/types/engine/value-object/base-value-object.d.ts +1 -0
- 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/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/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/services/current-data.service.d.ts +1 -0
- package/lib/umd/index.js +1 -1
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/engine-formula",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "UniverSheet normal base-formula-engine",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@wendellhu/redi": ">=0.12.13",
|
|
39
39
|
"rxjs": ">=7.0.0",
|
|
40
|
-
"@univerjs/core": "0.1.0-beta.
|
|
40
|
+
"@univerjs/core": "0.1.0-beta.4"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"big.js": "^6.2.1"
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"typescript": "^5.3.3",
|
|
51
51
|
"vite": "^5.0.12",
|
|
52
52
|
"vitest": "^1.2.1",
|
|
53
|
-
"@univerjs/core": "0.1.0-beta.
|
|
54
|
-
"@univerjs/shared": "0.1.0-beta.
|
|
53
|
+
"@univerjs/core": "0.1.0-beta.4",
|
|
54
|
+
"@univerjs/shared": "0.1.0-beta.4"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"test": "vitest run",
|