npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@gfazioli/mantine-select-stepper

v2.0.0

Published

Mantine SelectStepper is a React component for cycling through options via stepper buttons. Supports keyboard navigation, infinite looping, swipe gestures, vertical orientation, responsive props, imperative API, disabled items, smooth animations, and full

Readme

Mantine SelectStepper Component

NPM version NPM Downloads NPM Downloads NPM License


❤️ If this component has been useful to you or your team, please consider becoming a sponsor

Overview

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.

[!note]

Demo and DocumentationYoutube VideoMore Mantine Components

Key Features

  • Swipe/Touch gestures — native pointer events for mobile navigation
  • Vertical orientation — render as a vertical stepper with up/down arrows
  • Imperative APIcontrolRef with next(), prev(), reset(), navigateTo() methods
  • Size prop — control ActionIcon size (xs through xl)
  • Animation callbacksonStepStart and onStepEnd for 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 propsviewWidth, viewHeight, size, orientation adapt to breakpoints via Mantine's StyleProp
  • Accessible — ARIA spinbutton role, live regions, labeled buttons

Installation

npm install @gfazioli/mantine-select-stepper

or

yarn add @gfazioli/mantine-select-stepper

After 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';

Usage

import { SelectStepper } from '@gfazioli/mantine-select-stepper';

function Demo() {
  return <SelectStepper data={['React', 'Vue', 'Angular']} />;
}

Imperative API

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>
    </>
  );
}

Sponsor

❤️ If this component has been useful to you or your team, please consider becoming a sponsor

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.


Star History Chart


https://github.com/user-attachments/assets/d430dd46-2da5-46e3-8dcd-73f666f8c6fe