@esfaenza/es-table 11.2.83-beta3 → 11.2.83-beta4

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.
@@ -5006,6 +5006,10 @@
5006
5006
  return;
5007
5007
  // ALT + Click sempre istantaneo e sempre solo singola selezione (NON control, dato che serve per mantenere i link....)
5008
5008
  if ($event.altKey && this.RangeSelection) {
5009
+ //Skippo il range selection su cose con l'editor aperto dato che il focus lo va a prendere il click
5010
+ if ((this.DynamicRowColumnsDefinition.length > 0 && rowItem.edits[item._hash]._editing) ||
5011
+ rowItem._editing)
5012
+ return;
5009
5013
  this.selection_H.singleCellSelection($event, item._ordinal, rowIndex);
5010
5014
  return;
5011
5015
  }