@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.
- package/esm2020/lib/components/es-table/es_table.component.loc.mjs +3 -1
- package/esm2020/lib/components/es-table/es_table.component.mjs +3 -3
- package/fesm2015/esfaenza-es-table.mjs +4 -3
- package/fesm2015/esfaenza-es-table.mjs.map +1 -1
- package/fesm2020/esfaenza-es-table.mjs +4 -2
- package/fesm2020/esfaenza-es-table.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -495,6 +495,8 @@ class EsTableLoc extends LocalizationService {
|
|
|
495
495
|
super.set("en->it", "Select Everything", ["Seleziona Tutto"]);
|
|
496
496
|
super.set("en->it", "Reset Selection", ["Resetta Selezione"]);
|
|
497
497
|
super.set("en->it", "No operations available", ["Nessuna operazione disponibile"]);
|
|
498
|
+
super.set("en->it", "Close", ["Chiudi"]);
|
|
499
|
+
super.set("en->it", "Confirm", ["Conferma"]);
|
|
498
500
|
super.set("en->it", "Values copied in the clipboard", ["Valori copiati nella clipboard"]);
|
|
499
501
|
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"]);
|
|
500
502
|
super.set("en->it", "Data for this table cannot be edited", ["I dati di questa tabella non possono essere modificati"]);
|
|
@@ -4756,12 +4758,12 @@ class EsTableComponent {
|
|
|
4756
4758
|
*/
|
|
4757
4759
|
resetSelection(emit = false) {
|
|
4758
4760
|
this.selection_H.clearSelectionCaches();
|
|
4759
|
-
if (this.View
|
|
4761
|
+
if (this.viewMode && this.View) {
|
|
4760
4762
|
this.View.selection = new ItemsSelection([]);
|
|
4761
4763
|
if (emit)
|
|
4762
4764
|
this.onSelectionChanged.emit(this.View.selection);
|
|
4763
4765
|
}
|
|
4764
|
-
else if (this.
|
|
4766
|
+
else if (this.arrayMode) {
|
|
4765
4767
|
this.arraymodeSelection = new ItemsSelection([]);
|
|
4766
4768
|
if (emit)
|
|
4767
4769
|
this.onSelectionChanged.emit(this.arraymodeSelection);
|