-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pilot session UI changes to pattern 2 tasks (#32920)
* make card flex on VeteranInformation * remove shadow from cards * remove note section for task blue profile info * add name label to card, update save button, add post study button * clean up mock server, adjust mock data to match between tasks * test: update e2e tests for data changes * test: update orange task e2e test * remove description on task blue contact info
- Loading branch information
1 parent
bf53392
commit 7646270
Showing
18 changed files
with
97 additions
and
175 deletions.
There are no files selected for viewing
This file contains 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 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 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 |
---|---|---|
|
@@ -14,12 +14,11 @@ const responses = { | |
mobilePhone: '5554044567', | ||
email: '[email protected]', | ||
veteranAddress: { | ||
street: '1234 Fake St.', | ||
street2: 'Apt Z', | ||
city: 'Fort Collins', | ||
state: 'CO', | ||
street: '123 Mailing Address St.', | ||
city: 'Futlon', | ||
state: 'NY', | ||
country: 'USA', | ||
postalCode: '80521', | ||
postalCode: '97064', | ||
isMilitary: false, | ||
}, | ||
toursOfDuty: [ | ||
|
18 changes: 9 additions & 9 deletions
18
src/applications/_mock-form-ae-design-patterns/mocks/endpoints/in-progress-forms/26-1880.js
This file contains 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,20 +1,20 @@ | ||
const response = { | ||
formData: { | ||
fullName: { | ||
first: 'Mark', | ||
last: 'Webb', | ||
suffix: 'Jr.', | ||
first: 'Mitchell', | ||
middle: 'George', | ||
last: 'Jenkins', | ||
}, | ||
dateOfBirth: '1950-10-04', | ||
dateOfBirth: '1956-07-10', | ||
applicantAddress: { | ||
street: '123 Faker Street', | ||
city: 'Bogusville', | ||
state: 'GA', | ||
street: '123 Mailing Address St.', | ||
city: 'Fulton', | ||
state: 'NY', | ||
country: 'USA', | ||
postalCode: '30058', | ||
postalCode: '97064', | ||
}, | ||
contactPhone: '4445551212', | ||
contactEmail: '[email protected]', | ||
contactEmail: '[email protected]', | ||
periodsOfService: [ | ||
{ | ||
serviceBranch: 'Air Force', | ||
|
8 changes: 6 additions & 2 deletions
8
...form-ae-design-patterns/mocks/endpoints/in-progress-forms/mock-form-ae-design-patterns.js
This file contains 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,9 +1,13 @@ | ||
const prefill = { | ||
formData: { | ||
veteranFullName: { first: 'Julio', middle: 'E', last: 'Hunter' }, | ||
veteranFullName: { | ||
first: 'Mitchell', | ||
middle: 'George', | ||
last: 'Jenkins', | ||
}, | ||
gender: 'M', | ||
veteranDateOfBirth: '1950-11-18', | ||
veteranSocialSecurityNumber: '796378321', | ||
veteranSocialSecurityNumber: '123456789', | ||
homePhone: '6575107441', | ||
email: '[email protected]', | ||
'view:maritalStatus': { maritalStatus: 'MARRIED' }, | ||
|
This file contains 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 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 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.