Socket
Socket
Sign inDemoInstall

@keyvaluesystems/react-vertical-stepper

Package Overview
Dependencies
3
Maintainers
6
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @keyvaluesystems/react-vertical-stepper

A fully customizable vertical stepper component


Version published
Weekly downloads
63
increased by142.31%
Maintainers
6
Created
Weekly downloads
 

Readme

Source

React Vertical Stepper

npm version

A fully customizable ready to use vertical stepper UI package for React. Try tweaking a vertical stepper using this codesandbox link here

Installation

npm install react-vertical-stepper

You’ll need to install React separately since it isn't included in the package.

Usage

React Vertical Stepper can run in a very basic mode by just providing the steps and currentStepIndex props like this:

import  React,  {  useState  }  from  'react';
import Stepper from 'react-vertical-stepper';

function  App()  {
  const [currentStepIndex, setCurrentStepIndex] = useState(0);
  
  stepsArray = [{
      label: 'Step 1',
      description: 'This is Step 1',
      status: 'completed'
    },{
      label: 'Step 2',
      description: 'This is Step 2',
      status: 'visited'
    },{
      label: 'Step 3',
      description: 'This is Step 3',
      status: 'unvisited'
  }];

  return (
    <Stepper
      steps={stepsArray}
      currentStepIndex={currentStepIndex}
    />
  );
}

export default App;

The steps array is an array of objects with basic keys like

  • label - a string that can be shown as step label title to your step indicator
  • description - a string that can be show as step description below the step label
  • status - can be provided with any of visited, unvisited, completed. Will be required if you are using default styles.

Note: You can also add any other keys to the step object and other statuses like skipped for different customizations as per requirements

You can customize the step indicator bubble with your own DOM element using the renderBubble prop

<Stepper
  steps={stepsArray}
  currentStepIndex={currentStepIndex}
  renderBubble={(step, stepIndex) => (<div key={stepIndex}>{step.label}</div>)}
/>

The step param provided by the renderBubble callback is the same object you pass as array item in steps prop.

Props

Props that can be passed to the component are listed below:

PropDescriptionDefault
steps: object[]An array of step objects to render.undefined
currentIndex: numberThe index of current active step.0
onStepClick?: (step: object, stepIndex: number): void A step click handler that fires each time you click on a step, its label or its description. undefined
renderBubble?: (step: object, stepIndex: number): ReactElement A render function to customize your step indicator with your own element. undefined
labelPosition?: 'left' | 'right' Allows you to align step label and description to either left or right of step indicator right
styles?: object Provides you with a bunch of callback functions to override the default styles. undefined

Style Customizations

All the default styles provided by this package are overridable using the style prop the below code shows all the overridable styles:

import React from 'react';
import Stepper from 'react-vertical-stepper';

function App() {

 const stylesOverride = {
   LabelTitle: (step, stepIndex) => ({...styles}),
   ActiveLabelTitle: (step, stepIndex) => ({...styles}),
   LabelDescription: (step, stepIndex) => ({...styles}),
   ActiveLabelDescription: (step, stepIndex) => ({...styles}),
   LineSeparator: (step, stepIndex) => ({...styles}),
   InactiveLineSeparator: (step, stepIndex) => ({...styles}),
   Bubble: (step, stepIndex) => ({...styles}),
   ActiveBubble: (step, stepIndex) => ({...styles}),
   InActiveBubble: (step, stepIndex) => ({...styles}),
 };
 return (
   <Stepper
      steps={stepsArray}
      currentStepIndex={currentStepIndex}
      styles={stylesOverride}
   />
 );
}

export default App;
  • LabelTitle - overrides the step label style
  • ActiveLabelTitle - overrides the step label style of current active step
  • LabelDescription - overrides the step description style
  • ActiveLabelDescription - overrides the step description style of current active step
  • LineSeparator - overrides default step connector line styles
  • InactiveLineSeparator - overrides styles of step connector line after current active step
  • Bubble - overrides default styles of step indicator
  • ActiveBubble - overrides default styles of step indicator of current active step
  • InActiveBubble - overrides default styles of step indicator that has unvisited step status

Keywords

FAQs

Last updated on 13 Oct 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc