@axos-web-dev/shared-components 0.0.144 → 0.0.146

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 (44) hide show
  1. package/README.md +111 -111
  2. package/dist/ATMLocator/ATMLocator.js +1 -1
  3. package/dist/Avatar/Avatar.module.js +7 -7
  4. package/dist/Blockquote/Blockquote.module.js +3 -3
  5. package/dist/Button/Button.js +1 -1
  6. package/dist/Calculators/AxosOneCalculator/index.js +2 -2
  7. package/dist/Calculators/Calculator.js +1 -1
  8. package/dist/Carousel/index.js +1 -1
  9. package/dist/Chevron/index.js +1 -1
  10. package/dist/Comparison/Comparison.js +1 -1
  11. package/dist/FaqAccordion/index.js +1 -1
  12. package/dist/FdicCallout/FdicCallout.module.js +2 -2
  13. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +1 -1
  14. package/dist/Forms/ContactUsBusiness.js +1 -1
  15. package/dist/Forms/ContactUsNMLSId.js +1 -1
  16. package/dist/Forms/EmailOnly.js +1 -1
  17. package/dist/Forms/SuccesForm.js +1 -1
  18. package/dist/Hyperlink/index.js +1 -1
  19. package/dist/ImageLink/ImageLink.js +1 -1
  20. package/dist/ImageLink/ImageLinkSet.js +1 -1
  21. package/dist/ImageLink/index.js +1 -1
  22. package/dist/Insight/Featured/CategorySelector.js +1 -1
  23. package/dist/Insight/Featured/Featured.js +1 -1
  24. package/dist/Interstitial/Interstitial.module.js +9 -9
  25. package/dist/Modal/Modal.js +1 -1
  26. package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +54 -54
  27. package/dist/NavigationMenu/AxosAdvisorServices/NavBar.module.js +55 -55
  28. package/dist/NavigationMenu/AxosBank/NavBar.module.js +59 -53
  29. package/dist/NavigationMenu/AxosBank/NavData.js +1 -1
  30. package/dist/NavigationMenu/AxosBank/SubNavBar.js +114 -18
  31. package/dist/NavigationMenu/AxosBank/index.js +261 -238
  32. package/dist/NavigationMenu/AxosClearing/NavBar.module.js +37 -37
  33. package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +41 -41
  34. package/dist/SetContainer/SetContainer.js +1 -1
  35. package/dist/assets/Avatar/Avatar.css.css +59 -59
  36. package/dist/assets/Blockquote/Blockquote.css.css +69 -69
  37. package/dist/assets/FdicCallout/FdicCallout.css.css +48 -48
  38. package/dist/assets/Interstitial/Interstitial.css.css +137 -137
  39. package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +600 -600
  40. package/dist/assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css +621 -621
  41. package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +667 -641
  42. package/dist/assets/NavigationMenu/AxosClearing/NavBar.css.css +458 -458
  43. package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +426 -426
  44. package/package.json +1 -1
