@axos-web-dev/shared-components 2.2.4 → 2.2.5

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.
@@ -177,7 +177,7 @@ const AxosFooterSiteMap = ({
177
177
  }
178
178
  ) }),
179
179
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: resolveUrl("{AXOSBANK}/personal/borrow/auto-loans"), children: "Auto Loans" }) }),
180
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "https://lavictoirefinance.com/", children: "Marine Loans" }) })
180
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: resolveUrl("{AXOSBANK}/personal/borrow/marine-loans"), children: "Marine Loans" }) })
181
181
  ] }),
182
182
  /* @__PURE__ */ jsxs("ul", { children: [
183
183
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
@@ -286,7 +286,7 @@ const AxosFooterSiteMap = ({
286
286
  href: resolveUrl(
287
287
  "{AXOSBANK}/commercial/lending/residential-warehouse-lending"
288
288
  ),
289
- children: "Residential Warehouse Lending"
289
+ children: "Mortgage Warehouse Lending"
290
290
  }
291
291
  ) }),
292
292
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
@@ -535,7 +535,13 @@ const AxosFooterSiteMap = ({
535
535
  }
536
536
  ) }),
537
537
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: resolveUrl("{AXOSBANK}/personal/borrow/auto-loans"), children: "Auto Loans" }) }),
538
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "https://lavictoirefinance.com/", children: "Marine Loans" }) })
538
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
539
+ "a",
540
+ {
541
+ href: resolveUrl("{AXOSBANK}/personal/borrow/marine-loans"),
542
+ children: "Marine Loans"
543
+ }
544
+ ) })
539
545
  ] }),
