We are using following CSS to show an ellipsis on multiline texts.
.line-clamp { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
When setting tpOnlyTextOverflow to true the tooltip never appears.
I guess isElementOverflow() in utils.ts should also check for offsetHeight / scrollHeight.