@leankylin-sheet/core 5.1.18 → 5.2.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/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -46595,7 +46595,7 @@ function calculateSheetFromula(ctx, id) {
|
|
|
46595
46595
|
id: id
|
|
46596
46596
|
};
|
|
46597
46597
|
calcChain.push(cc);
|
|
46598
|
-
var result = execfunction(ctx, cell === null || cell === void 0 ? void 0 : cell.f, r, c, id,
|
|
46598
|
+
var result = execfunction(ctx, cell === null || cell === void 0 ? void 0 : cell.f, r, c, id, true, true);
|
|
46599
46599
|
var newV = result[1];
|
|
46600
46600
|
if (newV === cell.v) {
|
|
46601
46601
|
continue;
|
package/dist/index.js
CHANGED
|
@@ -46605,7 +46605,7 @@ function calculateSheetFromula(ctx, id) {
|
|
|
46605
46605
|
id: id
|
|
46606
46606
|
};
|
|
46607
46607
|
calcChain.push(cc);
|
|
46608
|
-
var result = execfunction(ctx, cell === null || cell === void 0 ? void 0 : cell.f, r, c, id,
|
|
46608
|
+
var result = execfunction(ctx, cell === null || cell === void 0 ? void 0 : cell.f, r, c, id, true, true);
|
|
46609
46609
|
var newV = result[1];
|
|
46610
46610
|
if (newV === cell.v) {
|
|
46611
46611
|
continue;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leankylin-sheet/core",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"build": "father-build"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@leankylin-sheet/formula-parser": "5.
|
|
16
|
+
"@leankylin-sheet/formula-parser": "5.2.0",
|
|
17
17
|
"dayjs": "^1.11.0",
|
|
18
18
|
"immer": "^9.0.12",
|
|
19
19
|
"lodash": "^4.17.21",
|