@univerjs/engine-formula 0.2.3 → 0.2.4-alpha.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 +3737 -3211
- package/lib/types/basics/date.d.ts +9 -15
- package/lib/types/controller/formula.controller.d.ts +1 -2
- package/lib/types/engine/analysis/__tests__/create-command-test-bed.d.ts +7 -8
- package/lib/types/engine/ast-node/function-node.d.ts +1 -1
- package/lib/types/engine/ast-node/prefix-node.d.ts +1 -2
- package/lib/types/engine/ast-node/reference-node.d.ts +1 -1
- package/lib/types/engine/ast-node/suffix-node.d.ts +1 -1
- package/lib/types/engine/reference-object/base-reference-object.d.ts +1 -0
- package/lib/types/engine/utils/prefixHandler.d.ts +1 -2
- package/lib/types/engine/value-object/primitive-object.d.ts +1 -1
- package/lib/types/functions/__tests__/create-function-test-bed.d.ts +7 -8
- package/lib/types/functions/date/function-map.d.ts +3 -1
- package/lib/types/functions/date/hour/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/hour/index.d.ts +9 -0
- package/lib/types/functions/date/minute/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/minute/index.d.ts +9 -0
- package/lib/types/functions/date/networkdays/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/networkdays/index.d.ts +8 -0
- package/lib/types/functions/date/networkdays-intl/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/networkdays-intl/index.d.ts +9 -0
- package/lib/types/functions/date/second/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/second/index.d.ts +9 -0
- package/lib/types/functions/date/weekday/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/weekday/index.d.ts +9 -0
- package/lib/types/functions/date/workday/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/workday/index.d.ts +8 -0
- package/lib/types/functions/date/workday-intl/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/date/workday-intl/index.d.ts +9 -0
- package/lib/types/functions/math/sumproduct/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/sumproduct/index.d.ts +8 -0
- package/lib/types/models/__tests__/create-command-test-bed.d.ts +7 -8
- package/lib/types/plugin.d.ts +1 -2
- 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 +1 -1
- package/lib/types/services/feature-calculation-manager.service.d.ts +1 -1
- package/lib/types/services/function.service.d.ts +2 -3
- 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 +1 -1
- package/package.json +8 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/engine-formula",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4-alpha.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "UniverSheet normal base-formula-engine",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -46,10 +46,9 @@
|
|
|
46
46
|
"lib"
|
|
47
47
|
],
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@wendellhu/redi": "0.15.5",
|
|
50
49
|
"rxjs": ">=7.0.0",
|
|
51
|
-
"@univerjs/core": "0.2.
|
|
52
|
-
"@univerjs/rpc": "0.2.
|
|
50
|
+
"@univerjs/core": "0.2.4-alpha.0",
|
|
51
|
+
"@univerjs/rpc": "0.2.4-alpha.0"
|
|
53
52
|
},
|
|
54
53
|
"dependencies": {
|
|
55
54
|
"big.js": "^6.2.1",
|
|
@@ -57,14 +56,13 @@
|
|
|
57
56
|
},
|
|
58
57
|
"devDependencies": {
|
|
59
58
|
"@types/big.js": "^6.2.2",
|
|
60
|
-
"@wendellhu/redi": "0.15.5",
|
|
61
59
|
"rxjs": "^7.8.1",
|
|
62
60
|
"typescript": "^5.5.3",
|
|
63
|
-
"vite": "^5.3.
|
|
64
|
-
"vitest": "^
|
|
65
|
-
"@univerjs/core": "0.2.
|
|
66
|
-
"@univerjs/
|
|
67
|
-
"@univerjs/
|
|
61
|
+
"vite": "^5.3.4",
|
|
62
|
+
"vitest": "^2.0.3",
|
|
63
|
+
"@univerjs/core": "0.2.4-alpha.0",
|
|
64
|
+
"@univerjs/shared": "0.2.4-alpha.0",
|
|
65
|
+
"@univerjs/rpc": "0.2.4-alpha.0"
|
|
68
66
|
},
|
|
69
67
|
"univerSpace": {
|
|
70
68
|
".": {
|