@esfaenza/es-table 15.2.8 → 15.2.10

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.
@@ -502,6 +502,8 @@ class EsTableLoc extends LocalizationService {
502
502
  super.set("en->it", "Select Everything", ["Seleziona Tutto"]);
503
503
  super.set("en->it", "Reset Selection", ["Resetta Selezione"]);
504
504
  super.set("en->it", "No operations available", ["Nessuna operazione disponibile"]);
505
+ super.set("en->it", "Close", ["Chiudi"]);
506
+ super.set("en->it", "Confirm", ["Conferma"]);
505
507
  super.set("en->it", "Values copied in the clipboard", ["Valori copiati nella clipboard"]);
506
508
  super.set("en->it", "Size of copied data is different from the size of the selection", ["La dimensione dei dati copiati differisce dalla dimensione della selezione"]);
507
509
  super.set("en->it", "Data for this table cannot be edited", ["I dati di questa tabella non possono essere modificati"]);
@@ -4784,14 +4786,13 @@ class EsTableComponent {
4784
4786
  * Effettua un hard reset della selezione
4785
4787
  */
4786
4788
  resetSelection(emit = false) {
4787
- var _a;
4788
4789
  this.selection_H.clearSelectionCaches();
4789
- if ((_a = this.View) === null || _a === void 0 ? void 0 : _a.selection) {
4790
+ if (this.viewMode && this.View) {
4790
4791
  this.View.selection = new ItemsSelection([]);
4791
4792
  if (emit)
4792
4793
  this.onSelectionChanged.emit(this.View.selection);
4793
4794
  }
4794
- else if (this.arraymodeSelection) {
4795
+ else if (this.arrayMode) {
4795
4796
  this.arraymodeSelection = new ItemsSelection([]);
4796
4797
  if (emit)
4797
4798
  this.onSelectionChanged.emit(this.arraymodeSelection);