react-step-wizard icon indicating copy to clipboard operation
react-step-wizard copied to clipboard

A modern flexible step wizard component built for React.

Results 38 react-step-wizard issues
Sort by recently updated
recently updated
newest added

The instance prop from `StepWizardProps` is wrongly typed: https://github.com/jcmcneal/react-step-wizard/blob/c2b944808aac2f777f2f780b639d9ba70923e8fe/src/index.d.ts#L10 It should be `instance: (wizard: StepWizardChildProps) => void` instead, this can be verified by console.log of the instance (`SW` from the...

In Style.css: .step { opacity: 0; pointer-events: none; position: absolute; top: 0; width: 100%; z-index: 0; } .active { opacity: 1; pointer-events: inherit; position: relative; z-index: 1; } You seem...

I'm having an (exit) animation issue when making conditional steps. ### Parent ```jsx const ParentComponent = () => { const [ formData, setFormData ] = useState(null); function handleFormUpdate(data) { setFormData(prevState...

I am trying to render steps form a loop. Here is my code: ``` {state.pages.map((type) => ( ))} ``` I am getting this error about cannot read property hashkey of...

My use case is that I want to display a title for each step in the navbar. My current solution is to create a new array and render navbar items...

enhancement

I'm currently using the wizard but I have some strict styling requirements that make styling difficult if I nest nest components inside the step and not at the same depth...

It would be great if the library (optionally) allowed for zero-indexed steps. For one, it creates confusion when using the optional nav prop that the nav implementation is an array...

enhancement

Apparently default props will be depreciated soon therefore need some changes in this library. wondering if someone has had the same issue and got fix ready? Otherwise what is the...

for some weird reasons, on next13, stepNames are not registered

is it possible to navigate between steps without the hash ? for example : i dont want my step to be like this : www.domain.com/#intro , www.domain.com/#step2 instead , i...