@@ -116,6 +116,7 @@ function NavBar() {
116
116
  const toggleProducts1 = () => setisOpenProducts1(!isOpenProducts1);
117
117
  const toggleProducts2 = () => setisOpenProducts2(!isOpenProducts2);
118
118
  const toggleProducts3 = () => setisOpenProducts3(!isOpenProducts3);
119
+ const [isClient, setIsClient] = useState(false);
119
120
  const getActiveIndex = () => {
120
121
  const pathname = "/" + location.pathname.split("/")[1];
121
122
  const index = navItems.findIndex(
@@ -134,273 +135,295 @@ function NavBar() {
134
135
  setisOpenSignIn(false);
135
136
  }
136
137
  });
138
+ useEffect(() => {
139
+ setIsClient(true);
140
+ }, []);
141
+ const handleKeyDownContainer = (e) => {
142
+ if (e.key === "Tab") {
143
+ const focusableElements = ref.current?.querySelectorAll(
144
+ 'button, [href], a, [tabindex]:not([tabindex="-1"])'
145
+ );
146
+ if (focusableElements && isClient) {
147
+ const lastElement = focusableElements[focusableElements.length - 1];
148
+ const isShiftPressed = e.shiftKey;
149
+ if (!isShiftPressed && document.activeElement === lastElement) {
150
+ e.preventDefault();
151
+ toggle();
152
+ }
153
+ }
154
+ }
155
+ };
137
156
  return /* @__PURE__ */ jsxs("header", { id: "header", children: [
138
- /* @__PURE__ */ jsx("div", { className: `${styles.header} bg_white`, children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.header_main_row} flex_row between middle`, children: [
139
- /* @__PURE__ */ jsx("div", { className: `${styles.desktop_only} flex_row middle`, children: /* @__PURE__ */ jsxs("div", { className: `${styles.main_nav} flex_row middle`, children: [
140
- /* @__PURE__ */ jsx("div", { className: styles.logo_wrap, children: /* @__PURE__ */ jsx("a", { href: "/", "aria-label": "return to axos bank homepage", children: /* @__PURE__ */ jsx(
141
- "img",
142
- {
143
- src: "https://images.axos.com/o9ov1v03uwqk/5U9tBksbV0cyAlGKCFPOpz/94bb95c035236ce1dc24f376e3909a4b/axos-logo-nav.svg",
144
- alt: "",
145
- width: 137,
146
- height: 30
147
- }
148
- ) }) }),
149
- /* @__PURE__ */ jsx("nav", { className: styles.primary_links, children: /* @__PURE__ */ jsx("ul", { className: "list_unstyled flex_row middle", role: "menu", children: navItems.map(
150
- (item, i, arr) => arr.length - 1 !== i && /* @__PURE__ */ jsx(
151
- NavItem,
152
- {
153
- className: styles.main_nav_link,
154
- onClick: handleClick,
155
- index: i,
156
- name: item.name,
157
- url: item.url,
158
- isActive: activeIndex == i
159
- },
160
- i
161
- )
162
- ) }) })
163
- ] }) }),
164
- /* @__PURE__ */ jsx(
165
- "button",
166
- {
167
- className: clsx(styles.mobile_only, styles.hamburger),
168
- onClick: mobileToggle,
169
- children: /* @__PURE__ */ jsx(
170
- "svg",
157
+ /* @__PURE__ */ jsx("div", { className: `${styles.header} bg_white`, children: /* @__PURE__ */ jsxs("div", { className: styles.wrapper, children: [
158
+ /* @__PURE__ */ jsx("a", { href: "#main-body", id: "skip_content", className: styles.skip_btn, children: "Skip to main content" }),
159
+ /* @__PURE__ */ jsxs("div", { className: `${styles.header_main_row} flex_row between middle`, children: [
160
+ /* @__PURE__ */ jsx("div", { className: `${styles.desktop_only} flex_row middle`, children: /* @__PURE__ */ jsxs("div", { className: `${styles.main_nav} flex_row middle`, children: [
161
+ /* @__PURE__ */ jsx("div", { className: styles.logo_wrap, children: /* @__PURE__ */ jsx("a", { href: "/", "aria-label": "return to axos bank homepage", children: /* @__PURE__ */ jsx(
162
+ "img",
171
163
  {
172
- width: "24",
173
- height: "24",
174
- viewBox: "0 0 24 24",
175
- fill: "none",
176
- xmlns: "http://www.w3.org/2000/svg",
177
- children: /* @__PURE__ */ jsx(
178
- "path",
179
- {
180
- fillRule: "evenodd",
181
- clipRule: "evenodd",
182
- d: "M22.5 15.75V17.25H1.5V15.75H22.5ZM22.5 11.25V12.75H1.5V11.25H22.5ZM22.5 6.75V8.25H1.5V6.75H22.5Z",
183
- fill: "#4A5560"
184
- }
185
- )
164
+ src: "https://images.axos.com/o9ov1v03uwqk/5U9tBksbV0cyAlGKCFPOpz/94bb95c035236ce1dc24f376e3909a4b/axos-logo-nav.svg",
165
+ alt: "",
166
+ width: 137,
167
+ height: 30
186
168
  }
187
- )
188
- }
189
- ),
190
- /* @__PURE__ */ jsx("div", { className: `${styles.mobile_only} ${styles.mobile_logo}`, children: /* @__PURE__ */ jsx("a", { href: "/", "aria-label": "return to axos bank homepage", children: /* @__PURE__ */ jsx(
191
- "img",
192
- {
193
- src: "https://images.axos.com/o9ov1v03uwqk/5U9tBksbV0cyAlGKCFPOpz/94bb95c035236ce1dc24f376e3909a4b/axos-logo-nav.svg",
194
- alt: "",
195
- width: 130,
196
- height: 58
197
- }
198
- ) }) }),
199
- /* @__PURE__ */ jsx("div", { className: styles.signin_wrap, children: /* @__PURE__ */ jsxs(
200
- "div",
201
- {
202
- className: `${styles.desktop_only} flex_row middle relative`,
203
- ref,
204
- children: [
205
- lastNavItem && /* @__PURE__ */ jsx(
169
+ ) }) }),
170
+ /* @__PURE__ */ jsx("nav", { className: styles.primary_links, children: /* @__PURE__ */ jsx("ul", { className: "list_unstyled flex_row middle", role: "menu", children: navItems.map(
171
+ (item, i, arr) => arr.length - 1 !== i && /* @__PURE__ */ jsx(
206
172
  NavItem,
207
173
  {
208
- url: lastNavItem.url,
209
- name: lastNavItem.name,
210
- className: `link list_unstyled ${styles.main_nav_link} ${styles.highlight}`,
211
- isActive: activeIndex == navItems.length,
174
+ className: styles.main_nav_link,
212
175
  onClick: handleClick,
213
- index: navItems.length
176
+ index: i,
177
+ name: item.name,
178
+ url: item.url,
179
+ isActive: activeIndex == i
214
180
  },
215
- navItems.length + 1
216
- ),
217
- /* @__PURE__ */ jsxs(
218
- Button,
219
- {
220
- className: clsx(
221
- styles.signin_btn,
222
- "flex_row",
223
- "center",
224
- "middle",
225
- isOpenSignIn ? styles.open : "",
226
- Sign_in_btn
227
- ),
228
- as: "button",
229
- type: "button",
230
- color: "primary",
231
- id: "signIn",
232
- action: toggle,
233
- size: "small",
234
- "aria-controls": "signin-drop-menu",
235
- children: [
236
- /* @__PURE__ */ jsx("span", { children: "Sign In" }),
237
- /* @__PURE__ */ jsx(
238
- "svg",
239
- {
240
- width: "20",
241
- height: "12",
242
- viewBox: "0 0 20 12",
243
- fill: "none",
244
- xmlns: "http://www.w3.org/2000/svg",
245
- children: /* @__PURE__ */ jsx(
246
- "path",
247
- {
248
- d: "M0.46875 1.76574L9.99908 11.2961L19.5294 1.76574L18.4687 0.705078L9.99908 9.17491L1.52941 0.705078L0.46875 1.76574Z",
249
- fill: "white"
250
- }
251
- )
252
- }
253
- )
254
- ]
255
- }
256
- ),
257
- /* @__PURE__ */ jsx(
258
- "div",
181
+ i
182
+ )
183
+ ) }) })
184
+ ] }) }),
185
+ /* @__PURE__ */ jsx(
186
+ "button",
187
+ {
188
+ className: clsx(styles.mobile_only, styles.hamburger),
189
+ onClick: mobileToggle,
190
+ children: /* @__PURE__ */ jsx(
191
+ "svg",
259
192
  {
260
- className: `${styles.signin_dropdown} ${styles.shadow} rounded bg_white`,
261
- children: /* @__PURE__ */ jsx("div", { className: styles.opacity, children: /* @__PURE__ */ jsxs(
262
- "ul",
193
+ width: "24",
194
+ height: "24",
195
+ viewBox: "0 0 24 24",
196
+ fill: "none",
197
+ xmlns: "http://www.w3.org/2000/svg",
198
+ children: /* @__PURE__ */ jsx(
199
+ "path",
263
200
  {
264
- className: "list_unstyled",
265
- role: "menu",
266
- "aria-expanded": isOpenSignIn,
267
- id: "signin-drop-menu",
268
- children: [
269
- /* @__PURE__ */ jsxs("li", { role: "heading", children: [
270
- /* @__PURE__ */ jsx(
271
- "a",
272
- {
273
- className: styles.signin_header,
274
- href: findMoreAxosDomains("{AXOSBANK}/personal"),
275
- children: "Personal"
276
- }
277
- ),
278
- /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", children: [
279
- /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
280
- "a",
281
- {
282
- href: `https://onlinebanking.axosbank.com/auth/Login`,
283
- role: "menuitem",
284
- children: "Account Login"
285
- }
286
- ) }),
287
- /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
288
- "a",
289
- {
290
- href: `https://loanpayment.axosbank.com`,
291
- role: "menuitem",
292
- children: "Make a Payment"
293
- }
294
- ) })
295
- ] })
296
- ] }),
297
- /* @__PURE__ */ jsxs("li", { role: "heading", children: [
298
- /* @__PURE__ */ jsx(
299
- "a",
300
- {
301
- className: styles.signin_header,
302
- href: findMoreAxosDomains("{AXOSBANK}/business"),
303
- children: "Business"
304
- }
305
- ),
306
- /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", children: [
307
- /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
308
- "a",
309
- {
310
- href: findMoreAxosDomains(
311
- "{AXOSBANK}/business/login"
312
- ),
313
- role: "menuitem",
314
- children: "Business Banking Login"
315
- }
316
- ) }),
317
- /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
318
- "a",
319
- {
320
- href: findMoreAxosDomains(
321
- "{AXOSBANK}/mwa-business-banking"
322
- ),
323
- role: "menuitem",
324
- children: "MWA Business Banking"
325
- }
326
- ) }),
327
- /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
328
- "a",
329
- {
330
- href: findMoreAxosDomains(
331
- "{AXOSBANK}/commercial/lending/commercial-portal"
332
- ),
333
- role: "menuitem",
334
- children: "Commercial Portal"
335
- }
336
- ) })
337
- ] })
338
- ] }),
339
- /* @__PURE__ */ jsxs("li", { role: "heading", children: [
340
- /* @__PURE__ */ jsx(
341
- "a",
201
+ fillRule: "evenodd",
202
+ clipRule: "evenodd",
203
+ d: "M22.5 15.75V17.25H1.5V15.75H22.5ZM22.5 11.25V12.75H1.5V11.25H22.5ZM22.5 6.75V8.25H1.5V6.75H22.5Z",
204
+ fill: "#4A5560"
205
+ }
206
+ )
207
+ }
208
+ )
209
+ }
210
+ ),
211
+ /* @__PURE__ */ jsx("div", { className: `${styles.mobile_only} ${styles.mobile_logo}`, children: /* @__PURE__ */ jsx("a", { href: "/", "aria-label": "return to axos bank homepage", children: /* @__PURE__ */ jsx(
212
+ "img",
213
+ {
214
+ src: "https://images.axos.com/o9ov1v03uwqk/5U9tBksbV0cyAlGKCFPOpz/94bb95c035236ce1dc24f376e3909a4b/axos-logo-nav.svg",
215
+ alt: "",
216
+ width: 130,
217
+ height: 58
218
+ }
219
+ ) }) }),
220
+ /* @__PURE__ */ jsx("div", { className: styles.signin_wrap, children: /* @__PURE__ */ jsxs(
221
+ "div",
222
+ {
223
+ className: `${styles.desktop_only} flex_row middle relative`,
224
+ ref,
225
+ onKeyDown: handleKeyDownContainer,
226
+ children: [
227
+ lastNavItem && /* @__PURE__ */ jsx(
228
+ NavItem,
229
+ {
230
+ url: lastNavItem.url,
231
+ name: lastNavItem.name,
232
+ className: `link list_unstyled ${styles.main_nav_link} ${styles.highlight}`,
233
+ isActive: activeIndex == navItems.length,
234
+ onClick: handleClick,
235
+ index: navItems.length
236
+ },
237
+ navItems.length + 1
238
+ ),
239
+ /* @__PURE__ */ jsxs(
240
+ Button,
241
+ {
242
+ className: clsx(
243
+ styles.signin_btn,
244
+ "flex_row",
245
+ "center",
246
+ "middle",
247
+ isOpenSignIn ? styles.open : "",
248
+ Sign_in_btn
249
+ ),
250
+ as: "button",
251
+ type: "button",
252
+ color: "primary",
253
+ id: "signIn",
254
+ action: toggle,
255
+ size: "small",
256
+ "aria-controls": "signin-drop-menu",
257
+ children: [
258
+ /* @__PURE__ */ jsx("span", { children: "Sign In" }),
259
+ /* @__PURE__ */ jsx(
260
+ "svg",
261
+ {
262
+ width: "20",
263
+ height: "12",
264
+ viewBox: "0 0 20 12",
265
+ fill: "none",
266
+ xmlns: "http://www.w3.org/2000/svg",
267
+ children: /* @__PURE__ */ jsx(
268
+ "path",
342
269
  {
343
- href: findMoreAxosDomains("{AXOSBANK/partners}"),
344
- className: `${styles.signin_header}`,
345
- children: "Partners"
270
+ d: "M0.46875 1.76574L9.99908 11.2961L19.5294 1.76574L18.4687 0.705078L9.99908 9.17491L1.52941 0.705078L0.46875 1.76574Z",
271
+ fill: "white"
346
272
  }
347
- ),
348
- /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", children: [
349
- /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
273
+ )
274
+ }
275
+ )
276
+ ]
277
+ }
278
+ ),
279
+ /* @__PURE__ */ jsx(
280
+ "div",
281
+ {
282
+ className: `${styles.signin_dropdown} ${styles.shadow} rounded bg_white`,
283
+ children: /* @__PURE__ */ jsx("div", { className: styles.opacity, children: /* @__PURE__ */ jsxs(
284
+ "ul",
285
+ {
286
+ className: "list_unstyled",
287
+ role: "menu",
288
+ "aria-expanded": isOpenSignIn,
289
+ id: "signin-drop-menu",
290
+ children: [
291
+ /* @__PURE__ */ jsxs("li", { role: "heading", children: [
292
+ /* @__PURE__ */ jsx(
350
293
  "a",
351
294
  {
352
- href: "https://thirdpartylending.axosbank.com/index",
353
- role: "menuitem",
354
- children: "Wholesale and Correspondent"
295
+ className: styles.signin_header,
296
+ href: findMoreAxosDomains("{AXOSBANK}/personal"),
297
+ children: "Personal"
355
298
  }
356
- ) }),
357
- /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
299
+ ),
300
+ /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", children: [
301
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
302
+ "a",
303
+ {
304
+ href: `https://onlinebanking.axosbank.com/auth/Login`,
305
+ role: "menuitem",
306
+ children: "Account Login"
307
+ }
308
+ ) }),
309
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
310
+ "a",
311
+ {
312
+ href: `https://loanpayment.axosbank.com`,
313
+ role: "menuitem",
314
+ children: "Make a Payment"
315
+ }
316
+ ) })
317
+ ] })
318
+ ] }),
319
+ /* @__PURE__ */ jsxs("li", { role: "heading", children: [
320
+ /* @__PURE__ */ jsx(
358
321
  "a",
359
322
  {
360
- href: findMoreAxosDomains("{ARMS}"),
361
- role: "menuitem",
362
- children: "Advisor Login"
323
+ className: styles.signin_header,
324
+ href: findMoreAxosDomains("{AXOSBANK}/business"),
325
+ children: "Business"
363
326
  }
364
- ) })
365
- ] })
366
- ] }),
367
- /* @__PURE__ */ jsxs(
368
- "li",
369
- {
370
- className: `${styles.signin_subheader} ${styles.signin_footer} relative`,
371
- children: [
372
- /* @__PURE__ */ jsx(
327
+ ),
328
+ /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", children: [
329
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
373
330
  "a",
374
331
  {
375
332
  href: findMoreAxosDomains(
376
- "{AXOSBANK}/customer-support"
333
+ "{AXOSBANK}/business/login"
377
334
  ),
378
335
  role: "menuitem",
379
- children: "Customer Support"
336
+ children: "Business Banking Login"
380
337
  }
381
- ),
382
- /* @__PURE__ */ jsx(
338
+ ) }),
339
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
383
340
  "a",