540
546
  /* @__PURE__ */ jsxs("ul", { children: [
541
547
  /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
@@ -0,0 +1,11 @@
1
+ import { FormProps } from './FormProps';
2
+
3
+ export type ContactUsSchwabAASInputs = {
4
+ first_name: string;
5
+ last_name: string;
6
+ email: string;
7
+ phone: string;
8
+ company: string;
9
+ Role__c: string;
10
+ };
11
+ export declare const ContactUsSchwabAAS: ({ icon, children, onSubmit, disclosure, variant: fullVariant, headline, description, callToAction, validateEmail, onValidate, id, }: FormProps) => import("react").JSX.Element;
@@ -0,0 +1,263 @@
1
+ "use client";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import { zodResolver } from "@hookform/resolvers/zod";
4
+ import { Button } from "../Button/Button.js";
5
+ import "../Button/Button.css.js";
6
+ import "react";
7
+ import "react-use";
8
+ import "../Input/Checkbox.js";
9
+ import "../Input/CurrencyInput.js";
10
+ import { Dropdown } from "../Input/Dropdown.js";
11
+ import "../Input/Dropdown.css.js";
12
+ import { Input } from "../Input/Input.js";
13
+ import "../Input/Input.css.js";
14
+ import "../Input/InputAmount.js";
15
+ import { InputPhone } from "../Input/InputPhone.js";
16
+ import "../Input/InputTextArea.js";
17
+ import "../Input/DownPaymentInput.js";
18
+ import "../Input/RadioButton.js";
19
+ import { LoadingIndicator } from "../LoadingIndicator/index.js";
20
+ import "../icons/ArrowIcon/ArrowIcon.css.js";
21
+ import SvgAxosX from "../icons/AxosX/index.js";
22
+ import SvgComponent from "../icons/AxosX/Blue.js";
23
+ import "../icons/CheckIcon/CheckIcon.css.js";
24
+ import '../assets/icons/FollowIcon/FollowIcon.css';import '../assets/icons/DownloadIcon/DownloadIcon.css';import '../assets/themes/victorie.css';import '../assets/themes/ufb.css';import '../assets/themes/premier.css';import '../assets/themes/axos.css';/* empty css */
25
+ /* empty css */
26
+ /* empty css */
27
+ /* empty css */
28
+ /* empty css */
29
+ /* empty css */
30
+ import { z } from "zod";
31
+ import { getVariant } from "../utils/getVariant.js";
32
+ import { useCachedEmailValidator } from "../utils/useCachedValidators.js";
33
+ import clsx from "clsx";
34
+ import { useForm, FormProvider } from "react-hook-form";
35
+ import { Roles } from "./FormEnums.js";
36
+ import { iconForm, headerContainer, headerForm, form, descriptionField, formWrapper, disclosureForm, actions, formContainer } from "./Forms.css.js";
37
+ import { honeyPotSchema, isValidHoneyPot, HoneyPot } from "./HoneyPot/index.js";
38
+ import { SalesforceSchema } from "./SalesforceFieldsForm.js";
39
+ const ContactUsSchwabAAS = ({
40
+ icon = false,
41
+ children,
42
+ onSubmit = (values) => {
43
+ console.log(values);
44
+ },
45
+ disclosure,
46
+ variant: fullVariant = "primary",
47
+ headline,
48
+ description,
49
+ callToAction,
50
+ validateEmail,
51
+ onValidate,
52
+ id
53
+ }) => {
54
+ const cachedEmailValidator = useCachedEmailValidator(validateEmail);
55
+ const schema = z.object({
56
+ first_name: z.string({ message: "First name is required." }).regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g, {
57
+ message: "Invalid first name"
58
+ }).trim().min(1, { message: "First Name is required." }),
59
+ last_name: z.string({ message: "Last name is required." }).regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g, {
60
+ message: "Invalid last name"
61
+ }).trim().min(1, { message: "Last Name is required." }),
62
+ email: z.string({ message: "Email is required." }).email({ message: "Email is required." }).refine(cachedEmailValidator, { message: "Invalid email address." }),
63
+ phone: z.string({ message: "Phone is required." }).regex(/[\d-]{10}/, "Invalid phone number.").min(10, { message: "Phone is required." }).max(12, { message: "Phone is required." }).transform((val, ctx) => {
64
+ const removeDashes = val.replace(/-/gi, "");
65
+ if (removeDashes.length !== 10) {
66
+ ctx.addIssue({
67
+ code: z.ZodIssueCode.custom,
68
+ message: "Phone must have at least 10 and no more than 10 characters."
69
+ });
70
+ return z.NEVER;
71
+ }
72
+ if (removeDashes.endsWith("00000") || removeDashes.startsWith("999") || removeDashes.length === 10 && /^[01]/.test(removeDashes)) {
73
+ ctx.addIssue({
74
+ code: z.ZodIssueCode.custom,
75
+ message: "Invalid phone number."
76
+ });
77
+ return z.NEVER;
78
+ }
79
+ return removeDashes;
80
+ }),
81
+ company: z.string().regex(/^[A-Za-z][^0-9_!¡?÷?¿/\\+=@#$%ˆ&*,.^(){}|~<>;:[\]]{1,}$/g, {
82
+ message: "Invalid company name"
83
+ }).trim().optional().or(z.literal("")),
84
+ Current_Assets_Under_Management__c: z.union([z.string(), z.undefined()]),
85
+ Role__c: z.string().min(1, { message: "Role is required." }).refine((val) => Roles.includes(val), "Role is required"),
86
+ description: z.optional(z.string().trim().max(32e3))
87
+ });
88
+ const gen_schema = schema.merge(SalesforceSchema).merge(honeyPotSchema).superRefine((data, ctx) => {
89
+ if (!isValidHoneyPot(data)) {
90
+ ctx.addIssue({
91
+ code: z.ZodIssueCode.custom,
92
+ message: "fields are not valid."
93
+ });
94
+ }
95
+ });
96
+ const methods = useForm({
97
+ resolver: zodResolver(gen_schema),
98
+ mode: "all",
99
+ shouldUnregister: true,
100
+ defaultValues: {
101
+ email: ""
102
+ }
103
+ });
104
+ const {
105
+ handleSubmit,
106
+ register,
107
+ formState: { errors, isValid, isSubmitting }
108
+ } = methods;
109
+ const submitForm = async (data) => {
110
+ await onSubmit(data);
111
+ };
112
+ const variant = getVariant(fullVariant);
113
+ return /* @__PURE__ */ jsx("section", { id, className: clsx(formContainer({ variant })), children: /* @__PURE__ */ jsx("div", { className: clsx("containment"), children: /* @__PURE__ */ jsxs(FormProvider, { ...methods, children: [
114
+ icon && /* @__PURE__ */ jsx("div", { className: clsx("text_center", iconForm), children: ["primary", "secondary"].includes(variant) ? /* @__PURE__ */ jsx(SvgComponent, {}) : /* @__PURE__ */ jsx(SvgAxosX, {}) }),
115
+ /* @__PURE__ */ jsxs("div", { className: `${headerContainer} text_center`, children: [
116
+ /* @__PURE__ */ jsx("h2", { className: clsx("header_2", headerForm({ variant })), children: headline }),
117
+ description && /* @__PURE__ */ jsx(
118
+ "div",
119
+ {
120
+ className: `${form} ${descriptionField({ variant })} text_center`,
121
+ children: description
122
+ }
123
+ )
124
+ ] }),
125
+ /* @__PURE__ */ jsxs(
126
+ "form",
127
+ {
128
+ className: form,
129
+ onSubmit: async (e) => {
130
+ onValidate && onValidate(e);
131
+ await handleSubmit(submitForm)(e);
132
+ e.preventDefault();
133
+ },
134
+ children: [
135
+ /* @__PURE__ */ jsxs("div", { className: clsx(formWrapper({ variant })), children: [
136
+ /* @__PURE__ */ jsx("div", { className: "", children: /* @__PURE__ */ jsx(
137
+ Input,
138
+ {
139
+ id: "first_name",
140
+ ...register("first_name", { required: true }),
141
+ label: "First Name*",
142
+ sizes: "medium",
143
+ placeholder: "",
144
+ required: true,
145
+ error: !!errors.first_name,
146
+ helperText: errors.first_name?.message,
147
+ variant
148
+ }
149
+ ) }),
150
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
151
+ Input,
152
+ {
153
+ id: "last_name",
154
+ ...register("last_name", { required: true }),
155
+ label: "Last Name*",
156
+ sizes: "medium",
157
+ placeholder: "",
158
+ required: true,
159
+ error: !!errors.last_name,
160
+ helperText: errors.last_name?.message,
161
+ variant
162
+ }
163
+ ) }),
164
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
165
+ Input,
166
+ {
167
+ id: "email",
168
+ ...register("email", {
169
+ required: true
170
+ }),
171
+ type: "email",
172
+ label: "Email*",
173
+ sizes: "medium",
174
+ placeholder: "",
175
+ required: true,
176
+ error: !!errors.email,
177
+ helperText: errors.email?.message,
178
+ variant
179
+ }
180
+ ) }),
181
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
182
+ InputPhone,
183
+ {
184
+ id: "phone",
185
+ ...register("phone", {
186
+ required: true,
187
+ maxLength: 12
188
+ }),
189
+ label: "Phone*",
190
+ sizes: "medium",
191
+ placeholder: "",
192
+ type: "tel",
193
+ required: true,
194
+ error: !!errors.phone,
195
+ helperText: errors.phone?.message,
196
+ variant
197
+ }
198
+ ) }),
199
+ /* @__PURE__ */ jsx("div", { className: "", children: /* @__PURE__ */ jsx(
200
+ Input,
201
+ {
202
+ id: "company",
203
+ ...register("company"),
204
+ label: "Company",
205
+ sizes: "medium",
206
+ placeholder: "",
207
+ error: !!errors.company,
208
+ helperText: errors.company?.message,
209
+ variant
210
+ }
211
+ ) }),
212
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs(
213
+ Dropdown,
214
+ {
215
+ id: "Role__c",
216
+ ...register("Role__c", {
217
+ required: true
218
+ }),
219
+ label: "What best describes your role?*",
220
+ sizes: "medium",
221
+ required: true,
222
+ error: !!errors.Role__c,
223
+ helperText: errors.Role__c?.message,
224
+ variant,
225
+ defaultValue: "Select option",
226
+ children: [
227
+ /* @__PURE__ */ jsx("option", { value: "Select option", disabled: true, children: "Select Option" }),
228
+ /* @__PURE__ */ jsx("option", { value: "RIA Principal", children: "RIA Principal" }),
229
+ /* @__PURE__ */ jsx("option", { value: "Advisor (IAR)", children: "Advisor (IAR)" }),
230
+ /* @__PURE__ */ jsx("option", { value: "Broker-Dealer Affiliated Advisor", children: "Broker-Dealer Affiliated Advisor" }),
231
+ /* @__PURE__ */ jsx("option", { value: "I am not a Financial Advisor", children: "I am not a Financial Advisor" }),
232
+ /* @__PURE__ */ jsx("option", { value: "Other", children: "Other" })
233
+ ]
234
+ }
235
+ ) }),
236
+ /* @__PURE__ */ jsx(HoneyPot, { register, variant })
237
+ ] }),
238
+ children,
239
+ /* @__PURE__ */ jsx("div", { className: disclosureForm({ variant }), children: disclosure }),
240
+ /* @__PURE__ */ jsx("div", { className: actions, children: /* @__PURE__ */ jsx("div", { className: actions, children: isSubmitting ? /* @__PURE__ */ jsx(
241
+ LoadingIndicator,
242
+ {
243
+ style: { marginInline: "auto" },
244
+ variant
245
+ }
246
+ ) : /* @__PURE__ */ jsx(
247
+ Button,
248
+ {
249
+ color: getVariant(callToAction?.variant),
250
+ as: "button",
251
+ type: "submit",
252
+ disabled: !isValid || isSubmitting,
253
+ children: callToAction?.displayText
254
+ }
255
+ ) }) })
256
+ ]
257
+ }
258
+ )
259
+ ] }) }) }, id);
260
+ };
261
+ export {
262
+ ContactUsSchwabAAS
263
+ };
@@ -11,6 +11,7 @@ export * from './ContactCompany';
11
11
  export * from './ContactCompanyTitle';
