@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
@@ -30,6 +30,7 @@ const VendorQuestionnaire = ({
30
30
  },
31
31
  variant: fullVariant = "primary",
32
32
  validateEmail,
33
+ onValidate,
33
34
  callToAction,
34
35
  id
35
36
  }) => {
@@ -131,803 +132,814 @@ const VendorQuestionnaire = ({
131
132
  };
132
133
  const variant = getVariant(fullVariant);
133
134
  const formType = "questionnaire";
134
- return /* @__PURE__ */ jsx("section", { id, className: clsx(formContainer({ variant })), children: /* @__PURE__ */ jsx("div", { className: clsx("containment"), children: /* @__PURE__ */ jsx(FormProvider, { ...methods, children: /* @__PURE__ */ jsxs("form", { className: form, onSubmit: handleSubmit(submitForm), children: [
135
- /* @__PURE__ */ jsxs("div", { className: clsx(formWrapper({ variant, formType })), children: [
136
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h4", { children: "COMPANY INFORMATION" }) }) }),
137
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
138
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
139
- Input,
140
- {
141
- id: "name/0-2",
142
- ...register("name/0-2", { required: true }),
143
- sizes: "medium",
144
- placeholder: "Company Name",
145
- required: true,
146
- error: !!errors["name/0-2"],
147
- helperText: errors["name/0-2"]?.message,
148
- variant
149
- }
150
- ) }),
151
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
152
- Input,
153
- {
154
- id: "dba/0-2",
155
- ...register("dba/0-2", { required: false }),
156
- placeholder: "DBA",
157
- sizes: "medium",
158
- required: false,
159
- variant
160
- }
161
- ) })
162
- ] }),
163
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
164
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
165
- InputPhone,
166
- {
167
- id: "phone/0-2",
168
- ...register("phone/0-2", { required: true }),
169
- placeholder: "Phone Number",
170
- sizes: "medium",
171
- required: true,
172
- type: "tel",
173
- error: !!errors["phone/0-2"],
174
- helperText: errors["phone/0-2"]?.message,
175
- variant
176
- }
177
- ) }),
178
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
179
- Input,
180
- {
181
- id: "website/0-2",
182
- ...register("website/0-2", { required: true }),
183
- placeholder: "Website URL",
184
- sizes: "medium",
185
- required: true,
186
- error: !!errors["website/0-2"],
187
- helperText: errors["website/0-2"]?.message,
188
- variant
189
- }
190
- ) })
191
- ] }),
192
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
193
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
194
- Input,
195
- {
196
- id: "address/0-2",
197
- ...register("address/0-2", { required: true }),
198
- placeholder: "Street Address",
199
- sizes: "medium",
200
- required: true,
201
- error: !!errors["address/0-2"],
202
- helperText: errors["address/0-2"]?.message,
203
- variant
204
- }
205
- ) }),
206
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
207
- Input,
208
- {
209
- id: "address2/0-2",
210
- ...register("address2/0-2", { required: false }),
211
- placeholder: "Street Address 2",
212
- sizes: "medium",
213
- required: false,
214
- error: !!errors["address2/0-2"],
215
- helperText: errors["address2/0-2"]?.message,
216
- variant
217
- }
218
- ) })
219
- ] }),
220
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
221
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
222
- Input,
223
- {
224
- id: "city/0-2",
225
- ...register("city/0-2", { required: true }),
226
- placeholder: "City",
227
- sizes: "medium",
228
- required: true,
229
- error: !!errors["city/0-2"],
230
- helperText: errors["city/0-2"]?.message,
231
- variant
232
- }
233
- ) }),
234
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
235
- Input,
236
- {
237
- id: "state/0-2",
238
- ...register("state/0-2", { required: true }),
239
- placeholder: "State/Region",
240
- sizes: "medium",
241
- required: true,
242
- error: !!errors["state/0-2"],
243
- helperText: errors["state/0-2"]?.message,
244
- variant
245
- }
246
- ) }),
247
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
248
- Input,
249
- {
250
- id: "zip/0-2",
251
- ...register("zip/0-2", { required: true }),
252
- placeholder: "ZIP/Postal Code",
253
- sizes: "medium",
254
- required: true,
255
- error: !!errors["zip/0-2"],
256
- helperText: errors["zip/0-2"]?.message,
257
- variant
258
- }
259
- ) })
260
- ] }),
261
- /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
262
- InputTextArea,
263
- {
264
- id: "description/0-2",
265
- ...register("description/0-2", { required: false }),
266
- label: "Description of current business (current brands, additional locations, etc.)",
267
- placeholder: "Description",
268
- sizes: "medium",
269
- required: false,
270
- error: !!errors["description/0-2"],
271
- helperText: errors["description/0-2"]?.message,
272
- variant
273
- }
274
- ) }) }),
275
- /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
276
- Input,
277
- {
278
- id: "how_did_you_hear_about_us_/0-2",
279
- ...register("how_did_you_hear_about_us_/0-2", {
280
- required: false
281
- }),
282
- placeholder: "How did you hear about us?",
283
- sizes: "medium",
284
- required: false,
285
- error: !!errors["how_did_you_hear_about_us_/0-2"],
286
- helperText: errors["how_did_you_hear_about_us_/0-2"]?.message,
287
- variant
288
- }
289
- ) }) }),
290
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsxs("div", { className: `${descriptionField({ variant, formType })}`, children: [
291
- /* @__PURE__ */ jsx("h4", { children: "OWNER INFORMATION" }),
292
- /* @__PURE__ */ jsx("p", { children: "Include all parties with at least 25% ownership." })
293
- ] }) }),
294
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "OWNER ONE" }) }) }),
295
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
296
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
297
- Input,
298
- {
299
- id: "owner_name_1/0-2",
300
- ...register("owner_name_1/0-2", { required: true }),
301
- placeholder: "Name",
302
- sizes: "medium",
303
- required: true,
304
- error: !!errors["owner_name_1/0-2"],
305
- helperText: errors["owner_name_1/0-2"]?.message,
306
- variant
307
- }
308
- ) }),
309
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
310
- Input,
311
- {
312
- id: "owner_phone_1/0-2",
313
- ...register("owner_phone_1/0-2", { required: true }),
314
- placeholder: "Phone",
315
- sizes: "medium",
316
- required: true,
317
- error: !!errors["owner_phone_1/0-2"],
318
- helperText: errors["owner_phone_1/0-2"]?.message,
319
- variant
320
- }
321
- ) }),
322
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
323
- Input,
324
- {
325
- id: "owner_email_1/0-2",
326
- ...register("owner_email_1/0-2", { required: true }),
327
- placeholder: "Email",
328
- sizes: "medium",
329
- required: true,
330
- error: !!errors["owner_email_1/0-2"],
331
- helperText: errors["owner_email_1/0-2"]?.message,
332
- variant
333
- }
334
- ) })
335
- ] }),
336
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "OWNER TWO" }) }) }),
337
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
338
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
339
- Input,
340
- {
341
- id: "owner_name_2/0-2",
342
- ...register("owner_name_2/0-2", { required: false }),
343
- placeholder: "Name",
344
- sizes: "medium",
345
- required: false,
346
- error: !!errors["owner_name_2/0-2"],
347
- helperText: errors["owner_name_2/0-2"]?.message,
348
- variant
349
- }
350
- ) }),
351
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
352
- Input,
353
- {
354
- id: "owner_phone_2/0-2",
355
- ...register("owner_phone_2/0-2", { required: false }),
356
- placeholder: "Phone",
357
- sizes: "medium",
358
- required: false,
359
- error: !!errors["owner_phone_2/0-2"],
360
- helperText: errors["owner_phone_2/0-2"]?.message,
361
- variant
362
- }
363
- ) }),
364
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
365
- Input,
366
- {
367
- id: "owner_email_2/0-2",
368
- ...register("owner_email_2/0-2", { required: false }),
369
- placeholder: "Email",
370
- sizes: "medium",
371
- required: false,
372
- error: !!errors["owner_email_2/0-2"],
373
- helperText: errors["owner_email_2/0-2"]?.message,
374
- variant
375
- }
376
- ) })
377
- ] }),
378
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "OWNER THREE" }) }) }),
379
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
380
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
381
- Input,
382
- {
383
- id: "owner_name_3/0-2",
384
- ...register("owner_name_3/0-2", { required: false }),
385
- placeholder: "Name",
386
- sizes: "medium",
387
- required: false,
388
- error: !!errors["owner_name_3/0-2"],
389
- helperText: errors["owner_name_3/0-2"]?.message,
390
- variant
391
- }
392
- ) }),
393
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
394
- Input,
395
- {
396
- id: "owner_phone_3/0-2",
397
- ...register("owner_phone_3/0-2", { required: false }),
398
- placeholder: "Phone",
399
- sizes: "medium",
400
- required: false,
401
- error: !!errors["owner_phone_3/0-2"],
402
- helperText: errors["owner_phone_3/0-2"]?.message,
403
- variant
404
- }
405
- ) }),
406
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
407
- Input,
408
- {
409
- id: "owner_email_3/0-2",
410
- ...register("owner_email_3/0-2", { required: false }),
411
- placeholder: "Email",
412
- sizes: "medium",
413
- required: false,
414
- error: !!errors["owner_email_3/0-2"],
415
- helperText: errors["owner_email_3/0-2"]?.message,
416
- variant
417
- }
418
- ) })
419
- ] }),
420
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "OWNER FOUR" }) }) }),
421
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
422
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
423
- Input,
424
- {
425
- id: "owner_name_4/0-2",
426
- ...register("owner_name_4/0-2", { required: false }),
427
- placeholder: "Name",
428
- sizes: "medium",
429
- required: false,
430
- error: !!errors["owner_name_4/0-2"],
431
- helperText: errors["owner_name_4/0-2"]?.message,
432
- variant
433
- }
434
- ) }),
435
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
436
- Input,
437
- {
438
- id: "owner_phone_4/0-2",
439
- ...register("owner_phone_4/0-2", { required: false }),
440
- placeholder: "Phone",
441
- sizes: "medium",
442
- required: false,
443
- error: !!errors["owner_phone_4/0-2"],
444
- helperText: errors["owner_phone_4/0-2"]?.message,
445
- variant
446
- }
447
- ) }),
448
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
449
- Input,
450
- {
451
- id: "owner_email_4/0-2",
452
- ...register("owner_email_4/0-2", { required: false }),
453
- placeholder: "Email",
454
- sizes: "medium",
455
- required: false,
456
- error: !!errors["owner_email_4/0-2"],
457
- helperText: errors["owner_email_4/0-2"]?.message,
458
- variant
459
- }
460
- ) })
461
- ] }),
462
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h4", { children: "SALES & FINANCE CONTACTS" }) }) }),
463
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "SALES CONTACT" }) }) }),
464
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
465
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
466
- Input,
467
- {
468
- id: "sales_contact_name/0-2",
469
- ...register("sales_contact_name/0-2", { required: true }),
470
- placeholder: "Name",
471
- sizes: "medium",
472
- required: true,
473
- error: !!errors["sales_contact_name/0-2"],
474
- helperText: errors["sales_contact_name/0-2"]?.message,
475
- variant
476
- }
477
- ) }),
478
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
479
- Input,
480
- {
481
- id: "sales_contact_phone/0-2",
482
- ...register("sales_contact_phone/0-2", { required: true }),
483
- placeholder: "Phone",
484
- sizes: "medium",
485
- required: true,
486
- error: !!errors["sales_contact_phone/0-2"],
487
- helperText: errors["sales_contact_phone/0-2"]?.message,
488
- variant
489
- }
490
- ) }),
491
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
492
- Input,
493
- {
494
- id: "sales_contact_email/0-2",
495
- ...register("sales_contact_email/0-2", { required: true }),
496
- placeholder: "Email",
497
- sizes: "medium",
498
- required: true,
499
- error: !!errors["sales_contact_email/0-2"],
500
- helperText: errors["sales_contact_email/0-2"]?.message,
501
- variant
502
- }
503
- ) })
504
- ] }),
505
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "FINANCE CONTACT" }) }) }),
506
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
507
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
508
- Input,
509
- {
510
- id: "finance_contact_name/0-2",
511
- ...register("finance_contact_name/0-2", {
512
- required: true
513
- }),
514
- placeholder: "Name",
515
- sizes: "medium",
516
- required: true,
517
- error: !!errors["finance_contact_name/0-2"],
518
- helperText: errors["finance_contact_name/0-2"]?.message,
519
- variant
520
- }
521
- ) }),
522
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
523
- Input,
524
- {
525
- id: "finance_contact_phone/0-2",
526
- ...register("finance_contact_phone/0-2", {
527
- required: true
528
- }),
529
- placeholder: "Phone",
530
- sizes: "medium",
531
- required: true,
532
- error: !!errors["finance_contact_phone/0-2"],
533
- helperText: errors["finance_contact_phone/0-2"]?.message,
534
- variant
535
- }
536
- ) }),
537
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
538
- Input,
539
- {
540
- id: "finance_contact_email/0-2",
541
- ...register("finance_contact_email/0-2", {
542
- required: true
543
- }),
544
- placeholder: "Email",
545
- sizes: "medium",
546
- required: true,
547
- error: !!errors["finance_contact_email/0-2"],
548
- helperText: errors["finance_contact_email/0-2"]?.message,
549
- variant
135
+ return /* @__PURE__ */ jsx("section", { id, className: clsx(formContainer({ variant })), children: /* @__PURE__ */ jsx("div", { className: clsx("containment"), children: /* @__PURE__ */ jsx(FormProvider, { ...methods, children: /* @__PURE__ */ jsxs(
136
+ "form",
137
+ {
138
+ className: form,
139
+ onSubmit: async (e) => {
140
+ onValidate && onValidate(e);
141
+ await handleSubmit(submitForm)(e);
142
+ e.preventDefault();
143
+ },
144
+ children: [
145
+ /* @__PURE__ */ jsxs("div", { className: clsx(formWrapper({ variant, formType })), children: [
146
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h4", { children: "COMPANY INFORMATION" }) }) }),
147
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
148
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
149
+ Input,
150
+ {
151
+ id: "name/0-2",
152
+ ...register("name/0-2", { required: true }),
153
+ sizes: "medium",
154
+ placeholder: "Company Name",
155
+ required: true,
156
+ error: !!errors["name/0-2"],
157
+ helperText: errors["name/0-2"]?.message,
158
+ variant
159
+ }
160
+ ) }),
161
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
162
+ Input,
163
+ {
164
+ id: "dba/0-2",
165
+ ...register("dba/0-2", { required: false }),
166
+ placeholder: "DBA",
167
+ sizes: "medium",
168
+ required: false,
169
+ variant
170
+ }
171
+ ) })
172
+ ] }),
173
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
174
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
175
+ InputPhone,
176
+ {
177
+ id: "phone/0-2",
178
+ ...register("phone/0-2", { required: true }),
179
+ placeholder: "Phone Number",
180
+ sizes: "medium",
181
+ required: true,
182
+ type: "tel",
183
+ error: !!errors["phone/0-2"],
184
+ helperText: errors["phone/0-2"]?.message,
185
+ variant
186
+ }
187
+ ) }),
188
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
189
+ Input,
190
+ {
191
+ id: "website/0-2",
192
+ ...register("website/0-2", { required: true }),
193
+ placeholder: "Website URL",
194
+ sizes: "medium",
195
+ required: true,
196
+ error: !!errors["website/0-2"],
197
+ helperText: errors["website/0-2"]?.message,
198
+ variant
199
+ }
200
+ ) })
201
+ ] }),
202
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
203
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
204
+ Input,
205
+ {
206
+ id: "address/0-2",
207
+ ...register("address/0-2", { required: true }),
208
+ placeholder: "Street Address",
209
+ sizes: "medium",
210
+ required: true,
211
+ error: !!errors["address/0-2"],
212
+ helperText: errors["address/0-2"]?.message,
213
+ variant
214
+ }
215
+ ) }),
216
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
217
+ Input,
218
+ {
219
+ id: "address2/0-2",
220
+ ...register("address2/0-2", { required: false }),
221
+ placeholder: "Street Address 2",
222
+ sizes: "medium",
223
+ required: false,
224
+ error: !!errors["address2/0-2"],
225
+ helperText: errors["address2/0-2"]?.message,
226
+ variant
227
+ }
228
+ ) })
229
+ ] }),
230
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
231
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
232
+ Input,
233
+ {
234
+ id: "city/0-2",
235
+ ...register("city/0-2", { required: true }),
236
+ placeholder: "City",
237
+ sizes: "medium",
238
+ required: true,
239
+ error: !!errors["city/0-2"],
240
+ helperText: errors["city/0-2"]?.message,
241
+ variant
242
+ }
243
+ ) }),
244
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
245
+ Input,
246
+ {
247
+ id: "state/0-2",
248
+ ...register("state/0-2", { required: true }),
249
+ placeholder: "State/Region",
250
+ sizes: "medium",
251
+ required: true,
252
+ error: !!errors["state/0-2"],
253
+ helperText: errors["state/0-2"]?.message,
254
+ variant
255
+ }
256
+ ) }),
257
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
258
+ Input,
259
+ {
260
+ id: "zip/0-2",
261
+ ...register("zip/0-2", { required: true }),
262
+ placeholder: "ZIP/Postal Code",
263
+ sizes: "medium",
264
+ required: true,
265
+ error: !!errors["zip/0-2"],
266
+ helperText: errors["zip/0-2"]?.message,
267
+ variant
268
+ }
269
+ ) })
270
+ ] }),
271
+ /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
272
+ InputTextArea,
273
+ {
274
+ id: "description/0-2",
275
+ ...register("description/0-2", { required: false }),
276
+ label: "Description of current business (current brands, additional locations, etc.)",
277
+ placeholder: "Description",
278
+ sizes: "medium",
279
+ required: false,
280
+ error: !!errors["description/0-2"],
281
+ helperText: errors["description/0-2"]?.message,
282
+ variant
283
+ }
284
+ ) }) }),
285
+ /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
286
+ Input,
287
+ {
288
+ id: "how_did_you_hear_about_us_/0-2",
289
+ ...register("how_did_you_hear_about_us_/0-2", {
290
+ required: false
291
+ }),
292
+ placeholder: "How did you hear about us?",
293
+ sizes: "medium",
294
+ required: false,
295
+ error: !!errors["how_did_you_hear_about_us_/0-2"],
296
+ helperText: errors["how_did_you_hear_about_us_/0-2"]?.message,
297
+ variant
298
+ }
299
+ ) }) }),
300
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsxs("div", { className: `${descriptionField({ variant, formType })}`, children: [
301
+ /* @__PURE__ */ jsx("h4", { children: "OWNER INFORMATION" }),
302
+ /* @__PURE__ */ jsx("p", { children: "Include all parties with at least 25% ownership." })
303
+ ] }) }),
304
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "OWNER ONE" }) }) }),
305
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
306
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
307
+ Input,
308
+ {
309
+ id: "owner_name_1/0-2",
310
+ ...register("owner_name_1/0-2", { required: true }),
311
+ placeholder: "Name",
312
+ sizes: "medium",
313
+ required: true,
314
+ error: !!errors["owner_name_1/0-2"],
315
+ helperText: errors["owner_name_1/0-2"]?.message,
316
+ variant
317
+ }
318
+ ) }),
319
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
320
+ Input,
321
+ {
322
+ id: "owner_phone_1/0-2",
323
+ ...register("owner_phone_1/0-2", { required: true }),
324
+ placeholder: "Phone",
325
+ sizes: "medium",
326
+ required: true,
327
+ error: !!errors["owner_phone_1/0-2"],
328
+ helperText: errors["owner_phone_1/0-2"]?.message,
329
+ variant
330
+ }
331
+ ) }),
332
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
333
+ Input,
334
+ {
335
+ id: "owner_email_1/0-2",
336
+ ...register("owner_email_1/0-2", { required: true }),
337
+ placeholder: "Email",
338
+ sizes: "medium",
339
+ required: true,
340
+ error: !!errors["owner_email_1/0-2"],
341
+ helperText: errors["owner_email_1/0-2"]?.message,
342
+ variant
343
+ }
344
+ ) })
345
+ ] }),
346
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "OWNER TWO" }) }) }),
347
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
348
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
349
+ Input,
350
+ {
351
+ id: "owner_name_2/0-2",
352
+ ...register("owner_name_2/0-2", { required: false }),
353
+ placeholder: "Name",
354
+ sizes: "medium",
355
+ required: false,
356
+ error: !!errors["owner_name_2/0-2"],
357
+ helperText: errors["owner_name_2/0-2"]?.message,
358
+ variant
359
+ }
360
+ ) }),
361
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
362
+ Input,
363
+ {
364
+ id: "owner_phone_2/0-2",
365
+ ...register("owner_phone_2/0-2", { required: false }),
366
+ placeholder: "Phone",
367
+ sizes: "medium",
368
+ required: false,
369
+ error: !!errors["owner_phone_2/0-2"],
370
+ helperText: errors["owner_phone_2/0-2"]?.message,
371
+ variant
372
+ }
373
+ ) }),
374
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
375
+ Input,
376
+ {
377
+ id: "owner_email_2/0-2",
378
+ ...register("owner_email_2/0-2", { required: false }),
379
+ placeholder: "Email",
380
+ sizes: "medium",
381
+ required: false,
382
+ error: !!errors["owner_email_2/0-2"],
383
+ helperText: errors["owner_email_2/0-2"]?.message,
384
+ variant
385
+ }
386
+ ) })
387
+ ] }),
388
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "OWNER THREE" }) }) }),
389
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
390
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
391
+ Input,
392
+ {
393
+ id: "owner_name_3/0-2",
394
+ ...register("owner_name_3/0-2", { required: false }),
395
+ placeholder: "Name",
396
+ sizes: "medium",
397
+ required: false,
398
+ error: !!errors["owner_name_3/0-2"],
399
+ helperText: errors["owner_name_3/0-2"]?.message,
400
+ variant
401
+ }
402
+ ) }),
403
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
404
+ Input,
405
+ {
406
+ id: "owner_phone_3/0-2",
407
+ ...register("owner_phone_3/0-2", { required: false }),
408
+ placeholder: "Phone",
409
+ sizes: "medium",
410
+ required: false,
411
+ error: !!errors["owner_phone_3/0-2"],
412
+ helperText: errors["owner_phone_3/0-2"]?.message,
413
+ variant
414
+ }
415
+ ) }),
416
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
417
+ Input,
418
+ {
419
+ id: "owner_email_3/0-2",
420
+ ...register("owner_email_3/0-2", { required: false }),
421
+ placeholder: "Email",
422
+ sizes: "medium",
423
+ required: false,
424
+ error: !!errors["owner_email_3/0-2"],
425
+ helperText: errors["owner_email_3/0-2"]?.message,
426
+ variant
427
+ }
428
+ ) })
429
+ ] }),
430
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "OWNER FOUR" }) }) }),
431
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
432
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
433
+ Input,
434
+ {
435
+ id: "owner_name_4/0-2",
436
+ ...register("owner_name_4/0-2", { required: false }),
437
+ placeholder: "Name",
438
+ sizes: "medium",
439
+ required: false,
440
+ error: !!errors["owner_name_4/0-2"],
441
+ helperText: errors["owner_name_4/0-2"]?.message,
442
+ variant
443
+ }
444
+ ) }),
445
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
446
+ Input,
447
+ {
448
+ id: "owner_phone_4/0-2",
449
+ ...register("owner_phone_4/0-2", { required: false }),
450
+ placeholder: "Phone",
451
+ sizes: "medium",
452
+ required: false,
453
+ error: !!errors["owner_phone_4/0-2"],
454
+ helperText: errors["owner_phone_4/0-2"]?.message,
455
+ variant
456
+ }
457
+ ) }),
458
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
459
+ Input,
460
+ {
461
+ id: "owner_email_4/0-2",
462
+ ...register("owner_email_4/0-2", { required: false }),
463
+ placeholder: "Email",
464
+ sizes: "medium",
465
+ required: false,
466
+ error: !!errors["owner_email_4/0-2"],
467
+ helperText: errors["owner_email_4/0-2"]?.message,
468
+ variant
469
+ }
470
+ ) })
471
+ ] }),
472
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h4", { children: "SALES & FINANCE CONTACTS" }) }) }),
473
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "SALES CONTACT" }) }) }),
474
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
475
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
476
+ Input,
477
+ {
478
+ id: "sales_contact_name/0-2",
479
+ ...register("sales_contact_name/0-2", { required: true }),
480
+ placeholder: "Name",
481
+ sizes: "medium",
482
+ required: true,
483
+ error: !!errors["sales_contact_name/0-2"],
484
+ helperText: errors["sales_contact_name/0-2"]?.message,
485
+ variant
486
+ }
487
+ ) }),
488
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
489
+ Input,
490
+ {
491
+ id: "sales_contact_phone/0-2",
492
+ ...register("sales_contact_phone/0-2", { required: true }),
493
+ placeholder: "Phone",
494
+ sizes: "medium",
495
+ required: true,
496
+ error: !!errors["sales_contact_phone/0-2"],
497
+ helperText: errors["sales_contact_phone/0-2"]?.message,
498
+ variant
499
+ }
500
+ ) }),
501
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
502
+ Input,
503
+ {
504
+ id: "sales_contact_email/0-2",
505
+ ...register("sales_contact_email/0-2", { required: true }),
506
+ placeholder: "Email",
507
+ sizes: "medium",
508
+ required: true,
509
+ error: !!errors["sales_contact_email/0-2"],
510
+ helperText: errors["sales_contact_email/0-2"]?.message,
511
+ variant
512
+ }
513
+ ) })
514
+ ] }),
515
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "FINANCE CONTACT" }) }) }),
516
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
517
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
518
+ Input,
519
+ {
520
+ id: "finance_contact_name/0-2",
521
+ ...register("finance_contact_name/0-2", {
522
+ required: true
523
+ }),
524
+ placeholder: "Name",
525
+ sizes: "medium",
526
+ required: true,
527
+ error: !!errors["finance_contact_name/0-2"],
528
+ helperText: errors["finance_contact_name/0-2"]?.message,
529
+ variant
530
+ }
531
+ ) }),
532
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
533
+ Input,
534
+ {
535
+ id: "finance_contact_phone/0-2",
536
+ ...register("finance_contact_phone/0-2", {
537
+ required: true
538
+ }),
539
+ placeholder: "Phone",
540
+ sizes: "medium",
541
+ required: true,
542
+ error: !!errors["finance_contact_phone/0-2"],
543
+ helperText: errors["finance_contact_phone/0-2"]?.message,
544
+ variant
545
+ }
546
+ ) }),
547
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
548
+ Input,
549
+ {
550
+ id: "finance_contact_email/0-2",
551
+ ...register("finance_contact_email/0-2", {
552
+ required: true
553
+ }),
554
+ placeholder: "Email",
555
+ sizes: "medium",
556
+ required: true,
557
+ error: !!errors["finance_contact_email/0-2"],
558
+ helperText: errors["finance_contact_email/0-2"]?.message,
559
+ variant
560
+ }
561
+ ) })
562
+ ] }),
563
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h4", { children: "CORPORATE INFORMATION" }) }) }),
564
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
565
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
566
+ Input,
567
+ {
568
+ id: "type_of_organization/0-2",
569
+ ...register("type_of_organization/0-2", {
570
+ required: true
571
+ }),
572
+ placeholder: "Type of Organization",
573
+ sizes: "medium",
574
+ required: true,
575
+ error: !!errors["type_of_organization/0-2"],
576
+ helperText: errors["type_of_organization/0-2"]?.message,
577
+ variant
578
+ }
579
+ ) }),
580
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
581
+ Input,
582
+ {
583
+ id: "founded_year/0-2",
584
+ ...register("founded_year/0-2", { required: true }),
585
+ placeholder: "Year Founded",
586
+ sizes: "medium",
587
+ required: true,
588
+ error: !!errors["founded_year/0-2"],
589
+ helperText: errors["founded_year/0-2"]?.message,
590
+ variant
591
+ }
592
+ ) })
593
+ ] }),
594
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "OFFICERS, DIRECTORS, MEMBERS OR PARTNERS" }) }) }),
595
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
596
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
597
+ Input,
598
+ {
599
+ id: "officer_name_1/0-2",
600
+ ...register("officer_name_1/0-2", { required: true }),
601
+ placeholder: "Name",
602
+ sizes: "medium",
603
+ required: true,
604
+ error: !!errors["officer_name_1/0-2"],
605
+ helperText: errors["officer_name_1/0-2"]?.message,
606
+ variant
607
+ }
608
+ ) }),
609
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
610
+ Input,
611
+ {
612
+ id: "officer_title_1/0-2",
613
+ ...register("officer_title_1/0-2", { required: true }),
614
+ placeholder: "Title",
615
+ sizes: "medium",
616
+ required: true,
617
+ error: !!errors["officer_title_1/0-2"],
618
+ helperText: errors["officer_title_1/0-2"]?.message,
619
+ variant
620
+ }
621
+ ) })
622
+ ] }),
623
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
624
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
625
+ Input,
626
+ {
627
+ id: "officer_name_2/0-2",
628
+ ...register("officer_name_2/0-2", { required: false }),
629
+ placeholder: "Name",
630
+ sizes: "medium",
631
+ required: false,
632
+ error: !!errors["officer_name_2/0-2"],
633
+ helperText: errors["officer_name_2/0-2"]?.message,
634
+ variant
635
+ }
636
+ ) }),
637
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
638
+ Input,
639
+ {
640
+ id: "officer_title_2/0-2",
641
+ ...register("officer_title_2/0-2", { required: false }),
642
+ placeholder: "Title",
643
+ sizes: "medium",
644
+ required: false,
645
+ error: !!errors["officer_title_2/0-2"],
646
+ helperText: errors["officer_title_2/0-2"]?.message,
647
+ variant
648
+ }
649
+ ) })
650
+ ] }),
651
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
652
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
653
+ Input,
654
+ {
655
+ id: "officer_name_3/0-2",
656
+ ...register("officer_name_3/0-2", { required: false }),
657
+ placeholder: "Name",
658
+ sizes: "medium",
659
+ required: false,
660
+ error: !!errors["officer_name_3/0-2"],
661
+ helperText: errors["officer_name_3/0-2"]?.message,
662
+ variant
663
+ }
664
+ ) }),
665
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
666
+ Input,
667
+ {
668
+ id: "officer_title_3/0-2",
669
+ ...register("officer_title_3/0-2", { required: false }),
670
+ placeholder: "Title",
671
+ sizes: "medium",
672
+ required: false,
673
+ error: !!errors["officer_title_3/0-2"],
674
+ helperText: errors["officer_title_3/0-2"]?.message,
675
+ variant
676
+ }
677
+ ) })
678
+ ] }),
679
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h4", { children: "INSURANCE INFORMATION" }) }) }),
680
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
681
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
682
+ Input,
683
+ {
684
+ id: "name_of_insurer/0-2",
685
+ ...register("name_of_insurer/0-2", { required: true }),
686
+ placeholder: "Insurer Name",
687
+ sizes: "medium",
688
+ required: true,
689
+ error: !!errors["name_of_insurer/0-2"],
690
+ helperText: errors["name_of_insurer/0-2"]?.message,
691
+ variant
692
+ }
693
+ ) }),
694
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
695
+ Input,
696
+ {
697
+ id: "insurer_phone/0-2",
698
+ ...register("insurer_phone/0-2", { required: true }),
699
+ placeholder: "Phone",
700
+ sizes: "medium",
701
+ required: true,
702
+ error: !!errors["insurer_phone/0-2"],
703
+ helperText: errors["insurer_phone/0-2"]?.message,
704
+ variant
705
+ }
706
+ ) }),
707
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
708
+ Input,
709
+ {
710
+ id: "insurer_email/0-2",
711
+ ...register("insurer_email/0-2", { required: true }),
712
+ placeholder: "Email",
713
+ sizes: "medium",
714
+ required: true,
715
+ error: !!errors["insurer_email/0-2"],
716
+ helperText: errors["insurer_email/0-2"]?.message,
717
+ variant
718
+ }
719
+ ) })
720
+ ] }),
721
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h4", { children: "FORECASTED BUSINESS" }) }) }),
722
+ /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
723
+ InputTextArea,
724
+ {
725
+ id: "forecasted_business/0-2",
726
+ ...register("forecasted_business/0-2", {
727
+ required: false
728
+ }),
729
+ label: "Brands and anticipated volume.",
730
+ placeholder: "Forecasted Business",
731
+ sizes: "medium",
732
+ required: false,
733
+ error: !!errors["forecasted_business/0-2"],
734
+ helperText: errors["forecasted_business/0-2"]?.message,
735
+ variant
736
+ }
737
+ ) }) }),
738
+ /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
739
+ InputTextArea,
740
+ {
741
+ id: "forecasted_business_comments/0-2",
742
+ ...register("forecasted_business_comments/0-2", {
743
+ required: false
744
+ }),
745
+ label: "Tell us what’s important to you.",
746
+ placeholder: "Comments",
747
+ sizes: "medium",
748
+ required: false,
749
+ error: !!errors["forecasted_business_comments/0-2"],
750
+ helperText: errors["forecasted_business_comments/0-2"]?.message,
751
+ variant
752
+ }
753
+ ) }) }),
754
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsxs("div", { className: `${descriptionField({ variant, formType })}`, children: [
755
+ /* @__PURE__ */ jsx("h4", { children: "SECURITY POLICY" }),
756
+ /* @__PURE__ */ jsx("p", { children: "In lieu of the questions below, you may attach a copy of your existing policy. Please indicate how you protect customer Non-Public Information when communicating with LaVictoire, or once in receipt of Customer Information." })
757
+ ] }) }),
758
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "IN TRANSIT" }) }) }),
759
+ /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
760
+ InputTextArea,
761
+ {
762
+ id: "security_transit_approval_documents/0-2",
763
+ ...register("security_transit_approval_documents/0-2", {
764
+ required: true
765
+ }),
766
+ label: "When submitting applications and sharing miscellaneous documents during the approval process.",
767
+ sizes: "medium",
768
+ placeholder: "Approval Documents",
769
+ required: true,
770
+ error: !!errors["security_transit_approval_documents/0-2"],
771
+ helperText: errors["security_transit_approval_documents/0-2"]?.message,
772
+ variant
773
+ }
774
+ ) }) }),
775
+ /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
776
+ InputTextArea,
777
+ {
778
+ id: "security_transit_closing_documents/0-2",
779
+ ...register("security_transit_closing_documents/0-2", {
780
+ required: true
781
+ }),
782
+ label: "When sharing closing and USCG documents, if applicable.",
783
+ sizes: "medium",
784
+ placeholder: "Closing Documents",
785
+ required: true,
786
+ error: !!errors["security_transit_closing_documents/0-2"],
787
+ helperText: errors["security_transit_closing_documents/0-2"]?.message,
788
+ variant
789
+ }
790
+ ) }) }),
791
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "AT REST" }) }) }),
792
+ /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
793
+ InputTextArea,
794
+ {
795
+ id: "security_rest_electronic/0-2",
796
+ ...register("security_rest_electronic/0-2", {
797
+ required: true
798
+ }),
799
+ label: "Where are ELECTRONIC loan applications and closing documents saved, and how are they protected?",
800
+ sizes: "medium",
801
+ placeholder: "Electronic Documents",
802
+ required: true,
803
+ error: !!errors["security_rest_electronic/0-2"],
804
+ helperText: errors["security_rest_electronic/0-2"]?.message,
805
+ variant
806
+ }
807
+ ) }) }),
808
+ /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
809
+ InputTextArea,
810
+ {
811
+ id: "security_rest_paper/0-2",
812
+ ...register("security_rest_paper/0-2", { required: true }),
813
+ label: "Where are PAPER loan applications and closing documents saved, and how are they protected? Is there an alarm system on the premises?",
814
+ sizes: "medium",
815
+ required: true,
816
+ placeholder: "Paper Documents",
817
+ error: !!errors["security_rest_paper/0-2"],
818
+ helperText: errors["security_rest_paper/0-2"]?.message,
819
+ variant
820
+ }
821
+ ) }) }),
822
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "AT TIME OF DISPOSAL" }) }) }),
823
+ /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
824
+ InputTextArea,
825
+ {
826
+ id: "security_time_of_disposal_paper/0-2",
827
+ ...register("security_time_of_disposal_paper/0-2", {
828
+ required: true
829
+ }),
830
+ label: "How long do you retain paper documents, and how does your company dispose of them?",
831
+ sizes: "medium",
832
+ required: true,
833
+ placeholder: "Paper Disposal",
834
+ error: !!errors["security_time_of_disposal_paper/0-2"],
835
+ helperText: errors["security_time_of_disposal_paper/0-2"]?.message,
836
+ variant
837
+ }
838
+ ) }) }),
839
+ /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
840
+ InputTextArea,
841
+ {
842
+ id: "security_time_of_disposal_electronic/0-2",
843
+ ...register("security_time_of_disposal_electronic/0-2", {
844
+ required: true
845
+ }),
846
+ label: "When you upgrade or dispose of company computers, how do you remove the customer confidential data?  Does your company have IT personnel wipe the hard drives and destroy prior to disposal?",
847
+ sizes: "medium",
848
+ required: true,
849
+ placeholder: "Electronic Disposal",
850
+ error: !!errors["security_time_of_disposal_electronic/0-2"],
851
+ helperText: errors["security_time_of_disposal_electronic/0-2"]?.message,
852
+ variant
853
+ }
854
+ ) }) }),
855
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsxs("div", { className: `${descriptionField({ variant, formType })}`, children: [
856
+ /* @__PURE__ */ jsx("p", { children: "I am submitting this Vendor Questionnaire on behalf of the business named herein. I certify that I made no misrepresentation in this Vendor Questionnaire or in any related documents, that all information is true and complete, that I did not omit any important information, and that I am obligated to amend and/or supplement the information provided in this Questionnaire if any of the material facts represented herein should change. Lender is authorized to verify with other parties and to make any investigation of our Business, either directly or through any agency employed by the Lender for that purpose. I understand that Lender will retain this Questionnaire and any other information Lender receives, even if a mutual Agreement is not obtained." }),
857
+ /* @__PURE__ */ jsx("p", { children: "The transmission of this application as an “electronic record” containing my “electronic signature,” as those terms are defined in applicable federal and/or state laws, shall be as effective, enforceable and valid as if a paper version of this application were delivered containing my original written signature." })
858
+ ] }) }),
859
+ /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h4", { children: "AUTHORIZED REPRESENTATIVE" }) }) }),
860
+ /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
861
+ Input,
862
+ {
863
+ id: "company/0-1",
864
+ ...register("company/0-1", { required: true }),
865
+ placeholder: "Company Name",
866
+ sizes: "medium",
867
+ required: true,
868
+ error: !!errors["company/0-1"],
869
+ helperText: errors["company/0-1"]?.message,
870
+ variant
871
+ }
872
+ ) }) }),
873
+ /* @__PURE__ */ jsxs("div", { className: form_row, children: [
874
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
875
+ Input,
876
+ {
877
+ id: "firstname/0-1",
878
+ ...register("firstname/0-1", { required: true }),
879
+ placeholder: "First Name",
880
+ sizes: "medium",
881
+ required: true,
882
+ error: !!errors["firstname/0-1"],
883
+ helperText: errors["firstname/0-1"]?.message,
884
+ variant
885
+ }
886
+ ) }),
887
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
888
+ Input,
889
+ {
890
+ id: "lastname/0-1",
891
+ ...register("lastname/0-1", { required: true }),
892
+ placeholder: "Last Name",
893
+ sizes: "medium",
894
+ required: true,
895
+ error: !!errors["lastname/0-1"],
896
+ helperText: errors["lastname/0-1"]?.message,
897
+ variant
898
+ }
899
+ ) }),
900
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
901
+ Input,
902
+ {
903
+ id: "jobtitle/0-1",
904
+ ...register("jobtitle/0-1", { required: true }),
905
+ placeholder: "Job Title",
906
+ sizes: "medium",
907
+ required: true,
908
+ error: !!errors["jobtitle/0-1"],
909
+ helperText: errors["jobtitle/0-1"]?.message,
910
+ variant
911
+ }
912
+ ) })
913
+ ] }),
914
+ /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
915
+ Input,
916
+ {
917
+ id: "email/0-1",
918
+ ...register("email/0-1", { required: true }),
919
+ placeholder: "Email",
920
+ sizes: "medium",
921
+ required: true,
922
+ error: !!errors["email/0-1"],
923
+ helperText: errors["email/0-1"]?.message,
924
+ variant
925
+ }
926
+ ) }) }),
927
+ /* @__PURE__ */ jsx(HoneyPot, { register, errors, variant })
928
+ ] }),
929
+ children,
930
+ /* @__PURE__ */ jsx("div", { className: actions, children: /* @__PURE__ */ jsx(
931
+ Button,
932
+ {
933
+ color: getVariant(callToAction?.variant),
934
+ as: "button",
935
+ type: "submit",
936
+ disabled: !isValid,
937
+ children: callToAction?.displayText
550
938
  }
551
939
  ) })
