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
Copy file name to clipboardExpand all lines: packages/react-renderer-demo/src/app/src/doc-components/pf4-wizard.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,6 @@ Don't forget hide form controls by setting \`showFormControls\` to \`false\` as
15
15
| setFullHeight | bool | undefined | see Patternfly |
16
16
| isDynamic | bool | undefined | will dynamically generate steps navigation (=progressive wizard), please use if you use any condition fields which changes any field in other steps (wizards with conditional steps are dynamic by default) |
17
17
|showTitles|bool|undefined|If true, step titles will be shown in the wizard body|
18
-
|predictSteps|bool|undefined|If true, dynamic wizard will predict steps in the navigation.|
19
18
|crossroads|array|undefined|Array of field names, which change next steps|
20
19
21
20
**Default buttonLabels**
@@ -40,7 +39,7 @@ You can rewrite only selection of them, e.g.
40
39
41
40
**Crossroads**
42
41
43
-
With the help of `crossroads` you can manually defined which fields change next steps and together with `predictSteps`, it will cause that the wizard navigation is always refreshed, when one of the crossroads name is changed.
42
+
With the help of `crossroads` you can manually defined which fields change next steps, it will cause that the wizard navigation is always refreshed, when one of the crossroads name is changed.
44
43
45
44
Ex.: `crossroads: ['name', 'nested.password']`
46
45
@@ -179,9 +178,8 @@ Progressive wizard
179
178
- steps are visible as user visits them
180
179
- user can jump only back
181
180
- use `isDynamic` prop to enforce it
182
-
- use `predictSteps` to allow navigation to show future steps
183
-
- if you have any conditional fields in the step, you should use `disableForwardJumping` in the step definition, to disable jumping forward in the navigation, otherwise user could miss the changed fields in next steps.
184
-
- you can use `crossroads` to define, which fields the wizzard will listen to and change the navigation according to changes of the defined values
181
+
- if you have any conditional fields in the step, you should use `disableForwardJumping` in the step definition, to disable jumping forward in the navigation, otherwise user could miss the changed fields in next steps.
182
+
- you can use `crossroads` to define, which fields the wizzard will listen to and change the navigation according to changes of the defined values
0 commit comments