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.
- package/lib/spreadsheet.js +2 -2
- package/lib/x4.css +0 -1
- package/package.json +1 -1
- package/src/spreadsheet.ts +2 -2
- package/src/x4.less +0 -1
package/lib/spreadsheet.js
CHANGED
|
@@ -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
package/package.json
CHANGED
package/src/spreadsheet.ts
CHANGED
|
@@ -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,
|