@esfaenza/es-table 11.2.82 → 11.2.83
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 +8 -1
- 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 +9 -2
- package/fesm2015/esfaenza-es-table.js +8 -1
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/lib/components/es-table/es_table.component.d.ts +7 -0
- package/package.json +1 -1
|
@@ -678,6 +678,13 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
|
|
|
678
678
|
* @param {number} columnIndex Indice della colonna su cui è avvenuta la modifica
|
|
679
679
|
*/
|
|
680
680
|
finalizeUserEdit(rowItem: TdElement, item: any, columnIndex: number): void;
|
|
681
|
+
getSelected(source: {
|
|
682
|
+
id: string;
|
|
683
|
+
description: string;
|
|
684
|
+
}[], value: string): {
|
|
685
|
+
id: string;
|
|
686
|
+
description: string;
|
|
687
|
+
};
|
|
681
688
|
private mouseIsDown;
|
|
682
689
|
private firstCoordinates;
|
|
683
690
|
mousedown(event: MouseEvent): void;
|