@annalib/anna-core 8.0.37 → 8.0.39
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 +2 -8
- package/fesm2015/annalib-anna-core.mjs +1 -7
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +1 -7
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_generic-table-common.scss +1 -0
|
@@ -3484,13 +3484,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3484
3484
|
this.tooltipContainingTable = rowData[tooltipKey];
|
|
3485
3485
|
}
|
|
3486
3486
|
mouseEnterOnTextActionType(rowData, tooltipKey) {
|
|
3487
|
-
|
|
3488
|
-
this.textActionTooltip = [];
|
|
3489
|
-
rowData && rowData.textActions.forEach((action) => {
|
|
3490
|
-
let key = action.tooltipData && action.tooltipData.key ? action.tooltipData.key : null;
|
|
3491
|
-
let value = action.tooltipData && action.tooltipData.value ? action.tooltipData.value : null;
|
|
3492
|
-
this.textActionTooltip.push({ key: key, value: value });
|
|
3493
|
-
});
|
|
3487
|
+
this.textActionTooltip = rowData[tooltipKey];
|
|
3494
3488
|
}
|
|
3495
3489
|
onClickableDataClicked(Rowdata, id) {
|
|
3496
3490
|
this.clickableDataClicked.emit({ data: Rowdata, id: id });
|