@esfaenza/es-table 20.3.31 → 20.3.32
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/fesm2022/esfaenza-es-table.mjs +37 -52
- package/fesm2022/esfaenza-es-table.mjs.map +1 -1
- package/index.d.ts +10 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2864,7 +2864,16 @@ declare class EsTable2Component implements ControlValueAccessor, AfterContentIni
|
|
|
2864
2864
|
private emitSelection;
|
|
2865
2865
|
/** Click su una riga: espande/collassa un gruppo, oppure gestisce la selezione. */
|
|
2866
2866
|
handleRowClick(item: any, event?: MouseEvent): void;
|
|
2867
|
-
/**
|
|
2867
|
+
/**
|
|
2868
|
+
* Shift/Ctrl+click stile Esplora risorse, attivo solo con `[ShiftClick]`.
|
|
2869
|
+
*
|
|
2870
|
+
* Lo **Shift+click** estende il range dall'ancora (l'ultima riga cliccata); senza
|
|
2871
|
+
* Ctrl il range SOSTITUISCE la selezione, con Ctrl la somma a quella esistente.
|
|
2872
|
+
* Ogni altro caso (Ctrl+click, o Shift senza un'ancora valida) è un toggle della
|
|
2873
|
+
* singola riga: passa da `toggleRow`, che è il percorso canonico usato anche dalle
|
|
2874
|
+
* checkbox e che gestisce correttamente la modalità "tutto selezionato"
|
|
2875
|
+
* (`sel.all` → toggle dell'esclusione invece di azzerare la selezione).
|
|
2876
|
+
*/
|
|
2868
2877
|
private windowsSelect;
|
|
2869
2878
|
/** Pipe riusate per il testo di copia (dependency-free) */
|
|
2870
2879
|
private fmt;
|