@leankylin-sheet/core 4.0.2 → 4.0.3
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 +3 -2
- package/dist/index.js +3 -2
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -41398,7 +41398,6 @@ function moveHighlightCell(ctx, postion, index, type) {
|
|
|
41398
41398
|
y: moveY
|
|
41399
41399
|
};
|
|
41400
41400
|
normalizeSelection(ctx, ctx.luckysheet_select_save);
|
|
41401
|
-
scrollToHighlightCell(ctx, row_index, col_index);
|
|
41402
41401
|
} else if (type === "rangeOfFormula") {
|
|
41403
41402
|
var _last = ctx.formulaCache.func_selectedrange;
|
|
41404
41403
|
if (!_last) return;
|
|
@@ -46412,7 +46411,9 @@ function calculateSheetFromula(ctx, id) {
|
|
|
46412
46411
|
continue;
|
|
46413
46412
|
}
|
|
46414
46413
|
var result = execfunction(ctx, (_ctx$luckysheetfile$i2 = ctx.luckysheetfile[index$1].data[r][c]) === null || _ctx$luckysheetfile$i2 === void 0 ? void 0 : _ctx$luckysheetfile$i2.f, r, c, id);
|
|
46415
|
-
setCellValue$1(ctx, r, c, result[1], null
|
|
46414
|
+
setCellValue$1(ctx, r, c, result[1], null, {
|
|
46415
|
+
id: id
|
|
46416
|
+
});
|
|
46416
46417
|
insertUpdateFunctionGroup(ctx, r, c, id);
|
|
46417
46418
|
}
|
|
46418
46419
|
}
|
package/dist/index.js
CHANGED
|
@@ -41408,7 +41408,6 @@ function moveHighlightCell(ctx, postion, index, type) {
|
|
|
41408
41408
|
y: moveY
|
|
41409
41409
|
};
|
|
41410
41410
|
normalizeSelection(ctx, ctx.luckysheet_select_save);
|
|
41411
|
-
scrollToHighlightCell(ctx, row_index, col_index);
|
|
41412
41411
|
} else if (type === "rangeOfFormula") {
|
|
41413
41412
|
var _last = ctx.formulaCache.func_selectedrange;
|
|
41414
41413
|
if (!_last) return;
|
|
@@ -46422,7 +46421,9 @@ function calculateSheetFromula(ctx, id) {
|
|
|
46422
46421
|
continue;
|
|
46423
46422
|
}
|
|
46424
46423
|
var result = execfunction(ctx, (_ctx$luckysheetfile$i2 = ctx.luckysheetfile[index$1].data[r][c]) === null || _ctx$luckysheetfile$i2 === void 0 ? void 0 : _ctx$luckysheetfile$i2.f, r, c, id);
|
|
46425
|
-
setCellValue$1(ctx, r, c, result[1], null
|
|
46424
|
+
setCellValue$1(ctx, r, c, result[1], null, {
|
|
46425
|
+
id: id
|
|
46426
|
+
});
|
|
46426
46427
|
insertUpdateFunctionGroup(ctx, r, c, id);
|
|
46427
46428
|
}
|
|
46428
46429
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leankylin-sheet/core",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3",
|
|
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": "4.0.
|
|
16
|
+
"@leankylin-sheet/formula-parser": "4.0.3",
|
|
17
17
|
"dayjs": "^1.11.0",
|
|
18
18
|
"immer": "^9.0.12",
|
|
19
19
|
"lodash": "^4.17.21",
|