@axos-web-dev/shared-components 0.0.12 → 0.0.14

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 (52) hide show
  1. package/dist/Button/Button.d.ts +2 -2
  2. package/dist/Button/Button.js +18 -2
  3. package/dist/CallToActionBar/CallToActionBar.interface.d.ts +1 -0
  4. package/dist/CallToActionBar/index.js +3 -1
  5. package/dist/Chevron/index.js +55 -1
  6. package/dist/Forms/Forms.css.d.ts +1 -0
  7. package/dist/Forms/Forms.css.js +2 -0
  8. package/dist/Forms/ScheduleCall.js +2 -2
  9. package/dist/Forms/index.js +2 -1
  10. package/dist/Hyperlink/index.js +60 -1
  11. package/dist/ImageBillboard/ImageBillboard.css.d.ts +2 -0
  12. package/dist/ImageBillboard/ImageBillboard.css.js +4 -0
  13. package/dist/ImageBillboard/ImageBillboard.js +2 -10
  14. package/dist/ImageBillboard/ImageBillboardSet.js +10 -3
  15. package/dist/ImageBillboard/index.js +3 -1
  16. package/dist/Input/Input.css.js +0 -5
  17. package/dist/MainHTML/index.js +1 -1
  18. package/dist/Modal/Modal.d.ts +3 -0
  19. package/dist/Modal/Modal.js +97 -0
  20. package/dist/Modal/contextApi/store.d.ts +10 -0
  21. package/dist/Modal/contextApi/store.js +55 -0
  22. package/dist/Modal/index.d.ts +2 -3
  23. package/dist/Modal/index.js +7 -94
  24. package/dist/NavigationMenu/AxosAdvisor/NavBar.css.d.ts +1 -0
  25. package/dist/NavigationMenu/AxosAdvisor/NavBar.css.js +3 -1
  26. package/dist/NavigationMenu/AxosAdvisor/SubNavBar.js +0 -19
  27. package/dist/NavigationMenu/AxosAdvisor/index.js +102 -74
  28. package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +40 -40
  29. package/dist/SecondaryFooter/index.js +2 -1
  30. package/dist/SetContainer/SetContainer.js +31 -1
  31. package/dist/Table/Table.d.ts +4 -6
  32. package/dist/VideoTile/VideoTile.js +2 -3
  33. package/dist/assets/FaqAccordion/FaqAccordion.css +2 -2
  34. package/dist/assets/Forms/Forms.css +10 -4
  35. package/dist/assets/IconBillboard/IconBillboard.css +1 -1
  36. package/dist/assets/ImageBillboard/ImageBillboard.css +8 -11
  37. package/dist/assets/Input/Input.css +0 -3
  38. package/dist/assets/Modal/Modal.css +3 -3
  39. package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css +4 -0
  40. package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +82 -82
  41. package/dist/assets/SecondaryFooter/SecondaryFooter.css +0 -2
  42. package/dist/assets/Table/Table.css +2 -2
  43. package/dist/assets/VideoTile/VideoTile.css +1 -12
  44. package/dist/assets/globals.css +1 -0
  45. package/dist/main.js +19 -3
  46. package/dist/utils/allowedAxosDomains.d.ts +2 -0
  47. package/dist/utils/allowedAxosDomains.js +40 -0
  48. package/dist/utils/index.d.ts +2 -0
  49. package/dist/utils/index.js +10 -1
  50. package/dist/utils/validateExternalLinks.d.ts +5 -0
  51. package/dist/utils/validateExternalLinks.js +32 -0
  52. package/package.json +4 -2
