@axos-web-dev/shared-components 1.0.77-patch.23 → 1.0.77-patch.25
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.
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +0 -2
- package/dist/Forms/MortgageRate/MortgageRateForm.d.ts +1 -1
- package/dist/Forms/MortgageRate/MortgageRateForm.js +346 -367
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.d.ts +0 -2
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.js +3 -5
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +21 -45
- package/package.json +1 -1
|
@@ -433,7 +433,6 @@ const AxosFooterSiteMap = ({
|
|
|
433
433
|
/* @__PURE__ */ jsxs("div", { className: ft_col, children: [
|
|
434
434
|
/* @__PURE__ */ jsx("h2", { className: ft_col_header, children: /* @__PURE__ */ jsx("a", { href: findMoreAxosDomains("{AXOSBANK}/partners"), children: "Partners" }) }),
|
|
435
435
|
/* @__PURE__ */ jsxs("ul", { children: [
|
|
436
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "https://lavictoirefinance.com/dealers", children: "Marine Dealer Floorplan Finance" }) }),
|
|
437
436
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
438
437
|
"a",
|
|
439
438
|
{
|
|
@@ -887,7 +886,6 @@ const AxosFooterSiteMap = ({
|
|
|
887
886
|
)
|
|
888
887
|
] }),
|
|
889
888
|
/* @__PURE__ */ jsxs("ul", { children: [
|
|
890
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "https://lavictoirefinance.com/dealers", children: "Marine Dealer Floorplan Finance" }) }),
|
|
891
889
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
892
890
|
"a",
|
|
893
891
|
{
|
|
@@ -19,7 +19,7 @@ export type MortgageRateInputs = {
|
|
|
19
19
|
loanPurpose: number;
|
|
20
20
|
[key: string]: string | number;
|
|
21
21
|
};
|
|
22
|
-
export declare const MortgageRate: ({ icon, children, onSubmit, disclosure, variant: fullVariant, validateEmail, id, rateWatchOnSubmit, setRateWatchSubmitted, hideModalValue, showingTables,
|
|
22
|
+
export declare const MortgageRate: ({ icon, children, onSubmit, disclosure, variant: fullVariant, validateEmail, id, rateWatchOnSubmit, setRateWatchSubmitted, hideModalValue, showingTables, }: FormProps & {
|
|
23
23
|
rateWatchOnSubmit: (values: RateWatchInputs & {
|
|
24
24
|
email: string;
|
|
25
25
|
}) => Promise<void>;
|
|
@@ -46,7 +46,7 @@ import { useForm, FormProvider } from "react-hook-form";
|
|
|
46
46
|
import * as z from "zod";
|
|
47
47
|
import "../../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
|
|
48
48
|
import { iconForm, headerForm, form, descriptionField, headerContainer, fullRowSelect, formWrapper, centerSelect, mt2rem, fullRowForm, disclosureForm, actions, formBtns, na_cursor, formContainer } from "../Forms.css.js";
|
|
49
|
-
import
|
|
49
|
+
import "../HoneyPot/index.js";
|
|
50
50
|
import { SalesforceSchema } from "../SalesforceFieldsForm.js";
|
|
51
51
|
import "../../Input/RadioButton.css.js";
|
|
52
52
|
import "../../Input/Checkbox.css.js";
|
|
@@ -141,8 +141,7 @@ const MortgageRate = ({
|
|
|
141
141
|
rateWatchOnSubmit,
|
|
142
142
|
setRateWatchSubmitted,
|
|
143
143
|
hideModalValue,
|
|
144
|
-
showingTables
|
|
145
|
-
onValidate
|
|
144
|
+
showingTables
|
|
146
145
|
}) => {
|
|
147
146
|
const [loanPurpose, setLoanPurpose] = useState(1);
|
|
148
147
|
const [rateType, setRateType] = useState("Purchase");
|
|
@@ -221,16 +220,8 @@ const MortgageRate = ({
|
|
|
221
220
|
cashOut: z.number({ message: "Cash Out is required." }).optional(),
|
|
222
221
|
loanPurpose: z.number({ message: "Loan Purpose is required." })
|
|
223
222
|
});
|
|
224
|
-
const gen_schema = schema.merge(SalesforceSchema).merge(honeyPotSchema).superRefine((data, ctx) => {
|
|
225
|
-
if (!isValidHoneyPot(data)) {
|
|
226
|
-
ctx.addIssue({
|
|
227
|
-
code: z.ZodIssueCode.custom,
|
|
228
|
-
message: "fields are not valid."
|
|
229
|
-
});
|
|
230
|
-
}
|
|
231
|
-
});
|
|
232
223
|
const methods = useForm({
|
|
233
|
-
resolver: zodResolver(
|
|
224
|
+
resolver: zodResolver(schema.merge(SalesforceSchema), {
|
|
234
225
|
async: true
|
|
235
226
|
}),
|
|
236
227
|
mode: "all",
|
|
@@ -420,373 +411,361 @@ const MortgageRate = ({
|
|
|
420
411
|
children: "Tell us about your property and loan to personalize your rate."
|
|
421
412
|
}
|
|
422
413
|
) }),
|
|
423
|
-
/* @__PURE__ */ jsxs(
|
|
424
|
-
"
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
}
|
|
482
|
-
) }),
|
|
483
|
-
loanPurpose === 1 && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
484
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
485
|
-
Input,
|
|
486
|
-
{
|
|
487
|
-
id: "salesPrice",
|
|
488
|
-
type: "text",
|
|
489
|
-
...register("salesPrice", {
|
|
490
|
-
required: true,
|
|
491
|
-
setValueAs: (value) => parseCurrency(value)
|
|
492
|
-
}),
|
|
493
|
-
label: "Purchase Price",
|
|
494
|
-
sizes: "medium",
|
|
495
|
-
required: true,
|
|
496
|
-
error: !!errors.salesPrice,
|
|
497
|
-
helperText: errors.salesPrice?.message,
|
|
498
|
-
variant,
|
|
499
|
-
onBlur: (e) => {
|
|
500
|
-
setIsTypingDownPayment(false);
|
|
501
|
-
const rawValue = e.target.value;
|
|
502
|
-
const parsedValue = parseCurrency(rawValue);
|
|
503
|
-
if (parsedValue === 0) {
|
|
504
|
-
methods.setError("salesPrice", {
|
|
505
|
-
type: "manual",
|
|
506
|
-
message: "Purchase Price is required."
|
|
507
|
-
});
|
|
508
|
-
} else {
|
|
509
|
-
methods.setValue("salesPrice", parsedValue);
|
|
510
|
-
e.target.value = formatCurrency(parsedValue);
|
|
511
|
-
}
|
|
512
|
-
methods.trigger("downPayment");
|
|
513
|
-
},
|
|
514
|
-
onFocus: (e) => {
|
|
515
|
-
const currentValue = e.target.value;
|
|
516
|
-
e.target.value = currentValue.replace(/[$,]/g, "");
|
|
517
|
-
}
|
|
518
|
-
}
|
|
519
|
-
) }),
|
|
520
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
521
|
-
DownPaymentInput,
|
|
522
|
-
{
|
|
523
|
-
id: "downPayment",
|
|
524
|
-
type: "text",
|
|
525
|
-
...register("downPayment", {
|
|
526
|
-
required: true,
|
|
527
|
-
setValueAs: (value) => parseCurrency(value)
|
|
528
|
-
}),
|
|
529
|
-
salesPrice: watch("salesPrice"),
|
|
530
|
-
downPaymentPercentage,
|
|
531
|
-
setDownPaymentPercentage,
|
|
532
|
-
label: "Down Payment",
|
|
533
|
-
sizes: "medium",
|
|
534
|
-
error: !!errors.downPayment,
|
|
535
|
-
helperText: errors.downPayment?.message,
|
|
536
|
-
onChange: (e) => {
|
|
537
|
-
const value = parseCurrency(e.target.value);
|
|
538
|
-
methods.setValue("downPayment", value);
|
|
539
|
-
},
|
|
540
|
-
variant,
|
|
541
|
-
isTypingDownPayment,
|
|
542
|
-
setIsTypingDownPayment,
|
|
543
|
-
methods
|
|
544
|
-
}
|
|
545
|
-
) })
|
|
546
|
-
] }),
|
|
547
|
-
loanPurpose === 2 && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
548
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
549
|
-
Input,
|
|
550
|
-
{
|
|
551
|
-
id: "appraisedValue",
|
|
552
|
-
type: "text",
|
|
553
|
-
...register("appraisedValue", {
|
|
554
|
-
required: true,
|
|
555
|
-
setValueAs: (value) => parseCurrency(value)
|
|
556
|
-
}),
|
|
557
|
-
label: "Home Value",
|
|
558
|
-
sizes: "medium",
|
|
559
|
-
required: true,
|
|
560
|
-
error: !!errors.appraisedValue,
|
|
561
|
-
helperText: errors.appraisedValue?.message,
|
|
562
|
-
variant,
|
|
563
|
-
onBlur: (e) => {
|
|
564
|
-
const rawValue = e.target.value;
|
|
565
|
-
const parsedValue = parseCurrency(rawValue);
|
|
566
|
-
methods.setValue("appraisedValue", parsedValue);
|
|
567
|
-
e.target.value = formatCurrency(parsedValue);
|
|
568
|
-
},
|
|
569
|
-
onFocus: (e) => {
|
|
570
|
-
const currentValue = e.target.value;
|
|
571
|
-
e.target.value = currentValue.replace(/[$,]/g, "");
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
) }),
|
|
575
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
576
|
-
Input,
|
|
577
|
-
{
|
|
578
|
-
id: "mortgageBalance",
|
|
579
|
-
type: "text",
|
|
580
|
-
...register("mortgageBalance", {
|
|
581
|
-
required: true,
|
|
582
|
-
setValueAs: (value) => parseCurrency(value)
|
|
583
|
-
}),
|
|
584
|
-
label: "Mortgage Balance",
|
|
585
|
-
sizes: "medium",
|
|
586
|
-
required: true,
|
|
587
|
-
error: !!errors.mortgageBalance,
|
|
588
|
-
helperText: errors.mortgageBalance?.message,
|
|
589
|
-
variant,
|
|
590
|
-
onBlur: (e) => {
|
|
591
|
-
const rawValue = e.target.value;
|
|
592
|
-
const parsedValue = parseCurrency(rawValue);
|
|
593
|
-
methods.setValue("mortgageBalance", parsedValue);
|
|
594
|
-
e.target.value = formatCurrency(parsedValue);
|
|
595
|
-
},
|
|
596
|
-
onFocus: (e) => {
|
|
597
|
-
const currentValue = e.target.value;
|
|
598
|
-
e.target.value = currentValue.replace(/[$,]/g, "");
|
|
599
|
-
}
|
|
600
|
-
}
|
|
601
|
-
) })
|
|
602
|
-
] }),
|
|
603
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs(
|
|
604
|
-
Dropdown,
|
|
605
|
-
{
|
|
606
|
-
id: "creditScore",
|
|
607
|
-
...register("creditScore", {
|
|
608
|
-
required: true,
|
|
609
|
-
setValueAs: (value) => value === "" ? void 0 : Number(value)
|
|
610
|
-
}),
|
|
611
|
-
label: "Credit Score",
|
|
612
|
-
sizes: "medium",
|
|
613
|
-
required: true,
|
|
614
|
-
error: !!errors.creditScore,
|
|
615
|
-
helperText: errors.creditScore?.message,
|
|
616
|
-
variant,
|
|
617
|
-
defaultValue: "Select option",
|
|
618
|
-
children: [
|
|
619
|
-
/* @__PURE__ */ jsx("option", { disabled: true, value: "Select option", children: "Select Option" }),
|
|
620
|
-
/* @__PURE__ */ jsx("option", { value: "740", children: "740+" }),
|
|
621
|
-
/* @__PURE__ */ jsx("option", { value: "720", children: "739-720" }),
|
|
622
|
-
/* @__PURE__ */ jsx("option", { value: "700", children: "719-700" }),
|
|
623
|
-
/* @__PURE__ */ jsx("option", { value: "680", children: "699-680" }),
|
|
624
|
-
/* @__PURE__ */ jsx("option", { value: "660", children: "679-660" }),
|
|
625
|
-
/* @__PURE__ */ jsx("option", { value: "640", children: "659-640" }),
|
|
626
|
-
/* @__PURE__ */ jsx("option", { value: "620", children: "639-620" }),
|
|
627
|
-
/* @__PURE__ */ jsx("option", { value: "600", children: "Below 620" })
|
|
628
|
-
]
|
|
629
|
-
}
|
|
630
|
-
) }),
|
|
631
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
632
|
-
Input,
|
|
633
|
-
{
|
|
634
|
-
id: "zipCode",
|
|
635
|
-
type: "number",
|
|
636
|
-
...register("zipCode", {
|
|
637
|
-
required: true,
|
|
638
|
-
setValueAs: (value) => Number(value)
|
|
639
|
-
}),
|
|
640
|
-
label: "Zip Code",
|
|
641
|
-
sizes: "medium",
|
|
414
|
+
/* @__PURE__ */ jsxs("form", { className: form, onSubmit: handleSubmit(submitForm), children: [
|
|
415
|
+
/* @__PURE__ */ jsxs("div", { className: clsx(formWrapper({ variant })), children: [
|
|
416
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs(
|
|
417
|
+
Dropdown,
|
|
418
|
+
{
|
|
419
|
+
id: "propertyType",
|
|
420
|
+
...register("propertyType", {
|
|
421
|
+
required: true,
|
|
422
|
+
setValueAs: (value) => Number(value)
|
|
423
|
+
}),
|
|
424
|
+
label: "Property Type",
|
|
425
|
+
sizes: "medium",
|
|
426
|
+
required: true,
|
|
427
|
+
error: !!errors.propertyType,
|
|
428
|
+
helperText: errors.propertyType?.message,
|
|
429
|
+
variant,
|
|
430
|
+
defaultValue: "Select option",
|
|
431
|
+
children: [
|
|
432
|
+
/* @__PURE__ */ jsx("option", { disabled: true, value: "Select option", children: "Select Option" }),
|
|
433
|
+
/* @__PURE__ */ jsx("option", { value: "1", children: "Single Family Home" }),
|
|
434
|
+
/* @__PURE__ */ jsx("option", { value: "3", children: "Condo" }),
|
|
435
|
+
/* @__PURE__ */ jsx("option", { value: "5", children: "Hi-Rise Condo" }),
|
|
436
|
+
/* @__PURE__ */ jsx("option", { value: "2", children: "Co-op" }),
|
|
437
|
+
/* @__PURE__ */ jsx("option", { value: "4", children: "2-4 Unit" }),
|
|
438
|
+
/* @__PURE__ */ jsx("option", { value: "6", children: "Manufactured" })
|
|
439
|
+
]
|
|
440
|
+
}
|
|
441
|
+
) }),
|
|
442
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs(
|
|
443
|
+
Dropdown,
|
|
444
|
+
{
|
|
445
|
+
id: "occupancy",
|
|
446
|
+
...register("occupancy", {
|
|
447
|
+
required: true,
|
|
448
|
+
setValueAs: (value) => Number(value)
|
|
449
|
+
}),
|
|
450
|
+
label: "Property Usage",
|
|
451
|
+
sizes: "medium",
|
|
452
|
+
required: true,
|
|
453
|
+
error: !!errors.occupancy,
|
|
454
|
+
helperText: errors.occupancy?.message,
|
|
455
|
+
variant,
|
|
456
|
+
defaultValue: "Select option",
|
|
457
|
+
children: [
|
|
458
|
+
/* @__PURE__ */ jsx("option", { disabled: true, value: "Select option", children: "Select Option" }),
|
|
459
|
+
/* @__PURE__ */ jsx("option", { value: "1", children: "Primary Residence" }),
|
|
460
|
+
/* @__PURE__ */ jsx("option", { value: "2", children: "Vacation Home" }),
|
|
461
|
+
/* @__PURE__ */ jsx("option", { value: "3", children: "Investment" })
|
|
462
|
+
]
|
|
463
|
+
}
|
|
464
|
+
) }),
|
|
465
|
+
loanPurpose === 1 && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
466
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
467
|
+
Input,
|
|
468
|
+
{
|
|
469
|
+
id: "salesPrice",
|
|
470
|
+
type: "text",
|
|
471
|
+
...register("salesPrice", {
|
|
642
472
|
required: true,
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
onBlur: (e) => {
|
|
663
|
-
const rawValue = e.target.value;
|
|
664
|
-
const parsedValue = parseCurrency(rawValue);
|
|
665
|
-
methods.setValue("cashOut", parsedValue);
|
|
473
|
+
setValueAs: (value) => parseCurrency(value)
|
|
474
|
+
}),
|
|
475
|
+
label: "Purchase Price",
|
|
476
|
+
sizes: "medium",
|
|
477
|
+
required: true,
|
|
478
|
+
error: !!errors.salesPrice,
|
|
479
|
+
helperText: errors.salesPrice?.message,
|
|
480
|
+
variant,
|
|
481
|
+
onBlur: (e) => {
|
|
482
|
+
setIsTypingDownPayment(false);
|
|
483
|
+
const rawValue = e.target.value;
|
|
484
|
+
const parsedValue = parseCurrency(rawValue);
|
|
485
|
+
if (parsedValue === 0) {
|
|
486
|
+
methods.setError("salesPrice", {
|
|
487
|
+
type: "manual",
|
|
488
|
+
message: "Purchase Price is required."
|
|
489
|
+
});
|
|
490
|
+
} else {
|
|
491
|
+
methods.setValue("salesPrice", parsedValue);
|
|
666
492
|
e.target.value = formatCurrency(parsedValue);
|
|
667
|
-
},
|
|
668
|
-
onFocus: (e) => {
|
|
669
|
-
const currentValue = e.target.value;
|
|
670
|
-
e.target.value = currentValue.replace(/[$,]/g, "");
|
|
671
493
|
}
|
|
494
|
+
methods.trigger("downPayment");
|
|
495
|
+
},
|
|
496
|
+
onFocus: (e) => {
|
|
497
|
+
const currentValue = e.target.value;
|
|
498
|
+
e.target.value = currentValue.replace(/[$,]/g, "");
|
|
672
499
|
}
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
children: "Almost there! Please provide your contact information to view rates and sign up for Rate Watch."
|
|
682
|
-
}
|
|
683
|
-
) }),
|
|
684
|
-
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
685
|
-
Input,
|
|
686
|
-
{
|
|
687
|
-
id: "firstName",
|
|
688
|
-
...register("firstName", {
|
|
689
|
-
required: "First Name is required"
|
|
690
|
-
}),
|
|
691
|
-
label: "First Name",
|
|
692
|
-
sizes: "medium",
|
|
500
|
+
}
|
|
501
|
+
) }),
|
|
502
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
503
|
+
DownPaymentInput,
|
|
504
|
+
{
|
|
505
|
+
id: "downPayment",
|
|
506
|
+
type: "text",
|
|
507
|
+
...register("downPayment", {
|
|
693
508
|
required: true,
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
509
|
+
setValueAs: (value) => parseCurrency(value)
|
|
510
|
+
}),
|
|
511
|
+
salesPrice: watch("salesPrice"),
|
|
512
|
+
downPaymentPercentage,
|
|
513
|
+
setDownPaymentPercentage,
|
|
514
|
+
label: "Down Payment",
|
|
515
|
+
sizes: "medium",
|
|
516
|
+
error: !!errors.downPayment,
|
|
517
|
+
helperText: errors.downPayment?.message,
|
|
518
|
+
onChange: (e) => {
|
|
519
|
+
const value = parseCurrency(e.target.value);
|
|
520
|
+
methods.setValue("downPayment", value);
|
|
521
|
+
},
|
|
522
|
+
variant,
|
|
523
|
+
isTypingDownPayment,
|
|
524
|
+
setIsTypingDownPayment,
|
|
525
|
+
methods
|
|
526
|
+
}
|
|
527
|
+
) })
|
|
528
|
+
] }),
|
|
529
|
+
loanPurpose === 2 && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
530
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
531
|
+
Input,
|
|
532
|
+
{
|
|
533
|
+
id: "appraisedValue",
|
|
534
|
+
type: "text",
|
|
535
|
+
...register("appraisedValue", {
|
|
706
536
|
required: true,
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
537
|
+
setValueAs: (value) => parseCurrency(value)
|
|
538
|
+
}),
|
|
539
|
+
label: "Home Value",
|
|
540
|
+
sizes: "medium",
|
|
541
|
+
required: true,
|
|
542
|
+
error: !!errors.appraisedValue,
|
|
543
|
+
helperText: errors.appraisedValue?.message,
|
|
544
|
+
variant,
|
|
545
|
+
onBlur: (e) => {
|
|
546
|
+
const rawValue = e.target.value;
|
|
547
|
+
const parsedValue = parseCurrency(rawValue);
|
|
548
|
+
methods.setValue("appraisedValue", parsedValue);
|
|
549
|
+
e.target.value = formatCurrency(parsedValue);
|
|
550
|
+
},
|
|
551
|
+
onFocus: (e) => {
|
|
552
|
+
const currentValue = e.target.value;
|
|
553
|
+
e.target.value = currentValue.replace(/[$,]/g, "");
|
|
710
554
|
}
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
isValid: associatedEmail
|
|
720
|
-
}
|
|
721
|
-
}),
|
|
722
|
-
label: "Email",
|
|
723
|
-
sizes: "medium",
|
|
555
|
+
}
|
|
556
|
+
) }),
|
|
557
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
558
|
+
Input,
|
|
559
|
+
{
|
|
560
|
+
id: "mortgageBalance",
|
|
561
|
+
type: "text",
|
|
562
|
+
...register("mortgageBalance", {
|
|
724
563
|
required: true,
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
564
|
+
setValueAs: (value) => parseCurrency(value)
|
|
565
|
+
}),
|
|
566
|
+
label: "Mortgage Balance",
|
|
567
|
+
sizes: "medium",
|
|
568
|
+
required: true,
|
|
569
|
+
error: !!errors.mortgageBalance,
|
|
570
|
+
helperText: errors.mortgageBalance?.message,
|
|
571
|
+
variant,
|
|
572
|
+
onBlur: (e) => {
|
|
573
|
+
const rawValue = e.target.value;
|
|
574
|
+
const parsedValue = parseCurrency(rawValue);
|
|
575
|
+
methods.setValue("mortgageBalance", parsedValue);
|
|
576
|
+
e.target.value = formatCurrency(parsedValue);
|
|
577
|
+
},
|
|
578
|
+
onFocus: (e) => {
|
|
579
|
+
const currentValue = e.target.value;
|
|
580
|
+
e.target.value = currentValue.replace(/[$,]/g, "");
|
|
728
581
|
}
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
582
|
+
}
|
|
583
|
+
) })
|
|
584
|
+
] }),
|
|
585
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs(
|
|
586
|
+
Dropdown,
|
|
587
|
+
{
|
|
588
|
+
id: "creditScore",
|
|
589
|
+
...register("creditScore", {
|
|
590
|
+
required: true,
|
|
591
|
+
setValueAs: (value) => value === "" ? void 0 : Number(value)
|
|
592
|
+
}),
|
|
593
|
+
label: "Credit Score",
|
|
594
|
+
sizes: "medium",
|
|
595
|
+
required: true,
|
|
596
|
+
error: !!errors.creditScore,
|
|
597
|
+
helperText: errors.creditScore?.message,
|
|
598
|
+
variant,
|
|
599
|
+
defaultValue: "Select option",
|
|
600
|
+
children: [
|
|
601
|
+
/* @__PURE__ */ jsx("option", { disabled: true, value: "Select option", children: "Select Option" }),
|
|
602
|
+
/* @__PURE__ */ jsx("option", { value: "740", children: "740+" }),
|
|
603
|
+
/* @__PURE__ */ jsx("option", { value: "720", children: "739-720" }),
|
|
604
|
+
/* @__PURE__ */ jsx("option", { value: "700", children: "719-700" }),
|
|
605
|
+
/* @__PURE__ */ jsx("option", { value: "680", children: "699-680" }),
|
|
606
|
+
/* @__PURE__ */ jsx("option", { value: "660", children: "679-660" }),
|
|
607
|
+
/* @__PURE__ */ jsx("option", { value: "640", children: "659-640" }),
|
|
608
|
+
/* @__PURE__ */ jsx("option", { value: "620", children: "639-620" }),
|
|
609
|
+
/* @__PURE__ */ jsx("option", { value: "600", children: "Below 620" })
|
|
610
|
+
]
|
|
611
|
+
}
|
|
612
|
+
) }),
|
|
613
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
614
|
+
Input,
|
|
615
|
+
{
|
|
616
|
+
id: "zipCode",
|
|
617
|
+
type: "number",
|
|
618
|
+
...register("zipCode", {
|
|
619
|
+
required: true,
|
|
620
|
+
setValueAs: (value) => Number(value)
|
|
621
|
+
}),
|
|
622
|
+
label: "Zip Code",
|
|
623
|
+
sizes: "medium",
|
|
624
|
+
required: true,
|
|
625
|
+
error: !!errors.zipCode,
|
|
626
|
+
helperText: errors.zipCode?.message,
|
|
627
|
+
variant
|
|
628
|
+
}
|
|
629
|
+
) }),
|
|
630
|
+
loanPurpose === 2 ? /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx("div", { className: fullRowForm, children: /* @__PURE__ */ jsx(
|
|
631
|
+
Input,
|
|
632
|
+
{
|
|
633
|
+
id: "cashOut",
|
|
634
|
+
type: "text",
|
|
635
|
+
...register("cashOut", {
|
|
636
|
+
required: true,
|
|
637
|
+
setValueAs: (value) => parseCurrency(value)
|
|
638
|
+
}),
|
|
639
|
+
label: "Cash Out (Optional)",
|
|
640
|
+
sizes: "medium",
|
|
641
|
+
error: !!errors.cashOut,
|
|
642
|
+
helperText: errors.cashOut?.message,
|
|
643
|
+
variant,
|
|
644
|
+
onBlur: (e) => {
|
|
645
|
+
const rawValue = e.target.value;
|
|
646
|
+
const parsedValue = parseCurrency(rawValue);
|
|
647
|
+
methods.setValue("cashOut", parsedValue);
|
|
648
|
+
e.target.value = formatCurrency(parsedValue);
|
|
649
|
+
},
|
|
650
|
+
onFocus: (e) => {
|
|
651
|
+
const currentValue = e.target.value;
|
|
652
|
+
e.target.value = currentValue.replace(/[$,]/g, "");
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
) }) }) : null,
|
|
656
|
+
/* @__PURE__ */ jsx("div", { className: clsx(fullRowForm, "text_center"), children: /* @__PURE__ */ jsx(
|
|
657
|
+
"div",
|
|
658
|
+
{
|
|
659
|
+
className: clsx(
|
|
660
|
+
descriptionField({ variant }),
|
|
661
|
+
"text_center"
|
|
662
|
+
),
|
|
663
|
+
children: "Almost there! Please provide your contact information to view rates and sign up for Rate Watch."
|
|
664
|
+
}
|
|
665
|
+
) }),
|
|
666
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
667
|
+
Input,
|
|
668
|
+
{
|
|
669
|
+
id: "firstName",
|
|
670
|
+
...register("firstName", {
|
|
671
|
+
required: "First Name is required"
|
|
672
|
+
}),
|
|
673
|
+
label: "First Name",
|
|
674
|
+
sizes: "medium",
|
|
675
|
+
required: true,
|
|
676
|
+
error: !!errors.firstName,
|
|
677
|
+
helperText: errors.firstName?.message,
|
|
678
|
+
variant
|
|
679
|
+
}
|
|
680
|
+
) }),
|
|
681
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
682
|
+
Input,
|
|
683
|
+
{
|
|
684
|
+
id: "lastName",
|
|
685
|
+
...register("lastName", { required: true }),
|
|
686
|
+
label: "Last Name",
|
|
687
|
+
sizes: "medium",
|
|
688
|
+
required: true,
|
|
689
|
+
error: !!errors.lastName,
|
|
690
|
+
helperText: errors.lastName?.message,
|
|
691
|
+
variant
|
|
692
|
+
}
|
|
693
|
+
) }),
|
|
694
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
695
|
+
Input,
|
|
696
|
+
{
|
|
697
|
+
id: "email",
|
|
698
|
+
...register("email", {
|
|
699
|
+
required: true,
|
|
700
|
+
validate: {
|
|
701
|
+
isValid: associatedEmail
|
|
741
702
|
}
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
703
|
+
}),
|
|
704
|
+
label: "Email",
|
|
705
|
+
sizes: "medium",
|
|
706
|
+
required: true,
|
|
707
|
+
error: !!errors.email,
|
|
708
|
+
helperText: errors.email?.message,
|
|
709
|
+
variant
|
|
710
|
+
}
|
|
711
|
+
) }),
|
|
712
|
+
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
|
|
713
|
+
InputPhone,
|
|
714
|
+
{
|
|
715
|
+
id: "phone",
|
|
716
|
+
...register("phone", { required: true, maxLength: 12 }),
|
|
717
|
+
label: "Phone Number",
|
|
718
|
+
sizes: "medium",
|
|
719
|
+
required: true,
|
|
720
|
+
error: !!errors.phone,
|
|
721
|
+
helperText: errors.phone?.message,
|
|
722
|
+
variant
|
|
723
|
+
}
|
|
724
|
+
) })
|
|
725
|
+
] }),
|
|
726
|
+
children,
|
|
727
|
+
/* @__PURE__ */ jsx("div", { className: disclosureForm({ variant }), children: disclosure }),
|
|
728
|
+
/* @__PURE__ */ jsx("div", { className: actions, children: isSubmitting ? /* @__PURE__ */ jsx(
|
|
729
|
+
LoadingIndicator,
|
|
730
|
+
{
|
|
731
|
+
style: { marginInline: "auto" },
|
|
732
|
+
variant
|
|
733
|
+
}
|
|
734
|
+
) : /* @__PURE__ */ jsxs("div", { className: formBtns, children: [
|
|
735
|
+
/* @__PURE__ */ jsx(
|
|
736
|
+
"button",
|
|
737
|
+
{
|
|
738
|
+
type: "submit",
|
|
739
|
+
disabled: !isValid,
|
|
740
|
+
className: button({
|
|
741
|
+
color: "secondary",
|
|
742
|
+
size: "large",
|
|
743
|
+
rounded: "medium",
|
|
744
|
+
disabled: !isValid
|
|
745
|
+
}),
|
|
746
|
+
children: "Get My Rate"
|
|
747
|
+
}
|
|
748
|
+
),
|
|
749
|
+
/* @__PURE__ */ jsxs("span", { className: `sc__btn ${chevron_wrapper}`, children: [
|
|
750
|
+
/* @__PURE__ */ jsx(
|
|
751
|
+
"a",
|
|
748
752
|
{
|
|
749
|
-
|
|
750
|
-
variant
|
|
753
|
+
id,
|
|
754
|
+
className: `${chevron({ variant })} ${!isValid ? na_cursor : ""}`,
|
|
755
|
+
onClick: isValid ? handleSubmit(async (data) => {
|
|
756
|
+
await onSubmit(data);
|
|
757
|
+
toggleModal();
|
|
758
|
+
setHideModal(false);
|
|
759
|
+
}) : (e) => {
|
|
760
|
+
e.preventDefault();
|
|
761
|
+
},
|
|
762
|
+
children: "Sign Up For Ratewatch"
|
|
751
763
|
}
|
|
752
|
-
)
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
disabled: !isValid,
|
|
758
|
-
className: button({
|
|
759
|
-
color: "secondary",
|
|
760
|
-
size: "large",
|
|
761
|
-
rounded: "medium",
|
|
762
|
-
disabled: !isValid
|
|
763
|
-
}),
|
|
764
|
-
children: "Get My Rate"
|
|
765
|
-
}
|
|
766
|
-
),
|
|
767
|
-
/* @__PURE__ */ jsxs("span", { className: `sc__btn ${chevron_wrapper}`, children: [
|
|
768
|
-
/* @__PURE__ */ jsx(
|
|
769
|
-
"a",
|
|
770
|
-
{
|
|
771
|
-
id,
|
|
772
|
-
className: `${chevron({ variant })} ${!isValid ? na_cursor : ""}`,
|
|
773
|
-
onClick: isValid ? handleSubmit(async (data) => {
|
|
774
|
-
await onSubmit(data);
|
|
775
|
-
toggleModal();
|
|
776
|
-
setHideModal(false);
|
|
777
|
-
}) : (e) => {
|
|
778
|
-
e.preventDefault();
|
|
779
|
-
},
|
|
780
|
-
children: "Sign Up For Ratewatch"
|
|
781
|
-
}
|
|
782
|
-
),
|
|
783
|
-
/* @__PURE__ */ jsx(SvgArrowIcon, { className: "arrow", variant: "tertiary" })
|
|
784
|
-
] })
|
|
785
|
-
] }) }),
|
|
786
|
-
/* @__PURE__ */ jsx(HoneyPot, { register, variant })
|
|
787
|
-
]
|
|
788
|
-
}
|
|
789
|
-
)
|
|
764
|
+
),
|
|
765
|
+
/* @__PURE__ */ jsx(SvgArrowIcon, { className: "arrow", variant: "tertiary" })
|
|
766
|
+
] })
|
|
767
|
+
] }) })
|
|
768
|
+
] })
|
|
790
769
|
] }) })
|
|
791
770
|
},
|
|
792
771
|
id
|
|
@@ -60,7 +60,6 @@ export declare const menuData: {
|
|
|
60
60
|
"Marine Loans": {
|
|
61
61
|
"Marine Loans Home": string;
|
|
62
62
|
"Find The Right Loan": string;
|
|
63
|
-
"Apply Now": string;
|
|
64
63
|
"Contact Us": string;
|
|
65
64
|
};
|
|
66
65
|
};
|
|
@@ -201,7 +200,6 @@ export declare const menuData: {
|
|
|
201
200
|
};
|
|
202
201
|
Partners: {
|
|
203
202
|
"Partners Home": string;
|
|
204
|
-
"Marine Dealer Floorplan Finance": string;
|
|
205
203
|
"Wholesale Lending": {
|
|
206
204
|
"Wholesale & Correspondent Lending": {
|
|
207
205
|
"WCPL Home": string;
|
|
@@ -256,9 +256,6 @@ const menuData = {
|
|
|
256
256
|
"Find The Right Loan": findMoreAxosDomains(
|
|
257
257
|
"{AXOSBANK}/personal/borrow/marine-loans"
|
|
258
258
|
),
|
|
259
|
-
"Apply Now": findMoreAxosDomains(
|
|
260
|
-
"{AXOSBANK}/personal/borrow/marine-loans/apply-now"
|
|
261
|
-
),
|
|
262
259
|
"Contact Us": findMoreAxosDomains(
|
|
263
260
|
"{AXOSBANK}/personal/borrow/marine-loans#AXB----Lets-Talk-LVF-for-AXB----Webform"
|
|
264
261
|
)
|
|
@@ -517,7 +514,9 @@ const menuData = {
|
|
|
517
514
|
"Leveraged Finance": findMoreAxosDomains(
|
|
518
515
|
"{AXOSBANK}/commercial/lending/leveraged-finance"
|
|
519
516
|
),
|
|
520
|
-
"Marine Dealer Floorplan Finance":
|
|
517
|
+
"Marine Dealer Floorplan Finance": findMoreAxosDomains(
|
|
518
|
+
"{AXOSBANK}/pages/axos-capital-solutions"
|
|
519
|
+
),
|
|
521
520
|
"Premium Finance": findMoreAxosDomains(
|
|
522
521
|
"{AXOSBANK}/commercial/lending/premium-finance"
|
|
523
522
|
)
|
|
@@ -533,7 +532,6 @@ const menuData = {
|
|
|
533
532
|
},
|
|
534
533
|
Partners: {
|
|
535
534
|
"Partners Home": findMoreAxosDomains("{AXOSBANK}/partners"),
|
|
536
|
-
"Marine Dealer Floorplan Finance": "https://lavictoirefinance.com/dealers",
|
|
537
535
|
"Wholesale Lending": {
|
|
538
536
|
"Wholesale & Correspondent Lending": {
|
|
539
537
|
"WCPL Home": findMoreAxosDomains(
|
|
@@ -542,23 +542,6 @@ function SubNavBar() {
|
|
|
542
542
|
)
|
|
543
543
|
] }),
|
|
544
544
|
pathname?.includes("/partners") && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
545
|
-
/* @__PURE__ */ jsx(
|
|
546
|
-
"li",
|
|
547
|
-
{
|
|
548
|
-
className: styles.sub_nav_link,
|
|
549
|
-
onMouseEnter: handleMouseLeave,
|
|
550
|
-
role: "menuitem",
|
|
551
|
-
children: /* @__PURE__ */ jsx(
|
|
552
|
-
Link,
|
|
553
|
-
{
|
|
554
|
-
href: `https://lavictoirefinance.com/dealers`,
|
|
555
|
-
id: "partNav1",
|
|
556
|
-
"aria-label": "Press Enter to navigate to the LaVictoire Finance website (www.lavictoirefinance.com). Owned and operated by Axos Bank.",
|
|
557
|
-
children: "Marine Dealer Floorplan Finance"
|
|
558
|
-
}
|
|
559
|
-
)
|
|
560
|
-
}
|
|
561
|
-
),
|
|
562
545
|
/* @__PURE__ */ jsxs(
|
|
563
546
|
"li",
|
|
564
547
|
{
|
|
@@ -744,7 +727,7 @@ function SubNavBar() {
|
|
|
744
727
|
/* @__PURE__ */ jsxs(
|
|
745
728
|
"div",
|
|
746
729
|
{
|
|
747
|
-
className: `${styles.dd_media} ${styles.opacity} ${dd_media}
|
|
730
|
+
className: `${styles.dd_media} ${styles.opacity} ${dd_media} text_center`,
|
|
748
731
|
children: [
|
|
749
732
|
/* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
|
|
750
733
|
/* @__PURE__ */ jsx("p", { role: "heading", children: "Introducing Axos ONE" }),
|
|
@@ -838,7 +821,7 @@ function SubNavBar() {
|
|
|
838
821
|
}
|
|
839
822
|
),
|
|
840
823
|
/* @__PURE__ */ jsx("hr", {}),
|
|
841
|
-
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}
|
|
824
|
+
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}`, children: [
|
|
842
825
|
/* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
|
|
843
826
|
/* @__PURE__ */ jsx(
|
|
844
827
|
Image,
|
|
@@ -1120,7 +1103,7 @@ function SubNavBar() {
|
|
|
1120
1103
|
/* @__PURE__ */ jsxs(
|
|
1121
1104
|
"div",
|
|
1122
1105
|
{
|
|
1123
|
-
className: `${styles.dd_media} ${styles.opacity} ${dd_media}
|
|
1106
|
+
className: `${styles.dd_media} ${styles.opacity} ${dd_media} text_center`,
|
|
1124
1107
|
children: [
|
|
1125
1108
|
/* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
|
|
1126
1109
|
/* @__PURE__ */ jsxs("p", { role: "heading", children: [
|
|
@@ -1208,7 +1191,7 @@ function SubNavBar() {
|
|
|
1208
1191
|
}
|
|
1209
1192
|
),
|
|
1210
1193
|
/* @__PURE__ */ jsx("hr", {}),
|
|
1211
|
-
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}
|
|
1194
|
+
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}`, children: [
|
|
1212
1195
|
/* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
|
|
1213
1196
|
/* @__PURE__ */ jsx(
|
|
1214
1197
|
Image,
|
|
@@ -1459,15 +1442,6 @@ function SubNavBar() {
|
|
|
1459
1442
|
children: "Find The Right Loan"
|
|
1460
1443
|
}
|
|
1461
1444
|
) }),
|
|
1462
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1463
|
-
Link,
|
|
1464
|
-
{
|
|
1465
|
-
href: findMoreAxosDomains(
|
|
1466
|
-
"{AXOSBANK}/personal/borrow/marine-loans/apply-now"
|
|
1467
|
-
),
|
|
1468
|
-
children: "Apply Now"
|
|
1469
|
-
}
|
|
1470
|
-
) }),
|
|
1471
1445
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1472
1446
|
Link,
|
|
1473
1447
|
{
|
|
@@ -1499,7 +1473,7 @@ function SubNavBar() {
|
|
|
1499
1473
|
/* @__PURE__ */ jsxs(
|
|
1500
1474
|
"div",
|
|
1501
1475
|
{
|
|
1502
|
-
className: `${styles.dd_media} ${styles.opacity} ${dd_media}
|
|
1476
|
+
className: `${styles.dd_media} ${styles.opacity} ${dd_media} text_center`,
|
|
1503
1477
|
children: [
|
|
1504
1478
|
/* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
|
|
1505
1479
|
/* @__PURE__ */ jsx("p", { role: "heading", children: "Introducing Axos FundFinder+" }),
|
|
@@ -1581,7 +1555,7 @@ function SubNavBar() {
|
|
|
1581
1555
|
}
|
|
1582
1556
|
),
|
|
1583
1557
|
/* @__PURE__ */ jsx("hr", {}),
|
|
1584
|
-
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}
|
|
1558
|
+
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}`, children: [
|
|
1585
1559
|
/* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
|
|
1586
1560
|
/* @__PURE__ */ jsx(
|
|
1587
1561
|
Image,
|
|
@@ -1765,7 +1739,7 @@ function SubNavBar() {
|
|
|
1765
1739
|
/* @__PURE__ */ jsxs(
|
|
1766
1740
|
"div",
|
|
1767
1741
|
{
|
|
1768
|
-
className: `${styles.dd_media} ${styles.opacity} ${dd_media}
|
|
1742
|
+
className: `${styles.dd_media} ${styles.opacity} ${dd_media} text_center`,
|
|
1769
1743
|
children: [
|
|
1770
1744
|
/* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
|
|
1771
1745
|
/* @__PURE__ */ jsx("p", { role: "heading", children: "All your finances. In one place." }),
|
|
@@ -1849,7 +1823,7 @@ function SubNavBar() {
|
|
|
1849
1823
|
}
|
|
1850
1824
|
),
|
|
1851
1825
|
/* @__PURE__ */ jsx("hr", {}),
|
|
1852
|
-
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}
|
|
1826
|
+
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}`, children: [
|
|
1853
1827
|
/* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
|
|
1854
1828
|
/* @__PURE__ */ jsx(
|
|
1855
1829
|
Image,
|
|
@@ -2025,7 +1999,7 @@ function SubNavBar() {
|
|
|
2025
1999
|
/* @__PURE__ */ jsxs(
|
|
2026
2000
|
"div",
|
|
2027
2001
|
{
|
|
2028
|
-
className: `${styles.dd_media} ${styles.opacity} ${dd_media}
|
|
2002
|
+
className: `${styles.dd_media} ${styles.opacity} ${dd_media} text_center`,
|
|
2029
2003
|
children: [
|
|
2030
2004
|
/* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
|
|
2031
2005
|
/* @__PURE__ */ jsx("p", { role: "heading", children: "Open a Business Banking Account" }),
|
|
@@ -2123,7 +2097,7 @@ function SubNavBar() {
|
|
|
2123
2097
|
}
|
|
2124
2098
|
),
|
|
2125
2099
|
/* @__PURE__ */ jsx("hr", {}),
|
|
2126
|
-
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}
|
|
2100
|
+
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}`, children: [
|
|
2127
2101
|
/* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
|
|
2128
2102
|
/* @__PURE__ */ jsx(
|
|
2129
2103
|
Image,
|
|
@@ -2465,7 +2439,7 @@ function SubNavBar() {
|
|
|
2465
2439
|
/* @__PURE__ */ jsxs(
|
|
2466
2440
|
"div",
|
|
2467
2441
|
{
|
|
2468
|
-
className: `${styles.dd_media} ${styles.opacity} ${dd_media}
|
|
2442
|
+
className: `${styles.dd_media} ${styles.opacity} ${dd_media} text_center`,
|
|
2469
2443
|
children: [
|
|
2470
2444
|
/* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
|
|
2471
2445
|
/* @__PURE__ */ jsx("p", { role: "heading", children: "Commercial Banking" }),
|
|
@@ -2532,7 +2506,7 @@ function SubNavBar() {
|
|
|
2532
2506
|
}
|
|
2533
2507
|
),
|
|
2534
2508
|
/* @__PURE__ */ jsx("hr", {}),
|
|
2535
|
-
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}
|
|
2509
|
+
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}`, children: [
|
|
2536
2510
|
/* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
|
|
2537
2511
|
/* @__PURE__ */ jsx(
|
|
2538
2512
|
Image,
|
|
@@ -2764,7 +2738,7 @@ function SubNavBar() {
|
|
|
2764
2738
|
/* @__PURE__ */ jsxs(
|
|
2765
2739
|
"div",
|
|
2766
2740
|
{
|
|
2767
|
-
className: `${styles.dd_media} ${styles.opacity} ${dd_media}
|
|
2741
|
+
className: `${styles.dd_media} ${styles.opacity} ${dd_media} text_center`,
|
|
2768
2742
|
children: [
|
|
2769
2743
|
/* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
|
|
2770
2744
|
/* @__PURE__ */ jsx("p", { role: "heading", children: "Commercial Lending" }),
|
|
@@ -2831,7 +2805,7 @@ function SubNavBar() {
|
|
|
2831
2805
|
}
|
|
2832
2806
|
),
|
|
2833
2807
|
/* @__PURE__ */ jsx("hr", {}),
|
|
2834
|
-
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}
|
|
2808
|
+
/* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}`, children: [
|
|
2835
2809
|
/* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
|
|
2836
2810
|
/* @__PURE__ */ jsx(
|
|
2837
2811
|
Image,
|
|
@@ -2960,7 +2934,9 @@ function SubNavBar() {
|
|
|
2960
2934
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2961
2935
|
Link,
|
|
2962
2936
|
{
|
|
2963
|
-
href:
|
|
2937
|
+
href: findMoreAxosDomains(
|
|
2938
|
+
"{AXOSBANK}/pages/axos-capital-solutions"
|
|
2939
|
+
),
|
|
2964
2940
|
children: "Marine Dealer Floorplan Finance"
|
|
2965
2941
|
}
|
|
2966
2942
|
) }),
|
|
@@ -3036,7 +3012,7 @@ function SubNavBar() {
|
|
|
3036
3012
|
/* @__PURE__ */ jsxs(
|
|
3037
3013
|
"div",
|
|
3038
3014
|
{
|
|
3039
|
-
className: `${styles.dd_media} ${styles.opacity} ${dd_media}
|
|
3015
|
+
className: `${styles.dd_media} ${styles.opacity} ${dd_media} text_center`,
|
|
3040
3016
|
children: [
|
|
3041
3017
|
/* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
|
|
3042
3018
|
/* @__PURE__ */ jsx("p", { role: "heading", children: 'Say "YES" to Your Clients' }),
|
|
@@ -3120,7 +3096,7 @@ function SubNavBar() {
|
|
|
3120
3096
|
}
|
|
3121
3097
|
),
|
|
3122
3098
|
/* @__PURE__ */ jsx("hr", {}),
|
|
3123
|
-
/* @__PURE__ */ jsx("div", { className: `${styles.site_lists}
|
|
3099
|
+
/* @__PURE__ */ jsx("div", { className: `${styles.site_lists}`, children: /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
|
|
3124
3100
|
/* @__PURE__ */ jsx(
|
|
3125
3101
|
Image,
|
|
3126
3102
|
{
|
|
@@ -3196,7 +3172,7 @@ function SubNavBar() {
|
|
|
3196
3172
|
/* @__PURE__ */ jsxs(
|
|
3197
3173
|
"div",
|
|
3198
3174
|
{
|
|
3199
|
-
className: `${styles.dd_media} ${styles.opacity} ${dd_media}
|
|
3175
|
+
className: `${styles.dd_media} ${styles.opacity} ${dd_media} text_center`,
|
|
3200
3176
|
children: [
|
|
3201
3177
|
/* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
|
|
3202
3178
|
/* @__PURE__ */ jsx("p", { role: "heading", children: "Dealer Services" }),
|
|
@@ -3263,7 +3239,7 @@ function SubNavBar() {
|
|
|
3263
3239
|
}
|
|
3264
3240
|
),
|
|
3265
3241
|
/* @__PURE__ */ jsx("hr", {}),
|
|
3266
|
-
/* @__PURE__ */ jsx("div", { className: `${styles.site_lists}
|
|
3242
|
+
/* @__PURE__ */ jsx("div", { className: `${styles.site_lists}`, children: /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
|
|
3267
3243
|
/* @__PURE__ */ jsx(
|
|
3268
3244
|
Image,
|
|
3269
3245
|
{
|
package/package.json
CHANGED