Taiga UI 5.0 is out!

AutoFocus CDK

GitHub

On this page

tuiAutoFocus allows to focus HTML-element right after its appearance. It works also with focusable Taiga UI components

Basic

    
      
    
    
      <button
    tuiButton
    type="button"
    class="tui-space_bottom-5"
    (click)="onClick()"
>
    Show input
</button>
@if (showInput) {
    <tui-textfield [tuiTextfieldCleaner]="false">
        <input
            tuiAutoFocus
            tuiInput
            [(ngModel)]="model"
        />
        <label tuiLabel>Focusable input</label>
    </tui-textfield>
}

    

iOS