@leankylin-sheet/core 4.0.53 → 4.0.54

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 CHANGED
@@ -55662,7 +55662,7 @@ function setCellValue$1(ctx, row, column, value, cellInput) {
55662
55662
  if (nf !== undefined && nf !== oldF) {
55663
55663
  needupdateFdev = true;
55664
55664
  }
55665
- if (nv !== undefined && nv !== oldV) {
55665
+ if (nv !== undefined && String(nv) !== String(oldV)) {
55666
55666
  needupdateFdev = true;
55667
55667
  }
55668
55668
  if (needupdateFdev) {
package/dist/index.js CHANGED
@@ -55672,7 +55672,7 @@ function setCellValue$1(ctx, row, column, value, cellInput) {
55672
55672
  if (nf !== undefined && nf !== oldF) {
55673
55673
  needupdateFdev = true;
55674
55674
  }
55675
- if (nv !== undefined && nv !== oldV) {
55675
+ if (nv !== undefined && String(nv) !== String(oldV)) {
55676
55676
  needupdateFdev = true;
55677
55677
  }
55678
55678
  if (needupdateFdev) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leankylin-sheet/core",
3
- "version": "4.0.53",
3
+ "version": "4.0.54",
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.53",
16
+ "@leankylin-sheet/formula-parser": "4.0.54",
17
17
  "dayjs": "^1.11.0",
18
18
  "immer": "^9.0.12",
19
19
  "lodash": "^4.17.21",