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