<!-- Semmet Angular: Tooltip — https://www.w3.org/WAI/ARIA/apg/patterns/tooltip/ -->
<!--
Usage from a parent component template:
Import <%= classify(name) %> in that parent component.

<<%= selector %> />
-->
<button
  type="button"
  [attr.aria-describedby]="instanceId"
  (mouseenter)="show()"
  (mouseleave)="hide()"
  (focus)="show()"
  (blur)="hide()"
  (keydown)="closeOnEscape($event)"
>
  Passe o mouse aqui
</button>
<span role="tooltip" [id]="instanceId" [hidden]="!visible()">
  Texto da dica
</span>
