Skip to content
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

fix(ABP1): Ensure copy text matches Figma and PDF #190

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions src/services/ui/src/pages/form/proto.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Document } from "@/components/RHF/types";

export const ABP1: Document = {
header: "ABP 1: Alternative Benefit Plan Populations",
header: "ABP 1: Alternative Benefit Plan populations",
sections: [
{
title: "Population identification",
Expand Down Expand Up @@ -43,7 +43,7 @@ export const ABP1: Document = {
},
{
description:
"Identify eligibility groups that are included in the Alternative Benefit Plan's population, and which may contain individuals that meet any targeting criteria used to further define the population.",
"Identify eligibility groups that are included in the Alternative Benefit Plan's population and that may contain individuals that meet any targeting criteria used to further define the population.",
slots: [
{
rhf: "FieldArray",
Expand Down Expand Up @@ -359,7 +359,7 @@ export const ABP1: Document = {
},
form: [
{
description: "Targeting criteria (select all that apply):",
description: "Targeting criteria (select all that apply)",
slots: [
{
rhf: "Checkbox",
Expand Down Expand Up @@ -505,7 +505,7 @@ export const ABP1: Document = {
},
{
description:
"Is there an additional incremental amount",
"Is there an additional incremental amount?",
slots: [
{
rhf: "Switch",
Expand All @@ -515,7 +515,7 @@ export const ABP1: Document = {
},
{
description:
"Enter incremental dollar amount",
"Incremental dollar amount",
//NOTE: Should this be a thing? It feels implied in the pdf
// dependency: {
// conditions: [
Expand Down Expand Up @@ -615,7 +615,7 @@ export const ABP1: Document = {
},
{
label:
"standard varies by living arrangement",
"Standard varies by living arrangement",
value: "living_standard",

form: [
Expand Down Expand Up @@ -683,7 +683,7 @@ export const ABP1: Document = {
{
rhf: "Input",
label:
"Enter incremental dollar amount:",
"Incremental dollar amount",
labelStyling:
"font-bold mb-2",
name: "doller_incremental_amount",
Expand All @@ -696,7 +696,7 @@ export const ABP1: Document = {
},
{
label:
"standard varies by some other way",
"Standard varies by some other way",
value: "other_standard",

form: [
Expand Down Expand Up @@ -761,7 +761,7 @@ export const ABP1: Document = {
{
rhf: "Input",
label:
"Enter incremental dollar amount:",
"Incremental dollar amount",
labelStyling:
"font-bold mb-2",
name: "doller_incremental_amount",
Expand Down Expand Up @@ -802,11 +802,11 @@ export const ABP1: Document = {
value: "brain_injury",
},
{
label: "HIV / AIDS",
label: "HIV/AIDS",
value: "hiv_aids",
},
{
label: "Medically Frail",
label: "Medically frail",
value: "med_frail",
},
{
Expand All @@ -815,23 +815,23 @@ export const ABP1: Document = {
},
{ label: "Autism", value: "autism" },
{
label: "Developmental Disability",
label: "Developmental disability",
value: "dev_disability",
},
{
label: "Intellectual Disability",
label: "Intellectual disability",
value: "int_disability",
},
{
label: "Mental Illness",
label: "Mental illness",
value: "mental_illness",
},
{
label: "Substance Use Disorder",
label: "Substance use disorder",
value: "substance_use_dis",
},
{ label: "Diabetes", value: "diabetes" },
{ label: "Heart Disease", value: "heart_dis" },
{ label: "Heart disease", value: "heart_dis" },
{ label: "Asthma", value: "asthma" },
{ label: "Obesity", value: "obesity" },
{
Expand Down Expand Up @@ -874,7 +874,7 @@ export const ABP1: Document = {
form: [
{
description:
"Will the Alternative Benefit Plan population include individuals from the entire state or territory?",
"Will the Alternative Benefit Plan population include individuals from the entire state/territory?",
slots: [
{
rhf: "Select",
Expand All @@ -890,7 +890,7 @@ export const ABP1: Document = {
],
},
{
description: "Select a method of geographic variation",
description: "Method of geographic variation",
dependency: {
conditions: [
{
Expand All @@ -912,7 +912,7 @@ export const ABP1: Document = {
value: "by_county",
form: [
{
description: "Specify Counties",
description: "Specify counties",
slots: [
{
name: "specify_counties",
Expand All @@ -927,7 +927,7 @@ export const ABP1: Document = {
value: "by_region",
form: [
{
description: "Specify Regions",
description: "Specify regions",
slots: [
{
name: "specify_regions",
Expand All @@ -942,7 +942,7 @@ export const ABP1: Document = {
value: "by_city_town",
form: [
{
description: "Specify Cities and Towns",
description: "Specify cities and towns",
slots: [
{
name: "specify_cities_towns",
Expand All @@ -957,7 +957,7 @@ export const ABP1: Document = {
value: "other",
form: [
{
description: "Specify Other",
description: "Specify other",
slots: [
{
name: "specify_other",
Expand All @@ -979,7 +979,7 @@ export const ABP1: Document = {
form: [
{
description:
"Other Information Related to Selection of the Section 1937 Coverage Option and the Base Benchmark Plan (optional):",
"Other information related to selection of the Section 1937 coverage option and the base benchmark plan (optional)",
slots: [
{
name: "additional_information",
Expand Down
Loading