@esfaenza/es-table 15.2.7 → 15.2.8
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.mjs +24 -12
- package/fesm2015/esfaenza-es-table.mjs +24 -11
- package/fesm2015/esfaenza-es-table.mjs.map +1 -1
- package/fesm2020/esfaenza-es-table.mjs +23 -11
- package/fesm2020/esfaenza-es-table.mjs.map +1 -1
- package/lib/components/es-table/es_table.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -505,7 +505,11 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
|
|
|
505
505
|
* @param {any[]} items Oggetti da selezionare o deselezionare
|
|
506
506
|
* @param {boolean} select **true** per selezionarli, **false** per non toccarli
|
|
507
507
|
*/
|
|
508
|
-
setSelectionStatus(items: any[], all: boolean, select: boolean): void;
|
|
508
|
+
setSelectionStatus(items: any[], all: boolean, select: boolean, emit?: boolean): void;
|
|
509
|
+
/**
|
|
510
|
+
* Effettua un hard reset della selezione
|
|
511
|
+
*/
|
|
512
|
+
resetSelection(emit?: boolean): void;
|
|
509
513
|
/**
|
|
510
514
|
* Metodo che gestisce il cambio di Ordinamento di una colonna
|
|
511
515
|
*
|