[Stepper][Step] Multiple simultaneously active Steps within the same Stepper is no longer supported #13197
Labels
component: stepper
This is the name of the generic UI component, not the React module!
duplicate
This issue or pull request already exists
Upgrading from 3.1.1. to 3.2.0, we can no longer have multiple simultaneously active Steps within the same Stepper. We accomplished this with multiple
<Step active={true}>
within the sameStepper
which allows us to create a re-orderable recipe of steps like this:The fact that now only 1 Step can be active (and therefore visible) significantly reduces the use case flexibility of this component. Indeed, in 3.2 we have
active={true}
on eachStep
but it appears to no longer have any impact (the parentStepper
seems to have the active step # on it). This results in a broken experience for our use case:You can see another example of our use case for Stepper here. We find this is generally a great way to organize discreet steps, but we need them to be fully visible all the time.
The text was updated successfully, but these errors were encountered: