Events
| Property | Type | Description |
|---|---|---|
onClick | function | (optional) Will be called when the user clicks on any clickable step in the list. Is called right before onChange. Receives parameter { event, item, currentStep, currentStep }. |
onChange | function | (optional) Will be called when the user changes step by clicking in the steps list (changing the currentStep prop does not trigger the event). Receives parameter { event, item, currentStep, currentStep }. |
Step Item Events
| Property | Type | Description |
|---|---|---|
onClick | function | (optional) Called when user clicks the step. Is called right before the main component's onClick. Receives parameter { event, item, currentStep, currentStep } |