@annalib/anna-core 17.1.4 → 17.1.5
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/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +3 -3
- package/fesm2015/annalib-anna-core.mjs +2 -2
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +2 -2
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3807,10 +3807,10 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3807
3807
|
this.gtSVGIconClicked.emit(data);
|
|
3808
3808
|
}
|
|
3809
3809
|
textActionClicked(rowData, id, columnHeader) {
|
|
3810
|
-
this.gtTextActionClicked.emit({ data: rowData, id: id });
|
|
3810
|
+
this.gtTextActionClicked.emit({ data: rowData, id: id, columnHeader: columnHeader });
|
|
3811
3811
|
}
|
|
3812
3812
|
iconClickedOnStringIconActionType(rowData, id, columnHeader) {
|
|
3813
|
-
this.gtTextActionClicked.emit({ data: rowData, id: id });
|
|
3813
|
+
this.gtTextActionClicked.emit({ data: rowData, id: id, columnHeader: columnHeader });
|
|
3814
3814
|
}
|
|
3815
3815
|
innerHTMLCellClicked(event, rowData) {
|
|
3816
3816
|
this.gtInnerHTMLClicked.emit({ event, rowData });
|