@@ -1,96 +1,9 @@
1
- import { jsx, Fragment, jsxs } from "react/jsx-runtime";
2
- import { chevron } from "../Chevron/Chevron.css.js";
3
- import "../Accordion/Accordion.js";
4
- import "../Accordion/Accordion.css.js";
5
- import "../icons/CheckIcon/CheckIcon.css.js";
6
- /* empty css */
7
- /* empty css */
8
- /* empty css */
9
- import "../AlertBanner/AlertBanner.css.js";
10
- import { Button } from "../Button/Button.js";
11
- import "../Button/Button.css.js";
12
- import "react";
13
- import "react-use";
14
- /* empty css */
15
- import "../IconBillboard/IconBillboard.css.js";
16
- /* empty css */
17
- /* empty css */
18
- import "clsx";
19
- /* empty css */
20
- import "../Carousel/index.js";
21
- /* empty css */
22
- import "../HeroBanner/HeroBanner.css.js";
23
- import "../ContentBanner/ContentBanner.css.js";
24
- /* empty css */
25
- import "../FaqAccordion/index.js";
26
- import "../FooterDisclosure/FooterDisclosure.css.js";
27
- import "../Forms/Forms.css.js";
28
- import "../Forms/SalesforceFieldsForm.js";
29
- import "@hookform/resolvers/zod";
30
- import "../Input/index.js";
31
- import "react-hook-form";
32
- /* empty css */
33
- import "../ImageBillboard/ImageBillboard.css.js";
34
- /* empty css */
35
- import "../NavigationMenu/AxosAdvisor/NavBar.module.js";
36
- /* empty css */
37
- import "../NavigationMenu/AxosFiduciary/NavBar.module.js";
38
- /* empty css */
39
- import "../Table/Table.css.js";
40
- /* empty css */
41
- import "next/script.js";
42
- /* empty css */
43
- /* empty css */
44
- import { modal, modal_dialog, modal_content, modal_header, modal_title, modal_subtitle, solid, modal_body, site_link, modal_footer } from "./Modal.css.js";
45
- const Modal = ({
46
- headline,
47
- bodyCopy,
48
- body,
49
- onAccept,
50
- onCancel
51
- }) => {
52
- return /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx("div", { id: "speedbump", tabIndex: -1, role: "dialog", className: modal, children: /* @__PURE__ */ jsx("div", { className: `${modal_dialog} rounded`, children: /* @__PURE__ */ jsxs("div", { className: `${modal_content} rounded`, children: [
53
- /* @__PURE__ */ jsxs("div", { className: `${modal_header} text_center`, children: [
54
- /* @__PURE__ */ jsx("h2", { className: `${modal_title} header_3`, children: headline }),
55
- /* @__PURE__ */ jsx("p", { className: `${modal_subtitle} p_16 mb_0 push_up`, children: bodyCopy })
56
- ] }),
57
- /* @__PURE__ */ jsx("hr", { className: solid }),
58
- /* @__PURE__ */ jsxs(
59
- "div",
60
- {
61
- className: `${modal_body} text-center flex flex_col center middle mx_auto`,
62
- children: [
63
- /* @__PURE__ */ jsx("p", { className: "p_16", children: "You will now be redirected to:" }),
64
- /* @__PURE__ */ jsx("p", { id: "insert-url", className: site_link, children: body })
65
- ]
66
- }
67
- ),
68
- /* @__PURE__ */ jsx("hr", { className: solid }),
69
- /* @__PURE__ */ jsxs(
70
- "div",
71
- {
72
- className: `${modal_footer} flex center middle push_up_24`,
73
- style: { marginInline: "auto", width: "max-content" },
74
- children: [
75
- /* @__PURE__ */ jsx(Button, { color: "primary", action: () => onAccept, children: "Continue" }),
76
- /* @__PURE__ */ jsx(
77
- "a",
78
- {
79
- style: { textDecoration: "none", padding: "8px 48px" },
80
- role: "button",
81
- className: `sc__btn ${chevron({ variant: "primary" })}`,
82
- "aria-label": "Close",
83
- title: "Go Back",
84
- id: "close",
85
- onClick: () => onCancel,
86
- children: "Close"
87
- }
88
- )
89
- ]
90
- }
91
- )
92
- ] }) }) }) });
93
- };
1
+ "use client";
2
+ import { Modal } from "./Modal.js";
3
+ import { GlobalContext, GlobalContextProvider, useGlobalContext } from "./contextApi/store.js";
94
4
  export {
95
- Modal
5
+ GlobalContext,
6
+ GlobalContextProvider,
7
+ Modal,
8
+ useGlobalContext
96
9
  };
@@ -1 +1,2 @@
1
1
  export declare const Sign_in_btn: string;
2
+ export declare const expand: string;
@@ -2,6 +2,8 @@
2
2
  /* empty css */
3
3
  /* empty css */
