@univerjs/engine-formula 0.2.12 → 0.2.14
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 +2 -2
- package/lib/es/index.js +1943 -487
- package/lib/types/basics/__tests__/math.spec.d.ts +16 -0
- package/lib/types/basics/math.d.ts +21 -0
- package/lib/types/controller/set-dependency.controller.d.ts +1 -1
- package/lib/types/engine/analysis/__tests__/create-command-test-bed.d.ts +6 -6
- package/lib/types/engine/dependency/dependency-tree.d.ts +2 -2
- package/lib/types/engine/reference-object/base-reference-object.d.ts +6 -6
- package/lib/types/engine/value-object/array-value-object.d.ts +1 -1
- package/lib/types/engine/value-object/lambda-value-object.d.ts +3 -2
- package/lib/types/functions/__tests__/create-function-test-bed.d.ts +6 -6
- package/lib/types/functions/base-function.d.ts +1 -1
- package/lib/types/functions/logical/bycol/__test__/index.spec.d.ts +16 -0
- package/lib/types/functions/logical/bycol/index.d.ts +7 -0
- package/lib/types/functions/logical/byrow/__test__/index.spec.d.ts +16 -0
- package/lib/types/functions/logical/byrow/index.d.ts +7 -0
- package/lib/types/functions/logical/function-map.d.ts +1 -1
- package/lib/types/functions/logical/map/__test__/index.spec.d.ts +16 -0
- package/lib/types/functions/logical/map/index.d.ts +8 -0
- package/lib/types/functions/logical/reduce/__test__/index.spec.d.ts +16 -0
- package/lib/types/functions/logical/reduce/index.d.ts +8 -0
- package/lib/types/functions/logical/scan/__test__/index.spec.d.ts +16 -0
- package/lib/types/functions/logical/scan/index.d.ts +8 -0
- package/lib/types/functions/lookup/drop/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/drop/index.d.ts +9 -0
- package/lib/types/functions/lookup/expand/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/expand/index.d.ts +9 -0
- package/lib/types/functions/lookup/function-map.d.ts +1 -1
- package/lib/types/functions/lookup/take/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/take/index.d.ts +9 -0
- package/lib/types/functions/lookup/tocol/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/tocol/index.d.ts +10 -0
- package/lib/types/functions/lookup/torow/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/torow/index.d.ts +10 -0
- package/lib/types/functions/lookup/wrapcols/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/wrapcols/index.d.ts +8 -0
- package/lib/types/functions/lookup/wraprows/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/wraprows/index.d.ts +8 -0
- package/lib/types/functions/math/combin/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/combin/index.d.ts +7 -0
- package/lib/types/functions/math/combina/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/combina/index.d.ts +7 -0
- package/lib/types/functions/math/fact/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/fact/index.d.ts +8 -0
- package/lib/types/functions/math/factdouble/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/factdouble/index.d.ts +8 -0
- package/lib/types/functions/math/gcd/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/gcd/index.d.ts +8 -0
- package/lib/types/functions/math/int/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/int/index.d.ts +8 -0
- package/lib/types/functions/math/lcm/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/lcm/index.d.ts +8 -0
- package/lib/types/functions/math/mdeterm/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/mdeterm/index.d.ts +7 -0
- package/lib/types/functions/math/minverse/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/minverse/index.d.ts +7 -0
- package/lib/types/functions/math/mmult/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/mmult/index.d.ts +9 -0
- package/lib/types/functions/math/mod/index.d.ts +1 -1
- package/lib/types/functions/math/multinomial/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/multinomial/index.d.ts +8 -0
- package/lib/types/functions/math/munit/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/munit/index.d.ts +8 -0
- package/lib/types/functions/math/quotient/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/quotient/index.d.ts +7 -0
- package/lib/types/functions/math/sequence/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/sequence/index.d.ts +8 -0
- package/lib/types/functions/math/seriessum/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/seriessum/index.d.ts +8 -0
- package/lib/types/functions/math/sign/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/sign/index.d.ts +8 -0
- package/lib/types/models/__tests__/create-command-test-bed.d.ts +6 -6
- package/lib/types/models/formula-data.model.d.ts +3 -2
- package/lib/types/plugin.d.ts +1 -1
- package/lib/types/services/active-dirty-manager.service.d.ts +1 -1
- package/lib/types/services/current-data.service.d.ts +1 -1
- package/lib/types/services/defined-names.service.d.ts +1 -1
- package/lib/types/services/dependency-manager.service.d.ts +4 -4
- package/lib/types/services/feature-calculation-manager.service.d.ts +1 -1
- package/lib/types/services/function.service.d.ts +1 -1
- package/lib/types/services/other-formula-manager.service.d.ts +1 -1
- package/lib/types/services/runtime.service.d.ts +1 -1
- package/lib/types/services/super-table.service.d.ts +1 -1
- package/lib/umd/index.js +2 -2
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/engine-formula",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.14",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "UniverSheet normal base-formula-engine",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -47,21 +47,21 @@
|
|
|
47
47
|
],
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"rxjs": ">=7.0.0",
|
|
50
|
-
"@univerjs/rpc": "0.2.
|
|
51
|
-
"@univerjs/core": "0.2.
|
|
50
|
+
"@univerjs/rpc": "0.2.14",
|
|
51
|
+
"@univerjs/core": "0.2.14"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"decimal.js": "^10.4.3",
|
|
55
|
-
"numfmt": "^2.5.2"
|
|
55
|
+
"numfmt": "^2.5.2",
|
|
56
|
+
"@univerjs/core": "0.2.14",
|
|
57
|
+
"@univerjs/rpc": "0.2.14"
|
|
56
58
|
},
|
|
57
59
|
"devDependencies": {
|
|
58
60
|
"rxjs": "^7.8.1",
|
|
59
|
-
"typescript": "^5.
|
|
60
|
-
"vite": "^5.4.
|
|
61
|
+
"typescript": "^5.6.2",
|
|
62
|
+
"vite": "^5.4.4",
|
|
61
63
|
"vitest": "^2.0.5",
|
|
62
|
-
"@univerjs/
|
|
63
|
-
"@univerjs/core": "0.2.12",
|
|
64
|
-
"@univerjs/shared": "0.2.12"
|
|
64
|
+
"@univerjs-infra/shared": "0.2.14"
|
|
65
65
|
},
|
|
66
66
|
"univerSpace": {
|
|
67
67
|
".": {
|