@leankylin-sheet/core 5.2.7 → 5.2.9
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 -2
- package/dist/index.js +1 -2
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -46584,7 +46584,7 @@ function calculateSheetFromula(ctx, id) {
|
|
|
46584
46584
|
if (!(cell === null || cell === void 0 ? void 0 : cell.f)) {
|
|
46585
46585
|
continue;
|
|
46586
46586
|
}
|
|
46587
|
-
var result = execfunction(ctx, cell === null || cell === void 0 ? void 0 : cell.f, r, c, id,
|
|
46587
|
+
var result = execfunction(ctx, cell === null || cell === void 0 ? void 0 : cell.f, r, c, id, false, true);
|
|
46588
46588
|
var newV = result[1];
|
|
46589
46589
|
if (newV === cell.v) {
|
|
46590
46590
|
continue;
|
|
@@ -46618,7 +46618,6 @@ function updateFunctionGroup(ctx) {
|
|
|
46618
46618
|
}
|
|
46619
46619
|
}
|
|
46620
46620
|
file.calcChain = calcChain;
|
|
46621
|
-
console.log(file.name, calcChain);
|
|
46622
46621
|
}
|
|
46623
46622
|
}
|
|
46624
46623
|
function parseCellReferences(expression) {
|
package/dist/index.js
CHANGED
|
@@ -46594,7 +46594,7 @@ function calculateSheetFromula(ctx, id) {
|
|
|
46594
46594
|
if (!(cell === null || cell === void 0 ? void 0 : cell.f)) {
|
|
46595
46595
|
continue;
|
|
46596
46596
|
}
|
|
46597
|
-
var result = execfunction(ctx, cell === null || cell === void 0 ? void 0 : cell.f, r, c, id,
|
|
46597
|
+
var result = execfunction(ctx, cell === null || cell === void 0 ? void 0 : cell.f, r, c, id, false, true);
|
|
46598
46598
|
var newV = result[1];
|
|
46599
46599
|
if (newV === cell.v) {
|
|
46600
46600
|
continue;
|
|
@@ -46628,7 +46628,6 @@ function updateFunctionGroup(ctx) {
|
|
|
46628
46628
|
}
|
|
46629
46629
|
}
|
|
46630
46630
|
file.calcChain = calcChain;
|
|
46631
|
-
console.log(file.name, calcChain);
|
|
46632
46631
|
}
|
|
46633
46632
|
}
|
|
46634
46633
|
function parseCellReferences(expression) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leankylin-sheet/core",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.9",
|
|
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.2.
|
|
16
|
+
"@leankylin-sheet/formula-parser": "5.2.9",
|
|
17
17
|
"dayjs": "^1.11.0",
|
|
18
18
|
"immer": "^9.0.12",
|
|
19
19
|
"lodash": "^4.17.21",
|