@esfaenza/es-table 11.2.145 → 11.2.147
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/bundles/esfaenza-es-table.umd.js +43 -12
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esfaenza-es-table.d.ts +1 -0
- package/esfaenza-es-table.metadata.json +1 -1
- package/esm2015/esfaenza-es-table.js +2 -1
- package/esm2015/lib/components/es-table/es_table.component.js +23 -12
- package/esm2015/lib/components/pipes/est-propinsensitive.pipe.js +15 -0
- package/esm2015/lib/es-table.module.js +4 -2
- package/fesm2015/esfaenza-es-table.js +39 -13
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/lib/components/es-table/es_table.component.d.ts +4 -0
- package/lib/components/pipes/est-propinsensitive.pipe.d.ts +4 -0
- package/package.json +1 -1
|
@@ -506,6 +506,10 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
|
|
|
506
506
|
* @param {boolean} select **true** per selezionarli, **false** per non toccarli
|
|
507
507
|
*/
|
|
508
508
|
setSelectionStatus(items: any[], all: boolean, select: 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
|
*
|