We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f65a645 commit d5887ddCopy full SHA for d5887dd
packages/react-core/src/components/Wizard/WizardContext.tsx
@@ -28,11 +28,11 @@ export interface WizardContextProps {
28
getStep: (stepId: number | string) => WizardStepType;
29
/** Set step by ID */
30
setStep: (step: Pick<WizardStepType, 'id'> & Partial<WizardStepType>) => void;
31
- /** @beta Flag indicating whether the wizard content should be focused after the onNext or onBack callbacks
+ /** Flag indicating whether the wizard content should be focused after the onNext or onBack callbacks
32
* are called.
33
*/
34
shouldFocusContentOnNextOrBack: boolean;
35
- /** @beta Ref for main wizard content element. */
+ /** Ref for main wizard content element. */
36
mainWrapperRef: React.RefObject<HTMLElement>;
37
}
38
0 commit comments