ng-matero/extensions

[Tooltip] Tooltip animation doesn't show?

bonnis opened this issue · 1 comments

I have done something like in the following

<div
  [mtxTooltip]="tooltipTpl"
>
Some content
</div>

<ng-template #tooltipTpl>
  <div *ngIf="foo"> Foo </div>
  <div *ngIf="!foo"> Bar </div>
</ng-template>

With this code, the tooltip will show, but it won't have that animation that normal Angular has, which I'm trying to have. I'm on Angular@14.2.2 and @ng-matero/extensions@14.8.5. Anyone has a clue? Thanks!

Can you provide an online example?