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
|showTitle|bool|If true, step titles will (not if false) be shown in the wizard body|
@@ -102,7 +102,7 @@ The components receives these props:
102
102
103
103
### How to do substeps
104
104
105
-
Field in Wizard fields should contain `substep` <`string`> which is title of the primary step. Steps with the same substep are grouped together by the title of primary step.
105
+
Field in Wizard fields should contain `substepOf` <`string`> which is title of the primary step. Steps with the same substepOf are grouped together by the title of primary step.
106
106
107
107
#### Example
108
108
@@ -128,20 +128,20 @@ Schema: [
128
128
stepKey:'security',
129
129
title:'Security',
130
130
nextStep:'credentials',
131
-
substep:'Configuration'
131
+
substepOf:'Configuration'
132
132
},{
133
133
stepKey:'credentials',
134
134
title:'Credentials',
135
135
nextStep:'summary',
136
-
substep:'Configuration'
136
+
substepOf:'Configuration'
137
137
},{
138
138
stepKey:'summary',
139
139
title:'Summary'
140
140
},
141
141
]
142
142
```
143
143
144
-
Progressive Wizard works same way. It checks if previous step has the same \`substep\` value and if so, it grouped them together.
144
+
Progressive Wizard works same way. It checks if previous step has the same \`substepOf\` value and if so, it grouped them together.
145
145
If the value is different, a new primary step is created with the step as a substep.
0 commit comments