4
4
  var Sign_in_btn = "dg9gpl0";
5
+ var expand = "dg9gpl1";
5
6
  export {
6
- Sign_in_btn
7
+ Sign_in_btn,
8
+ expand
7
9
  };
@@ -9,25 +9,6 @@ import { sub_nav, absoule, dd_media, dd_media_btn } from "./SubNavbar.css.js";
9
9
  function SubNavBar() {
10
10
  const subNav1 = useRef(null);
11
11
  const [isMouseOver, setIsMouseOver] = useState(false);
12
- const allDropDowns = document.querySelectorAll("[id*='dd_'] > a");
13
- allDropDowns.forEach((elem) => {
14
- elem.addEventListener("click", function(event) {
15
- const node = event.target.parentNode.lastChild.classList.contains(
16
- "expand"
17
- ) instanceof Element;
18
- switch (node) {
19
- case true:
20
- event.target.parentNode.lastChild.classList.remove("expand");
21
- break;
22
- case false:
23
- const prevRadio = document.querySelector(".expand");
24
- if (prevRadio)
25
- prevRadio.classList.remove("expand");
26
- event.target.parentNode.lastChild.classList.add("expand");
27
- break;
28
- }
29
- });
30
- });
31
12
  const mouseOver = () => {
32
13
  setIsMouseOver(true);
33
14
  };
@@ -6,7 +6,7 @@ import { useState, useRef, useEffect } from "react";
6
6
  import { useClickAway } from "react-use";
7
7
  import clsx from "clsx";
8
8
  import { NavItem } from "../NavItem/index.js";
9
- import { Sign_in_btn } from "./NavBar.css.js";
9
+ import { Sign_in_btn, expand } from "./NavBar.css.js";
10
10
  import styles from "./NavBar.module.js";
11
11
  import { navItems } from "./NavData.js";
12
12
  import SubNavBar from "./SubNavBar.js";
@@ -20,6 +20,8 @@ function NavBar() {
20
20
  const toggle = () => setisOpenSignIn(!isOpenSignIn);
21
21
  const mobileToggle = () => setisOpenMobile(!isOpenMobile);
22
22
  const handleClick = (index) => setActiveIndex(index);
23
+ const [isOpenProducts, setisOpenProducts] = useState(false);
24
+ const toggleProducts = () => setisOpenProducts(!isOpenProducts);
23
25
  const getActiveIndex = () => {
24
26
  const pathname = "/" + location.pathname.split("/")[1];
25
27
  const index = navItems.findIndex(
@@ -113,9 +115,9 @@ function NavBar() {
113
115
  url: lastNavItem.url,
114
116
  name: lastNavItem.name,
115
117
  className: `link list_unstyled ${styles.main_nav_link}`,
116
- isActive: activeIndex == navItems.length + 1,
118
+ isActive: activeIndex == navItems.length,
117
119
  onClick: handleClick,
118
- index: navItems.length + 1
120
+ index: navItems.length
119
121
  },
120
122
  navItems.length + 1
121
123
  ),
@@ -269,7 +271,7 @@ function NavBar() {
269
271
  }
270
272
  ) })
271
273
  ] }),
