New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@equinor/fusion-react-stepper

Package Overview
Dependencies
Maintainers
4
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@equinor/fusion-react-stepper

Component for displaying and using stepps in stepper

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
657
increased by121.21%
Maintainers
4
Weekly downloads
 
Created
Source

@equinor/fusion-react-stepper

Published on npm

Stepper

Properties/Attributes

for stepper

NameTypeDefaultDescription
activeStepKeystring/Select/change active stepp, use *** stepKey ***. required
forceOrderbooleanfalseCan't skip steps. Steps will have specific order.
verticalStepsbooleanfalseChange stepper layout to vertical. Vertical positioning of steps.
hideNavButtonsbooleanfalseShow/hide next and previous navigation buttons for stepper.
onChange(stepKey: string) => voidonChange event for active step.

for step

NameTypeDefaultDescription
stepKeystring/Step key of step. Used for *** activeStepKey ***. required
titlestring/Title of step
descriptionstring/Description of step
disabledbooleanfalseDisable step. Can't be clicked, but can manually navigate to it

Example Usage

import { Stepper } from '@equinor/fusion-react-stepper';

<Stepper activeStepKey="step1" onChange={(e) => console.log('active: ', e)} props>
  <Step title="Title 1" stepKey="step1" props>
    Step content 1
  </Step>
  <Step title="Title 2" stepKey="step2" props>
    Step content 2
  </Step>
  <Step title="Title 3" stepKey="step3" props>
    Step content 3
  </Step>
</Stepper>

Keywords

FAQs

Package last updated on 03 May 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc