@esfaenza/es-table 11.2.73 → 11.2.74
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/bundles/esfaenza-es-table.umd.js +1 -0
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esm2015/lib/core/handlers/SelectionHandler.js +2 -1
- package/fesm2015/esfaenza-es-table.js +1 -0
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/package.json +1 -1
|
@@ -3436,6 +3436,7 @@
|
|
|
3436
3436
|
SelectionHandler.prototype.singleCellSelection = function (event, row, column) {
|
|
3437
3437
|
this.clearTextSelection(event);
|
|
3438
3438
|
if (event.shiftKey && this.est.ShiftClick && this.lastSingleSelection) {
|
|
3439
|
+
this.clearSelectionStatus({ row: row, column: column });
|
|
3439
3440
|
var rowAddition = row < this.lastSingleSelection.row ? -1 : +1;
|
|
3440
3441
|
var columnAddition = column < this.lastSingleSelection.column ? -1 : +1;
|
|
3441
3442
|
for (var ir = this.lastSingleSelection.row; ir != row + rowAddition; ir += rowAddition)
|