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

@licuido-ui/ui_stepper-mobile

v0.0.2

Published

The StepperMobile component is a customizable mobile stepper that allows users to navigate through a series of steps. It is designed for mobile interfaces and comes with various customization options for step labels, icons, status, and progress. The compo

Readme

StepperMobile

The StepperMobile component is a customizable mobile stepper that allows users to navigate through a series of steps. It is designed for mobile interfaces and comes with various customization options for step labels, icons, status, and progress. The component also provides buttons for easy navigation between steps and displays the overall progress of the steps.

Author

Link

Story Book Link stepper

PlayGround

Try it have a fun codeBox

Installation

npm i  @licuido-ui/ui_stepper-mobile

Import component

import { StepperMobile } from '@licuido-ui/ui_stepper-mobile';

Usage

<Stepper steps={[]} buttons={[]} />

Image

alt text

Sample Code

    <StepperMobile
      steps={
         [
      {
        label: 'Crayond',
        icon: <StepperIcon />,
        status: 'completed',
        content: 'First Step',
        stepperStyle: {
          labelStyle: {},
          textAreaStyle: {},
          subTitleMobStyle: {},
          titleBoxMobStyle: {},
          progressStyle: {},
        },
      },
      {
        label: 'settings',
        icon: <StepperIcon />,
        status: 'inprogress',
        content: 'Second Step',
        stepperStyle: {
          labelStyle: {},
          textAreaStyle: {},
          subTitleMobStyle: {},
          titleBoxMobStyle: {},
          progressStyle: {},
        },
      },
      {
        label: 'settings',
        icon: <StepperIcon />,
        status: 'inprogress',
        content: 'Third Step',
        stepperStyle: {
          labelStyle: {},
          textAreaStyle: {},
          subTitleMobStyle: {},
          titleBoxMobStyle: {},
          progressStyle: {},
        },
      },
      {
        label: 'settings',
        icon: <StepperIcon />,
        status: 'inprogress',
        content: 'Fourth Step',
        stepperStyle: {
          labelStyle: {},
          textAreaStyle: {},
          subTitleMobStyle: {},
          titleBoxMobStyle: {},
          progressStyle: {},
        },
      },
    ],
      }
      buttons={ [
      {
        label: 'Back',
        onClick: () => {
          console.log('Back');
        },
      },
      {
        label: 'Next',
        disabled: false,
        onClick: () => {
          console.log('Next');
        },
      },
    ],}
      activeStep={0}
       styles={ {
      buttonsContainer: {},
      btnStyle: { width: '110px' },
      rootStyle: {},
      stepperParent: {},
    }}
  />


export default MyStepper;

Props

| Prop | Type | Default Value | Description | | ---------- | ------------------------------------------------------------------------------------------------- | ------------- | ------------------------------------------------------------------------------------------ | | id | string | string | string | | className | string | '' | Additional CSS class to apply to the root element of the component. | | sx | SxProps | {} | The style props from Material-UI's sx prop that allows custom styling of the root element. | | steps | StepData[] | [] | An array of step data objects containing information about each step. | | styles | { buttonsContainer?: SxProps; btnStyle?: SxProps; rootStyle?: SxProps; stepperParent?: SxProps; } | {} | An object containing custom styles for different elements of the component. | | buttons | ButtonProps[] | [] | An array of button data objects used for navigation between steps. | | activeStep | number | 0 | The index of the currently active step. |