12
12
  export * from './ContactUs';
13
13
  export * from './ContactUsAAS';
14
+ export * from './ContactUsSchwabAAS';
14
15
  export * from './ContactUsBusiness';
15
16
  export * from './ContactUsBusinessNameEmail';
16
17
  export * from './ContactUsLVF';
@@ -12,6 +12,7 @@ import { ContactCompany } from "./ContactCompany.js";
12
12
  import { ContactCompanyTitle } from "./ContactCompanyTitle.js";
13
13
  import { ContactUs } from "./ContactUs.js";
14
14
  import { ContactUsAAS } from "./ContactUsAAS.js";
15
+ import { ContactUsSchwabAAS } from "./ContactUsSchwabAAS.js";
15
16
  import { ContactUsBusiness } from "./ContactUsBusiness.js";
16
17
  import { ContactUsBusinessNameAndEmail } from "./ContactUsBusinessNameEmail.js";
17
18
  import { ContactUsLVF } from "./ContactUsLVF.js";
@@ -60,6 +61,7 @@ export {
60
61
  ContactUsBusinessNameAndEmail,
61
62
  ContactUsLVF,
62
63
  ContactUsNMLSId,
64
+ ContactUsSchwabAAS,
63
65
  CpraRequest,
64
66
  CraPublicFile,
65
67
  DealerServices,
@@ -2489,232 +2489,226 @@ function SubNavBar() {
2489
2489
  }
2490
2490
  ),
