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

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 (60) hide show
  1. package/dist/ApyCalculator/index.js +3 -2
  2. package/dist/Button/Button.d.ts +24 -0
  3. package/dist/Button/Button.js +31 -0
  4. package/dist/Button/GoBackButton.d.ts +3 -0
  5. package/dist/Button/GoBackButton.js +15 -0
  6. package/dist/Button/index.d.ts +3 -21
  7. package/dist/Button/index.js +5 -20
  8. package/dist/CallToActionBar/index.js +30 -36
  9. package/dist/CollectInformationAlert/index.js +4 -1
  10. package/dist/ContentBanner/index.js +4 -1
  11. package/dist/Forms/ScheduleCall.d.ts +2 -1
  12. package/dist/Forms/ScheduleCall.js +9 -11
  13. package/dist/HeroBanner/index.js +4 -1
  14. package/dist/IconBillboard/IconBillboard.d.ts +3 -1
  15. package/dist/IconBillboard/IconBillboard.interface.d.ts +2 -0
  16. package/dist/IconBillboard/IconBillboard.js +49 -34
  17. package/dist/IconBillboard/IconBillboardSet.js +50 -56
  18. package/dist/ImageBillboard/ImageBillboard.css.d.ts +1 -0
  19. package/dist/ImageBillboard/ImageBillboard.interface.d.ts +3 -0
  20. package/dist/ImageBillboard/ImageBillboard.js +4 -1
  21. package/dist/ImageBillboard/ImageBillboardSet.d.ts +1 -1
  22. package/dist/ImageBillboard/ImageBillboardSet.js +12 -3
  23. package/dist/Input/Input.css.js +5 -0
  24. package/dist/MainHTML/index.d.ts +1 -1
  25. package/dist/Modal/index.js +4 -2
  26. package/dist/NavigationMenu/AxosAdvisor/NavBar.css.d.ts +1 -0
  27. package/dist/NavigationMenu/AxosAdvisor/NavBar.css.js +7 -0
  28. package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +52 -52
  29. package/dist/NavigationMenu/AxosAdvisor/NavData.d.ts +4 -0
  30. package/dist/NavigationMenu/AxosAdvisor/NavData.js +10 -0
  31. package/dist/NavigationMenu/AxosAdvisor/SubNavBar.js +46 -30
  32. package/dist/NavigationMenu/AxosAdvisor/SubNavbar.css.d.ts +4 -0
  33. package/dist/NavigationMenu/AxosAdvisor/SubNavbar.css.js +13 -0
  34. package/dist/NavigationMenu/AxosAdvisor/index.js +184 -142
  35. package/dist/NavigationMenu/AxosFiduciary/index.js +12 -6
  36. package/dist/SetContainer/SetContainer.js +1 -0
  37. package/dist/Table/Table.css.d.ts +19 -6
  38. package/dist/Table/Table.css.js +5 -1
  39. package/dist/Table/Table.d.ts +3 -3
  40. package/dist/Table/Table.interface.d.ts +2 -0
  41. package/dist/Table/Table.js +8 -5
  42. package/dist/Table/index.js +3 -1
  43. package/dist/VideoTile/VideoTile.js +2 -2
  44. package/dist/assets/CallToActionBar/CallToActionBar.css +19 -8
  45. package/dist/assets/ContentBanner/ContentBanner.css +2 -0
  46. package/dist/assets/Forms/Forms.css +7 -5
  47. package/dist/assets/IconBillboard/IconBillboard.css +8 -2
  48. package/dist/assets/ImageBillboard/ImageBillboard.css +29 -0
  49. package/dist/assets/Input/Input.css +5 -1
  50. package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css +5 -0
  51. package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +125 -122
  52. package/dist/assets/NavigationMenu/AxosAdvisor/SubNavbar.css +17 -0
  53. package/dist/assets/SetContainer/SetContainer.css +6 -1
  54. package/dist/assets/Table/Table.css +61 -21
  55. package/dist/assets/VideoTile/VideoTile.css +1 -0
  56. package/dist/assets/globals.css +0 -3
  57. package/dist/main.js +8 -2
  58. package/package.json +1 -1
  59. package/dist/NavigationMenu/AxosFiduciary/MobileToggle.d.ts +0 -2
  60. package/dist/NavigationMenu/AxosFiduciary/MobileToggle.js +0 -120
