This component is created on top of the Mantine library.
The Mantine SelectStepper is a Mantine-based React component that provides an elegant way to select from a list of options through a stepper interface. Users can navigate forward and backward through items using action buttons, with support for keyboard navigation, infinite looping, disabled items, and smooth animations. Built with TypeScript and fully integrated with Mantine's Styles API, it offers extensive customization options including custom icons, animation timing, viewport width, and border styling.
- Swipe/Touch gestures — native pointer events for mobile navigation
- Vertical orientation — render as a vertical stepper with up/down arrows
- Imperative API —
controlRefwithnext(),prev(),reset(),navigateTo()methods - Size prop — control ActionIcon size (
xsthroughxl) - Animation callbacks —
onStepStartandonStepEndfor transition synchronization - Gradient variant — gradient-styled navigation buttons
- Full keyboard navigation — Arrow keys with automatic disabled item skipping
- Loop mode — infinite cycling through options
- Styles API — full Mantine Styles API integration with 10 style targets
- Responsive props —
viewWidth,viewHeight,size,orientationadapt to breakpoints via Mantine'sStyleProp - Accessible — ARIA
spinbuttonrole, live regions, labeled buttons
npm install @gfazioli/mantine-select-stepperor
yarn add @gfazioli/mantine-select-stepperAfter installation import package styles at the root of your application:
import '@gfazioli/mantine-select-stepper/styles.css';You can also import styles within a CSS layer:
import '@gfazioli/mantine-select-stepper/styles.layer.css';import { SelectStepper } from '@gfazioli/mantine-select-stepper';
function Demo() {
return <SelectStepper data={['React', 'Vue', 'Angular']} />;
}import { useRef } from 'react';
import { SelectStepper, type SelectStepperRef } from '@gfazioli/mantine-select-stepper';
function Demo() {
const controlRef = useRef<SelectStepperRef>(null);
return (
<>
<SelectStepper
controlRef={controlRef}
data={['React', 'Vue', 'Angular']}
/>
<button onClick={() => controlRef.current?.next()}>Next</button>
<button onClick={() => controlRef.current?.reset()}>Reset</button>
</>
);
}Your support helps me:
- Keep the project actively maintained with timely bug fixes and security updates
- Add new features, improve performance, and refine the developer experience
- Expand test coverage and documentation for smoother adoption
- Ensure long‑term sustainability without relying on ad hoc free time
- Prioritize community requests and roadmap items that matter most
Open source thrives when those who benefit can give back—even a small monthly contribution makes a real difference. Sponsorships help cover maintenance time, infrastructure, and the countless invisible tasks that keep a project healthy.
Your help truly matters.
💚 Become a sponsor today and help me keep this project reliable, up‑to‑date, and growing for everyone.
