-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: create phone number component tckt-363 #382
Conversation
…id submission data and pass previous value into React component tckt-363 Co-authored-by: Daniel Naab [email protected]
Terraform plan for tts-10x-atj-dev Plan: 0 to add, 2 to change, 0 to destroy.Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
!~ update in-place
Terraform will perform the following actions:
# cloudfoundry_app.tts-10x-atj-dev-server-doj_tts-10x-atj-dev-server-doj-app_380DB029 will be updated in-place
!~ resource "cloudfoundry_app" "tts-10x-atj-dev-server-doj_tts-10x-atj-dev-server-doj-app_380DB029" {
!~ docker_image = "ghcr.io/gsa-tts/forms/server-doj:5ee1c8c4bf9ab6ac1b6ea2f9b893fbb28bf2b6ea" -> "ghcr.io/gsa-tts/forms/server-doj:d46a64a284dd08e8be42fcda4a239c34592b2d60"
id = "8a9fc8b6-af5e-45a2-abb6-2c24ecbcdfaa"
name = "tts-10x-atj-dev-server-doj-app"
# (17 unchanged attributes hidden)
# (3 unchanged blocks hidden)
}
# cloudfoundry_app.tts-10x-atj-dev-server-kansas_tts-10x-atj-dev-server-kansas-app_337A9CF1 will be updated in-place
!~ resource "cloudfoundry_app" "tts-10x-atj-dev-server-kansas_tts-10x-atj-dev-server-kansas-app_337A9CF1" {
!~ docker_image = "ghcr.io/gsa-tts/forms/server-kansas:5ee1c8c4bf9ab6ac1b6ea2f9b893fbb28bf2b6ea" -> "ghcr.io/gsa-tts/forms/server-kansas:d46a64a284dd08e8be42fcda4a239c34592b2d60"
id = "e885e531-11b7-4906-9cc3-0ddf483868f5"
name = "tts-10x-atj-dev-server-kansas-app"
# (17 unchanged attributes hidden)
# (3 unchanged blocks hidden)
}
Plan: 0 to add, 2 to change, 0 to destroy. 📝 Plan generated in Post Terraform plan to PR comment #422 |
2dd84f4
to
01d4038
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just have a couple comments, but this looks great.
packages/design/src/Form/components/PhoneNumber/PhoneNumber.tsx
Outdated
Show resolved
Hide resolved
01d4038
to
04d452a
Compare
</span> | ||
) : null} | ||
<input | ||
className="usa-input" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could also get an error class on it:
className="usa-input" | |
className={classNames('usa-input', { | |
'usa-input--error': error, | |
})} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved. I noticed an error class missing from an input (to fix before merging) but otherwise looks great.
468ba0d
to
59d57b3
Compare
Created Phone Number Pattern for Forms Users.
Created Phone Number Pattern Edit for Form Builders.
Added unit tests for Phone Number config file.