2491
2491
  /* @__PURE__ */ jsx("hr", {}),
2492
- /* @__PURE__ */ jsxs(
2493
- "div",
2494
- {
2495
- className: `${styles.site_lists} ${styles.modify_fit}`,
2496
- children: [
2497
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2498
- /* @__PURE__ */ jsx(
2499
- Image,
2500
- {
2501
- src: `https://images.axos.com/o9ov1v03uwqk/5mzLCkz1I0k3mPowiNFOg0/ba3624a134d3b33bae0658e7b6efa3f6/nav-submenu-industry-icon.svg`,
2502
- alt: "",
2503
- width: 20,
2504
- height: 20
2505
- }
2506
- ),
2507
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2508
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2509
- Link,
2510
- {
2511
- href: resolveUrl("{AXOSBANK}/commercial"),
2512
- role: "heading",
2513
- children: "Solutions By Industry"
2514
- }
2515
- ) }),
2516
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2517
- Link,
2518
- {
2519
- href: resolveUrl(
2520
- "{AXOSBANK}/commercial/banking/third-party-payment-processors"
2521
- ),
2522
- children: "Third Party Payment Processors"
2523
- }
2524
- ) }),
2525
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2526
- Link,
2527
- {
2528
- href: resolveUrl(
2529
- "{AXOSBANK}/commercial/banking/hoa-banking-and-lending"
2530
- ),
2531
- children: "HOA Banking & Lending"
2532
- }
2533
- ) }),
2534
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2535
- Link,
2536
- {
2537
- href: resolveUrl(
2538
- "{AXOSBANK}/commercial/banking/hoa-property-management"
2539
- ),
2540
- children: "HOAs & Property Management"
2541
- }
2542
- ) }),
2543
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2544
- Link,
2545
- {
2546
- href: resolveUrl(
2547
- "{AXOSBANK}/commercial/banking/1031-exchange-qualified-intermediaries"
2548
- ),
2549
- children: "1031 Exchange Qualified Intermediaries"
2550
- }
2551
- ) }),
2552
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2553
- Link,
2554
- {
2555
- href: resolveUrl(
2556
- "{AXOSBANK}/commercial/banking/title-and-escrow"
2557
- ),
2558
- children: "Title & Escrow"
2559
- }
2560
- ) }),
2561
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2562
- Link,
2563
- {
2564
- href: resolveUrl(
2565
- "{AXOSBANK}/commercial/banking/global-fiduciary-banking"
2566
- ),
2567
- children: "Global Fiduciary Banking"
2568
- }
2569
- ) }),
2570
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: resolveUrl(`{AFS}`), children: "Fiduciary Services" }) }),
2571
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2572
- Link,
2573
- {
2574
- href: resolveUrl(
2575
- "{AXOSBANK}/commercial/banking/business-management-banking"
2576
- ),
2577
- children: "Business Management Banking"
2578
- }
2579
- ) }),
2580
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2581
- Link,
2582
- {
2583
- href: resolveUrl(
2584
- "{AXOSBANK}/commercial/banking/hedge-funds-and-alternative-funds"
2585
- ),
2586
- children: "Hedge Funds & Alternative Fund Banking Solutions"
2587
- }
2588
- ) }),
2589
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2590
- Link,
2591
- {
2592
- href: resolveUrl(
2593
- "{AXOSBANK}/commercial/banking/middle-market"
2594
- ),
2595
- children: "Middle Market"
2596
- }
2597
- ) }),
2598
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2599
- Link,
2600
- {
2601
- href: resolveUrl(
2602
- "{AXOSBANK}/commercial/banking/technology-and-life-sciences-banking"
2603
- ),
2604
- children: "Technology & Life Sciences Banking"
2605
- }
2606
- ) })
2607
- ] })
2608
- ] }),
2609
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2610
- /* @__PURE__ */ jsx(
2611
- Image,
2612
- {
2613
- src: `https://images.axos.com/o9ov1v03uwqk/3Nfbmfh8GeqQ05IBe9Jrmu/45369b473bdd3b280748ceee566542dc/nav-submenu-services-icon.svg`,
2614
- alt: "",
2615
- width: 20,
2616
- height: 20
2617
- }
2618
- ),
2619
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2620
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2621
- Link,
2622
- {
2623
- href: resolveUrl(
2624
- "{AXOSBANK}/commercial/banking"
2625
- ),
2626
- role: "heading",
2627
- children: "Services"
2628
- }
2629
- ) }),
2630
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2631
- Link,
2632
- {
2633
- href: resolveUrl(
2634
- "{AXOSBANK}/commercial/banking/analyzed-business-checking"
2635
- ),
2636
- children: "Analyzed Business Checking"
2637
- }
2638
- ) }),
2639
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2640
- Link,
2641
- {
2642
- href: resolveUrl(
2643
- "{AXOSBANK}/commercial/banking/merchant-services"
2644
- ),
2645
- children: "Merchant Services"
2646
- }
2647
- ) }),
2648
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2649
- Link,
2650
- {
2651
- href: resolveUrl(
2652
- "{AXOSBANK}/commercial/banking/global-treasury-management"
2653
- ),
2654
- children: "Treasury Management"
2655
- }
2656
- ) }),
2657
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs(
2658
- Link,
2659
- {
2660
- href: resolveUrl(
2661
- "{AXOSBANK}/commercial/banking/intrafi-network-deposits"
2662
- ),
2663
- children: [
2664
- "IntraFi",
2665
- /* @__PURE__ */ jsx("sup", { children: "®" }),
2666
- " Network Deposits",
2667
- " ",
2668
- /* @__PURE__ */ jsx("sup", { children: "℠" })
2669
- ]
2670
- }
2671
- ) }),
2672
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2673
- Link,
2674
- {
2675
- href: resolveUrl(
2676
- "{AXOSBANK}/commercial/banking/payroll-services"
2677
- ),
2678
- children: "Payroll Services"
2679
- }
2680
- ) })
2681
- ] })
2682
- ] }),
2683
- /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2684
- /* @__PURE__ */ jsx(
2685
- Image,
2686
- {
2687
- src: `https://images.axos.com/o9ov1v03uwqk/5gl7pjl2PM7tFJpCaIl4RC/456ef17e517ab221895716596da8760a/nav-submenu-other-icon.svg`,
2688
- alt: "",
2689
- width: 20,
2690
- height: 20
2691
- }
2692
- ),
2693
- /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2694
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2695
- Link,
2696
- {
2697
- href: resolveUrl(
2698
- "{AXOSBANK}/business/support"
2699
- ),
2700
- role: "heading",
2701
- children: "Other Resources"
2702
- }
2703
- ) }),
2704
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2705
- Link,
2706
- {
2707
- href: resolveUrl(
2708
- "{AXOSBANK}/commercial/calculators"
2709
- ),
2710
- children: "Calculators"
2711
- }
2712
- ) })
2713
- ] })
2714
- ] })
2715
- ]
2716
- }
2717
- )
2492
+ /* @__PURE__ */ jsxs("div", { className: `${styles.site_lists}`, children: [
2493
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2494
+ /* @__PURE__ */ jsx(
2495
+ Image,
2496
+ {
2497
+ src: `https://images.axos.com/o9ov1v03uwqk/5mzLCkz1I0k3mPowiNFOg0/ba3624a134d3b33bae0658e7b6efa3f6/nav-submenu-industry-icon.svg`,
2498
+ alt: "",
2499
+ width: 20,
2500
+ height: 20
2501
+ }
2502
+ ),
2503
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2504
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2505
+ Link,
2506
+ {
2507
+ href: resolveUrl("{AXOSBANK}/commercial"),
2508
+ role: "heading",
2509
+ children: "Solutions By Industry"
2510
+ }
2511
+ ) }),
2512
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2513
+ Link,
2514
+ {
2515
+ href: resolveUrl(
2516
+ "{AXOSBANK}/commercial/banking/third-party-payment-processors"
2517
+ ),
2518
+ children: "Third Party Payment Processors"
2519
+ }
2520
+ ) }),
2521
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2522
+ Link,
2523
+ {
2524
+ href: resolveUrl(
2525
+ "{AXOSBANK}/commercial/banking/hoa-banking-and-lending"
2526
+ ),
2527
+ children: "HOA Banking & Lending"
2528
+ }
2529
+ ) }),
2530
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2531
+ Link,
2532
+ {
2533
+ href: resolveUrl(
2534
+ "{AXOSBANK}/commercial/banking/hoa-property-management"
2535
+ ),
2536
+ children: "HOAs & Property Management"
2537
+ }
2538
+ ) }),
2539
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2540
+ Link,
2541
+ {
2542
+ href: resolveUrl(
2543
+ "{AXOSBANK}/commercial/banking/1031-exchange-qualified-intermediaries"
2544
+ ),
2545
+ children: "1031 Exchange Qualified Intermediaries"
2546
+ }
2547
+ ) }),
2548
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2549
+ Link,
2550
+ {
2551
+ href: resolveUrl(
2552
+ "{AXOSBANK}/commercial/banking/title-and-escrow"
2553
+ ),
2554
+ children: "Title & Escrow"
2555
+ }
2556
+ ) }),
2557
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2558
+ Link,
2559
+ {
2560
+ href: resolveUrl(
2561
+ "{AXOSBANK}/commercial/banking/global-fiduciary-banking"
2562
+ ),
2563
+ children: "Global Fiduciary Banking"
2564
+ }
2565
+ ) }),
2566
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(Link, { href: resolveUrl(`{AFS}`), children: "Fiduciary Services" }) }),
2567
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2568
+ Link,
2569
+ {
2570
+ href: resolveUrl(
2571
+ "{AXOSBANK}/commercial/banking/business-management-banking"
2572
+ ),
2573
+ children: "Business Management Banking"
2574
+ }
2575
+ ) }),
2576
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2577
+ Link,
2578
+ {
2579
+ href: resolveUrl(
2580
+ "{AXOSBANK}/commercial/banking/hedge-funds-and-alternative-funds"
2581
+ ),
2582
+ children: "Hedge Funds & Alternative Fund Banking Solutions"
2583
+ }
2584
+ ) }),
2585
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2586
+ Link,
2587
+ {
2588
+ href: resolveUrl(
2589
+ "{AXOSBANK}/commercial/banking/middle-market"
2590
+ ),
2591
+ children: "Middle Market"
2592
+ }
2593
+ ) }),
2594
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2595
+ Link,
2596
+ {
2597
+ href: resolveUrl(
2598
+ "{AXOSBANK}/commercial/banking/technology-and-life-sciences-banking"
2599
+ ),
2600
+ children: "Technology & Life Sciences Banking"
2601
+ }
2602
+ ) })
2603
+ ] })
2604
+ ] }),
2605
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2606
+ /* @__PURE__ */ jsx(
2607
+ Image,
2608
+ {
2609
+ src: `https://images.axos.com/o9ov1v03uwqk/3Nfbmfh8GeqQ05IBe9Jrmu/45369b473bdd3b280748ceee566542dc/nav-submenu-services-icon.svg`,
2610
+ alt: "",
2611
+ width: 20,
2612
+ height: 20
2613
+ }
2614
+ ),
2615
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2616
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2617
+ Link,
2618
+ {
2619
+ href: resolveUrl(
2620
+ "{AXOSBANK}/commercial/banking"
2621
+ ),
2622
+ role: "heading",
2623
+ children: "Services"
2624
+ }
2625
+ ) }),
2626
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2627
+ Link,
2628
+ {
2629
+ href: resolveUrl(
2630
+ "{AXOSBANK}/commercial/banking/analyzed-business-checking"
2631
+ ),
2632
+ children: "Analyzed Business Checking"
2633
+ }
2634
+ ) }),
2635
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2636
+ Link,
2637
+ {
2638
+ href: resolveUrl(
2639
+ "{AXOSBANK}/commercial/banking/merchant-services"
2640
+ ),
2641
+ children: "Merchant Services"
2642
+ }
2643
+ ) }),
2644
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2645
+ Link,
2646
+ {
2647
+ href: resolveUrl(
2648
+ "{AXOSBANK}/commercial/banking/global-treasury-management"
2649
+ ),
2650
+ children: "Treasury Management"
2651
+ }
2652
+ ) }),
2653
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs(
2654
+ Link,
2655
+ {
2656
+ href: resolveUrl(
2657
+ "{AXOSBANK}/commercial/banking/intrafi-network-deposits"
2658
+ ),
2659
+ children: [
2660
+ "IntraFi",
2661
+ /* @__PURE__ */ jsx("sup", { children: "®" }),
2662
+ " Network Deposits",
2663
+ " ",
2664
+ /* @__PURE__ */ jsx("sup", { children: "℠" })
2665
+ ]
2666
+ }
2667
+ ) }),
2668
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2669
+ Link,
2670
+ {
2671
+ href: resolveUrl(
2672
+ "{AXOSBANK}/commercial/banking/payroll-services"
2673
+ ),
2674
+ children: "Payroll Services"
2675
+ }
2676
+ ) })
2677
+ ] })
2678
+ ] }),
2679
+ /* @__PURE__ */ jsxs("div", { className: "flex_row", children: [
2680
+ /* @__PURE__ */ jsx(
2681
+ Image,
2682
+ {
2683
+ src: `https://images.axos.com/o9ov1v03uwqk/5gl7pjl2PM7tFJpCaIl4RC/456ef17e517ab221895716596da8760a/nav-submenu-other-icon.svg`,
2684
+ alt: "",
2685
+ width: 20,
2686
+ height: 20
2687
+ }
2688
+ ),
2689
+ /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
2690
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2691
+ Link,
2692
+ {
2693
+ href: resolveUrl(
2694
+ "{AXOSBANK}/business/support"
2695
+ ),
2696
+ role: "heading",
2697
+ children: "Other Resources"
2698
+ }
2699
+ ) }),
2700
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
2701
+ Link,
2702
+ {
2703
+ href: resolveUrl(
2704
+ "{AXOSBANK}/commercial/calculators"
2705
+ ),
2706
+ children: "Calculators"
2707
+ }
2708
+ ) })
2709
+ ] })
2710
+ ] })
2711
+ ] })
2718
2712
  ]
