Taiga UI 5.0 is out!

Stepper KIT

Examples API GitHub

On this page

Basic

    
      
    
    
      <tui-stepper [activeItemIndex]="1">
    <button
        stepState="pass"
        tuiStep
    >
        Finished step
    </button>
    <button tuiStep>Simple step</button>
    <button
        stepState="error"
        tuiStep
    >
        Error step
    </button>
    <button
        disabled
        tuiStep
    >
        Disabled step
    </button>
    <button
        icon="@tui.clock"
        tuiStep
    >
        Step with an icon
    </button>
</tui-stepper>

    

Vertical

    
      
    
    
      <tui-stepper
    orientation="vertical"
    [activeItemIndex]="1"
>
    @for (step of steps; track step) {
        <button tuiStep>
            {{ step }}
        </button>
    }
</tui-stepper>

    

Vertical autoscroll

    
      
    
    
      <tui-stepper
    orientation="vertical"
    class="stepper"
    [activeItemIndex]="5"
>
    @for (step of steps; track step) {
        <button tuiStep>
            {{ step }}
        </button>
    }
</tui-stepper>

    
    
      .stepper {
    max-block-size: 10rem;
    border: 1px solid var(--tui-border-normal);
}

    

Vertical connected

    
      
    
    
      <tui-stepper
    orientation="vertical"
    tuiConnected
    [activeItemIndex]="1"
>
    @for (step of steps; track step) {
        <button tuiStep>
            {{ step }}
        </button>
    }
</tui-stepper>