@axos-web-dev/shared-components 1.0.99-dev-2 → 1.0.99-dev-6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist/Calculators/BuyDownCalculator/index.js +1 -1
  2. package/dist/Calculators/Calculator.d.ts +3 -1
  3. package/dist/Calculators/Calculator.js +4 -2
  4. package/dist/Calculators/MonthlyPaymentCalculator/index.d.ts +3 -1
  5. package/dist/Calculators/MonthlyPaymentCalculator/index.js +3 -8
  6. package/dist/Forms/ApplicationStart.d.ts +1 -1
  7. package/dist/Forms/ApplicationStart.js +101 -89
  8. package/dist/Forms/ClearingForm.d.ts +1 -1
  9. package/dist/Forms/ClearingForm.js +174 -162
  10. package/dist/Forms/CommercialDeposits.d.ts +1 -1
  11. package/dist/Forms/CommercialDeposits.js +191 -179
  12. package/dist/Forms/CommercialLending.d.ts +1 -1
  13. package/dist/Forms/CommercialLending.js +268 -256
  14. package/dist/Forms/CommercialPremiumFinance.d.ts +1 -1
  15. package/dist/Forms/CommercialPremiumFinance.js +106 -94
  16. package/dist/Forms/ContactCompany.d.ts +1 -1
  17. package/dist/Forms/ContactCompany.js +103 -91
  18. package/dist/Forms/ContactCompanyTitle.d.ts +1 -1
  19. package/dist/Forms/ContactCompanyTitle.js +117 -105
  20. package/dist/Forms/ContactUs.js +2 -1
  21. package/dist/Forms/ContactUsAAS.d.ts +1 -1
  22. package/dist/Forms/ContactUsAAS.js +170 -158
  23. package/dist/Forms/ContactUsBusiness.d.ts +1 -1
  24. package/dist/Forms/ContactUsBusiness.js +124 -112
  25. package/dist/Forms/ContactUsBusinessNameEmail.d.ts +1 -1
  26. package/dist/Forms/ContactUsBusinessNameEmail.js +93 -81
  27. package/dist/Forms/ContactUsLVF.d.ts +3 -1
  28. package/dist/Forms/ContactUsLVF.js +117 -101
  29. package/dist/Forms/ContactUsNMLSId.d.ts +1 -1
  30. package/dist/Forms/ContactUsNMLSId.js +107 -95
  31. package/dist/Forms/CpraRequest.d.ts +1 -1
  32. package/dist/Forms/CpraRequest.js +630 -618
  33. package/dist/Forms/CraPublicFile.d.ts +1 -1
  34. package/dist/Forms/CraPublicFile.js +99 -87
  35. package/dist/Forms/DealerServices.d.ts +1 -1
  36. package/dist/Forms/DealerServices.js +215 -203
  37. package/dist/Forms/EmailOnly.d.ts +1 -1
  38. package/dist/Forms/EmailOnly.js +46 -34
  39. package/dist/Forms/EmailUs.d.ts +1 -1
  40. package/dist/Forms/EmailUs.js +65 -53
  41. package/dist/Forms/MortgageRate/MortgageRateForm.d.ts +1 -1
  42. package/dist/Forms/MortgageRate/MortgageRateForm.js +363 -343
  43. package/dist/Forms/QuickPricer/QuickPricerForm.d.ts +1 -1
  44. package/dist/Forms/QuickPricer/QuickPricerForm.js +608 -596
  45. package/dist/Forms/ScheduleCall.d.ts +1 -1
  46. package/dist/Forms/ScheduleCall.js +146 -134
  47. package/dist/Forms/ScheduleCallPremier.d.ts +1 -1
  48. package/dist/Forms/ScheduleCallPremier.js +168 -156
  49. package/dist/Forms/VendorQuestionnaire.d.ts +1 -1
  50. package/dist/Forms/VendorQuestionnaire.js +807 -795
  51. package/dist/Forms/WcplSurvey.d.ts +1 -1
  52. package/dist/Forms/WcplSurvey.js +102 -90
  53. package/package.json +133 -133
@@ -45,6 +45,7 @@ const CpraRequest = ({
45
45
  headline,
46
46
  description,
47
47
  callToAction,
48
+ onValidate,
48
49
  id
49
50
  }) => {
50
51
  const schema = z.object({
@@ -145,627 +146,638 @@ const CpraRequest = ({
145
146
  " You have the right to send Axos Financial a verifiable request, twice in a 12-month period, asking that we disclose to you the personal information Axos Financial has collected, used, disclosed and sold about you during the past 12 months. Please check the box below relating to the information you would like Axos Financial to disclose to you:"
146
147
  ] })
147
148
  ] }),
