handsontable 12.3.2-next-bcef33c-20230315 → 12.3.2-next-e75de58-20230322
Sign up to get free protection for your applications and to get access to all the features.
- package/3rdparty/walkontable/src/calculator/viewportColumns.js +2 -2
- package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +2 -2
- package/CHANGELOG.md +1152 -497
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +7 -7
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +4 -4
- package/dist/handsontable.js +7 -7
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +3 -3
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
@@ -154,9 +154,9 @@ var ViewportColumnsCalculator = /*#__PURE__*/function () {
|
|
154
154
|
var inlineEndColumnOffset = calculationType === _constants.FULLY_VISIBLE_TYPE ? 0 : lastVisibleColumnWidth;
|
155
155
|
var inlineStartColumnOffset = calculationType === _constants.FULLY_VISIBLE_TYPE ? firstVisibleColumnWidth : 0;
|
156
156
|
if (
|
157
|
-
//
|
157
|
+
// the table is to the left of the viewport
|
158
158
|
mostRightScrollOffset < -1 * priv.inlineStartOffset || scrollOffset > startPositions.at(-1) + inlineEndColumnOffset ||
|
159
|
-
//
|
159
|
+
// the table is to the right of the viewport
|
160
160
|
-1 * priv.scrollOffset - priv.viewportWidth > -1 * inlineStartColumnOffset) {
|
161
161
|
this.isVisibleInTrimmingContainer = false;
|
162
162
|
} else {
|
@@ -150,9 +150,9 @@ var ViewportColumnsCalculator = /*#__PURE__*/function () {
|
|
150
150
|
var inlineEndColumnOffset = calculationType === FULLY_VISIBLE_TYPE ? 0 : lastVisibleColumnWidth;
|
151
151
|
var inlineStartColumnOffset = calculationType === FULLY_VISIBLE_TYPE ? firstVisibleColumnWidth : 0;
|
152
152
|
if (
|
153
|
-
//
|
153
|
+
// the table is to the left of the viewport
|
154
154
|
mostRightScrollOffset < -1 * priv.inlineStartOffset || scrollOffset > startPositions.at(-1) + inlineEndColumnOffset ||
|
155
|
-
//
|
155
|
+
// the table is to the right of the viewport
|
156
156
|
-1 * priv.scrollOffset - priv.viewportWidth > -1 * inlineStartColumnOffset) {
|
157
157
|
this.isVisibleInTrimmingContainer = false;
|
158
158
|
} else {
|