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
|buttonLabels|object of nodes | see below | Labels for buttons |
10
+
|stepsInfo|array of objects|[]| Titles for steps |
11
+
|WizardProps | object | {} | Props passed to the root div |
12
+
|ButtonToolbarProps | object | {} | Props passed to the div wrapping buttons |
13
+
|DirectionButtonProps | object | {} | Props passed to the div wrapping back/next buttons |
14
+
|CancelButtonProps| object | {} | Props passed to the cancel button |
15
+
|BackButtonProps| object | {} | Props passed to the back button |
16
+
|NextButtonProps| object | {} | Props passed to the next button |
17
+
|SubmitButtonProps| object | {} | Props passed to the submit button |
18
+
19
+
**stepsInfo**
20
+
21
+
```jsx
22
+
stepsInfo: [
23
+
{ title:'Add a source', subTitle:'Source' },
24
+
{ title:'Configure a source' },
25
+
{ title:'Summary' }
26
+
]
27
+
```
28
+
29
+
Supplying `stepsInfo` will create a steps component on top of the form displaying each step title and allowing for easy navigation. It should be an array of objects, one per step.
30
+
31
+
The object items will be passed as props to a step component. See [here](https://ant.design/components/steps/#Steps.Step).
0 commit comments