148
- /* @__PURE__ */ jsxs("form", { className: form, onSubmit: handleSubmit(submitForm), children: [
149
- /* @__PURE__ */ jsxs("div", { className: clsx(formWrapper({ variant })), children: [
150
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
151
- RadioButtonSet,
152
- {
153
- id: "California_Resident",
154
- label: "* Are you a California resident?",
155
- sizes: "medium",
156
- required: true,
157
- error: !!errors.California_Resident,
158
- helperText: errors.California_Resident?.message,
159
- variant,
160
- children: [
161
- /* @__PURE__ */ jsx(
162
- RadioButton,
163
- {
164
- ...register("California_Resident", {}),
165
- value: "Yes",
166
- radioText: "Yes",
167
- groupName: "California_Resident"
168
- }
169
- ),
170
- /* @__PURE__ */ jsx(
171
- RadioButton,
172
- {
173
- ...register("California_Resident", {}),
174
- value: "No",
175
- radioText: "No",
176
- groupName: "California_Resident"
177
- }
178
- )
179
- ]
180
- }
181
- ) }),
182
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
183
- RadioButtonSet,
184
- {
185
- id: "Categories_of_personal_info",
186
- label: "* The categories of personal information Axos Financial has collected about you.",
187
- sizes: "medium",
188
- required: true,
189
- error: !!errors.Categories_of_personal_info,
190
- helperText: errors.Categories_of_personal_info?.message,
191
- variant,
192
- children: [
193
- /* @__PURE__ */ jsx(
194
- RadioButton,
195
- {
196
- ...register("Categories_of_personal_info", {}),
197
- value: "Yes",
198
- radioText: "Yes",
199
- groupName: "Categories_of_personal_info"
200
- }
201
- ),
202
- /* @__PURE__ */ jsx(
203
- RadioButton,
204
- {
205
- ...register("Categories_of_personal_info", {}),
206
- value: "No",
207
- radioText: "No",
208
- groupName: "Categories_of_personal_info"
209
- }
210
- )
211
- ]
212
- }
213
- ) }),
214
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
215
- RadioButtonSet,
216
- {
217
- id: "Pieces_of_personal_information",
218
- label: "* The specific pieces of personal information Axos Financial has collected about you.",
219
- sizes: "medium",
220
- required: true,
221
- error: !!errors.Pieces_of_personal_information,
222
- helperText: errors.Pieces_of_personal_information?.message,
223
- variant,
224
- children: [
225
- /* @__PURE__ */ jsx(
226
- RadioButton,
227
- {
228
- ...register("Pieces_of_personal_information", {}),
229
- value: "Yes",
230
- radioText: "Yes",
231
- groupName: "Pieces_of_personal_information"
232
- }
233
- ),
234
- /* @__PURE__ */ jsx(
235
- RadioButton,
236
- {
237
- ...register("Pieces_of_personal_information", {}),
238
- value: "No",
239
- radioText: "No",
240
- groupName: "Pieces_of_personal_information"
241
- }
242
- )
243
- ]
244
- }
245
- ) }),
246
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx("div", { className: `${form} ${descriptionField({ variant })}`, children: "By selecting specific pieces of personal information Axos Financial has collected about you, you are required to sign a declaration, under penalty of perjury, that you are the individual whose information is provided above." }) }),
247
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
248
- RadioButtonSet,
249
- {
250
- id: "Request_Correction_of_Information",
251
- label: "* Request correction of information?",
252
- sizes: "medium",
253
- required: true,
254
- error: !!errors.Request_Correction_of_Information,
255
- helperText: errors.Request_Correction_of_Information?.message,
256
- variant,
257
- children: [
258
- /* @__PURE__ */ jsx(
259
- RadioButton,
260
- {
261
- ...register("Request_Correction_of_Information", {}),
262
- value: "Yes",
263
- radioText: "Yes",
264
- groupName: "Request_Correction_of_Information"
265
- }
266
- ),
267
- /* @__PURE__ */ jsx(
268
- RadioButton,
269
- {
270
- ...register("Request_Correction_of_Information", {}),
271
- value: "No",
272
- radioText: "No",
273
- groupName: "Request_Correction_of_Information"
274
- }
275
- )
276
- ]
277
- }
278
- ) }),
279
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs("div", { className: `${form} ${descriptionField({ variant })}`, children: [
280
- /* @__PURE__ */ jsx("u", { children: "Right to Delete:" }),
281
- " You have the right to submit a verifiable request asking that Axos Financial delete certain personal information Axos Financial has collected from you, subject to certain exceptions as permitted by law."
282
- ] }) }),
283
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
284
- RadioButtonSet,
285
- {
286
- id: "Delete_personal_info",
287
- label: "* Would you like Axos Financial to delete the personal information we have collected from you?",
288
- sizes: "medium",
289
- required: true,
290
- error: !!errors.Delete_personal_info,
291
- helperText: errors.Delete_personal_info?.message,
292
- variant,
293
- children: [
294
- /* @__PURE__ */ jsx(
295
- RadioButton,
296
- {
297
- ...register("Delete_personal_info", {}),
298
- value: "Yes",
299
- radioText: "Yes",
300
- groupName: "Delete_personal_info"
301
- }
302
- ),
303
- /* @__PURE__ */ jsx(
304
- RadioButton,
305
- {
306
- ...register("Delete_personal_info", {}),
307
- value: "No",
308
- radioText: "No",
309
- groupName: "Delete_personal_info"
310
- }
311
- )
312
- ]
313
- }
314
- ) }),
315
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs("div", { className: `${form} ${descriptionField({ variant })}`, children: [
316
- /* @__PURE__ */ jsx("u", { children: "Right to Opt-Out of Sale:" }),
317
- " You have the right to opt-out of the sale of your personal information we collect on our websites, such as to enhance the ability to serve you content and advertisements that may be of interest to you."
318
- ] }) }),
319
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
320
- RadioButtonSet,
321
- {
322
- id: "Opt_out_of_sale_of_info",
323
- label: "* Would you like to opt out of the sale of your personal information by Axos Financial?",
324
- sizes: "medium",
325
- required: true,
326
- error: !!errors.Opt_out_of_sale_of_info,
327
- helperText: errors.Opt_out_of_sale_of_info?.message,
328
- variant,
329
- children: [
330
- /* @__PURE__ */ jsx(
331
- RadioButton,
332
- {
333
- ...register("Opt_out_of_sale_of_info", {}),
334
- value: "Yes",
335
- radioText: "Yes",
336
- groupName: "Opt_out_of_sale_of_info"
337
- }
338
- ),
339
- /* @__PURE__ */ jsx(
340
- RadioButton,
341
- {
342
- ...register("Opt_out_of_sale_of_info", {}),
343
- value: "No",
344
- radioText: "No",
345
- groupName: "Opt_out_of_sale_of_info"
346
- }
347
- )
348
- ]
349
- }
350
- ) }),
351
- /* @__PURE__ */ jsx("div", { className: `${headerContainer} ${fullRowForm}`, children: /* @__PURE__ */ jsx("h2", { className: `header_2 ${descriptionField({ variant })}`, children: "Step 2: Please provide the following information so that we can verify your identity and respond to your request." }) }),
352
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
353
- RadioButtonSet,
354
- {
355
- id: "Current_client",
356
- label: "* I am a current client or customer.",
357
- sizes: "medium",
358
- required: true,
359
- error: !!errors.Current_client,
360
- helperText: errors.Current_client?.message,
361
- variant,
362
- children: [
363
- /* @__PURE__ */ jsx(
364
- RadioButton,
365
- {
366
- ...register("Current_client", {}),
367
- value: "Yes",
368
- radioText: "Yes",
369
- groupName: "Current_client"
370
- }
371
- ),
372
- /* @__PURE__ */ jsx(
373
- RadioButton,
374
- {
375
- ...register("Current_client", {}),
376
- value: "No",
377
- radioText: "No",
378
- groupName: "Current_client"
379
- }
380
- )
381
- ]
382
- }
383
- ) }),
384
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
385
- RadioButtonSet,
386
- {
387
- id: "Former_client",
388
- label: "* I am a former client or customer.",
389
- sizes: "medium",
390
- required: true,
391
- error: !!errors.Former_client,
392
- helperText: errors.Former_client?.message,
393
- variant,
394
- children: [
395
- /* @__PURE__ */ jsx(
396
- RadioButton,
397
- {
398
- ...register("Former_client", {}),
399
- value: "Yes",
400
- radioText: "Yes",
401
- groupName: "Former_client"
402
- }
403
- ),
404
- /* @__PURE__ */ jsx(
405
- RadioButton,
406
- {
407
- ...register("Former_client", {}),
408
- value: "No",
409
- radioText: "No",
410
- groupName: "Former_client"
411
- }
412
- )
413
- ]
414
- }
415
- ) }),
416
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
417
- RadioButtonSet,
418
- {
419
- id: "Currently_Employed_by_Axos_Financial",
420
- label: "* Are you currently employed by Axos Financial?",
421
- sizes: "medium",
422
- required: true,
423
- error: !!errors.Currently_Employed_by_Axos_Financial,
424
- helperText: errors.Currently_Employed_by_Axos_Financial?.message,
425
- variant,
426
- children: [
427
- /* @__PURE__ */ jsx(
428
- RadioButton,
429
- {
430
- ...register("Currently_Employed_by_Axos_Financial", {}),
431
- value: "Yes",
432
- radioText: "Yes",
433
- groupName: "Currently_Employed_by_Axos_Financial"
434
- }
435
- ),
436
- /* @__PURE__ */ jsx(
437
- RadioButton,
438
- {
439
- ...register("Currently_Employed_by_Axos_Financial", {}),
440
- value: "No",
441
- radioText: "No",
442
- groupName: "Currently_Employed_by_Axos_Financial"
443
- }
444
- )
445
- ]
446
- }
447
- ) }),
448
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
449
- RadioButtonSet,
450
- {
451
- id: "Previously_Employed_by_Axos_Financial",
452
- label: "* Have you previously been employed by Axos Financial?",
453
- sizes: "medium",
454
- required: true,
455
- error: !!errors.Previously_Employed_by_Axos_Financial,
456
- helperText: errors.Previously_Employed_by_Axos_Financial?.message,
457
- variant,
458
- children: [
459
- /* @__PURE__ */ jsx(
460
- RadioButton,
461
- {
462
- ...register("Previously_Employed_by_Axos_Financial", {}),
463
- value: "Yes",
464
- radioText: "Yes",
465
- groupName: "Previously_Employed_by_Axos_Financial"
466
- }
467
- ),
468
- /* @__PURE__ */ jsx(
469
- RadioButton,
470
- {
471
- ...register("Previously_Employed_by_Axos_Financial", {}),
472
- value: "No",
473
- radioText: "No",
474
- groupName: "Previously_Employed_by_Axos_Financial"
475
- }
476
- )
477
- ]
478
- }
479
- ) }),
480
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
481
- RadioButtonSet,
482
- {
483
- id: "Ever_Applied_for_Employment_with_Axos_Financial",
484
- label: "* Have you ever applied for employment with Axos Financial?",
485
- sizes: "medium",
486
- required: true,
487
- error: !!errors.Ever_Applied_for_Employment_with_Axos_Financial,
488
- helperText: errors.Ever_Applied_for_Employment_with_Axos_Financial?.message,
489
- variant,
490
- children: [
491
- /* @__PURE__ */ jsx(
492
- RadioButton,
493
- {
494
- ...register(
495
- "Ever_Applied_for_Employment_with_Axos_Financial",
496
- {}
149
+ /* @__PURE__ */ jsxs(
150
+ "form",
151
+ {
152
+ className: form,
153
+ onSubmit: async (e) => {
154
+ onValidate && onValidate(e);
155
+ await handleSubmit(submitForm)(e);
156
+ e.preventDefault();
157
+ },
158
+ children: [
159
+ /* @__PURE__ */ jsxs("div", { className: clsx(formWrapper({ variant })), children: [
160
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
161
+ RadioButtonSet,
162
+ {
163
+ id: "California_Resident",
164
+ label: "* Are you a California resident?",
165
+ sizes: "medium",
166
+ required: true,
167
+ error: !!errors.California_Resident,
168
+ helperText: errors.California_Resident?.message,
169
+ variant,
170
+ children: [
171
+ /* @__PURE__ */ jsx(
172
+ RadioButton,
173
+ {
174
+ ...register("California_Resident", {}),
175
+ value: "Yes",
176
+ radioText: "Yes",
177
+ groupName: "California_Resident"
178
+ }
497
179
  ),
498
- value: "Yes",
499
- radioText: "Yes",
500
- groupName: "Ever_Applied_for_Employment_with_Axos_Financial"
501
- }
502
- ),
503
- /* @__PURE__ */ jsx(
504
- RadioButton,
505
- {
506
- ...register(
507
- "Ever_Applied_for_Employment_with_Axos_Financial",
508
- {}
180
+ /* @__PURE__ */ jsx(
181
+ RadioButton,
182
+ {
183
+ ...register("California_Resident", {}),
184
+ value: "No",
185
+ radioText: "No",
186
+ groupName: "California_Resident"
187
+ }
188
+ )
189
+ ]
190
+ }
191
+ ) }),
192
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
193
+ RadioButtonSet,
194
+ {
195
+ id: "Categories_of_personal_info",
196
+ label: "* The categories of personal information Axos Financial has collected about you.",
197
+ sizes: "medium",
198
+ required: true,
199
+ error: !!errors.Categories_of_personal_info,
200
+ helperText: errors.Categories_of_personal_info?.message,
201
+ variant,
202
+ children: [
203
+ /* @__PURE__ */ jsx(
204
+ RadioButton,
205
+ {
206
+ ...register("Categories_of_personal_info", {}),
207
+ value: "Yes",
208
+ radioText: "Yes",
209
+ groupName: "Categories_of_personal_info"
210
+ }
211
+ ),
212
+ /* @__PURE__ */ jsx(
213
+ RadioButton,
214
+ {
215
+ ...register("Categories_of_personal_info", {}),
216
+ value: "No",
217
+ radioText: "No",
218
+ groupName: "Categories_of_personal_info"
219
+ }
220
+ )
221
+ ]
222
+ }
223
+ ) }),
224
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
225
+ RadioButtonSet,
226
+ {
227
+ id: "Pieces_of_personal_information",
228
+ label: "* The specific pieces of personal information Axos Financial has collected about you.",
229
+ sizes: "medium",
230
+ required: true,
231
+ error: !!errors.Pieces_of_personal_information,
232
+ helperText: errors.Pieces_of_personal_information?.message,
233
+ variant,
234
+ children: [
235
+ /* @__PURE__ */ jsx(
236
+ RadioButton,
237
+ {
238
+ ...register("Pieces_of_personal_information", {}),
239
+ value: "Yes",
240
+ radioText: "Yes",
241
+ groupName: "Pieces_of_personal_information"
242
+ }
243
+ ),
244
+ /* @__PURE__ */ jsx(
245
+ RadioButton,
246
+ {
247
+ ...register("Pieces_of_personal_information", {}),
248
+ value: "No",
249
+ radioText: "No",
250
+ groupName: "Pieces_of_personal_information"
251
+ }
252
+ )
253
+ ]
254
+ }
255
+ ) }),
256
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx("div", { className: `${form} ${descriptionField({ variant })}`, children: "By selecting specific pieces of personal information Axos Financial has collected about you, you are required to sign a declaration, under penalty of perjury, that you are the individual whose information is provided above." }) }),
257
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
258
+ RadioButtonSet,
259
+ {
260
+ id: "Request_Correction_of_Information",
261
+ label: "* Request correction of information?",
262
+ sizes: "medium",
263
+ required: true,
264
+ error: !!errors.Request_Correction_of_Information,
265
+ helperText: errors.Request_Correction_of_Information?.message,
266
+ variant,
267
+ children: [
268
+ /* @__PURE__ */ jsx(
269
+ RadioButton,
270
+ {
271
+ ...register("Request_Correction_of_Information", {}),
272
+ value: "Yes",
273
+ radioText: "Yes",
274
+ groupName: "Request_Correction_of_Information"
275
+ }
276
+ ),
277
+ /* @__PURE__ */ jsx(
278
+ RadioButton,
279
+ {
280
+ ...register("Request_Correction_of_Information", {}),
281
+ value: "No",
282
+ radioText: "No",
283
+ groupName: "Request_Correction_of_Information"
284
+ }
285
+ )
286
+ ]
287
+ }
288
+ ) }),
289
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs("div", { className: `${form} ${descriptionField({ variant })}`, children: [
290
+ /* @__PURE__ */ jsx("u", { children: "Right to Delete:" }),
291
+ " You have the right to submit a verifiable request asking that Axos Financial delete certain personal information Axos Financial has collected from you, subject to certain exceptions as permitted by law."
292
+ ] }) }),
293
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
294
+ RadioButtonSet,
295
+ {
296
+ id: "Delete_personal_info",
297
+ label: "* Would you like Axos Financial to delete the personal information we have collected from you?",
298
+ sizes: "medium",
299
+ required: true,
300
+ error: !!errors.Delete_personal_info,
301
+ helperText: errors.Delete_personal_info?.message,
302
+ variant,
303
+ children: [
304
+ /* @__PURE__ */ jsx(
305
+ RadioButton,
306
+ {
307
+ ...register("Delete_personal_info", {}),
308
+ value: "Yes",
309
+ radioText: "Yes",
310
+ groupName: "Delete_personal_info"
311
+ }
312
+ ),
313
+ /* @__PURE__ */ jsx(
314
+ RadioButton,
315
+ {
316
+ ...register("Delete_personal_info", {}),
317
+ value: "No",
318
+ radioText: "No",
319
+ groupName: "Delete_personal_info"
320
+ }
321
+ )
322
+ ]
323
+ }
324
+ ) }),
325
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs("div", { className: `${form} ${descriptionField({ variant })}`, children: [
326
+ /* @__PURE__ */ jsx("u", { children: "Right to Opt-Out of Sale:" }),
327
+ " You have the right to opt-out of the sale of your personal information we collect on our websites, such as to enhance the ability to serve you content and advertisements that may be of interest to you."
328
+ ] }) }),
329
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
330
+ RadioButtonSet,
331
+ {
332
+ id: "Opt_out_of_sale_of_info",
333
+ label: "* Would you like to opt out of the sale of your personal information by Axos Financial?",
334
+ sizes: "medium",
335
+ required: true,
336
+ error: !!errors.Opt_out_of_sale_of_info,
337
+ helperText: errors.Opt_out_of_sale_of_info?.message,
338
+ variant,
339
+ children: [
340
+ /* @__PURE__ */ jsx(
341
+ RadioButton,
342
+ {
343
+ ...register("Opt_out_of_sale_of_info", {}),
344
+ value: "Yes",
345
+ radioText: "Yes",
346
+ groupName: "Opt_out_of_sale_of_info"
347
+ }
348
+ ),
349
+ /* @__PURE__ */ jsx(
350
+ RadioButton,
351
+ {
352
+ ...register("Opt_out_of_sale_of_info", {}),
353
+ value: "No",
354
+ radioText: "No",
355
+ groupName: "Opt_out_of_sale_of_info"
356
+ }
357
+ )
358
+ ]
359
+ }
360
+ ) }),
361
+ /* @__PURE__ */ jsx("div", { className: `${headerContainer} ${fullRowForm}`, children: /* @__PURE__ */ jsx("h2", { className: `header_2 ${descriptionField({ variant })}`, children: "Step 2: Please provide the following information so that we can verify your identity and respond to your request." }) }),
362
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
363
+ RadioButtonSet,
364
+ {
365
+ id: "Current_client",
366
+ label: "* I am a current client or customer.",
367
+ sizes: "medium",
368
+ required: true,
369
+ error: !!errors.Current_client,
370
+ helperText: errors.Current_client?.message,
371
+ variant,
372
+ children: [
373
+ /* @__PURE__ */ jsx(
374
+ RadioButton,
375
+ {
376
+ ...register("Current_client", {}),
377
+ value: "Yes",
378
+ radioText: "Yes",
379
+ groupName: "Current_client"
380
+ }
381
+ ),
382
+ /* @__PURE__ */ jsx(
383
+ RadioButton,
384
+ {
385
+ ...register("Current_client", {}),
386
+ value: "No",
387
+ radioText: "No",
388
+ groupName: "Current_client"
389
+ }
390
+ )
391
+ ]
392
+ }
393
+ ) }),
394
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
395
+ RadioButtonSet,
396
+ {
397
+ id: "Former_client",
398
+ label: "* I am a former client or customer.",
399
+ sizes: "medium",
400
+ required: true,
401
+ error: !!errors.Former_client,
402
+ helperText: errors.Former_client?.message,
403
+ variant,
404
+ children: [
405
+ /* @__PURE__ */ jsx(
406
+ RadioButton,
407
+ {
408
+ ...register("Former_client", {}),
409
+ value: "Yes",
410
+ radioText: "Yes",
411
+ groupName: "Former_client"
412
+ }
413
+ ),
414
+ /* @__PURE__ */ jsx(
415
+ RadioButton,
416
+ {
417
+ ...register("Former_client", {}),
418
+ value: "No",
419
+ radioText: "No",
420
+ groupName: "Former_client"
421
+ }
422
+ )
423
+ ]
424
+ }
425
+ ) }),
426
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
427
+ RadioButtonSet,
428
+ {
429
+ id: "Currently_Employed_by_Axos_Financial",
430
+ label: "* Are you currently employed by Axos Financial?",
431
+ sizes: "medium",
432
+ required: true,
433
+ error: !!errors.Currently_Employed_by_Axos_Financial,
434
+ helperText: errors.Currently_Employed_by_Axos_Financial?.message,
435
+ variant,
436
+ children: [
437
+ /* @__PURE__ */ jsx(
438
+ RadioButton,
439
+ {
440
+ ...register("Currently_Employed_by_Axos_Financial", {}),
441
+ value: "Yes",
442
+ radioText: "Yes",
443
+ groupName: "Currently_Employed_by_Axos_Financial"
444
+ }
445
+ ),
446
+ /* @__PURE__ */ jsx(
447
+ RadioButton,
448
+ {
449
+ ...register("Currently_Employed_by_Axos_Financial", {}),
450
+ value: "No",
451
+ radioText: "No",
452
+ groupName: "Currently_Employed_by_Axos_Financial"
453
+ }
454
+ )
455
+ ]
456
+ }
457
+ ) }),
458
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
459
+ RadioButtonSet,
460
+ {
461
+ id: "Previously_Employed_by_Axos_Financial",
462
+ label: "* Have you previously been employed by Axos Financial?",
463
+ sizes: "medium",
464
+ required: true,
465
+ error: !!errors.Previously_Employed_by_Axos_Financial,
466
+ helperText: errors.Previously_Employed_by_Axos_Financial?.message,
467
+ variant,
468
+ children: [
469
+ /* @__PURE__ */ jsx(
470
+ RadioButton,
471
+ {
472
+ ...register("Previously_Employed_by_Axos_Financial", {}),
473
+ value: "Yes",
474
+ radioText: "Yes",
475
+ groupName: "Previously_Employed_by_Axos_Financial"
476
+ }
477
+ ),
478
+ /* @__PURE__ */ jsx(
479
+ RadioButton,
480
+ {
481
+ ...register("Previously_Employed_by_Axos_Financial", {}),
482
+ value: "No",
483
+ radioText: "No",
484
+ groupName: "Previously_Employed_by_Axos_Financial"
485
+ }
486
+ )
487
+ ]
488
+ }
489
+ ) }),
490
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
491
+ RadioButtonSet,
492
+ {
493
+ id: "Ever_Applied_for_Employment_with_Axos_Financial",
494
+ label: "* Have you ever applied for employment with Axos Financial?",
495
+ sizes: "medium",
496
+ required: true,
497
+ error: !!errors.Ever_Applied_for_Employment_with_Axos_Financial,
498
+ helperText: errors.Ever_Applied_for_Employment_with_Axos_Financial?.message,
499
+ variant,
500
+ children: [
501
+ /* @__PURE__ */ jsx(
502
+ RadioButton,
503
+ {
504
+ ...register(
505
+ "Ever_Applied_for_Employment_with_Axos_Financial",
506
+ {}
507
+ ),
508
+ value: "Yes",
509
+ radioText: "Yes",
510
+ groupName: "Ever_Applied_for_Employment_with_Axos_Financial"
511
+ }
512
+ ),
513
+ /* @__PURE__ */ jsx(
514
+ RadioButton,
515
+ {
516
+ ...register(
517
+ "Ever_Applied_for_Employment_with_Axos_Financial",
518
+ {}
519
+ ),
520
+ value: "No",
521
+ radioText: "No",
522
+ groupName: "Ever_Applied_for_Employment_with_Axos_Financial"
523
+ }
524
+ )
525
+ ]
526
+ }
527
+ ) }),
528
+ /* @__PURE__ */ jsxs("div", { className: `${fullRowForm}`, children: [
529
+ /* @__PURE__ */ jsx("h2", { className: `header_2 ${descriptionField({ variant })}`, children: "Step 3: Where have you interacted with Axos Financial?" }),
530
+ /* @__PURE__ */ jsx("div", { className: `${form} ${descriptionField({ variant })}`, children: "* Please select all that apply." })
531
+ ] }),
532
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
533
+ CheckboxGroup,
534
+ {
535
+ options: options2,
536
+ selectedValues: selectedValues2,
537
+ error: !!errors.Axos_Financial_interaction_outlet,
538
+ onChange: handleSelectedValues2
539
+ }
540
+ ) }),
541
+ /* @__PURE__ */ jsx("div", { className: `${headerContainer} ${fullRowForm}`, children: /* @__PURE__ */ jsx("h2", { className: `header_2 ${descriptionField({ variant })}`, children: "Step 4: Please provide your contact details." }) }),
542
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
543
+ Input,
544
+ {
545
+ id: "First_Name",
546
+ ...register("First_Name", { required: true }),
547
+ label: "* First Name",
548
+ sizes: "medium",
549
+ required: true,
550
+ error: !!errors.First_Name,
551
+ helperText: errors.First_Name?.message,
552
+ variant
553
+ }
554
+ ) }),
555
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
556
+ Input,
557
+ {
558
+ id: "Last_Name",
559
+ ...register("Last_Name", { required: true }),
560
+ label: "* Last Name",
561
+ sizes: "medium",
562
+ required: true,
563
+ error: !!errors.Last_Name,
564
+ helperText: errors.Last_Name?.message,
565
+ variant
566
+ }
567
+ ) }),
568
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
569
+ Input,
570
+ {
571
+ id: "DOB",
572
+ ...register("DOB", {
573
+ required: true
574
+ }),
575
+ type: "date",
576
+ label: "* Date of Birth",
577
+ sizes: "medium",
578
+ placeholder: "Date of Birth",
579
+ required: true,
580
+ error: !!errors.DOB,
581
+ helperText: errors.DOB?.message,
582
+ variant
583
+ }
584
+ ) }),
585
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
586
+ Input,
587
+ {
588
+ id: "email",
589
+ ...register("email", {
590
+ required: true,
591
+ validate: {
592
+ isValid: associatedEmail
593
+ }
594
+ }),
595
+ label: "* Email",
596
+ sizes: "medium",
597
+ required: true,
598
+ error: !!errors.email,
599
+ helperText: errors.email?.message,
600
+ variant
601
+ }
602
+ ) }),
603
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
604
+ InputPhone,
605
+ {
606
+ id: "Telephone",
607
+ ...register("Telephone", { required: true, maxLength: 12 }),
608
+ label: "* Preferred Phone",
609
+ sizes: "medium",
610
+ required: true,
611
+ error: !!errors.Telephone,
612
+ helperText: errors.Telephone?.message,
613
+ variant
614
+ }
615
+ ) }),
616
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
617
+ Input,
618
+ {
619
+ id: "Street_Address",
620
+ ...register("Street_Address", { required: true }),
621
+ label: "* Street Address",
622
+ sizes: "medium",
623
+ required: true,
624
+ variant
625
+ }
626
+ ) }),
627
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
628
+ Input,
629
+ {
630
+ id: "City",
631
+ ...register("City", { required: true }),
632
+ label: "* City",
633
+ sizes: "medium",
634
+ required: true,
635
+ variant
636
+ }
637
+ ) }),
638
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
639
+ Dropdown,
640
+ {
641
+ id: "State_",
642
+ ...register("State_", {
643
+ required: true
644
+ }),
645
+ label: "* State",
646
+ sizes: "medium",
647
+ required: true,
648
+ error: !!errors.State_,
649
+ helperText: errors.State_?.message,
650
+ variant,
651
+ children: [
652
+ /* @__PURE__ */ jsx("option", { value: "AL", children: "Alabama - AL" }),
653
+ /* @__PURE__ */ jsx("option", { value: "AK", children: "Alaska - AK" }),
654
+ /* @__PURE__ */ jsx("option", { value: "AZ", children: "Arizona - AZ" }),
655
+ /* @__PURE__ */ jsx("option", { value: "AR", children: "Arkansas - AR" }),
656
+ /* @__PURE__ */ jsx("option", { value: "CA", children: "California - CA" }),
657
+ /* @__PURE__ */ jsx("option", { value: "CO", children: "Colorado - CO" }),
658
+ /* @__PURE__ */ jsx("option", { value: "CT", children: "Connecticut - CT" }),
659
+ /* @__PURE__ */ jsx("option", { value: "DE", children: "Delaware - DE" }),
660
+ /* @__PURE__ */ jsx("option", { value: "FL", children: "Florida - FL" }),
661
+ /* @__PURE__ */ jsx("option", { value: "GA", children: "Georgia - GA" }),
662
+ /* @__PURE__ */ jsx("option", { value: "HI", children: "Hawaii - HI" }),
663
+ /* @__PURE__ */ jsx("option", { value: "ID", children: "Idaho - ID" }),
664
+ /* @__PURE__ */ jsx("option", { value: "IL", children: "Illinois - IL" }),
665
+ /* @__PURE__ */ jsx("option", { value: "IN", children: "Indiana - IN" }),
666
+ /* @__PURE__ */ jsx("option", { value: "IA", children: "Iowa - IA" }),
667
+ /* @__PURE__ */ jsx("option", { value: "KS", children: "Kansas - KS" }),
668
+ /* @__PURE__ */ jsx("option", { value: "KY", children: "Kentucky - KY" }),
669
+ /* @__PURE__ */ jsx("option", { value: "LA", children: "Louisiana - LA" }),
670
+ /* @__PURE__ */ jsx("option", { value: "ME", children: "Maine - ME" }),
671
+ /* @__PURE__ */ jsx("option", { value: "MD", children: "Maryland - MD" }),
672
+ /* @__PURE__ */ jsx("option", { value: "MA", children: "Massachusetts - MA" }),
673
+ /* @__PURE__ */ jsx("option", { value: "MI", children: "Michigan - MI" }),
674
+ /* @__PURE__ */ jsx("option", { value: "MN", children: "Minnesota - MN" }),
675
+ /* @__PURE__ */ jsx("option", { value: "MS", children: "Mississippi - MS" }),
676
+ /* @__PURE__ */ jsx("option", { value: "MO", children: "Missouri - MO" }),
677
+ /* @__PURE__ */ jsx("option", { value: "MT", children: "Montana - MT" }),
678
+ /* @__PURE__ */ jsx("option", { value: "NE", children: "Nebraska - NE" }),
679
+ /* @__PURE__ */ jsx("option", { value: "NV", children: "Nevada - NV" }),
680
+ /* @__PURE__ */ jsx("option", { value: "NH", children: "New Hampshire - NH" }),
681
+ /* @__PURE__ */ jsx("option", { value: "NJ", children: "New Jersey - NJ" }),
682
+ /* @__PURE__ */ jsx("option", { value: "NM", children: "New Mexico - NM" }),
683
+ /* @__PURE__ */ jsx("option", { value: "NY", children: "New York - NY" }),
684
+ /* @__PURE__ */ jsx("option", { value: "NC", children: "North Carolina - NC" }),
685
+ /* @__PURE__ */ jsx("option", { value: "ND", children: "North Dakota - ND" }),
686
+ /* @__PURE__ */ jsx("option", { value: "OH", children: "Ohio - OH" }),
687
+ /* @__PURE__ */ jsx("option", { value: "OK", children: "Oklahoma - OK" }),
688
+ /* @__PURE__ */ jsx("option", { value: "OR", children: "Oregon - OR" }),
689
+ /* @__PURE__ */ jsx("option", { value: "PA", children: "Pennsylvania - PA" }),
690
+ /* @__PURE__ */ jsx("option", { value: "RI", children: "Rhode Island - RI" }),
691
+ /* @__PURE__ */ jsx("option", { value: "SC", children: "South Carolina - SC" }),
692
+ /* @__PURE__ */ jsx("option", { value: "SD", children: "South Dakota - SD" }),
693
+ /* @__PURE__ */ jsx("option", { value: "TN", children: "Tennessee - TN" }),
694
+ /* @__PURE__ */ jsx("option", { value: "TX", children: "Texas - TX" }),
695
+ /* @__PURE__ */ jsx("option", { value: "UT", children: "Utah - UT" }),
696
+ /* @__PURE__ */ jsx("option", { value: "VT", children: "Vermont - VT" }),
697
+ /* @__PURE__ */ jsx("option", { value: "VA", children: "Virginia - VA" }),
698
+ /* @__PURE__ */ jsx("option", { value: "WA", children: "Washington - WA" }),
699
+ /* @__PURE__ */ jsx("option", { value: "WV", children: "West Virginia - WV" }),
700
+ /* @__PURE__ */ jsx("option", { value: "WI", children: "Wisconsin - WI" }),
701
+ /* @__PURE__ */ jsx("option", { value: "WY", children: "Wyoming - WY" })
702
+ ]
703
+ }
704
+ ) }),
705
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
706
+ Input,
707
+ {
708
+ id: "Zip_Code",
709
+ ...register("Zip_Code", { required: true }),
710
+ label: "* Zip Code",
711
+ sizes: "medium",
712
+ required: true,
713
+ variant
714
+ }
715
+ ) }),
716
+ /* @__PURE__ */ jsx("div", { className: `${headerContainer} ${fullRowForm}`, children: /* @__PURE__ */ jsx("h2", { className: `header_2 ${descriptionField({ variant })}`, children: "Step 5: Please select how you would like to receive our response." }) }),
717
+ /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
718
+ RadioButtonSet,
719
+ {
720
+ id: "Contact_Method",
721
+ label: "* We will contact you using the information provided above:",
722
+ sizes: "medium",
723
+ required: true,
724
+ error: !!errors.Contact_Method,
725
+ helperText: errors.Contact_Method?.message,
726
+ variant,
727
+ children: [
728
+ /* @__PURE__ */ jsx(
729
+ RadioButton,
730
+ {
731
+ ...register("Contact_Method", {}),
732
+ value: "Email",
733
+ radioText: "Email",
734
+ groupName: "Contact_Method"
735
+ }
509
736
  ),
510
- value: "No",
511
- radioText: "No",
512
- groupName: "Ever_Applied_for_Employment_with_Axos_Financial"
513
- }
514
- )
515
- ]
516
- }
517
- ) }),
518
- /* @__PURE__ */ jsxs("div", { className: `${fullRowForm}`, children: [
519
- /* @__PURE__ */ jsx("h2", { className: `header_2 ${descriptionField({ variant })}`, children: "Step 3: Where have you interacted with Axos Financial?" }),
520
- /* @__PURE__ */ jsx("div", { className: `${form} ${descriptionField({ variant })}`, children: "* Please select all that apply." })
521
- ] }),
522
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
523
- CheckboxGroup,
524
- {
525
- options: options2,
526
- selectedValues: selectedValues2,
527
- error: !!errors.Axos_Financial_interaction_outlet,
528
- onChange: handleSelectedValues2
529
- }
530
- ) }),
531
- /* @__PURE__ */ jsx("div", { className: `${headerContainer} ${fullRowForm}`, children: /* @__PURE__ */ jsx("h2", { className: `header_2 ${descriptionField({ variant })}`, children: "Step 4: Please provide your contact details." }) }),
532
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
533
- Input,
534
- {
535
- id: "First_Name",
536
- ...register("First_Name", { required: true }),
537
- label: "* First Name",
538
- sizes: "medium",
539
- required: true,
540
- error: !!errors.First_Name,
541
- helperText: errors.First_Name?.message,
542
- variant
543
- }
544
- ) }),
545
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
546
- Input,
547
- {
548
- id: "Last_Name",
549
- ...register("Last_Name", { required: true }),
550
- label: "* Last Name",
551
- sizes: "medium",
552
- required: true,
553
- error: !!errors.Last_Name,
554
- helperText: errors.Last_Name?.message,
555
- variant
556
- }
557
- ) }),
558
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
559
- Input,
560
- {
561
- id: "DOB",
562
- ...register("DOB", {
563
- required: true
564
- }),
565
- type: "date",
566
- label: "* Date of Birth",
567
- sizes: "medium",
568
- placeholder: "Date of Birth",
569
- required: true,
570
- error: !!errors.DOB,
571
- helperText: errors.DOB?.message,
572
- variant
573
- }
574
- ) }),
575
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
576
- Input,
577
- {
578
- id: "email",
579
- ...register("email", {
580
- required: true,
581
- validate: {
582
- isValid: associatedEmail
737
+ /* @__PURE__ */ jsx(
738
+ RadioButton,
739
+ {
740
+ ...register("Contact_Method", {}),
741
+ value: "Postal Mail",
742
+ radioText: "Postal Mail",
743
+ groupName: "Contact_Method"
744
+ }
745
+ )
746
+ ]
583
747
  }
584
- }),
585
- label: "* Email",
586
- sizes: "medium",
587
- required: true,
588
- error: !!errors.email,
589
- helperText: errors.email?.message,
590
- variant
591
- }
592
- ) }),
593
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
594
- InputPhone,
595
- {
596
- id: "Telephone",
597
- ...register("Telephone", { required: true, maxLength: 12 }),
598
- label: "* Preferred Phone",
599
- sizes: "medium",
600
- required: true,
601
- error: !!errors.Telephone,
602
- helperText: errors.Telephone?.message,
603
- variant
604
- }
605
- ) }),
606
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
607
- Input,
608
- {
609
- id: "Street_Address",
610
- ...register("Street_Address", { required: true }),
611
- label: "* Street Address",
612
- sizes: "medium",
613
- required: true,
614
- variant
615
- }
616
- ) }),
617
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
618
- Input,
619
- {
620
- id: "City",
621
- ...register("City", { required: true }),
622
- label: "* City",
623
- sizes: "medium",
624
- required: true,
625
- variant
626
- }
627
- ) }),
628
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
629
- Dropdown,
630
- {
631
- id: "State_",
632
- ...register("State_", {
633
- required: true
634
- }),
635
- label: "* State",
636
- sizes: "medium",
637
- required: true,
638
- error: !!errors.State_,
639
- helperText: errors.State_?.message,
640
- variant,
641
- children: [
642
- /* @__PURE__ */ jsx("option", { value: "AL", children: "Alabama - AL" }),
643
- /* @__PURE__ */ jsx("option", { value: "AK", children: "Alaska - AK" }),
644
- /* @__PURE__ */ jsx("option", { value: "AZ", children: "Arizona - AZ" }),
645
- /* @__PURE__ */ jsx("option", { value: "AR", children: "Arkansas - AR" }),
646
- /* @__PURE__ */ jsx("option", { value: "CA", children: "California - CA" }),
647
- /* @__PURE__ */ jsx("option", { value: "CO", children: "Colorado - CO" }),
648
- /* @__PURE__ */ jsx("option", { value: "CT", children: "Connecticut - CT" }),
649
- /* @__PURE__ */ jsx("option", { value: "DE", children: "Delaware - DE" }),
650
- /* @__PURE__ */ jsx("option", { value: "FL", children: "Florida - FL" }),
651
- /* @__PURE__ */ jsx("option", { value: "GA", children: "Georgia - GA" }),
652
- /* @__PURE__ */ jsx("option", { value: "HI", children: "Hawaii - HI" }),
653
- /* @__PURE__ */ jsx("option", { value: "ID", children: "Idaho - ID" }),
654
- /* @__PURE__ */ jsx("option", { value: "IL", children: "Illinois - IL" }),
655
- /* @__PURE__ */ jsx("option", { value: "IN", children: "Indiana - IN" }),
656
- /* @__PURE__ */ jsx("option", { value: "IA", children: "Iowa - IA" }),
657
- /* @__PURE__ */ jsx("option", { value: "KS", children: "Kansas - KS" }),
658
- /* @__PURE__ */ jsx("option", { value: "KY", children: "Kentucky - KY" }),
659
- /* @__PURE__ */ jsx("option", { value: "LA", children: "Louisiana - LA" }),
660
- /* @__PURE__ */ jsx("option", { value: "ME", children: "Maine - ME" }),
661
- /* @__PURE__ */ jsx("option", { value: "MD", children: "Maryland - MD" }),
662
- /* @__PURE__ */ jsx("option", { value: "MA", children: "Massachusetts - MA" }),
663
- /* @__PURE__ */ jsx("option", { value: "MI", children: "Michigan - MI" }),
664
- /* @__PURE__ */ jsx("option", { value: "MN", children: "Minnesota - MN" }),
665
- /* @__PURE__ */ jsx("option", { value: "MS", children: "Mississippi - MS" }),
666
- /* @__PURE__ */ jsx("option", { value: "MO", children: "Missouri - MO" }),
667
- /* @__PURE__ */ jsx("option", { value: "MT", children: "Montana - MT" }),
668
- /* @__PURE__ */ jsx("option", { value: "NE", children: "Nebraska - NE" }),
669
- /* @__PURE__ */ jsx("option", { value: "NV", children: "Nevada - NV" }),
670
- /* @__PURE__ */ jsx("option", { value: "NH", children: "New Hampshire - NH" }),
671
- /* @__PURE__ */ jsx("option", { value: "NJ", children: "New Jersey - NJ" }),
672
- /* @__PURE__ */ jsx("option", { value: "NM", children: "New Mexico - NM" }),
673
- /* @__PURE__ */ jsx("option", { value: "NY", children: "New York - NY" }),
674
- /* @__PURE__ */ jsx("option", { value: "NC", children: "North Carolina - NC" }),
675
- /* @__PURE__ */ jsx("option", { value: "ND", children: "North Dakota - ND" }),
676
- /* @__PURE__ */ jsx("option", { value: "OH", children: "Ohio - OH" }),
677
- /* @__PURE__ */ jsx("option", { value: "OK", children: "Oklahoma - OK" }),
678
- /* @__PURE__ */ jsx("option", { value: "OR", children: "Oregon - OR" }),
679
- /* @__PURE__ */ jsx("option", { value: "PA", children: "Pennsylvania - PA" }),
680
- /* @__PURE__ */ jsx("option", { value: "RI", children: "Rhode Island - RI" }),
681
- /* @__PURE__ */ jsx("option", { value: "SC", children: "South Carolina - SC" }),
682
- /* @__PURE__ */ jsx("option", { value: "SD", children: "South Dakota - SD" }),
683
- /* @__PURE__ */ jsx("option", { value: "TN", children: "Tennessee - TN" }),
684
- /* @__PURE__ */ jsx("option", { value: "TX", children: "Texas - TX" }),
685
- /* @__PURE__ */ jsx("option", { value: "UT", children: "Utah - UT" }),
686
- /* @__PURE__ */ jsx("option", { value: "VT", children: "Vermont - VT" }),
687
- /* @__PURE__ */ jsx("option", { value: "VA", children: "Virginia - VA" }),
688
- /* @__PURE__ */ jsx("option", { value: "WA", children: "Washington - WA" }),
689
- /* @__PURE__ */ jsx("option", { value: "WV", children: "West Virginia - WV" }),
690
- /* @__PURE__ */ jsx("option", { value: "WI", children: "Wisconsin - WI" }),
691
- /* @__PURE__ */ jsx("option", { value: "WY", children: "Wyoming - WY" })
692
- ]
693
- }
694
- ) }),
695
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsx(
696
- Input,
697
- {
698
- id: "Zip_Code",
699
- ...register("Zip_Code", { required: true }),
700
- label: "* Zip Code",
701
- sizes: "medium",
702
- required: true,
703
- variant
704
- }
705
- ) }),
706
- /* @__PURE__ */ jsx("div", { className: `${headerContainer} ${fullRowForm}`, children: /* @__PURE__ */ jsx("h2", { className: `header_2 ${descriptionField({ variant })}`, children: "Step 5: Please select how you would like to receive our response." }) }),
707
- /* @__PURE__ */ jsx("div", { className: `${fullRowForm}`, children: /* @__PURE__ */ jsxs(
708
- RadioButtonSet,
709
- {
710
- id: "Contact_Method",
711
- label: "* We will contact you using the information provided above:",
712
- sizes: "medium",
713
- required: true,
714
- error: !!errors.Contact_Method,
715
- helperText: errors.Contact_Method?.message,
716
- variant,
717
- children: [
718
- /* @__PURE__ */ jsx(
719
- RadioButton,
720
- {
721
- ...register("Contact_Method", {}),
722
- value: "Email",
723
- radioText: "Email",
724
- groupName: "Contact_Method"
725
- }
726
- ),
727
- /* @__PURE__ */ jsx(
728
- RadioButton,
729
- {
730
- ...register("Contact_Method", {}),
731
- value: "Postal Mail",
732
- radioText: "Postal Mail",
733
- groupName: "Contact_Method"
734
- }
735
- )
736
- ]
737
- }
738
- ) }),
739
- /* @__PURE__ */ jsx(HoneyPot, { register, errors, variant })
740
- ] }),
741
- children,
742
- /* @__PURE__ */ jsx("div", { className: disclosureForm({ variant }), children: disclosure }),
743
- /* @__PURE__ */ jsx("div", { className: `${headerContainer}`, children: /* @__PURE__ */ jsxs("div", { className: `${form} ${descriptionField({ variant })}`, children: [
744
- "For additional questions or concerns, please",
745
- " ",
746
- /* @__PURE__ */ jsx("a", { href: findMoreAxosDomains("{ONLINEBANKING}/Messages/Inbox"), children: "log in to online banking" }),
747
- " ",
748
- "and send us a secure message."
749
- ] }) }),
750
- /* @__PURE__ */ jsx("div", { className: actions, children: /* @__PURE__ */ jsx(
751
- Button,
752
- {
753
- color: getVariant(callToAction?.variant),
754
- as: "button",
755
- type: "submit",
756
- disabled: !isValid || isSubmitting,
757
- children: callToAction?.displayText
758
- }
759
- ) }),
760
- /* @__PURE__ */ jsx("div", { className: `${headerContainer}`, children: /* @__PURE__ */ jsx(
761
- "div",
762
- {
763
- id: "test",
764
- className: `${form} ${descriptionField({ variant })}`,
765
- children: "* = Required Field"
766
- }
767
- ) })
768
- ] })
748
+ ) }),
749
+ /* @__PURE__ */ jsx(HoneyPot, { register, errors, variant })
750
+ ] }),
751
+ children,
752
+ /* @__PURE__ */ jsx("div", { className: disclosureForm({ variant }), children: disclosure }),
753
+ /* @__PURE__ */ jsx("div", { className: `${headerContainer}`, children: /* @__PURE__ */ jsxs("div", { className: `${form} ${descriptionField({ variant })}`, children: [
754
+ "For additional questions or concerns, please",
755
+ " ",
756
+ /* @__PURE__ */ jsx("a", { href: findMoreAxosDomains("{ONLINEBANKING}/Messages/Inbox"), children: "log in to online banking" }),
757
+ " ",
758
+ "and send us a secure message."
759
+ ] }) }),
760
+ /* @__PURE__ */ jsx("div", { className: actions, children: /* @__PURE__ */ jsx(
761
+ Button,
762
+ {
763
+ color: getVariant(callToAction?.variant),
764
+ as: "button",
765
+ type: "submit",
766
+ disabled: !isValid || isSubmitting,
767
+ children: callToAction?.displayText
768
+ }
769
+ ) }),
770
+ /* @__PURE__ */ jsx("div", { className: `${headerContainer}`, children: /* @__PURE__ */ jsx(
771
+ "div",
772
+ {
773
+ id: "test",
774
+ className: `${form} ${descriptionField({ variant })}`,
775
+ children: "* = Required Field"
776
+ }
777
+ ) })
778
+ ]
779
+ }
780
+ )
769
781
  ] }) }) }, id);
770
782
  };
771
783
  export {