384
341
  {
385
342
  href: findMoreAxosDomains(
386
- "{AXOSBANK}/return-to-application"
343
+ "{AXOSBANK}/mwa-business-banking"
387
344
  ),
388
345
  role: "menuitem",
389
- children: "Return to Application"
346
+ children: "MWA Business Banking"
390
347
  }
391
- )
392
- ]
393
- }
394
- )
395
- ]
396
- }
397
- ) })
398
- }
399
- )
400
- ]
401
- }
402
- ) })
403
- ] }) }) }),
348
+ ) }),
349
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
350
+ "a",
351
+ {
352
+ href: findMoreAxosDomains(
353
+ "{AXOSBANK}/commercial/lending/commercial-portal"
354
+ ),
355
+ role: "menuitem",
356
+ children: "Commercial Portal"
357
+ }
358
+ ) })
359
+ ] })
360
+ ] }),
361
+ /* @__PURE__ */ jsxs("li", { role: "heading", children: [
362
+ /* @__PURE__ */ jsx(
363
+ "a",
364
+ {
365
+ href: findMoreAxosDomains("{AXOSBANK/partners}"),
366
+ className: `${styles.signin_header}`,
367
+ children: "Partners"
368
+ }
369
+ ),
370
+ /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", children: [
371
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
372
+ "a",
373
+ {
374
+ href: "https://thirdpartylending.axosbank.com/index",
375
+ role: "menuitem",
376
+ children: "Wholesale and Correspondent"
377
+ }
378
+ ) }),
379
+ /* @__PURE__ */ jsx("li", { className: styles.signin_subheader, children: /* @__PURE__ */ jsx(
380
+ "a",
381
+ {
382
+ href: findMoreAxosDomains("{ARMS}"),
383
+ role: "menuitem",
384
+ children: "Advisor Login"
385
+ }
386
+ ) })
387
+ ] })
388
+ ] }),
389
+ /* @__PURE__ */ jsxs(
390
+ "li",
391
+ {
392
+ className: `${styles.signin_subheader} ${styles.signin_footer} relative`,
393
+ children: [
394
+ /* @__PURE__ */ jsx(
395
+ "a",
396
+ {
397
+ href: findMoreAxosDomains(
398
+ "{AXOSBANK}/customer-support"
399
+ ),
400
+ role: "menuitem",
401
+ children: "Customer Support"
402
+ }
403
+ ),
404
+ /* @__PURE__ */ jsx(
405
+ "a",
406
+ {
407
+ href: findMoreAxosDomains(
408
+ "{AXOSBANK}/return-to-application"
409
+ ),
410
+ role: "menuitem",
411
+ children: "Return to Application"
412
+ }
413
+ )
414
+ ]
415
+ }
416
+ )
417
+ ]
418
+ }
419
+ ) })
420
+ }
421
+ )
422
+ ]
423
+ }
424
+ ) })
425
+ ] })
426
+ ] }) }),
404
427
  /* @__PURE__ */ jsx(SubNavBar, {}),
