Multi-step process indicator with active step.
import { Stepper } from 'nikcli-tui';
new Stepper({ parent: screen, steps: [{ label: 'One' }, { label: 'Two' }], activeIndex: 0 });
npm run tsx:core-gallery
{ label: string; completed?: boolean; description?: string; icon?: string }
npm i nikcli-tui
new Stepper({ parent: screen, top: 1, left: 2, steps: [ { label: 'One' }, { label: 'Two' } ], activeIndex: 0 });
new Stepper({ parent: screen, top: 1, left: 2, steps: [ { label: 'Build' }, { label: 'Test' }, { label: 'Deploy' } ], orientation: 'horizontal' });