@@ -1,5 +1,8 @@
1
1
  import { jsxs, jsx } from "react/jsx-runtime";
2
- import { Button } from "../Button/index.js";
2
+ import { Button } from "../Button/Button.js";
3
+ import "../Button/Button.css.js";
4
+ import "react";
5
+ import "react-use";
3
6
  import { Chevron } from "../Chevron/index.js";
4
7
  import SvgCheckIcon from "../icons/CheckIcon/index.js";
5
8
  /* empty css */
@@ -18,18 +21,24 @@ const ImageBillboard = ({
18
21
  callToActionRow,
19
22
  eyebrow,
20
23
  image,
21
- imagePlacement: position = "left"
24
+ imagePlacement: position = "left",
25
+ set
22
26
  }) => {
23
27
  const billboard_variant = getVariant(variant);
28
+ position = position == null ? void 0 : position.toLocaleLowerCase();
24
29
  return /* @__PURE__ */ jsxs(
25
30
  "div",
26
31
  {
27
32
  className: clsx(
33
+ "billboard",
34
+ "containment",
28
35
  billboard({ variant: billboard_variant }),
29
36
  `rounded flex`,
30
37
  bordered ? "bordered" : "",
31
38
  imagePlacement({ position: position == null ? void 0 : position.toLowerCase() }),
32
- "containment"
39
+ `${set ? "" : "containment"}`,
40
+ position === "right" && "reversed",
41
+ imagePlacement({ position: position == null ? void 0 : position.toLowerCase() })
33
42
  ),
34
43
  children: [
35
44
  /* @__PURE__ */ jsx("div", { className: `${billboard_img} flex`, children: /* @__PURE__ */ jsx("img", { src: image.src, className: "img_fluid", alt: image.alt }) }),
@@ -1,5 +1,10 @@
1
1
  /* empty css */
2
+ /* empty css */
2
3
  /* empty css */
4
+ /* empty css */
5
+ /* empty css */
6
+ /* empty css */
7
+ /* empty css */
3
8
  /* empty css */
4
9
  import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
5
10
  var icon = createRuntimeFn({ defaultClassName: "_18du0la0", variantClassNames: { size: { small: "_18du0la1", medium: "_18du0la2", large: "_18du0la3" } }, defaultVariants: {}, compoundVariants: [] });
@@ -1,5 +1,5 @@
1
1
  import { PropsWithChildren } from "react";
2
2
  export interface BodyProps extends PropsWithChildren {
3
- theme: string;
3
+ theme: "Axos" | "Premier";
4
4
  }
5
5
  export declare const MainHTML: ({ theme, children }: BodyProps) => import("react/jsx-runtime").JSX.Element;
@@ -7,9 +7,10 @@ import "../icons/CheckIcon/CheckIcon.css.js";
7
7
  /* empty css */
8
8
  /* empty css */
9
9
  import "../AlertBanner/AlertBanner.css.js";
10
- import { Button } from "../Button/index.js";
10
+ import { Button } from "../Button/Button.js";
11
11
  import "../Button/Button.css.js";
12
12
  import "react";
13
+ import "react-use";
13
14
  /* empty css */
14
15
  import "../IconBillboard/IconBillboard.css.js";
15
16
  /* empty css */
@@ -30,8 +31,9 @@ import "../Input/index.js";
30
31
  import "react-hook-form";
31
32
  /* empty css */
32
33
  import "../ImageBillboard/ImageBillboard.css.js";
33
- import "react-use";
34
+ /* empty css */
34
35
  import "../NavigationMenu/AxosAdvisor/NavBar.module.js";
36
+ /* empty css */
35
37
  import "../NavigationMenu/AxosFiduciary/NavBar.module.js";
36
38
  /* empty css */
37
39
  import "../Table/Table.css.js";
@@ -0,0 +1 @@
1
+ export declare const Sign_in_btn: string;
@@ -0,0 +1,7 @@
1
+ /* empty css */
2
+ /* empty css */
3
+ /* empty css */
4
+ var Sign_in_btn = "dg9gpl0";
5
+ export {
6
+ Sign_in_btn
7
+ };
@@ -1,55 +1,55 @@
1
- const header = "_header_13ij6_1";
2
- const wrapper = "_wrapper_13ij6_5";
3
- const header_main_row = "_header_main_row_13ij6_11";
4
- const mobile_header = "_mobile_header_13ij6_12";
5
- const logo_wrap = "_logo_wrap_13ij6_18";
6
- const primary_links = "_primary_links_13ij6_22";
7
- const main_nav_link = "_main_nav_link_13ij6_26";
8
- const sub_nav_link = "_sub_nav_link_13ij6_48";
9
- const signin_wrap = "_signin_wrap_13ij6_50";
10
- const signin_btn = "_signin_btn_13ij6_51";
11
- const sub_nav = "_sub_nav_13ij6_48";
12
- const header_sub_row = "_header_sub_row_13ij6_92";
13
- const signin_dropdown = "_signin_dropdown_13ij6_108";
14
- const shadow = "_shadow_13ij6_118";
15
- const signin_header = "_signin_header_13ij6_126";
16
- const signin_subheader = "_signin_subheader_13ij6_133";
17
- const opacity = "_opacity_13ij6_155";
18
- const fadeInDown = "_fadeInDown_13ij6_1";
19
- const footer = "_footer_13ij6_161";
20
- const open = "_open_13ij6_177";
21
- const dd_wrapper = "_dd_wrapper_13ij6_189";
22
- const dd_media = "_dd_media_13ij6_195";
23
- const dd_media_img = "_dd_media_img_13ij6_200";
24
- const dd_site_navs = "_dd_site_navs_13ij6_204";
25
- const dd_media_header = "_dd_media_header_13ij6_211";
26
- const mt_8 = "_mt_8_13ij6_220";
27
- const mt_16 = "_mt_16_13ij6_224";
28
- const ml_8 = "_ml_8_13ij6_228";
29
- const dd_media_cta = "_dd_media_cta_13ij6_232";
30
- const reversed_row = "_reversed_row_13ij6_246";
31
- const headline = "_headline_13ij6_262";
32
- const nav_anchor = "_nav_anchor_13ij6_267";
33
- const headline_cta = "_headline_cta_13ij6_275";
34
- const site_lists = "_site_lists_13ij6_289";
35
- const hamburger = "_hamburger_13ij6_324";
36
- const mobile_only = "_mobile_only_13ij6_338";
37
- const mobile_logo = "_mobile_logo_13ij6_344";
38
- const mobile_nav = "_mobile_nav_13ij6_367";
39
- const mobile_opened = "_mobile_opened_13ij6_377";
40
- const mobile_nav_item = "_mobile_nav_item_13ij6_381";
41
- const has_dropdown = "_has_dropdown_13ij6_396";
42
- const icon_wrap = "_icon_wrap_13ij6_417";
43
- const mobile_footer = "_mobile_footer_13ij6_422";
44
- const mobile_footer_content = "_mobile_footer_content_13ij6_428";
45
- const mobile_footer_media = "_mobile_footer_media_13ij6_442";
46
- const footer_cta = "_footer_cta_13ij6_448";
47
- const inner_wrapper = "_inner_wrapper_13ij6_480";
48
- const btn = "_btn_13ij6_485";
49
- const sub_menu = "_sub_menu_13ij6_490";
50
- const main = "_main_13ij6_26";
51
- const dd_footer = "_dd_footer_13ij6_515";
52
- const desktop_only = "_desktop_only_13ij6_534";
1
+ const header = "_header_i2cqq_1";
2
+ const wrapper = "_wrapper_i2cqq_5";
3
+ const header_main_row = "_header_main_row_i2cqq_11";
4
+ const mobile_header = "_mobile_header_i2cqq_12";
5
+ const logo_wrap = "_logo_wrap_i2cqq_18";
6
+ const primary_links = "_primary_links_i2cqq_22";
7
+ const main_nav_link = "_main_nav_link_i2cqq_26";
8
+ const sub_nav_link = "_sub_nav_link_i2cqq_48";
9
+ const signin_wrap = "_signin_wrap_i2cqq_50";
10
+ const signin_btn = "_signin_btn_i2cqq_51";
11
+ const sub_nav = "_sub_nav_i2cqq_48";
12
+ const header_sub_row = "_header_sub_row_i2cqq_93";
13
+ const signin_dropdown = "_signin_dropdown_i2cqq_109";
14
+ const shadow = "_shadow_i2cqq_119";
15
+ const signin_header = "_signin_header_i2cqq_127";
16
+ const signin_subheader = "_signin_subheader_i2cqq_134";
17
+ const opacity = "_opacity_i2cqq_156";
18
+ const fadeInDown = "_fadeInDown_i2cqq_1";
19
+ const footer = "_footer_i2cqq_162";
20
+ const open = "_open_i2cqq_178";
21
+ const dd_wrapper = "_dd_wrapper_i2cqq_190";
22
+ const dd_media = "_dd_media_i2cqq_195";
23
+ const dd_media_img = "_dd_media_img_i2cqq_200";
24
+ const dd_site_navs = "_dd_site_navs_i2cqq_204";
25
+ const dd_media_header = "_dd_media_header_i2cqq_211";
26
+ const mt_8 = "_mt_8_i2cqq_220";
27
+ const mt_16 = "_mt_16_i2cqq_224";
28
+ const ml_8 = "_ml_8_i2cqq_228";
29
+ const dd_media_cta = "_dd_media_cta_i2cqq_232";
30
+ const reversed_row = "_reversed_row_i2cqq_246";
31
+ const headline = "_headline_i2cqq_262";
32
+ const nav_anchor = "_nav_anchor_i2cqq_267";
33
+ const headline_cta = "_headline_cta_i2cqq_275";
34
+ const site_lists = "_site_lists_i2cqq_289";
35
+ const hamburger = "_hamburger_i2cqq_324";
36
+ const mobile_only = "_mobile_only_i2cqq_338";
37
+ const mobile_logo = "_mobile_logo_i2cqq_344";
38
+ const mobile_nav = "_mobile_nav_i2cqq_373";
39
+ const mobile_opened = "_mobile_opened_i2cqq_383";
40
+ const mobile_nav_item = "_mobile_nav_item_i2cqq_388";
41
+ const has_dropdown = "_has_dropdown_i2cqq_403";
42
+ const icon_wrap = "_icon_wrap_i2cqq_424";
43
+ const mobile_footer = "_mobile_footer_i2cqq_429";
44
+ const mobile_footer_content = "_mobile_footer_content_i2cqq_435";
45
+ const mobile_footer_media = "_mobile_footer_media_i2cqq_449";
46
+ const footer_cta = "_footer_cta_i2cqq_455";
47
+ const inner_wrapper = "_inner_wrapper_i2cqq_483";
48
+ const btn = "_btn_i2cqq_488";
49
+ const sub_menu = "_sub_menu_i2cqq_493";
50
+ const main = "_main_i2cqq_26";
51
+ const dd_footer = "_dd_footer_i2cqq_518";
52
+ const desktop_only = "_desktop_only_i2cqq_537";
53
53
  const styles = {
54
54
  header,
55
55
  wrapper,
@@ -0,0 +1,4 @@
1
+ export declare const navItems: {
2
+ name: string;
3
+ url: string;
4
+ }[];
@@ -0,0 +1,10 @@
1
+ const navItems = [
2
+ { name: "Products", url: "/products" },
3
+ { name: "Find Your Advisor", url: "/find-your-advisor" },
4
+ { name: "RIAs", url: "/rias" },
5
+ { name: "Resources", url: "/resources" },
6
+ { name: "Contact Us", url: "/contact-us" }
7
+ ];
8
+ export {
9
+ navItems
10
+ };
@@ -1,23 +1,14 @@
1
1
  "use client";
2
2
  import { jsxs, Fragment, jsx } from "react/jsx-runtime";
3
- import { useRef } from "react";
3
+ import { Button } from "../../Button/Button.js";
4
+ import "../../Button/Button.css.js";
5
+ import { useRef, useState } from "react";
4
6
  import { useLocation } from "react-use";
5
7
  import styles from "./NavBar.module.js";
8
+ import { sub_nav, absoule, dd_media, dd_media_btn } from "./SubNavbar.css.js";
6
9
  function SubNavBar() {
7
10
  const subNav1 = useRef(null);
8
- const mouseOver = function(e) {
9
- const dataId = e.target.getAttribute("id");
10
- const navRef = eval(dataId);
11
- document.querySelectorAll("[data-id*='subNav']").forEach((nav) => {
12
- nav.style.display = "none";
13
- });
14
- navRef.current.style.display = "block";
15
- };
16
- const mouseLeave = function(_e) {
17
- document.querySelectorAll("[data-id*='subNav']").forEach((nav) => {
18
- nav.style.display = "none";
19
- });
20
- };
11
+ const [isMouseOver, setIsMouseOver] = useState(false);
21
12
  const allDropDowns = document.querySelectorAll("[id*='dd_'] > a");
22
13
  allDropDowns.forEach((elem) => {
23
14
  elem.addEventListener("click", function(event) {
@@ -37,12 +28,21 @@ function SubNavBar() {
37
28
  }
38
29
  });
39
30
  });
31
+ const mouseOver = () => {
32
+ setIsMouseOver(true);
33
+ };
34
+ const mouseLeave = () => {
35
+ setIsMouseOver(false);
36
+ };
37
+ const showSubNabVarOptions = () => {
38
+ setIsMouseOver(!isMouseOver);
39
+ };
40
40
  const { pathname } = useLocation();
41
41
  if (!(pathname == null ? void 0 : pathname.includes("/products"))) {
42
42
  return null;
43
43
  }
44
44
  return /* @__PURE__ */ jsxs(Fragment, { children: [
45
- /* @__PURE__ */ jsx("div", { className: `${styles.sub_nav} ${styles.desktop_only}`, children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsx("div", { className: styles.header_sub_row, children: /* @__PURE__ */ jsx("div", { className: "list_unstyled flex_row middle", children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled flex_row middle", children: [
45
+ /* @__PURE__ */ jsx("div", { className: `${styles.sub_nav} ${sub_nav} ${styles.desktop_only}`, children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsx("div", { className: styles.header_sub_row, children: /* @__PURE__ */ jsx("div", { className: "list_unstyled flex_row middle", children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled flex_row middle", children: [
46
46
  /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsxs(
47
47
  "a",
48
48
  {
@@ -50,6 +50,7 @@ function SubNavBar() {
50
50
  id: "subNav1",
51
51
  role: "menuitem",
52
52
  onMouseEnter: mouseOver,
53
+ onClick: showSubNabVarOptions,
53
54
  children: [
54
55
  "Private Client",
55
56
  /* @__PURE__ */ jsx(
@@ -76,18 +77,17 @@ function SubNavBar() {
76
77
  /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsx(
77
78
  "a",
78
79
  {
79
- href: "/Products/Select-High-Yield-Money-Market",
80
+ href: "/products/select-high-yield-money-market",
80
81
  id: "subNav2",
81
82
  role: "menuitem",
82
- onMouseEnter: mouseOver,
83
83
  children: "Select High Yield Money Market"
84
84
  }
85
85
  ) }),
86
- /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsx("a", { href: "/Products/Select-CDs", id: "subNav3", role: "menuitem", children: "Select CDs" }) }),
86
+ /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsx("a", { href: "/products/select-cds", id: "subNav3", role: "menuitem", children: "Select CDs" }) }),
87
87
  /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsx(
88
88
  "a",
89
89
  {
90
- href: "/Products/Select-Checking",
90
+ href: "/products/select-checking",
91
91
  id: "subNav4",
92
92
  role: "menuitem",
93
93
  children: "Select Checking"
@@ -96,7 +96,7 @@ function SubNavBar() {
96
96
  /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsx(
97
97
  "a",
98
98
  {
99
- href: "/Products/Select-Savings",
99
+ href: "/products/select-savings",
100
100
  id: "subNav4",
101
101
  role: "menuitem",
102
102
  children: "Select Savings"
@@ -105,18 +105,18 @@ function SubNavBar() {
105
105
  /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsx(
106
106
  "a",
107
107
  {
108
- href: "/Products/Business-Banking",
108
+ href: "/products/business-banking",
109
109
  id: "subNav4",
110
110
  role: "menuitem",
111
111
  children: "Business Banking"
112
112
  }
113
113
  ) }),
114
- /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsx("a", { href: "/Products/Mortgage", id: "subNav4", role: "menuitem", children: "Mortgage" }) })
114
+ /* @__PURE__ */ jsx("li", { className: styles.sub_nav_link, children: /* @__PURE__ */ jsx("a", { href: "/products/mortgage", id: "subNav4", role: "menuitem", children: "Mortgage" }) })
115
115
  ] }) }) }) }) }),
116
- /* @__PURE__ */ jsx(
116
+ isMouseOver && /* @__PURE__ */ jsx(
117
117
  "div",
118
118
  {
119
- className: `${styles.dd_wrapper} ${styles.desktop_only} relative`,
119
+ className: `${styles.dd_wrapper} ${styles.desktop_only} ${absoule}`,
120
120
  role: "menu",
121
121
  "data-id": "subNav1",
122
122
  ref: subNav1,
@@ -125,7 +125,7 @@ function SubNavBar() {
125
125
  /* @__PURE__ */ jsxs(
126
126
  "div",
127
127
  {
128
- className: `${styles.dd_media} ${styles.opacity} primary_gradient_bg w_auto text_center`,
128
+ className: `${styles.dd_media} ${dd_media} ${styles.opacity} w_auto text_center`,
129
129
  children: [
130
130
  /* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
131
131
  /* @__PURE__ */ jsxs("p", { role: "heading", children: [
@@ -143,7 +143,17 @@ function SubNavBar() {
143
143
  height: 232
144
144
  }
145
145
  ) }),
146
- /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_cta}`, children: /* @__PURE__ */ jsx("a", { href: "tel:877-887-3030 ", className: "text_center bg_white ", children: "Call (877)-887-3030" }) })
146
+ /* @__PURE__ */ jsx("div", { className: `${styles.mt_8} ${styles.dd_media_cta}`, children: /* @__PURE__ */ jsx(
147
+ Button,
148
+ {
149
+ className: dd_media_btn,
150
+ size: "large",
151
+ targetUrl: "tel:877-887-3030",
152
+ color: "tertiary",
153
+ "aria-controls": "signin-drop-menu",
154
+ children: "Call (877)-887-3030"
155
+ }
156
+ ) })
147
157
  ]
148
158
  }
149
159
  ),
@@ -172,7 +182,7 @@ function SubNavBar() {
172
182
  )
173
183
  }
174
184
  ),
175
- /* @__PURE__ */ jsx("div", { className: `${styles.headline_cta} ${styles.ml_8}`, children: /* @__PURE__ */ jsx("a", { href: "{AXOSBANK}/Customer-Support", children: "Help & Support" }) })
185
+ /* @__PURE__ */ jsx("div", { className: `${styles.headline_cta} ${styles.ml_8}`, children: /* @__PURE__ */ jsx("a", { href: "https://www.axosbank.com/Customer-Support/", children: "Help & Support" }) })
176
186
  ] })
177
187
  ] }),
178
188
  /* @__PURE__ */ jsx("hr", {}),
@@ -196,9 +206,15 @@ function SubNavBar() {
196
206
  ),
197
207
  /* @__PURE__ */ jsxs("ul", { className: `${styles.ml_8} list_unstyled`, children: [
198
208
  /* @__PURE__ */ jsx("li", { role: "heading", children: "Products" }),
199
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "/Products/Premier-Private-Client-Banking", children: "Advisor Private Client Banking" }) }),
200
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "/Products/InsureGuard-for-Advisor", children: "InsureGuard+" }) }),
201
- /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "/Products/Premier-World-Checking-and-Savings", children: "Advisor World Checking and Savings" }) })
209
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "/products/premier-private-client-banking", children: "Advisor Private Client Banking" }) }),
210
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "/products/insureguard-for-advisor", children: "InsureGuard+" }) }),
211
+ /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
212
+ "a",
213
+ {
214
+ href: "/products/premier-world-checking-and-savings",
215
+ children: "Advisor World Checking and Savings"
216
+ }
217
+ ) })
202
218
  ] })
203
219
  ] }) }),
204
220
  /* @__PURE__ */ jsx("div", { className: `flex_row ${styles.dd_footer}`, children: /* @__PURE__ */ jsxs("p", { children: [
@@ -0,0 +1,4 @@
1
+ export declare const sub_nav: string;
2
+ export declare const dd_media: string;
3
+ export declare const dd_media_btn: string;
4
+ export declare const absoule: string;
@@ -0,0 +1,13 @@
1
+ /* empty css */
2
+ /* empty css */
3
+ /* empty css */
4
+ var sub_nav = "_106q65b0";
5
+ var dd_media = "_106q65b1";
6
+ var dd_media_btn = "_106q65b2";
7
+ var absoule = "_106q65b3";
8
+ export {
9
+ absoule,
10
+ dd_media,
11
+ dd_media_btn,
12
+ sub_nav
13
+ };