405
428
  /* @__PURE__ */ jsx(
406
429
  "div",
@@ -1,40 +1,40 @@
1
- const header = "_header_wsc8a_1";
2
- const wrapper = "_wrapper_wsc8a_5";
3
- const header_main_row = "_header_main_row_wsc8a_11";
4
- const mobile_header = "_mobile_header_wsc8a_12";
5
- const logo_wrap = "_logo_wrap_wsc8a_18";
6
- const primary_links = "_primary_links_wsc8a_22";
7
- const main_nav_link = "_main_nav_link_wsc8a_26";
8
- const sub_nav_link = "_sub_nav_link_wsc8a_45";
9
- const signin_wrap = "_signin_wrap_wsc8a_47";
10
- const signin_btn = "_signin_btn_wsc8a_48";
11
- const sub_nav = "_sub_nav_wsc8a_45";
12
- const header_sub_row = "_header_sub_row_wsc8a_96";
13
- const signin_dropdown = "_signin_dropdown_wsc8a_119";
14
- const shadow = "_shadow_wsc8a_129";
15
- const signin_subheader = "_signin_subheader_wsc8a_135";
16
- const opacity = "_opacity_wsc8a_156";
17
- const fadeInDown = "_fadeInDown_wsc8a_1";
18
- const open = "_open_wsc8a_162";
19
- const hamburger = "_hamburger_wsc8a_180";
20
- const mobile_only = "_mobile_only_wsc8a_194";
21
- const mobile_logo = "_mobile_logo_wsc8a_200";
22
- const highlight = "_highlight_wsc8a_205";
23
- const mobile_nav = "_mobile_nav_wsc8a_232";
24
- const mobile_opened = "_mobile_opened_wsc8a_243";
25
- const mobile_nav_item = "_mobile_nav_item_wsc8a_251";
26
- const has_dropdown = "_has_dropdown_wsc8a_266";
27
- const icon_wrap = "_icon_wrap_wsc8a_287";
28
- const mobile_footer = "_mobile_footer_wsc8a_292";
29
- const mobile_footer_content = "_mobile_footer_content_wsc8a_297";
30
- const mobile_footer_media = "_mobile_footer_media_wsc8a_312";
31
- const footer_cta = "_footer_cta_wsc8a_318";
32
- const inner_wrapper = "_inner_wrapper_wsc8a_346";
33
- const btn = "_btn_wsc8a_352";
34
- const sub_menu = "_sub_menu_wsc8a_357";
35
- const main = "_main_wsc8a_26";
36
- const dd_footer = "_dd_footer_wsc8a_382";
37
- const desktop_only = "_desktop_only_wsc8a_407";
1
+ const header = "_header_1o3gh_1";
2
+ const wrapper = "_wrapper_1o3gh_9";
3
+ const header_main_row = "_header_main_row_1o3gh_21";
4
+ const mobile_header = "_mobile_header_1o3gh_23";
5
+ const logo_wrap = "_logo_wrap_1o3gh_35";
6
+ const primary_links = "_primary_links_1o3gh_43";
7
+ const main_nav_link = "_main_nav_link_1o3gh_51";
8
+ const sub_nav_link = "_sub_nav_link_1o3gh_89";
9
+ const signin_wrap = "_signin_wrap_1o3gh_93";
10
+ const signin_btn = "_signin_btn_1o3gh_95";
11
+ const sub_nav = "_sub_nav_1o3gh_89";
12
+ const header_sub_row = "_header_sub_row_1o3gh_191";
13
+ const signin_dropdown = "_signin_dropdown_1o3gh_237";
14
+ const shadow = "_shadow_1o3gh_257";
15
+ const signin_subheader = "_signin_subheader_1o3gh_269";
16
+ const opacity = "_opacity_1o3gh_311";
17
+ const fadeInDown = "_fadeInDown_1o3gh_1";
18
+ const open = "_open_1o3gh_323";
19
+ const hamburger = "_hamburger_1o3gh_359";
20
+ const mobile_only = "_mobile_only_1o3gh_387";
21
+ const mobile_logo = "_mobile_logo_1o3gh_399";
22
+ const highlight = "_highlight_1o3gh_409";
23
+ const mobile_nav = "_mobile_nav_1o3gh_463";
24
+ const mobile_opened = "_mobile_opened_1o3gh_485";
25
+ const mobile_nav_item = "_mobile_nav_item_1o3gh_501";
26
+ const has_dropdown = "_has_dropdown_1o3gh_531";
27
+ const icon_wrap = "_icon_wrap_1o3gh_573";
28
+ const mobile_footer = "_mobile_footer_1o3gh_583";
29
+ const mobile_footer_content = "_mobile_footer_content_1o3gh_593";
30
+ const mobile_footer_media = "_mobile_footer_media_1o3gh_623";
31
+ const footer_cta = "_footer_cta_1o3gh_635";
32
+ const inner_wrapper = "_inner_wrapper_1o3gh_691";
33
+ const btn = "_btn_1o3gh_703";
34
+ const sub_menu = "_sub_menu_1o3gh_713";
35
+ const main = "_main_1o3gh_51";
36
+ const dd_footer = "_dd_footer_1o3gh_763";
37
+ const desktop_only = "_desktop_only_1o3gh_813";
38
38
  const styles = {
39
39
  header,
40
40
  wrapper,