You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| nextStep | (stepIndex?: number) => Promise<void> | Go to the next step. Overwrite the default behaviour by providing a step index |
124
-
| previousStep | (stepIndex?: number) => void | Go to the previous step. Overwrite the default behaviour by providing a step index |
123
+
| nextStep | () => Promise<void> | Go to the next step |
124
+
| previousStep | () => void | Go to the previous step index |
125
+
| goToStep | (stepIndex: number) => void | Go to the given step index |
125
126
| handleStep | (handler: Handler) => void | Attach a callback that will be called when calling `nextStep`. `handler` can be either sync or async |
126
127
| isLoading | boolean |\* Will reflect the handler promise state: will be `true` if the handler promise is pending and `false` when the handler is either fulfilled or rejected |
127
128
| activeStep | number | The current active step of the wizard |
0 commit comments