@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
|
@@ -3482,13 +3482,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3482
3482
|
this.tooltipContainingTable = rowData[tooltipKey];
|
|
3483
3483
|
}
|
|
3484
3484
|
mouseEnterOnTextActionType(rowData, tooltipKey) {
|
|
3485
|
-
|
|
3486
|
-
this.textActionTooltip = [];
|
|
3487
|
-
rowData && rowData.textActions.forEach((action) => {
|
|
3488
|
-
let key = action.tooltipData && action.tooltipData.key ? action.tooltipData.key : null;
|
|
3489
|
-
let value = action.tooltipData && action.tooltipData.value ? action.tooltipData.value : null;
|
|
3490
|
-
this.textActionTooltip.push({ key: key, value: value });
|
|
3491
|
-
});
|
|
3485
|
+
this.textActionTooltip = rowData[tooltipKey];
|
|
3492
3486
|
}
|
|
3493
3487
|
onClickableDataClicked(Rowdata, id) {
|
|
3494
3488
|
this.clickableDataClicked.emit({ data: Rowdata, id: id });
|