272
- /* @__PURE__ */ jsx("div", { className: styles.mobile_body, children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", children: [
274
+ /* @__PURE__ */ jsx("div", { className: styles.mobile_body, children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", "aria-expanded": isOpenProducts, children: [
273
275
  /* @__PURE__ */ jsxs(
274
276
  "li",
275
277
  {
@@ -280,89 +282,105 @@ function NavBar() {
280
282
  "a",
281
283
  {
282
284
  href: "#",
285
+ onClick: toggleProducts,
283
286
  role: "button",
284
- className: `flex_row between ${styles.btn}`,
287
+ className: clsx("flex_row", "between"),
285
288
  children: [
286
289
  "Products",
287
- /* @__PURE__ */ jsx("span", { className: styles.icon_wrap, children: /* @__PURE__ */ jsx(
288
- "svg",
290
+ /* @__PURE__ */ jsx(
291
+ "span",
289
292
  {
290
- xmlns: "http://www.w3.org/2000/svg",
291
- width: "24",
292
- height: "24",
293
- viewBox: "0 0 24 24",
294
- fill: "none",
293
+ className: clsx(
294
+ styles.icon_wrap,
295
+ isOpenProducts && styles.open
296
+ ),
295
297
  children: /* @__PURE__ */ jsx(
296
- "path",
298
+ "svg",
297
299
  {
298
- d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
299
- fill: "#4A5560"
300
+ xmlns: "http://www.w3.org/2000/svg",
301
+ width: "24",
302
+ height: "24",
303
+ viewBox: "0 0 24 24",
304
+ fill: "none",
305
+ children: /* @__PURE__ */ jsx(
306
+ "path",
307
+ {
308
+ d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
309
+ fill: "#4A5560"
310
+ }
311
+ )
300
312
  }
301
313
  )
302
314
  }
303
- ) })
315
+ )
304
316
  ]
305
317
  }
306
318
  ),
307
- /* @__PURE__ */ jsxs("div", { className: styles.sub_menu, children: [
308
- /* @__PURE__ */ jsx("a", { href: "/products", className: styles.main, role: "heading", children: "Products Home" }),
309
- /* @__PURE__ */ jsx(
310
- "a",
311
- {
312
- href: "/products/select-high-yield-money-market",
313
- role: "menuitem",
314
- children: "Select High Yield Money Market"
315
- }
316
- ),
317
- /* @__PURE__ */ jsx("a", { href: "/products/select-cds", role: "menuitem", children: "Select CDs" }),
318
- /* @__PURE__ */ jsx("a", { href: "/products/select-checking", role: "menuitem", children: "Select Checking" }),
319
- /* @__PURE__ */ jsx("a", { href: "/products/select-savings", role: "menuitem", children: "Select Savings" }),
320
- /* @__PURE__ */ jsx("a", { href: "/products/business-banking", role: "menuitem", children: "Business Banking" }),
321
- /* @__PURE__ */ jsx("a", { href: "/products/mortgage", role: "menuitem", children: "Mortgage" }),
322
- /* @__PURE__ */ jsx(
323
- "a",
324
- {
325
- href: "/products/premier-world-checking-and-savings",
326
- className: styles.main,
327
- role: "heading",
328
- children: "Private Client"
329
- }
330
- ),
331
- /* @__PURE__ */ jsx(
332
- "a",
333
- {
334
- href: "/products/premier-private-client-banking",
335
- role: "menuitem",
336
- children: "Advisor Private Client Banking"
337
- }
338
- ),
339
- /* @__PURE__ */ jsx("a", { href: "/products/insureGuard-for-advisor", role: "menuitem", children: "InsureGuard+" }),
340
- /* @__PURE__ */ jsx(
341
- "a",
342
- {
343
- href: "/products/premier-world-checking-and-savings",
344
- role: "menuitem",
345
- children: "Advisor World Checking and Savings"
346
- }
347
- )
348
- ] })
319
+ /* @__PURE__ */ jsxs(
320
+ "div",
321
+ {
322
+ className: clsx(styles.sub_menu, isOpenProducts && expand),
323
+ children: [
324
+ /* @__PURE__ */ jsx("a", { href: "/products", className: styles.main, role: "heading", children: "Products Home" }),
325
+ /* @__PURE__ */ jsx(
326
+ "a",
327
+ {
328
+ href: "/products/select-high-yield-money-market",
329
+ role: "menuitem",
330
+ children: "Select High Yield Money Market"
331
+ }
332
+ ),
333
+ /* @__PURE__ */ jsx("a", { href: "/products/select-cds", role: "menuitem", children: "Select CDs" }),
334
+ /* @__PURE__ */ jsx("a", { href: "/products/select-checking", role: "menuitem", children: "Select Checking" }),
335
+ /* @__PURE__ */ jsx("a", { href: "/products/select-savings", role: "menuitem", children: "Select Savings" }),
336
+ /* @__PURE__ */ jsx("a", { href: "/products/business-banking", role: "menuitem", children: "Business Banking" }),
337
+ /* @__PURE__ */ jsx("a", { href: "/products/mortgage", role: "menuitem", children: "Mortgage" }),
338
+ /* @__PURE__ */ jsx(
339
+ "a",
340
+ {
341
+ href: "/products/premier-world-checking-and-savings",
342
+ className: styles.main,
343
+ role: "heading",
344
+ children: "Private Client"
345
+ }
346
+ ),
347
+ /* @__PURE__ */ jsx(
348
+ "a",
349
+ {
350
+ href: "/products/premier-private-client-banking",
351
+ role: "menuitem",
352
+ children: "Advisor Private Client Banking"
353
+ }
354
+ ),
355
+ /* @__PURE__ */ jsx("a", { href: "/products/insureguard-for-advisor", role: "menuitem", children: "InsureGuard+" }),
356
+ /* @__PURE__ */ jsx(
357
+ "a",
358
+ {
359
+ href: "/products/premier-world-checking-and-savings",
360
+ role: "menuitem",
361
+ children: "Advisor World Checking and Savings"
362
+ }
363
+ )
364
+ ]
365
+ }
366
+ )
349
367
  ]
350
368
  }
351
369
  ),
352
370
  /* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, id: "dd_2", children: /* @__PURE__ */ jsx(
353
371
  "a",
354
372
  {
355
- href: "/Find-your-advisor",
373
+ href: "/find-your-advisor",
356
374
  role: "button",
357
375
  className: `flex_row between ${styles.btn}`,
358
376
  children: "Find Your Advisor"
359
377
  }
360
378
  ) }),
361
- /* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, children: /* @__PURE__ */ jsx("a", { href: "/RIAs", role: "button", className: "flex_row between", children: "RIAs" }) }),
379
+ /* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, children: /* @__PURE__ */ jsx("a", { href: "/rias", role: "button", className: "flex_row between", children: "RIAs" }) }),
362
380
  /* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, children: /* @__PURE__ */ jsx(
363
381
  "a",
364
382
  {
365
- href: "/Contact-Us",
383
+ href: "/contact-us",
366
384
  role: "button",
367
385
  className: "flex_row between",
368
386
  children: "Contact Us"
@@ -380,34 +398,44 @@ function NavBar() {
380
398
  href: "#",
381
399
  role: "button",
382
400
  className: `flex_row between ${styles.btn}`,
401
+ onClick: toggle,
383
402
  children: [
384
403
  "Sign In",
385
- /* @__PURE__ */ jsx("span", { className: styles.icon_wrap, children: /* @__PURE__ */ jsx(
386
- "svg",
404
+ /* @__PURE__ */ jsx(
405
+ "span",
387
406
  {
388
- xmlns: "http://www.w3.org/2000/svg",
389
- width: "24",
390
- height: "24",
391
- viewBox: "0 0 24 24",
392
- fill: "none",
407
+ className: clsx(
408
+ styles.icon_wrap,
409
+ isOpenSignIn && styles.open
410
+ ),
393
411
  children: /* @__PURE__ */ jsx(
394
- "path",
412
+ "svg",
395
413
  {
396
- d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
397
- fill: "#4A5560"
414
+ xmlns: "http://www.w3.org/2000/svg",
415
+ width: "24",
416
+ height: "24",
417
+ viewBox: "0 0 24 24",
418
+ fill: "none",
419
+ children: /* @__PURE__ */ jsx(
420
+ "path",
421
+ {
422
+ d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
423
+ fill: "#4A5560"
424
+ }
425
+ )
398
426
  }
399
427
  )
400
428
  }
401
- ) })
429
+ )
402
430
  ]
403
431
  }
404
432
  ),
405
- /* @__PURE__ */ jsxs("div", { className: styles.sub_menu, children: [
433
+ /* @__PURE__ */ jsxs("div", { className: clsx(styles.sub_menu, isOpenSignIn && expand), children: [
406
434
  /* @__PURE__ */ jsx("span", { className: styles.main, role: "heading", children: "Personal" }),
407
435
  /* @__PURE__ */ jsx(
408
436
  "a",
409
437
  {
410
- href: `${define_process_env_default.NEXT_PUBLIC_LOGIN_APP_LOGIN_URL}/auth/login`,
438
+ href: `https://onlinebanking.uat.axsobank.com/auth/login`,
411
439
  role: "menuitem",
412
440
  children: "Account Login"
413
441
  }
@@ -1,43 +1,43 @@
1
- const header = "_header_nlu6n_1";
2
- const wrapper = "_wrapper_nlu6n_5";
3
- const header_main_row = "_header_main_row_nlu6n_11";
4
- const mobile_header = "_mobile_header_nlu6n_12";
5
- const logo_wrap = "_logo_wrap_nlu6n_18";
6
- const primary_links = "_primary_links_nlu6n_22";
7
- const main_nav = "_main_nav_nlu6n_26";
8
- const main_nav_link = "_main_nav_link_nlu6n_33";
9
- const sub_nav_link = "_sub_nav_link_nlu6n_55";
10
- const signin_wrap = "_signin_wrap_nlu6n_57";
11
- const signin_btn = "_signin_btn_nlu6n_58";
12
- const sub_nav = "_sub_nav_nlu6n_55";
13
- const header_sub_row = "_header_sub_row_nlu6n_99";
14
- const shadow = "_shadow_nlu6n_115";
15
- const opacity = "_opacity_nlu6n_131";
16
- const fadeInDown = "_fadeInDown_nlu6n_1";
17
- const footer = "_footer_nlu6n_137";
18
- const open = "_open_nlu6n_153";
19
- const mt_8 = "_mt_8_nlu6n_161";
20
- const mt_16 = "_mt_16_nlu6n_165";
21
- const ml_8 = "_ml_8_nlu6n_169";
22
- const reversed_row = "_reversed_row_nlu6n_173";
23
- const nav_anchor = "_nav_anchor_nlu6n_177";
24
- const site_lists = "_site_lists_nlu6n_188";
25
- const hamburger = "_hamburger_nlu6n_192";
26
- const mobile_logo = "_mobile_logo_nlu6n_206";
27
- const mobile_nav = "_mobile_nav_nlu6n_229";
28
- const mobile_opened = "_mobile_opened_nlu6n_241";
29
- const mobile_nav_item = "_mobile_nav_item_nlu6n_245";
30
- const icon_wrap = "_icon_wrap_nlu6n_260";
31
- const mobile_footer = "_mobile_footer_nlu6n_265";
32
- const mobile_footer_content = "_mobile_footer_content_nlu6n_271";
33
- const mobile_footer_media = "_mobile_footer_media_nlu6n_285";
34
- const footer_cta = "_footer_cta_nlu6n_292";
35
- const inner_wrapper = "_inner_wrapper_nlu6n_324";
36
- const btn = "_btn_nlu6n_328";
37
- const sub_menu = "_sub_menu_nlu6n_333";
38
- const main = "_main_nlu6n_26";
39
- const desktop_only = "_desktop_only_nlu6n_362";
40
- const mobile_only = "_mobile_only_nlu6n_409";
1
+ const header = "_header_101h6_1";
2
+ const wrapper = "_wrapper_101h6_5";
3
+ const header_main_row = "_header_main_row_101h6_11";
4
+ const mobile_header = "_mobile_header_101h6_12";
5
+ const logo_wrap = "_logo_wrap_101h6_18";
6
+ const primary_links = "_primary_links_101h6_22";
7
+ const main_nav = "_main_nav_101h6_26";
8
+ const main_nav_link = "_main_nav_link_101h6_33";
9
+ const sub_nav_link = "_sub_nav_link_101h6_55";
10
+ const signin_wrap = "_signin_wrap_101h6_57";
11
+ const signin_btn = "_signin_btn_101h6_58";
12
+ const sub_nav = "_sub_nav_101h6_55";
13
+ const header_sub_row = "_header_sub_row_101h6_99";
14
+ const shadow = "_shadow_101h6_115";
15
+ const opacity = "_opacity_101h6_131";
16
+ const fadeInDown = "_fadeInDown_101h6_1";
17
+ const footer = "_footer_101h6_137";
18
+ const open = "_open_101h6_153";
19
+ const mt_8 = "_mt_8_101h6_161";
20
+ const mt_16 = "_mt_16_101h6_165";
21
+ const ml_8 = "_ml_8_101h6_169";
22
+ const reversed_row = "_reversed_row_101h6_173";
23
+ const nav_anchor = "_nav_anchor_101h6_177";
24
+ const site_lists = "_site_lists_101h6_188";
25
+ const hamburger = "_hamburger_101h6_192";
26
+ const mobile_logo = "_mobile_logo_101h6_206";
27
+ const mobile_nav = "_mobile_nav_101h6_229";
28
+ const mobile_opened = "_mobile_opened_101h6_241";
29
+ const mobile_nav_item = "_mobile_nav_item_101h6_245";
30
+ const icon_wrap = "_icon_wrap_101h6_260";
31
+ const mobile_footer = "_mobile_footer_101h6_265";
32
+ const mobile_footer_content = "_mobile_footer_content_101h6_271";
33
+ const mobile_footer_media = "_mobile_footer_media_101h6_285";
34
+ const footer_cta = "_footer_cta_101h6_292";
35
+ const inner_wrapper = "_inner_wrapper_101h6_324";
36
+ const btn = "_btn_101h6_328";
37
+ const sub_menu = "_sub_menu_101h6_333";
38
+ const main = "_main_101h6_26";
39
+ const desktop_only = "_desktop_only_101h6_362";
40
+ const mobile_only = "_mobile_only_101h6_409";
41
41
  const styles = {
42
42
  header,
43
43
  wrapper,
@@ -1,8 +1,9 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
+ import clsx from "clsx";
2
3
  import { secondary_footer, footer_items_wrapper, footer_item, footer_link } from "./SecondaryFooter.css.js";
3
4
  const SecondaryFooter = (props) => {
4
5
  const { items } = props;
5
- return /* @__PURE__ */ jsx("div", { className: `${secondary_footer} containment`, children: /* @__PURE__ */ jsx("div", { className: footer_items_wrapper, children: items == null ? void 0 : items.map((item) => /* @__PURE__ */ jsx("div", { className: footer_item, children: /* @__PURE__ */ jsx("a", { href: item.targetURL, className: footer_link, "aria-label": "", children: item.displayText }) }, item.id)) }) });
6
+ return /* @__PURE__ */ jsx("div", { className: clsx(secondary_footer, "containment section_spacer"), children: /* @__PURE__ */ jsx("div", { className: footer_items_wrapper, children: items == null ? void 0 : items.map((item) => /* @__PURE__ */ jsx("div", { className: footer_item, children: /* @__PURE__ */ jsx("a", { href: item.targetURL, className: footer_link, "aria-label": "", children: item.displayText }) }, item.id)) }) });
6
7
  };
7
8
  export {
8
9
  SecondaryFooter
@@ -6,13 +6,43 @@ import "../icons/CheckIcon/CheckIcon.css.js";
6
6
  /* empty css */
7
7
  /* empty css */
8
8
  /* empty css */
9
+ import "../Accordion/Accordion.js";
10
+ import "../Accordion/Accordion.css.js";
11
+ import "../AlertBanner/AlertBanner.css.js";
12
+ import "../Modal/contextApi/store.js";
9
13
  import { getVariant } from "../utils/getVariant.js";
10
- import "../Chevron/Chevron.css.js";
11
14
  import "clsx";
12
15
  import "react";
13
16
  import "../Button/Button.css.js";
14
17
  import "react-use";
18
+ /* empty css */
19
+ /* empty css */
20
+ import "../Carousel/index.js";
21
+ /* empty css */
22
+ import "../HeroBanner/HeroBanner.css.js";
23
+ import "../ContentBanner/ContentBanner.css.js";
24
+ /* empty css */
25
+ import "../FaqAccordion/index.js";
26
+ import "../FooterDisclosure/FooterDisclosure.css.js";
27
+ import "../Forms/Forms.css.js";
28
+ import "../Forms/SalesforceFieldsForm.js";
29
+ import "@hookform/resolvers/zod";
30
+ import "../Input/index.js";
31
+ import "react-hook-form";
15
32
  import { inline_container } from "./SetContainer.css.js";
33
+ import "../ImageBillboard/ImageBillboard.css.js";
34
+ import "../Chevron/Chevron.css.js";
35
+ /* empty css */
36
+ /* empty css */
37
+ import "../NavigationMenu/AxosAdvisor/NavBar.module.js";
38
+ /* empty css */
39
+ import "../NavigationMenu/AxosFiduciary/NavBar.module.js";
40
+ /* empty css */
41
+ import "../Table/Table.css.js";
42
+ /* empty css */
43
+ import "next/script.js";
44
+ /* empty css */
45
+ /* empty css */
16
46
  const SetContainer = ({
17
47
  id,
18
48
  variant,
@@ -53,7 +53,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
53
53
  results?: number | undefined;
54
54
  security?: string | undefined;
55
55
  unselectable?: "on" | "off" | undefined;
56
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
56
+ inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
57
57
  is?: string | undefined;
58
58
  "aria-activedescendant"?: string | undefined;
59
59
  "aria-atomic"?: (boolean | "false" | "true") | undefined;
@@ -67,7 +67,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
67
67
  "aria-colindextext"?: string | undefined;
68
68
  "aria-colspan"?: number | undefined;
69
69
  "aria-controls"?: string | undefined;
70
- "aria-current"?: boolean | "page" | "false" | "true" | "time" | "step" | "location" | "date" | undefined;
70
+ "aria-current"?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
71
71
  "aria-describedby"?: string | undefined;
72
72
  "aria-description"?: string | undefined;
73
73
  "aria-details"?: string | undefined;
@@ -77,7 +77,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
77
77
  "aria-expanded"?: (boolean | "false" | "true") | undefined;
78
78
  "aria-flowto"?: string | undefined;
79
79
  "aria-grabbed"?: (boolean | "false" | "true") | undefined;
80
- "aria-haspopup"?: boolean | "grid" | "listbox" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
80
+ "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree" | undefined;
81
81
  "aria-hidden"?: (boolean | "false" | "true") | undefined;
82
82
  "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
83
83
  "aria-keyshortcuts"?: string | undefined;
@@ -94,7 +94,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
94
94
  "aria-posinset"?: number | undefined;
95
95
  "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
96
96
  "aria-readonly"?: (boolean | "false" | "true") | undefined;
97
- "aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
97
+ "aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
98
98
  "aria-required"?: (boolean | "false" | "true") | undefined;
99
99
  "aria-roledescription"?: string | undefined;
100
100
  "aria-rowcount"?: number | undefined;
@@ -250,9 +250,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
250
250
  onPointerCancel?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
251
251
  onPointerCancelCapture?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
252
252
  onPointerEnter?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
253
- onPointerEnterCapture?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
254
253
  onPointerLeave?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
255
- onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
256
254
  onPointerOver?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
257
255
  onPointerOverCapture?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
258
256
  onPointerOut?: import("react").PointerEventHandler<HTMLTableCellElement> | undefined;
@@ -28,7 +28,7 @@ const VideoTile = ({
28
28
  return /* @__PURE__ */ jsxs("div", { className: `flex center`, children: [
29
29
  /* @__PURE__ */ jsx(VideoInit, {}),
30
30
  /* @__PURE__ */ jsxs("div", { className: `${video_container} ${w_100} flex flex_col`, children: [
31
- /* @__PURE__ */ jsx("h2", { className: `${mb_8} ${video_title}`, children: title ? title : null }),
31
+ title && /* @__PURE__ */ jsx("h2", { className: `${mb_8} ${video_title}`, children: title }),
32
32
  /* @__PURE__ */ jsx(
33
33
  "div",
34
34
  {
@@ -42,7 +42,6 @@ const VideoTile = ({
42
42
  width: "100%",
43
43
  margin: "auto",
44
44
  display: "block",
45
- maxHeight: "304px",
46
45
  maxWidth
47
46
  },
48
47
  alt: "",
@@ -52,7 +51,7 @@ const VideoTile = ({
52
51
  "data-v": "4",
53
52
  "data-type": videoPlayer,
54
53
  "data-width": maxWidth,
55
- "data-height": "304px"
54
+ "data-height": "331px"
56
55
  }
57
56
  )
58
57
  }
@@ -26,7 +26,7 @@
26
26
  cursor: pointer;
27
27
  }
28
28
  details[open] .ph6wj62 {
29
- background-color: #D4D4D4;
29
+ background-color: #F4F4F4;
30
30
  }
31
31
  .ph6wj63 {
32
32
  max-width: 80%;
@@ -37,5 +37,5 @@ details[open] .ph6wj62 {
37
37
  }
38
38
  .ph6wj64 {
39
39
  padding: 24px;
40
- background-color: #D4D4D4;
40
+ background-color: #F4F4F4;
41
41
  }