@univerjs/engine-formula 0.2.5 → 0.2.6
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 +11426 -9711
- package/lib/types/functions/date/datedif/index.d.ts +1 -0
- package/lib/types/functions/date/days360/index.d.ts +1 -0
- package/lib/types/functions/date/networkdays/index.d.ts +1 -0
- package/lib/types/functions/date/networkdays-intl/index.d.ts +1 -0
- package/lib/types/functions/date/weekday/index.d.ts +1 -0
- package/lib/types/functions/date/weeknum/index.d.ts +2 -1
- package/lib/types/functions/date/workday/index.d.ts +1 -0
- package/lib/types/functions/date/workday-intl/index.d.ts +2 -0
- package/lib/types/functions/date/yearfrac/index.d.ts +4 -0
- package/lib/types/functions/information/cell/index.d.ts +2 -2
- package/lib/types/functions/information/error-type/index.d.ts +1 -1
- package/lib/types/functions/lookup/areas/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/areas/index.d.ts +11 -0
- package/lib/types/functions/lookup/choosecols/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/choosecols/index.d.ts +9 -0
- package/lib/types/functions/lookup/chooserows/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/chooserows/index.d.ts +9 -0
- package/lib/types/functions/lookup/filter/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/filter/index.d.ts +11 -0
- package/lib/types/functions/lookup/function-map.d.ts +3 -6
- package/lib/types/functions/lookup/hstack/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/hstack/index.d.ts +9 -0
- package/lib/types/functions/lookup/sort/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/sort/index.d.ts +14 -0
- package/lib/types/functions/lookup/sortby/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/sortby/index.d.ts +17 -0
- package/lib/types/functions/lookup/transpose/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/transpose/index.d.ts +9 -0
- package/lib/types/functions/lookup/unique/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/unique/index.d.ts +12 -0
- package/lib/types/functions/lookup/vstack/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/lookup/vstack/index.d.ts +9 -0
- package/lib/types/functions/lookup/xlookup/index.d.ts +1 -0
- package/lib/types/functions/math/base/index.d.ts +1 -0
- package/lib/types/functions/math/ceiling-math/index.d.ts +1 -0
- package/lib/types/functions/math/cot/index.d.ts +1 -0
- package/lib/types/functions/math/coth/index.d.ts +1 -0
- package/lib/types/functions/math/csc/index.d.ts +1 -0
- package/lib/types/functions/math/csch/index.d.ts +1 -0
- package/lib/types/functions/math/decimal/index.d.ts +1 -1
- package/lib/types/functions/math/randarray/index.d.ts +2 -0
- package/lib/types/functions/math/sumproduct/index.d.ts +2 -0
- package/lib/types/functions/math/sumx2my2/index.d.ts +1 -0
- package/lib/types/functions/math/sumx2py2/index.d.ts +1 -0
- package/lib/types/functions/math/sumxmy2/index.d.ts +1 -0
- package/lib/types/functions/math/trunc/__tests__/index.spec.d.ts +16 -0
- package/lib/types/functions/math/trunc/index.d.ts +8 -0
- package/lib/types/functions/text/function-map.d.ts +6 -3
- package/lib/types/functions/text/rept/__test__/index.spec.d.ts +16 -0
- package/lib/types/functions/text/rept/index.d.ts +8 -0
- package/lib/types/functions/text/textafter/__test__/index.spec.d.ts +16 -0
- package/lib/types/functions/text/textafter/index.d.ts +15 -0
- package/lib/types/functions/text/textbefore/__test__/index.spec.d.ts +16 -0
- package/lib/types/functions/text/textbefore/index.d.ts +15 -0
- package/lib/types/functions/text/textsplit/__test__/index.spec.d.ts +16 -0
- package/lib/types/functions/text/textsplit/index.d.ts +15 -0
- package/lib/umd/index.js +1 -1
- 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.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "UniverSheet normal base-formula-engine",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
],
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"rxjs": ">=7.0.0",
|
|
50
|
-
"@univerjs/core": "0.2.
|
|
51
|
-
"@univerjs/rpc": "0.2.
|
|
50
|
+
"@univerjs/core": "0.2.6",
|
|
51
|
+
"@univerjs/rpc": "0.2.6"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"big.js": "^6.2.1",
|
|
@@ -57,12 +57,12 @@
|
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/big.js": "^6.2.2",
|
|
59
59
|
"rxjs": "^7.8.1",
|
|
60
|
-
"typescript": "^5.5.
|
|
61
|
-
"vite": "^5.3.
|
|
62
|
-
"vitest": "^2.0.
|
|
63
|
-
"@univerjs/core": "0.2.
|
|
64
|
-
"@univerjs/
|
|
65
|
-
"@univerjs/
|
|
60
|
+
"typescript": "^5.5.4",
|
|
61
|
+
"vite": "^5.3.5",
|
|
62
|
+
"vitest": "^2.0.4",
|
|
63
|
+
"@univerjs/core": "0.2.6",
|
|
64
|
+
"@univerjs/shared": "0.2.6",
|
|
65
|
+
"@univerjs/rpc": "0.2.6"
|
|
66
66
|
},
|
|
67
67
|
"univerSpace": {
|
|
68
68
|
".": {
|