2719
2713
  }
2720
2714
  )
@@ -3007,7 +3001,7 @@ function SubNavBar() {
3007
3001
  hoveredLink === "wholelending" && /* @__PURE__ */ jsx(
3008
3002
  "div",
3009
3003
  {
3010
- className: `${styles.dd_wrapper} ${styles.desktop_only}`,
3004
+ className: `${styles.dd_wrapper} ${styles.desktop_only} `,
3011
3005
  role: "menu",
3012
3006
  onMouseLeave: handleMouseLeave,
3013
3007
  ref: containerRef,
@@ -1,12 +1,6 @@
1
1
  import { RecipeVariants } from '@vanilla-extract/recipes';
2
2
 
3
- /**
4
- * Encode font
5
- */
6
3
  export declare const headerCssVariable = "var(--header-font-family)";
7
- /**
8
- * Roboto font
9
- */
10
4
  export declare const mainCssVariable = "var(--main-font-family)";
11
5
  export declare const header: string;
12
6
  export declare const sizes: import('@vanilla-extract/recipes').RuntimeFn<{
@@ -299,7 +299,7 @@ main > div:nth-last-child(2) > ._1m7m2a0:not(._1m7m2ax) {
299
299
  .page_body_contents > div:has(> ._1m7m2ax) {
300
300
  padding-block: 56px;
301
301
  }
302
- .page_body_contents > div:has(._1m7m2ax) + .div:has(._1m7m2ax) {
302
+ .page_body_contents > div:has(._1m7m2ax) + div:has(._1m7m2ax) {
303
303
  margin-top: 0;
304
304
  }
305
305
  .page_body_contents > div:has(._1m7m2ax) ._1m7m2an {
@@ -66,7 +66,7 @@
66
66
  }
67
67
  ._1nivbwei {
68
68
  padding: 16px;
69
- border-bottom: thin solid #F4F4F4;
69
+ border-bottom: thin solid var(--_1073cm8b);
70
70
  }
71
71
  ._1nivbwei:first-child {
72
72
  position: sticky;
package/dist/main.js CHANGED
@@ -75,6 +75,7 @@ import { ContactCompany } from "./Forms/ContactCompany.js";
75
75
  import { ContactCompanyTitle } from "./Forms/ContactCompanyTitle.js";
76
76
  import { ContactUs } from "./Forms/ContactUs.js";
77
77
  import { ContactUsAAS } from "./Forms/ContactUsAAS.js";
78
+ import { ContactUsSchwabAAS } from "./Forms/ContactUsSchwabAAS.js";
78
79
  import { ContactUsBusiness } from "./Forms/ContactUsBusiness.js";
79
80
  import { ContactUsBusinessNameAndEmail } from "./Forms/ContactUsBusinessNameEmail.js";
80
81
  import { ContactUsLVF } from "./Forms/ContactUsLVF.js";
@@ -288,6 +289,7 @@ export {
288
289
  ContactUsBusinessNameAndEmail,
289
290
  ContactUsLVF,
290
291
  ContactUsNMLSId,
292
+ ContactUsSchwabAAS,
291
293
  ContentBanner,
292
294
  CpraRequest,
293
295
  CraPublicFile,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@axos-web-dev/shared-components",
3
3
  "description": "Axos shared components library for web.",
4
- "version": "2.2.4",
4
+ "version": "2.2.5",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",
7
7
  "module": "dist/main.js",