-
Notifications
You must be signed in to change notification settings - Fork 0
Unable to add custom fields in AccountDetailsScreen component #14
Copy link
Copy link
Open
Labels
auth-workflowissues related to workflowissues related to workflowbrightlayer-uiset to identify Brightlayer UI platform issues for easy filteringset to identify Brightlayer UI platform issues for easy filteringtype: enhancement 🚀An improvement or extension to existing functionality, design, or performance or feature request.An improvement or extension to existing functionality, design, or performance or feature request.
Milestone
Metadata
Metadata
Assignees
Labels
auth-workflowissues related to workflowissues related to workflowbrightlayer-uiset to identify Brightlayer UI platform issues for easy filteringset to identify Brightlayer UI platform issues for easy filteringtype: enhancement 🚀An improvement or extension to existing functionality, design, or performance or feature request.An improvement or extension to existing functionality, design, or performance or feature request.
We have updated to latest update of BLUI library.
Now when i am injecting children components to as below:
(para.length > 0 ? true : false)} />Here we don't see any option to add additional fields apart from mandatory fields(name, lastName).
With the earlier version, we use to have below mechanism to pass our customComponents for Account Details screen as below:
customAccountDetails={[
{ component: CustomDetailsScreen },
{
component: CustomDetailsScreenTwo,
title: 'Job Info',
instructions: 'Enter your employment information below.',
},
]}
as a prop to AuthUIContextProvider component.
Team, will it be possible to add option to add custom fields as per product requirement?