This repository was archived by the owner on Apr 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
[Update] Complete Your User Profile - Content text updates from Figma, Checkbox Group Status/Focus Style Update #169
Merged
Merged
Changes from 19 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
e16f5fa
content: Updated Step2 denied domain error message
shindigira 41c8a69
content: updated content text regarding input field description text
shindigira 4fe05cd
style: accesibility changed to entirely around FI group
shindigira 5b786c9
style: removed interferring styles
shindigira cda6a6a
fix: trim leading and trailing white space
shindigira 077ff53
chore: set default string empty
shindigira c07cc4b
chore: created a SectionIntro
shindigira 864db06
chore: reformatted SectionIntro
shindigira 10f64ca
Merge branch 'main' of github.com:cfpb/sbl-frontend into 85-part-2
shindigira 98213e7
chore: defensive coding
shindigira 42f238e
chore: removed unused code
shindigira f60e46b
style: added href to allow cursor:pointer on error links
shindigira 4bf7005
chore: added eslint ignore exception
shindigira 04a86a8
style: temp red border usage around checkbox
shindigira de6ec46
chore: revert step1formerrorheader messages
shindigira 7b6e206
Merge branch 'main' of github.com:cfpb/sbl-frontend into 85-part-2
shindigira e447867
feat: Updated DSR with Checkbox status stylings
shindigira 201a18b
Merge branch 'main' of github.com:cfpb/sbl-frontend into 85-part-2
shindigira 97f5545
fix: Clear Form no longer unmounts Associated Financial Data
shindigira b462a63
chore: removed comment
shindigira 6694cb7
style(fix): added -15px negative margin -- 45px below TextIntroduction
shindigira ce661c0
Revert "style(fix): added -15px negative margin -- 45px below TextInt…
shindigira File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,13 @@ | ||
| interface FieldGroupProperties { | ||
| children: ReactNode | ||
| children: ReactNode; | ||
| } | ||
|
|
||
| function FieldGroup({ children }: FieldGroupProperties): JSX.Element { | ||
| return ( | ||
| <div | ||
| className="bg-[#F7F8F9] p-[1.875rem] !border !border-solid !border-cfpbBorderColor" | ||
| > | ||
| {children} | ||
| </div> | ||
| ) | ||
| <div className='max-w-[48.125rem] !border !border-solid !border-cfpbBorderColor bg-[#F7F8F9] p-[1.875rem]'> | ||
| {children} | ||
| </div> | ||
| ); | ||
| } | ||
|
|
||
| export default FieldGroup; | ||
| export default FieldGroup; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| import { Heading } from 'design-system-react'; | ||
| import FormParagraph from 'components/FormParagraph'; | ||
|
|
||
| interface SectionIntroProperties { | ||
| heading: ReactNode; | ||
| children: ReactNode; | ||
| } | ||
|
|
||
| function SectionIntro({ | ||
| heading = '', | ||
| children = '', | ||
| }: SectionIntroProperties): JSX.Element { | ||
| return ( | ||
| <div className='mb-[1.625rem] max-w-[48.125rem]'> | ||
| <Heading type='2'>{heading}</Heading> | ||
| <FormParagraph>{children}</FormParagraph> | ||
| </div> | ||
| ); | ||
| } | ||
|
|
||
| export default SectionIntro; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.