@fileverse-dev/fortune-core 1.0.4 → 1.0.5

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
@@ -62722,7 +62722,6 @@ function deleteSelectedCellText(ctx) {
62722
62722
  return "success";
62723
62723
  }
62724
62724
  function selectIsOverlap(ctx, range) {
62725
- console.log("selectIsOverlap", ctx, range);
62726
62725
  return false;
62727
62726
  }
62728
62727
  function selectAll(ctx) {
@@ -68847,7 +68846,6 @@ function handleBorder(ctx, type, borderColor, borderStyle) {
68847
68846
  function handleMerge(ctx, type) {
68848
68847
  var allowEdit = isAllowEdit(ctx);
68849
68848
  if (!allowEdit) return;
68850
- if (selectIsOverlap(ctx)) ;
68851
68849
  if (ctx.config.merge != null) {
68852
68850
  var has_PartMC = false;
68853
68851
  if (!ctx.luckysheet_select_save) return;
@@ -76778,7 +76776,7 @@ function handleCopy(ctx) {
76778
76776
  isSameCol = false;
76779
76777
  }
76780
76778
  }
76781
- if (!isSameRow && !isSameCol || selectIsOverlap(ctx)) {
76779
+ if (!isSameRow && !isSameCol || selectIsOverlap()) {
76782
76780
  return;
76783
76781
  }
76784
76782
  }
package/dist/index.js CHANGED
@@ -62732,7 +62732,6 @@ function deleteSelectedCellText(ctx) {
62732
62732
  return "success";
62733
62733
  }
62734
62734
  function selectIsOverlap(ctx, range) {
62735
- console.log("selectIsOverlap", ctx, range);
62736
62735
  return false;
62737
62736
  }
62738
62737
  function selectAll(ctx) {
@@ -68857,7 +68856,6 @@ function handleBorder(ctx, type, borderColor, borderStyle) {
68857
68856
  function handleMerge(ctx, type) {
68858
68857
  var allowEdit = isAllowEdit(ctx);
68859
68858
  if (!allowEdit) return;
68860
- if (selectIsOverlap(ctx)) ;
68861
68859
  if (ctx.config.merge != null) {
68862
68860
  var has_PartMC = false;
68863
68861
  if (!ctx.luckysheet_select_save) return;
@@ -76788,7 +76786,7 @@ function handleCopy(ctx) {
76788
76786
  isSameCol = false;
76789
76787
  }
76790
76788
  }
76791
- if (!isSameRow && !isSameCol || selectIsOverlap(ctx)) {
76789
+ if (!isSameRow && !isSameCol || selectIsOverlap()) {
76792
76790
  return;
76793
76791
  }
76794
76792
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/fortune-core",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "typings": "dist/index.d.ts",
@@ -14,7 +14,7 @@
14
14
  "dev": "father-build --watch"
15
15
  },
16
16
  "dependencies": {
17
- "@fileverse-dev/formula-parser": "0.2.14",
17
+ "@fileverse-dev/formula-parser": "0.2.15",
18
18
  "dayjs": "^1.11.0",
19
19
  "immer": "^9.0.12",
20
20
  "lodash": "^4.17.21",