@esfaenza/es-table 11.2.71 → 11.2.72
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 +10 -5
- 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.metadata.json +1 -1
- package/esm2015/lib/components/es-table/es_table.component.js +10 -6
- package/fesm2015/esfaenza-es-table.js +9 -5
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/lib/components/es-table/es_table.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -639,9 +639,9 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
|
|
|
639
639
|
* @param {any} $event Evento nativo javascript
|
|
640
640
|
* @param {any} item Item che rappresenta il contesto su cui è stato effettuato un click
|
|
641
641
|
* @param {boolean} selection Indica se la selezione è attiva
|
|
642
|
-
*
|
|
642
|
+
* @param {boolean} internalCall Indica se la chiamata a questa funzione è interna: permette di skippare i check sulle CustomCells
|
|
643
643
|
*/
|
|
644
|
-
handleRowClick($event: any, item: any, selection: boolean):
|
|
644
|
+
handleRowClick($event: any, item: any, selection: boolean, internalCall?: boolean): boolean;
|
|
645
645
|
/**
|
|
646
646
|
* La modifica dell'utente è iniziata. Si imposta la variabile relativa a "true" in modo da mostrare l'input di testo
|
|
647
647
|
*
|