UNPKG

@brightlayer-ui/react-auth-workflow

Version:

Re-usable workflow components for Authentication and Registration within Eaton applications.

14 lines (13 loc) 516 B
import { SetPasswordProps } from '../../components/index.js'; import { ErrorManagerProps } from '../../components/Error/types.js'; import { WorkflowCardProps } from '../../components/WorkflowCard/WorkflowCard.types.js'; export type CreatePasswordScreenProps = WorkflowCardProps & { /** * The props passed from SetPassword component */ PasswordProps?: SetPasswordProps; /** * The configuration for customizing how errors are displayed */ errorDisplayConfig?: ErrorManagerProps; };