Skip to content

Commit

Permalink
Removed beta flag on context props
Browse files Browse the repository at this point in the history
  • Loading branch information
thatblindgeye committed Apr 17, 2024
1 parent f65a645 commit d5887dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-core/src/components/Wizard/WizardContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ export interface WizardContextProps {
getStep: (stepId: number | string) => WizardStepType;
/** Set step by ID */
setStep: (step: Pick<WizardStepType, 'id'> & Partial<WizardStepType>) => void;
/** @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
* are called.
*/
shouldFocusContentOnNextOrBack: boolean;
/** @beta Ref for main wizard content element. */
/** Ref for main wizard content element. */
mainWrapperRef: React.RefObject<HTMLElement>;
}

Expand Down

0 comments on commit d5887dd

Please sign in to comment.