@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.
@@ -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)