Taiga UI 5.0 is out!

HintManual CORE

Examples API GitHub

Directive to show a hint manually

Basic

    
      
    
    
      <button
    tuiButton
    type="button"
    [tuiHint]="template"
    [tuiHintManual]="hintShown"
    (click)="toggleHint()"
>
    Hint
</button>

<ng-template #template>
    Use
    <a
        appearance="action-grayscale"
        routerLink="hint"
        tuiLink
        tuiTheme="dark"
        class="link"
    >
        Hint
    </a>
</ng-template>

    
    
      :host {
    display: block;
}