{"version":3,"file":"common-dialogs.DS2xjOAB.js","sources":["../../../src/modules/get-started/get-started-model.ts","../../../src/modules/get-started/get-started-step1-state.tsx","../../../src/modules/get-started/get-started-step2-user-type.tsx","../../../src/modules/get-started/get-started-step3-children.tsx","../../../src/modules/get-started/get-started-step4-email.tsx","../../../src/modules/get-started/get-started-navigation.ts","../../../src/modules/get-started/get-started-dialog.tsx","../../../src/components/ui/icons/closed-eye-icon.tsx","../../../src/components/ui/password-input.tsx","../../../src/modules/login/login-dialog.tsx","../../../src/components/layout/common-dialogs.tsx"],"sourcesContent":["import { trackFlowStepCompleted } from '@lib/analytics'\nimport { runQuery } from '@lib/graphql'\nimport { trackUserData } from '@lib/user-tracking'\n\nexport const ANALYTICS_FLOW_NAME = 'GetStarted'\n\nexport enum UserType {\n Parent = 'parent',\n Grandparent = 'grandparent',\n Advisor = 'advisor',\n Other = 'other'\n}\n\nexport const CHILD_AGES = [\n { value: -1, label: 'Not born yet' },\n { value: 0, label: 'newborn' },\n { value: 1, label: '1 year old' },\n { value: 2, label: '2 years old' },\n { value: 3, label: '3 years old' },\n { value: 4, label: '4 years old' },\n { value: 5, label: '5 years old' },\n { value: 6, label: '6 years old' },\n { value: 7, label: '7 years old' },\n { value: 8, label: '8 years old' },\n { value: 9, label: '9 years old' },\n { value: 10, label: '10 years old' },\n { value: 11, label: '11 years old' },\n { value: 12, label: '12 years old' },\n { value: 13, label: '13 years old' },\n { value: 14, label: '14 years old' },\n { value: 15, label: '15 years old' },\n { value: 16, label: '16 years old' },\n { value: 17, label: '17 years old' },\n { value: 18, label: '18+ years old' }\n]\n\nexport type GetStartedFlowData = {\n stateId: string | undefined\n userType: UserType | undefined\n youngestChildAge: number | undefined\n email: string\n}\n\nexport enum GetStartedFlowStep {\n Step1_StateStep = 1,\n Step2_UserTypeStep = 2,\n Step3_Children = 3,\n Step4_Email = 4\n}\n\nexport const signUpUser = async (data: GetStartedFlowData) => {\n const query = `\n mutation {\n college_savings_user_v3(\n type_of_user: \"${data.userType}\"\n next_step_v3: \"learn\"\n state_id: \"${data.stateId}\"\n email: \"${data.email}\"\n ) {\n id\n }\n }\n `\n\n try {\n await runQuery(query)\n } catch (error) {\n console.error(error)\n }\n}\n\nexport const trackSavingsCenterUserData = async (data: GetStartedFlowData) => {\n await trackUserData({\n email: data.email,\n userType: data.userType,\n stateId: data.stateId,\n childAge: data.youngestChildAge,\n isSavingsCenter: true,\n source: 'savings_center'\n })\n}\n\nexport const trackGetStartedFlowStepCompleted = ({\n step,\n value\n}: {\n step: GetStartedFlowStep\n value?: string\n}) => {\n trackFlowStepCompleted({\n flowName: ANALYTICS_FLOW_NAME,\n stepName: GetStartedFlowStep[step],\n value\n })\n}\n","import { Button } from '@components/ui/button'\nimport {\n GetStartedFlowStep,\n trackGetStartedFlowStepCompleted,\n type GetStartedFlowData\n} from './get-started-model'\nimport { ResponsiveCombobox, type SearchOption } from '@components/ui/responsive-combobox'\nimport { US_STATES_SEARCH } from '@lib/us-states'\n\ninterface Props {\n data: GetStartedFlowData\n setData: (data: GetStartedFlowData) => void\n continueToNextStep: () => void\n}\n\nexport const GetStartedStep1State = ({ data, setData, continueToNextStep }: Props) => {\n const completeStep = () => {\n trackGetStartedFlowStepCompleted({\n step: GetStartedFlowStep.Step1_StateStep,\n value: data.stateId\n })\n continueToNextStep()\n }\n\n return (\n