@sebgroup/react-wizard v2.4.1
React Wizard ·

This is a set of react wizard components some of which are based on SEB's bootstrap. The plan for this project is to increase and improve components for future usage.
- The package name:
@sebgroup/react-wizard - The package documentation: Documentation
- The package sourcecode: Github Source Code
- NPM package: @sebgroup/react-wizard
This project was bootstrapped with Create React App.
Minimum requirements
This version of components has been developed with:
- React
- Typescript
- SEB Bootstrap
Installation
You should be able to install the NPM package.
npm install @sebgroup/react-wizard --saveThis project is based on SEB Bootstrap and SEB React Components, to make sure everything works fine, please install these dependencies on your project:
npm install @sebgroup/bootstrap --save
npm install @sebgroup/react-components --saveThen make sure you add the Main SEB bootstrap package in your main style.SCSS or index.ts as follows
@import '~@sebgroup/bootstrap/scss/bootstrap';.
Development
This project uses prettier for a more consistent (less annoying) coding. The src folder is where the actual components exist with all their necessary dependencies.
- Installation
npm ciornpm i --force - Development:
npm start - Check formatting rules, Compile components:
npm run build:lib - Build and create the Documentation pages only:
npm run build:docs - To run the unit tests, run:
npm test - To run a unit test for a specific component you have to pass the name of the component, example:
npm test Wizard. It can also be chained with multiple specific components, e.g.npm test Wizard WizardHeader - To commit your changes run:
npm run commitand follow the steps