x4js 1.4.38 → 1.4.39

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.
@@ -895,8 +895,8 @@ class Spreadsheet extends layout_1.VLayout {
895
895
  style: {
896
896
  left: rc.left - prc.left,
897
897
  top: rc.top - prc.top,
898
- width: rc.width,
899
- height: rc.height
898
+ width: rc.width - 1,
899
+ height: rc.height - 1
900
900
  },
901
901
  tabIndex: false,
902
902
  value: cellvalue,
package/lib/x4.css CHANGED
@@ -1217,7 +1217,6 @@ textarea::selection {
1217
1217
  .x-spreadsheet .x-editor {
1218
1218
  position: absolute;
1219
1219
  min-height: 0;
1220
- height: calc(100% - 1px);
1221
1220
  margin: 0;
1222
1221
  }
1223
1222
  .x-spreadsheet .x-editor input {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "x4js",
3
- "version": "1.4.38",
3
+ "version": "1.4.39",
4
4
  "description": "X4js core files",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -1201,8 +1201,8 @@ export class Spreadsheet extends VLayout<SpreadsheetProps, SpreadsheetEventSet>
1201
1201
  style: {
1202
1202
  left: rc.left - prc.left,
1203
1203
  top: rc.top - prc.top,
1204
- width: rc.width,
1205
- height: rc.height
1204
+ width: rc.width - 1,
1205
+ height: rc.height - 1
1206
1206
  },
1207
1207
  tabIndex: false,
1208
1208
  value: cellvalue,
package/src/x4.less CHANGED
@@ -1486,7 +1486,6 @@ textarea {
1486
1486
  .x-editor {
1487
1487
  position: absolute;
1488
1488
  min-height: 0;
1489
- height: calc( 100% - 1px );
1490
1489
  margin: 0;
1491
1490
 
1492
1491
  input {