@axos-web-dev/shared-components 1.0.93 → 1.0.95-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Blockquote/Blockquote.module.js +3 -3
- package/dist/Calculators/AxosOneCalculator/index.js +9 -9
- package/dist/Carousel/index.js +1 -1
- package/dist/Comparison/Comparison.js +1 -1
- package/dist/IconBillboard/IconBillboard.css.d.ts +1 -0
- package/dist/IconBillboard/IconBillboard.css.js +2 -0
- package/dist/IconBillboard/IconBillboard.js +30 -3
- package/dist/IconBillboard/index.js +2 -1
- package/dist/ImageLink/ImageLinkSet.js +1 -1
- package/dist/Insight/Featured/CategorySelector.js +1 -1
- package/dist/Insight/Featured/Featured.js +1 -1
- package/dist/Insight/Featured/Header.js +1 -1
- package/dist/NavigationMenu/AxosAdvisor/SubNavBar.js +3 -10
- package/dist/NavigationMenu/AxosAdvisor/index.js +3 -11
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileMenu.module.js +16 -16
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.d.ts +0 -1
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.js +0 -3
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +39 -39
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +0 -9
- package/dist/NavigationMenu/NavDataJson.d.ts +2 -0
- package/dist/NavigationMenu/NavDataJson.js +308 -0
- package/dist/NavigationMenu/Navbar.d.ts +5 -0
- package/dist/NavigationMenu/Navbar.js +329 -0
- package/dist/NavigationMenu/SignInNavButton.d.ts +1 -0
- package/dist/NavigationMenu/SignInNavButton.js +362 -0
- package/dist/assets/Blockquote/Blockquote.css.css +68 -68
- package/dist/assets/IconBillboard/IconBillboard.css +18 -1
- package/dist/assets/NavigationMenu/AxosBank/MobileMenu/MobileMenu.css.css +191 -191
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +473 -473
- package/dist/main.js +2 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import '../assets/Blockquote/Blockquote.css.css';const quote_spacer = "
|
|
2
|
-
const author = "
|
|
3
|
-
const quote = "
|
|
1
|
+
import '../assets/Blockquote/Blockquote.css.css';const quote_spacer = "_quote_spacer_1mzku_1";
|
|
2
|
+
const author = "_author_1mzku_7";
|
|
3
|
+
const quote = "_quote_1mzku_1";
|
|
4
4
|
const css = {
|
|
5
5
|
quote_spacer,
|
|
6
6
|
author,
|
|
@@ -141,48 +141,48 @@ const AxosOneCalculator = ({
|
|
|
141
141
|
] }),
|
|
142
142
|
/* @__PURE__ */ jsxs(TableRow, { children: [
|
|
143
143
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
144
|
-
"
|
|
144
|
+
"Wells Fargo",
|
|
145
145
|
/* @__PURE__ */ jsx("sup", { children: "2" })
|
|
146
146
|
] }),
|
|
147
147
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
148
|
-
|
|
148
|
+
fargoAPY.toFixed(2),
|
|
149
149
|
"%"
|
|
150
150
|
] }),
|
|
151
151
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
152
152
|
"$",
|
|
153
|
-
|
|
153
|
+
fargoEarning.toLocaleString(void 0, {
|
|
154
154
|
maximumFractionDigits: 2
|
|
155
155
|
})
|
|
156
156
|
] })
|
|
157
157
|
] }),
|
|
158
158
|
/* @__PURE__ */ jsxs(TableRow, { children: [
|
|
159
159
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
160
|
-
"
|
|
160
|
+
"Bank of America",
|
|
161
161
|
/* @__PURE__ */ jsx("sup", { children: "3" })
|
|
162
162
|
] }),
|
|
163
163
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
164
|
-
|
|
164
|
+
bofaAPY.toFixed(2),
|
|
165
165
|
"%"
|
|
166
166
|
] }),
|
|
167
167
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
168
168
|
"$",
|
|
169
|
-
|
|
169
|
+
bofaEarning.toLocaleString(void 0, {
|
|
170
170
|
maximumFractionDigits: 2
|
|
171
171
|
})
|
|
172
172
|
] })
|
|
173
173
|
] }),
|
|
174
174
|
/* @__PURE__ */ jsxs(TableRow, { children: [
|
|
175
175
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
176
|
-
"
|
|
176
|
+
"Chase",
|
|
177
177
|
/* @__PURE__ */ jsx("sup", { children: "4" })
|
|
178
178
|
] }),
|
|
179
179
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
180
|
-
|
|
180
|
+
chaseAPY.toFixed(2),
|
|
181
181
|
"%"
|
|
182
182
|
] }),
|
|
183
183
|
/* @__PURE__ */ jsxs(TableCell, { variant: "primary", children: [
|
|
184
184
|
"$",
|
|
185
|
-
|
|
185
|
+
chaseEarning.toLocaleString(void 0, {
|
|
186
186
|
maximumFractionDigits: 2
|
|
187
187
|
})
|
|
188
188
|
] })
|
package/dist/Carousel/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
3
|
+
import clsx from "clsx";
|
|
3
4
|
import React, { useEffect, Children, cloneElement } from "react";
|
|
4
5
|
import { section_text } from "../IconBillboard/IconBillboard.css.js";
|
|
5
6
|
import "../icons/ArrowIcon/ArrowIcon.css.js";
|
|
@@ -14,7 +15,6 @@ import SvgQuoteIconWhite from "../icons/QuoteIconWhite.js";
|
|
|
14
15
|
import SvgQuoteIconYellow from "../icons/QuoteIconYellow.js";
|
|
15
16
|
import "../utils/allowedAxosDomains.js";
|
|
16
17
|
import { getVariant } from "../utils/getVariant.js";
|
|
17
|
-
import clsx from "clsx";
|
|
18
18
|
/* empty css */
|
|
19
19
|
/* empty css */
|
|
20
20
|
import "../Accordion/Accordion.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
2
|
+
import clsx from "clsx";
|
|
2
3
|
import "react";
|
|
3
4
|
import { BulletItem } from "../BulletItem/BulletItem.js";
|
|
4
5
|
import { Chevron } from "../Chevron/index.js";
|
|
5
6
|
import { getVariant } from "../utils/getVariant.js";
|
|
6
|
-
import clsx from "clsx";
|
|
7
7
|
import { Button } from "../Button/Button.js";
|
|
8
8
|
import "../Button/Button.css.js";
|
|
9
9
|
import "react-use";
|
|
@@ -121,5 +121,6 @@ export declare const section_body: import('@vanilla-extract/recipes').RuntimeFn<
|
|
|
121
121
|
};
|
|
122
122
|
};
|
|
123
123
|
}>;
|
|
124
|
+
export declare const link_wrapper: string;
|
|
124
125
|
export type ContainerVariants = RecipeVariants<typeof containerIconBillboard>;
|
|
125
126
|
export type LayoutVariants = RecipeVariants<typeof layout>;
|
|
@@ -17,6 +17,7 @@ var section_text = "_1r4ovbui";
|
|
|
17
17
|
var header_section = createRuntimeFn({ defaultClassName: "_1r4ovbuj", variantClassNames: { variant: { primary: "_1r4ovbuk", secondary: "_1r4ovbul", tertiary: "_1r4ovbum", quaternary: "_1r4ovbun" } }, defaultVariants: {}, compoundVariants: [] });
|
|
18
18
|
var section_container = "_1r4ovbuo";
|
|
19
19
|
var section_body = createRuntimeFn({ defaultClassName: "_1r4ovbup", variantClassNames: { variant: { primary: "_1r4ovbuq", secondary: "_1r4ovbur", tertiary: "_1r4ovbus", quaternary: "_1r4ovbut" } }, defaultVariants: {}, compoundVariants: [] });
|
|
20
|
+
var link_wrapper = "_1r4ovbuu";
|
|
20
21
|
export {
|
|
21
22
|
billboard_icon,
|
|
22
23
|
buttons,
|
|
@@ -25,6 +26,7 @@ export {
|
|
|
25
26
|
headerIconBillboard,
|
|
26
27
|
header_section,
|
|
27
28
|
layout,
|
|
29
|
+
link_wrapper,
|
|
28
30
|
list,
|
|
29
31
|
listItem,
|
|
30
32
|
section_body,
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import clsx from "clsx";
|
|
3
4
|
import { useRef, useState, useEffect, createElement } from "react";
|
|
4
5
|
import { BulletItem } from "../BulletItem/BulletItem.js";
|
|
5
6
|
import { Chevron } from "../Chevron/index.js";
|
|
6
7
|
import { getVariant } from "../utils/getVariant.js";
|
|
7
|
-
import clsx from "clsx";
|
|
8
8
|
import { Button } from "../Button/Button.js";
|
|
9
9
|
import "../Button/Button.css.js";
|
|
10
10
|
import "react-use";
|
|
11
|
-
import { billboard_icon, layout, headerIconBillboard, title, list, content, buttons, containerIconBillboard } from "./IconBillboard.css.js";
|
|
11
|
+
import { billboard_icon, layout, headerIconBillboard, title, list, content, buttons, containerIconBillboard, link_wrapper } from "./IconBillboard.css.js";
|
|
12
12
|
const Icon = ({ children }) => /* @__PURE__ */ jsx("div", { className: billboard_icon, role: "presentation", children });
|
|
13
13
|
const IconBillboard = (props) => {
|
|
14
14
|
const {
|
|
@@ -36,15 +36,42 @@ const IconBillboard = (props) => {
|
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
}, []);
|
|
39
|
+
let chevronCount = 0;
|
|
40
|
+
let buttonCount = 0;
|
|
41
|
+
let chevronUrl;
|
|
42
|
+
let chevronText;
|
|
43
|
+
if (callToActionRow && callToActionRow.length > 0) {
|
|
44
|
+
callToActionRow.forEach((cta) => {
|
|
45
|
+
if (cta.type === "Button") {
|
|
46
|
+
buttonCount++;
|
|
47
|
+
} else {
|
|
48
|
+
chevronCount++;
|
|
49
|
+
chevronUrl = cta.targetUrl;
|
|
50
|
+
chevronText = cta.displayText;
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
const isClickable = chevronCount === 1 && buttonCount === 0 && typeof chevronUrl === "string" && chevronUrl.length > 0;
|
|
55
|
+
const handleClick = (e) => {
|
|
56
|
+
if (!isClickable) return;
|
|
57
|
+
const linkEl = e.currentTarget.querySelector("a");
|
|
58
|
+
if (linkEl && linkEl instanceof HTMLAnchorElement) {
|
|
59
|
+
window.location.href = linkEl.href;
|
|
60
|
+
}
|
|
61
|
+
};
|
|
39
62
|
return /* @__PURE__ */ jsxs(
|
|
40
63
|
"div",
|
|
41
64
|
{
|
|
42
65
|
className: clsx(
|
|
43
66
|
containerIconBillboard({ variant }),
|
|
44
67
|
`${set ? "" : "containment"}`,
|
|
45
|
-
"billboard rounded flex_col gap_24 is_icon"
|
|
68
|
+
"billboard rounded flex_col gap_24 is_icon",
|
|
69
|
+
isClickable && link_wrapper
|
|
46
70
|
),
|
|
47
71
|
id,
|
|
72
|
+
onClick: handleClick,
|
|
73
|
+
role: isClickable ? "link" : void 0,
|
|
74
|
+
title: isClickable ? chevronText : void 0,
|
|
48
75
|
children: [
|
|
49
76
|
/* @__PURE__ */ jsxs("div", { className: `flex_col middle ${layout({ side })}`, children: [
|
|
50
77
|
icon && /* @__PURE__ */ jsx(Icon, { children: /* @__PURE__ */ jsx(
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Icon, IconBillboard } from "./IconBillboard.js";
|
|
2
|
-
import { billboard_icon, buttons, containerIconBillboard, content, headerIconBillboard, header_section, layout, list, listItem, section_body, section_container, section_text, title } from "./IconBillboard.css.js";
|
|
2
|
+
import { billboard_icon, buttons, containerIconBillboard, content, headerIconBillboard, header_section, layout, link_wrapper, list, listItem, section_body, section_container, section_text, title } from "./IconBillboard.css.js";
|
|
3
3
|
import { IconBillboardSet } from "./IconBillboardSet.js";
|
|
4
4
|
export {
|
|
5
5
|
Icon,
|
|
@@ -12,6 +12,7 @@ export {
|
|
|
12
12
|
headerIconBillboard,
|
|
13
13
|
header_section,
|
|
14
14
|
layout,
|
|
15
|
+
link_wrapper,
|
|
15
16
|
list,
|
|
16
17
|
listItem,
|
|
17
18
|
section_body,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
2
|
+
import "clsx";
|
|
2
3
|
import "react";
|
|
3
4
|
import { buttons } from "../IconBillboard/IconBillboard.css.js";
|
|
4
5
|
import "../icons/ArrowIcon/ArrowIcon.css.js";
|
|
@@ -10,7 +11,6 @@ import '../assets/VideoWrapper/VideoWrapper.css';import '../assets/TopicalNavSet
|
|
|
10
11
|
/* empty css */
|
|
11
12
|
import "../utils/allowedAxosDomains.js";
|
|
12
13
|
import { getVariant } from "../utils/getVariant.js";
|
|
13
|
-
import "clsx";
|
|
14
14
|
/* empty css */
|
|
15
15
|
/* empty css */
|
|
16
16
|
import { Chevron } from "../Chevron/index.js";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { Chevron } from "../../Chevron/index.js";
|
|
3
|
+
import clsx from "clsx";
|
|
3
4
|
import "react";
|
|
4
5
|
import { title } from "../../IconBillboard/IconBillboard.css.js";
|
|
5
6
|
import "../../icons/ArrowIcon/ArrowIcon.css.js";
|
|
@@ -11,7 +12,6 @@ import '../../assets/Modal/Modal.css';import '../../assets/VideoWrapper/VideoWra
|
|
|
11
12
|
/* empty css */
|
|
12
13
|
/* empty css */
|
|
13
14
|
import "../../utils/allowedAxosDomains.js";
|
|
14
|
-
import clsx from "clsx";
|
|
15
15
|
/* empty css */
|
|
16
16
|
/* empty css */
|
|
17
17
|
import "../../Interstitial/Interstitial-variants.css.js";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import clsx from "clsx";
|
|
2
3
|
import { Fragment } from "react";
|
|
3
4
|
import { title } from "../../IconBillboard/IconBillboard.css.js";
|
|
4
5
|
import "../../icons/ArrowIcon/ArrowIcon.css.js";
|
|
@@ -11,7 +12,6 @@ import '../../assets/VideoWrapper/VideoWrapper.css';import '../../assets/Topical
|
|
|
11
12
|
/* empty css */
|
|
12
13
|
import "../../utils/allowedAxosDomains.js";
|
|
13
14
|
import { getVariant } from "../../utils/getVariant.js";
|
|
14
|
-
import clsx from "clsx";
|
|
15
15
|
/* empty css */
|
|
16
16
|
/* empty css */
|
|
17
17
|
import "../../Accordion/Accordion.js";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import clsx from "clsx";
|
|
2
3
|
import "react";
|
|
3
4
|
import { title } from "../../IconBillboard/IconBillboard.css.js";
|
|
4
5
|
import "../../icons/ArrowIcon/ArrowIcon.css.js";
|
|
@@ -9,7 +10,6 @@ import '../../assets/VideoWrapper/VideoWrapper.css';import '../../assets/Topical
|
|
|
9
10
|
/* empty css */
|
|
10
11
|
/* empty css */
|
|
11
12
|
import "../../utils/allowedAxosDomains.js";
|
|
12
|
-
import clsx from "clsx";
|
|
13
13
|
/* empty css */
|
|
14
14
|
/* empty css */
|
|
15
15
|
import "../../Accordion/Accordion.js";
|
|
@@ -4,12 +4,12 @@ import { Button } from "../../Button/Button.js";
|
|
|
4
4
|
import "../../Button/Button.css.js";
|
|
5
5
|
import { useRef, useState, useEffect } from "react";
|
|
6
6
|
import "react-use";
|
|
7
|
+
import "../../utils/allowedAxosDomains.js";
|
|
8
|
+
import { appendQueryParams } from "../../utils/appendQueryParams.js";
|
|
7
9
|
import clsx from "clsx";
|
|
8
10
|
import { usePathname } from "next/navigation.js";
|
|
9
11
|
import styles from "./NavBar.module.js";
|
|
10
12
|
import { sub_nav, absolute, dd_media, dd_media_btn } from "./SubNavbar.css.js";
|
|
11
|
-
import "../../utils/allowedAxosDomains.js";
|
|
12
|
-
import { appendQueryParams } from "../../utils/appendQueryParams.js";
|
|
13
13
|
function SubNavBar() {
|
|
14
14
|
const subNav1 = useRef(null);
|
|
15
15
|
const [isMouseOver, setIsMouseOver] = useState(false);
|
|
@@ -245,14 +245,7 @@ function SubNavBar() {
|
|
|
245
245
|
children: "Advisor Private Client Banking"
|
|
246
246
|
}
|
|
247
247
|
) }),
|
|
248
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "/products/insureguard-for-advisor", children: "InsureGuard+" }) })
|
|
249
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
250
|
-
"a",
|
|
251
|
-
{
|
|
252
|
-
href: "/products/premier-world-checking-and-savings",
|
|
253
|
-
children: "Advisor World Checking and Savings"
|
|
254
|
-
}
|
|
255
|
-
) })
|
|
248
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx("a", { href: "/products/insureguard-for-advisor", children: "InsureGuard+" }) })
|
|
256
249
|
] })
|
|
257
250
|
] }) }),
|
|
258
251
|
/* @__PURE__ */ jsx("div", { className: `flex_row ${styles.dd_footer}`, children: /* @__PURE__ */ jsxs("p", { children: [
|
|
@@ -4,14 +4,14 @@ import { Button } from "../../Button/Button.js";
|
|
|
4
4
|
import "../../Button/Button.css.js";
|
|
5
5
|
import { useState, useRef, useEffect } from "react";
|
|
6
6
|
import { useClickAway } from "react-use";
|
|
7
|
+
import "../../utils/allowedAxosDomains.js";
|
|
8
|
+
import { appendQueryParams } from "../../utils/appendQueryParams.js";
|
|
7
9
|
import clsx from "clsx";
|
|
8
10
|
import { NavItem } from "../NavItem/index.js";
|
|
9
11
|
import { Sign_in_btn, expand } from "./NavBar.css.js";
|
|
10
12
|
import styles from "./NavBar.module.js";
|
|
11
13
|
import { navItems } from "./NavData.js";
|
|
12
14
|
import SubNavBar from "./SubNavBar.js";
|
|
13
|
-
import "../../utils/allowedAxosDomains.js";
|
|
14
|
-
import { appendQueryParams } from "../../utils/appendQueryParams.js";
|
|
15
15
|
function NavBar() {
|
|
16
16
|
const [isOpenSignIn, setisOpenSignIn] = useState(false);
|
|
17
17
|
const [isOpenSignInToggle, setisOpenSignInToggle] = useState(false);
|
|
@@ -343,15 +343,7 @@ function NavBar() {
|
|
|
343
343
|
children: "Advisor Private Client Banking"
|
|
344
344
|
}
|
|
345
345
|
),
|
|
346
|
-
/* @__PURE__ */ jsx("a", { href: "/products/insureguard-for-advisor", role: "menuitem", children: "InsureGuard+" })
|
|
347
|
-
/* @__PURE__ */ jsx(
|
|
348
|
-
"a",
|
|
349
|
-
{
|
|
350
|
-
href: "/products/premier-world-checking-and-savings",
|
|
351
|
-
role: "menuitem",
|
|
352
|
-
children: "Advisor World Checking and Savings"
|
|
353
|
-
}
|
|
354
|
-
)
|
|
346
|
+
/* @__PURE__ */ jsx("a", { href: "/products/insureguard-for-advisor", role: "menuitem", children: "InsureGuard+" })
|
|
355
347
|
]
|
|
356
348
|
}
|
|
357
349
|
)
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import '../../../assets/NavigationMenu/AxosBank/MobileMenu/MobileMenu.css.css';const overlay = "
|
|
2
|
-
const drawer = "
|
|
3
|
-
const hamburger = "
|
|
4
|
-
const header = "
|
|
5
|
-
const back = "
|
|
6
|
-
const close = "
|
|
7
|
-
const levelContainer = "
|
|
8
|
-
const level = "
|
|
9
|
-
const levelTitle = "
|
|
10
|
-
const menu = "
|
|
11
|
-
const menuItem = "
|
|
12
|
-
const chevron = "
|
|
13
|
-
const chevronIcon = "
|
|
14
|
-
const quickLinks = "
|
|
15
|
-
const quickLink = "
|
|
16
|
-
const sr_only = "
|
|
1
|
+
import '../../../assets/NavigationMenu/AxosBank/MobileMenu/MobileMenu.css.css';const overlay = "_overlay_1s2qa_1";
|
|
2
|
+
const drawer = "_drawer_1s2qa_9";
|
|
3
|
+
const hamburger = "_hamburger_1s2qa_29";
|
|
4
|
+
const header = "_header_1s2qa_40";
|
|
5
|
+
const back = "_back_1s2qa_51";
|
|
6
|
+
const close = "_close_1s2qa_62";
|
|
7
|
+
const levelContainer = "_levelContainer_1s2qa_69";
|
|
8
|
+
const level = "_level_1s2qa_69";
|
|
9
|
+
const levelTitle = "_levelTitle_1s2qa_85";
|
|
10
|
+
const menu = "_menu_1s2qa_90";
|
|
11
|
+
const menuItem = "_menuItem_1s2qa_110";
|
|
12
|
+
const chevron = "_chevron_1s2qa_126";
|
|
13
|
+
const chevronIcon = "_chevronIcon_1s2qa_131";
|
|
14
|
+
const quickLinks = "_quickLinks_1s2qa_142";
|
|
15
|
+
const quickLink = "_quickLink_1s2qa_142";
|
|
16
|
+
const sr_only = "_sr_only_1s2qa_166";
|
|
17
17
|
const styles = {
|
|
18
18
|
overlay,
|
|
19
19
|
drawer,
|
|
@@ -171,9 +171,6 @@ const menuData = {
|
|
|
171
171
|
),
|
|
172
172
|
"InsureGuard+": findMoreAxosDomains(
|
|
173
173
|
"{AXOSBANK}/personal/bank/premier/insureguard-savings"
|
|
174
|
-
),
|
|
175
|
-
"World Checking & Savings": findMoreAxosDomains(
|
|
176
|
-
"{AXOSBANK}/personal/bank/premier/world-checking-and-savings"
|
|
177
174
|
)
|
|
178
175
|
},
|
|
179
176
|
"ATM Locator": findMoreAxosDomains(
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosBank/NavBar.css.css';const header = "
|
|
2
|
-
const wrapper = "
|
|
3
|
-
const header_main_row = "
|
|
4
|
-
const logo_wrap = "
|
|
5
|
-
const primary_links = "
|
|
6
|
-
const main_nav_link = "
|
|
7
|
-
const sub_nav_link = "
|
|
8
|
-
const signin_wrap = "
|
|
9
|
-
const signin_btn = "
|
|
10
|
-
const header_sub_row = "
|
|
11
|
-
const signin_dropdown = "
|
|
12
|
-
const shadow = "
|
|
13
|
-
const signin_header = "
|
|
14
|
-
const signin_subheader = "
|
|
15
|
-
const opacity = "
|
|
16
|
-
const fadeInDown = "
|
|
17
|
-
const signin_footer = "
|
|
18
|
-
const open = "
|
|
19
|
-
const dd_wrapper = "
|
|
20
|
-
const dd_media = "
|
|
21
|
-
const dd_media_img = "
|
|
22
|
-
const dd_site_navs = "
|
|
23
|
-
const dd_media_header = "
|
|
24
|
-
const mt_8 = "
|
|
25
|
-
const mt_16 = "
|
|
26
|
-
const ml_8 = "
|
|
27
|
-
const dd_media_cta = "
|
|
28
|
-
const reversed_row = "
|
|
29
|
-
const headline = "
|
|
30
|
-
const nav_anchor = "
|
|
31
|
-
const headline_cta = "
|
|
32
|
-
const site_lists = "
|
|
33
|
-
const mobile_only = "
|
|
34
|
-
const mobile_logo = "
|
|
35
|
-
const highlight = "
|
|
36
|
-
const mobile_opened = "
|
|
37
|
-
const dd_footer = "
|
|
38
|
-
const skip_btn = "
|
|
39
|
-
const desktop_only = "
|
|
1
|
+
import '../../assets/NavigationMenu/AxosBank/NavBar.css.css';const header = "_header_68bu0_1";
|
|
2
|
+
const wrapper = "_wrapper_68bu0_5";
|
|
3
|
+
const header_main_row = "_header_main_row_68bu0_11";
|
|
4
|
+
const logo_wrap = "_logo_wrap_68bu0_17";
|
|
5
|
+
const primary_links = "_primary_links_68bu0_21";
|
|
6
|
+
const main_nav_link = "_main_nav_link_68bu0_25";
|
|
7
|
+
const sub_nav_link = "_sub_nav_link_68bu0_57";
|
|
8
|
+
const signin_wrap = "_signin_wrap_68bu0_59";
|
|
9
|
+
const signin_btn = "_signin_btn_68bu0_60";
|
|
10
|
+
const header_sub_row = "_header_sub_row_68bu0_97";
|
|
11
|
+
const signin_dropdown = "_signin_dropdown_68bu0_129";
|
|
12
|
+
const shadow = "_shadow_68bu0_139";
|
|
13
|
+
const signin_header = "_signin_header_68bu0_149";
|
|
14
|
+
const signin_subheader = "_signin_subheader_68bu0_156";
|
|
15
|
+
const opacity = "_opacity_68bu0_178";
|
|
16
|
+
const fadeInDown = "_fadeInDown_68bu0_1";
|
|
17
|
+
const signin_footer = "_signin_footer_68bu0_184";
|
|
18
|
+
const open = "_open_68bu0_205";
|
|
19
|
+
const dd_wrapper = "_dd_wrapper_68bu0_217";
|
|
20
|
+
const dd_media = "_dd_media_68bu0_226";
|
|
21
|
+
const dd_media_img = "_dd_media_img_68bu0_231";
|
|
22
|
+
const dd_site_navs = "_dd_site_navs_68bu0_235";
|
|
23
|
+
const dd_media_header = "_dd_media_header_68bu0_242";
|
|
24
|
+
const mt_8 = "_mt_8_68bu0_252";
|
|
25
|
+
const mt_16 = "_mt_16_68bu0_256";
|
|
26
|
+
const ml_8 = "_ml_8_68bu0_260";
|
|
27
|
+
const dd_media_cta = "_dd_media_cta_68bu0_264";
|
|
28
|
+
const reversed_row = "_reversed_row_68bu0_296";
|
|
29
|
+
const headline = "_headline_68bu0_306";
|
|
30
|
+
const nav_anchor = "_nav_anchor_68bu0_314";
|
|
31
|
+
const headline_cta = "_headline_cta_68bu0_322";
|
|
32
|
+
const site_lists = "_site_lists_68bu0_337";
|
|
33
|
+
const mobile_only = "_mobile_only_68bu0_375";
|
|
34
|
+
const mobile_logo = "_mobile_logo_68bu0_381";
|
|
35
|
+
const highlight = "_highlight_68bu0_388";
|
|
36
|
+
const mobile_opened = "_mobile_opened_68bu0_394";
|
|
37
|
+
const dd_footer = "_dd_footer_68bu0_402";
|
|
38
|
+
const skip_btn = "_skip_btn_68bu0_410";
|
|
39
|
+
const desktop_only = "_desktop_only_68bu0_446";
|
|
40
40
|
const styles = {
|
|
41
41
|
header,
|
|
42
42
|
wrapper,
|
|
@@ -1024,15 +1024,6 @@ function SubNavBar() {
|
|
|
1024
1024
|
),
|
|
1025
1025
|
children: "InsureGuard+"
|
|
1026
1026
|
}
|
|
1027
|
-
) }),
|
|
1028
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
1029
|
-
Link,
|
|
1030
|
-
{
|
|
1031
|
-
href: findMoreAxosDomains(
|
|
1032
|
-
"{AXOSBANK}/personal/bank/premier/world-checking-and-savings"
|
|
1033
|
-
),
|
|
1034
|
-
children: "World Checking & Savings"
|
|
1035
|
-
}
|
|
1036
1027
|
) })
|
|
1037
1028
|
] })
|
|
1038
1029
|
] }),
|