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
/** Initially inferred from WizardStep components, these properties represent what is controllable from within WizardContext for a given step. */
5
-
6
-
exportinterfaceStep{
4
+
exportinterfaceWizardBasicStep{
7
5
/** Name of the step's nav item */
8
6
name: React.ReactNode;
9
7
/** Unique identifier */
@@ -14,8 +12,6 @@ export interface Step {
14
12
visited?: boolean;
15
13
/** Content shown when the step's nav item is selected. When treated as a parent step, only sub-step content will be shown. */
16
14
component?: React.ReactElement;
17
-
/** Nested step IDs */
18
-
subStepIds?: string[];
19
15
/** (Unused if nav is controlled) Custom WizardNavItem */
20
16
navItem?: React.ReactElement<WizardNavItemProps>;
21
17
/** (Unused if footer is controlled) Can change the Next button text. If nextButtonText is also set for the Wizard, this step specific one overrides it. */
@@ -28,14 +24,18 @@ export interface Step {
28
24
hideBackButton?: boolean;
29
25
}
30
26
31
-
/** With the same purpose as Step, SubStep inherits all properties of Step with the exception of subStepIds. */
0 commit comments