@leankylin-sheet/core 4.0.54 → 4.0.55
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 +6 -0
- package/dist/index.js +6 -0
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -55662,9 +55662,15 @@ function setCellValue$1(ctx, row, column, value, cellInput) {
|
|
|
55662
55662
|
if (nf !== undefined && nf !== oldF) {
|
|
55663
55663
|
needupdateFdev = true;
|
|
55664
55664
|
}
|
|
55665
|
+
console.log('new', value);
|
|
55666
|
+
console.log('old', cell);
|
|
55667
|
+
console.log('nv', nv);
|
|
55668
|
+
console.log('oldV', oldV);
|
|
55669
|
+
console.log('nv', String(nv) !== String(oldV));
|
|
55665
55670
|
if (nv !== undefined && String(nv) !== String(oldV)) {
|
|
55666
55671
|
needupdateFdev = true;
|
|
55667
55672
|
}
|
|
55673
|
+
console.log('needupdateFdev', needupdateFdev);
|
|
55668
55674
|
if (needupdateFdev) {
|
|
55669
55675
|
delFunctionGroup(ctx, row, column);
|
|
55670
55676
|
setCellValue(ctx, row, column, data, curv);
|
package/dist/index.js
CHANGED
|
@@ -55672,9 +55672,15 @@ function setCellValue$1(ctx, row, column, value, cellInput) {
|
|
|
55672
55672
|
if (nf !== undefined && nf !== oldF) {
|
|
55673
55673
|
needupdateFdev = true;
|
|
55674
55674
|
}
|
|
55675
|
+
console.log('new', value);
|
|
55676
|
+
console.log('old', cell);
|
|
55677
|
+
console.log('nv', nv);
|
|
55678
|
+
console.log('oldV', oldV);
|
|
55679
|
+
console.log('nv', String(nv) !== String(oldV));
|
|
55675
55680
|
if (nv !== undefined && String(nv) !== String(oldV)) {
|
|
55676
55681
|
needupdateFdev = true;
|
|
55677
55682
|
}
|
|
55683
|
+
console.log('needupdateFdev', needupdateFdev);
|
|
55678
55684
|
if (needupdateFdev) {
|
|
55679
55685
|
delFunctionGroup(ctx, row, column);
|
|
55680
55686
|
setCellValue(ctx, row, column, data, curv);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leankylin-sheet/core",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.55",
|
|
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.55",
|
|
17
17
|
"dayjs": "^1.11.0",
|
|
18
18
|
"immer": "^9.0.12",
|
|
19
19
|
"lodash": "^4.17.21",
|