552
- ] }),
553
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h4", { children: "CORPORATE INFORMATION" }) }) }),
554
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
555
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
556
- Input,
557
- {
558
- id: "type_of_organization/0-2",
559
- ...register("type_of_organization/0-2", {
560
- required: true
561
- }),
562
- placeholder: "Type of Organization",
563
- sizes: "medium",
564
- required: true,
565
- error: !!errors["type_of_organization/0-2"],
566
- helperText: errors["type_of_organization/0-2"]?.message,
567
- variant
568
- }
569
- ) }),
570
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
571
- Input,
572
- {
573
- id: "founded_year/0-2",
574
- ...register("founded_year/0-2", { required: true }),
575
- placeholder: "Year Founded",
576
- sizes: "medium",
577
- required: true,
578
- error: !!errors["founded_year/0-2"],
579
- helperText: errors["founded_year/0-2"]?.message,
580
- variant
581
- }
582
- ) })
583
- ] }),
584
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "OFFICERS, DIRECTORS, MEMBERS OR PARTNERS" }) }) }),
585
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
586
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
587
- Input,
588
- {
589
- id: "officer_name_1/0-2",
590
- ...register("officer_name_1/0-2", { required: true }),
591
- placeholder: "Name",
592
- sizes: "medium",
593
- required: true,
594
- error: !!errors["officer_name_1/0-2"],
595
- helperText: errors["officer_name_1/0-2"]?.message,
596
- variant
597
- }
598
- ) }),
599
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
600
- Input,
601
- {
602
- id: "officer_title_1/0-2",
603
- ...register("officer_title_1/0-2", { required: true }),
604
- placeholder: "Title",
605
- sizes: "medium",
606
- required: true,
607
- error: !!errors["officer_title_1/0-2"],
608
- helperText: errors["officer_title_1/0-2"]?.message,
609
- variant
610
- }
611
- ) })
612
- ] }),
613
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
614
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
615
- Input,
616
- {
617
- id: "officer_name_2/0-2",
618
- ...register("officer_name_2/0-2", { required: false }),
619
- placeholder: "Name",
620
- sizes: "medium",
621
- required: false,
622
- error: !!errors["officer_name_2/0-2"],
623
- helperText: errors["officer_name_2/0-2"]?.message,
624
- variant
625
- }
626
- ) }),
627
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
628
- Input,
629
- {
630
- id: "officer_title_2/0-2",
631
- ...register("officer_title_2/0-2", { required: false }),
632
- placeholder: "Title",
633
- sizes: "medium",
634
- required: false,
635
- error: !!errors["officer_title_2/0-2"],
636
- helperText: errors["officer_title_2/0-2"]?.message,
637
- variant
638
- }
639
- ) })
640
- ] }),
641
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
642
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
643
- Input,
644
- {
645
- id: "officer_name_3/0-2",
646
- ...register("officer_name_3/0-2", { required: false }),
647
- placeholder: "Name",
648
- sizes: "medium",
649
- required: false,
650
- error: !!errors["officer_name_3/0-2"],
651
- helperText: errors["officer_name_3/0-2"]?.message,
652
- variant
653
- }
654
- ) }),
655
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
656
- Input,
657
- {
658
- id: "officer_title_3/0-2",
659
- ...register("officer_title_3/0-2", { required: false }),
660
- placeholder: "Title",
661
- sizes: "medium",
662
- required: false,
663
- error: !!errors["officer_title_3/0-2"],
664
- helperText: errors["officer_title_3/0-2"]?.message,
665
- variant
666
- }
667
- ) })
668
- ] }),
669
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h4", { children: "INSURANCE INFORMATION" }) }) }),
670
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
671
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
672
- Input,
673
- {
674
- id: "name_of_insurer/0-2",
675
- ...register("name_of_insurer/0-2", { required: true }),
676
- placeholder: "Insurer Name",
677
- sizes: "medium",
678
- required: true,
679
- error: !!errors["name_of_insurer/0-2"],
680
- helperText: errors["name_of_insurer/0-2"]?.message,
681
- variant
682
- }
683
- ) }),
684
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
685
- Input,
686
- {
687
- id: "insurer_phone/0-2",
688
- ...register("insurer_phone/0-2", { required: true }),
689
- placeholder: "Phone",
690
- sizes: "medium",
691
- required: true,
692
- error: !!errors["insurer_phone/0-2"],
693
- helperText: errors["insurer_phone/0-2"]?.message,
694
- variant
695
- }
696
- ) }),
697
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
698
- Input,
699
- {
700
- id: "insurer_email/0-2",
701
- ...register("insurer_email/0-2", { required: true }),
702
- placeholder: "Email",
703
- sizes: "medium",
704
- required: true,
705
- error: !!errors["insurer_email/0-2"],
706
- helperText: errors["insurer_email/0-2"]?.message,
707
- variant
708
- }
709
- ) })
710
- ] }),
711
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h4", { children: "FORECASTED BUSINESS" }) }) }),
712
- /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
713
- InputTextArea,
714
- {
715
- id: "forecasted_business/0-2",
716
- ...register("forecasted_business/0-2", {
717
- required: false
718
- }),
719
- label: "Brands and anticipated volume.",
720
- placeholder: "Forecasted Business",
721
- sizes: "medium",
722
- required: false,
723
- error: !!errors["forecasted_business/0-2"],
724
- helperText: errors["forecasted_business/0-2"]?.message,
725
- variant
726
- }
727
- ) }) }),
728
- /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
729
- InputTextArea,
730
- {
731
- id: "forecasted_business_comments/0-2",
732
- ...register("forecasted_business_comments/0-2", {
733
- required: false
734
- }),
735
- label: "Tell us what’s important to you.",
736
- placeholder: "Comments",
737
- sizes: "medium",
738
- required: false,
739
- error: !!errors["forecasted_business_comments/0-2"],
740
- helperText: errors["forecasted_business_comments/0-2"]?.message,
741
- variant
742
- }
743
- ) }) }),
744
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsxs("div", { className: `${descriptionField({ variant, formType })}`, children: [
745
- /* @__PURE__ */ jsx("h4", { children: "SECURITY POLICY" }),
746
- /* @__PURE__ */ jsx("p", { children: "In lieu of the questions below, you may attach a copy of your existing policy. Please indicate how you protect customer Non-Public Information when communicating with LaVictoire, or once in receipt of Customer Information." })
747
- ] }) }),
748
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "IN TRANSIT" }) }) }),
749
- /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
750
- InputTextArea,
751
- {
752
- id: "security_transit_approval_documents/0-2",
753
- ...register("security_transit_approval_documents/0-2", {
754
- required: true
755
- }),
756
- label: "When submitting applications and sharing miscellaneous documents during the approval process.",
757
- sizes: "medium",
758
- placeholder: "Approval Documents",
759
- required: true,
760
- error: !!errors["security_transit_approval_documents/0-2"],
761
- helperText: errors["security_transit_approval_documents/0-2"]?.message,
762
- variant
763
- }
764
- ) }) }),
765
- /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
766
- InputTextArea,
767
- {
768
- id: "security_transit_closing_documents/0-2",
769
- ...register("security_transit_closing_documents/0-2", {
770
- required: true
771
- }),
772
- label: "When sharing closing and USCG documents, if applicable.",
773
- sizes: "medium",
774
- placeholder: "Closing Documents",
775
- required: true,
776
- error: !!errors["security_transit_closing_documents/0-2"],
777
- helperText: errors["security_transit_closing_documents/0-2"]?.message,
778
- variant
779
- }
780
- ) }) }),
781
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "AT REST" }) }) }),
782
- /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
783
- InputTextArea,
784
- {
785
- id: "security_rest_electronic/0-2",
786
- ...register("security_rest_electronic/0-2", {
787
- required: true
788
- }),
789
- label: "Where are ELECTRONIC loan applications and closing documents saved, and how are they protected?",
790
- sizes: "medium",
791
- placeholder: "Electronic Documents",
792
- required: true,
793
- error: !!errors["security_rest_electronic/0-2"],
794
- helperText: errors["security_rest_electronic/0-2"]?.message,
795
- variant
796
- }
797
- ) }) }),
798
- /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
799
- InputTextArea,
800
- {
801
- id: "security_rest_paper/0-2",
802
- ...register("security_rest_paper/0-2", { required: true }),
803
- label: "Where are PAPER loan applications and closing documents saved, and how are they protected? Is there an alarm system on the premises?",
804
- sizes: "medium",
805
- required: true,
806
- placeholder: "Paper Documents",
807
- error: !!errors["security_rest_paper/0-2"],
808
- helperText: errors["security_rest_paper/0-2"]?.message,
809
- variant
810
- }
811
- ) }) }),
812
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h5", { children: "AT TIME OF DISPOSAL" }) }) }),
813
- /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
814
- InputTextArea,
815
- {
816
- id: "security_time_of_disposal_paper/0-2",
817
- ...register("security_time_of_disposal_paper/0-2", {
818
- required: true
819
- }),
820
- label: "How long do you retain paper documents, and how does your company dispose of them?",
821
- sizes: "medium",
822
- required: true,
823
- placeholder: "Paper Disposal",
824
- error: !!errors["security_time_of_disposal_paper/0-2"],
825
- helperText: errors["security_time_of_disposal_paper/0-2"]?.message,
826
- variant
827
- }
828
- ) }) }),
829
- /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
830
- InputTextArea,
831
- {
832
- id: "security_time_of_disposal_electronic/0-2",
833
- ...register("security_time_of_disposal_electronic/0-2", {
834
- required: true
835
- }),
836
- label: "When you upgrade or dispose of company computers, how do you remove the customer confidential data?  Does your company have IT personnel wipe the hard drives and destroy prior to disposal?",
837
- sizes: "medium",
838
- required: true,
839
- placeholder: "Electronic Disposal",
840
- error: !!errors["security_time_of_disposal_electronic/0-2"],
841
- helperText: errors["security_time_of_disposal_electronic/0-2"]?.message,
842
- variant
843
- }
844
- ) }) }),
845
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsxs("div", { className: `${descriptionField({ variant, formType })}`, children: [
846
- /* @__PURE__ */ jsx("p", { children: "I am submitting this Vendor Questionnaire on behalf of the business named herein. I certify that I made no misrepresentation in this Vendor Questionnaire or in any related documents, that all information is true and complete, that I did not omit any important information, and that I am obligated to amend and/or supplement the information provided in this Questionnaire if any of the material facts represented herein should change. Lender is authorized to verify with other parties and to make any investigation of our Business, either directly or through any agency employed by the Lender for that purpose. I understand that Lender will retain this Questionnaire and any other information Lender receives, even if a mutual Agreement is not obtained." }),
847
- /* @__PURE__ */ jsx("p", { children: "The transmission of this application as an “electronic record” containing my “electronic signature,” as those terms are defined in applicable federal and/or state laws, shall be as effective, enforceable and valid as if a paper version of this application were delivered containing my original written signature." })
848
- ] }) }),
849
- /* @__PURE__ */ jsx("div", { className: `${form_row}`, children: /* @__PURE__ */ jsx("div", { className: `${descriptionField({ variant, formType })}`, children: /* @__PURE__ */ jsx("h4", { children: "AUTHORIZED REPRESENTATIVE" }) }) }),
850
- /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
851
- Input,
852
- {
853
- id: "company/0-1",
854
- ...register("company/0-1", { required: true }),
855
- placeholder: "Company Name",
856
- sizes: "medium",
857
- required: true,
858
- error: !!errors["company/0-1"],
859
- helperText: errors["company/0-1"]?.message,
860
- variant
861
- }
862
- ) }) }),
863
- /* @__PURE__ */ jsxs("div", { className: form_row, children: [
864
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
865
- Input,
866
- {
867
- id: "firstname/0-1",
868
- ...register("firstname/0-1", { required: true }),
869
- placeholder: "First Name",
870
- sizes: "medium",
871
- required: true,
872
- error: !!errors["firstname/0-1"],
873
- helperText: errors["firstname/0-1"]?.message,
874
- variant
875
- }
876
- ) }),
877
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
878
- Input,
879
- {
880
- id: "lastname/0-1",
881
- ...register("lastname/0-1", { required: true }),
882
- placeholder: "Last Name",
883
- sizes: "medium",
884
- required: true,
885
- error: !!errors["lastname/0-1"],
886
- helperText: errors["lastname/0-1"]?.message,
887
- variant
888
- }
889
- ) }),
890
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
891
- Input,
892
- {
893
- id: "jobtitle/0-1",
894
- ...register("jobtitle/0-1", { required: true }),
895
- placeholder: "Job Title",
896
- sizes: "medium",
897
- required: true,
898
- error: !!errors["jobtitle/0-1"],
899
- helperText: errors["jobtitle/0-1"]?.message,
900
- variant
901
- }
902
- ) })
903
- ] }),
904
- /* @__PURE__ */ jsx("div", { className: form_row, children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
905
- Input,
906
- {
907
- id: "email/0-1",
908
- ...register("email/0-1", { required: true }),
909
- placeholder: "Email",
910
- sizes: "medium",
911
- required: true,
912
- error: !!errors["email/0-1"],
913
- helperText: errors["email/0-1"]?.message,
914
- variant
915
- }
916
- ) }) }),
917
- /* @__PURE__ */ jsx(HoneyPot, { register, errors, variant })
918
- ] }),
919
- children,
920
- /* @__PURE__ */ jsx("div", { className: actions, children: /* @__PURE__ */ jsx(
921
- Button,
922
- {
923
- color: getVariant(callToAction?.variant),
924
- as: "button",
925
- type: "submit",
926
- disabled: !isValid,
927
- children: callToAction?.displayText
928
- }
929
- ) })
930
- ] }) }) }) }, id);
940
+ ]
941
+ }
942
+ ) }) }) }, id);
931
943
  };
932
944
  export {
933
945
  VendorQuestionnaire