From f361abeb3251f5908d8de720fdabec61e1c12a77 Mon Sep 17 00:00:00 2001 From: "Phillip B. Kelly" Date: Wed, 11 Dec 2024 15:34:55 -0500 Subject: [PATCH 1/2] DIG-5479: APB Banner for year end tax confirmation --- services-js/access-boston/fixtures/apps.yaml | 5 +- .../__snapshots__/Storyshots.test.ts.snap | 90 +------------------ 2 files changed, 5 insertions(+), 90 deletions(-) diff --git a/services-js/access-boston/fixtures/apps.yaml b/services-js/access-boston/fixtures/apps.yaml index 0acbfe5aa..aa4ee898a 100644 --- a/services-js/access-boston/fixtures/apps.yaml +++ b/services-js/access-boston/fixtures/apps.yaml @@ -1,7 +1,8 @@ notice: label: 'Notice' - pretext: '' - text: 'Make your Access Boston account even more secure by setting up the PingID app. It is faster and easier to use than getting codes via text, email or phone! Directions are [here](https://www.boston.gov/access-boston-portal-help#pingid-app-instructions)' + pretext: 'City Employees: Go Paperless' + text: 'Click the ESS tile to confirm that your mailing address is correct & to go paperless for your W2, ACA and paystubs. Tax documents will be available in January.' + # text: 'Make your Access Boston account even more secure by setting up the PingID app. It is faster and easier to use than getting codes via text, email or phone! Directions are [here](https://www.boston.gov/access-boston-portal-help#pingid-app-instructions)' categories: - title: Applications show_request_access_link: false diff --git a/services-js/access-boston/src/stories/__snapshots__/Storyshots.test.ts.snap b/services-js/access-boston/src/stories/__snapshots__/Storyshots.test.ts.snap index 565e1bd86..1a058d0c0 100644 --- a/services-js/access-boston/src/stories/__snapshots__/Storyshots.test.ts.snap +++ b/services-js/access-boston/src/stories/__snapshots__/Storyshots.test.ts.snap @@ -3489,7 +3489,7 @@ exports[`Storyshots Confirm-Identity Review 1`] = ` Data of Birth (MM/DD/YYYY)
Day - Year -
Day - Year - How should we send security codes?
@@ -11776,11 +11705,6 @@ exports[`Storyshots RegisterMfaPage modal open 1`] = `
How should we send security codes?
@@ -12142,11 +12066,6 @@ exports[`Storyshots RegisterMfaPage/DeviceVerificationForm code sending error 1`
How should we send security codes?
@@ -12486,11 +12405,6 @@ exports[`Storyshots RegisterMfaPage/DeviceVerificationForm phone 1`] = `
How should we send security codes?
From d66b56ee1b1fcb4f5ad796b1b5ee8ccceb9964d7 Mon Sep 17 00:00:00 2001 From: "Phillip B. Kelly" Date: Thu, 12 Dec 2024 15:43:12 -0500 Subject: [PATCH 2/2] DIG-5479: APB Banner for year end tax confirmation wip#2 --- services-js/access-boston/fixtures/apps.yaml | 4 +-- .../src/client/common/icons/info.tsx | 35 +++++++++++++++++++ 2 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 services-js/access-boston/src/client/common/icons/info.tsx diff --git a/services-js/access-boston/fixtures/apps.yaml b/services-js/access-boston/fixtures/apps.yaml index aa4ee898a..49e00d3d2 100644 --- a/services-js/access-boston/fixtures/apps.yaml +++ b/services-js/access-boston/fixtures/apps.yaml @@ -1,6 +1,6 @@ notice: - label: 'Notice' - pretext: 'City Employees: Go Paperless' + label: 'City Employees - Go Paperless' + pretext: '' text: 'Click the ESS tile to confirm that your mailing address is correct & to go paperless for your W2, ACA and paystubs. Tax documents will be available in January.' # text: 'Make your Access Boston account even more secure by setting up the PingID app. It is faster and easier to use than getting codes via text, email or phone! Directions are [here](https://www.boston.gov/access-boston-portal-help#pingid-app-instructions)' categories: diff --git a/services-js/access-boston/src/client/common/icons/info.tsx b/services-js/access-boston/src/client/common/icons/info.tsx new file mode 100644 index 000000000..7d3c7c0cd --- /dev/null +++ b/services-js/access-boston/src/client/common/icons/info.tsx @@ -0,0 +1,35 @@ +/** @jsx jsx */ + +import { jsx, css } from '@emotion/core'; + +/** + * @name infoSvg + */ + +export const InfoSVG = () => { + return ( + + + + + + ); +}; + +const INFO_STYLING = css(` + '& > svg': { + width: 32px; + height: 32px; + } +`); + +export default InfoSVG;