@axos-web-dev/shared-components 1.0.77-patch.33 → 1.0.77-patch.35
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/Avatar/Avatar.module.js +7 -7
- package/dist/Blockquote/Blockquote.module.js +3 -3
- package/dist/Calculators/ApyCalculator/index.js +11 -5
- package/dist/Calculators/BuyDownCalculator/index.js +1 -1
- package/dist/Chatbot/Chatbot.d.ts +0 -1
- package/dist/Chatbot/Chatbot.js +1 -2
- package/dist/Chatbot/useHeadlessChat.d.ts +1 -2
- package/dist/Chatbot/useHeadlessChat.js +4 -5
- package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +52 -52
- package/dist/NavigationMenu/AxosAdvisorServices/NavBar.module.js +53 -53
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileMenu.module.js +16 -16
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.d.ts +1 -1
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.js +1 -1
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +39 -39
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +1 -1
- package/dist/NavigationMenu/AxosClearing/NavBar.module.js +37 -37
- package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +41 -41
- package/dist/assets/Avatar/Avatar.css.css +59 -59
- package/dist/assets/Blockquote/Blockquote.css.css +68 -68
- package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +597 -597
- package/dist/assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css +618 -618
- package/dist/assets/NavigationMenu/AxosBank/MobileMenu/MobileMenu.css.css +191 -191
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +473 -473
- package/dist/assets/NavigationMenu/AxosClearing/NavBar.css.css +458 -458
- package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +426 -426
- package/dist/assets/TopicalNavItem/TopicalNavItem.css +2 -2
- package/package.json +135 -135
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import '../assets/Avatar/Avatar.css.css';const avatar_sec = "
|
|
2
|
-
const container = "
|
|
3
|
-
const image = "
|
|
4
|
-
const text = "
|
|
5
|
-
const name = "
|
|
6
|
-
const title = "
|
|
7
|
-
const description = "
|
|
1
|
+
import '../assets/Avatar/Avatar.css.css';const avatar_sec = "_avatar_sec_wf36a_1";
|
|
2
|
+
const container = "_container_wf36a_9";
|
|
3
|
+
const image = "_image_wf36a_27";
|
|
4
|
+
const text = "_text_wf36a_45";
|
|
5
|
+
const name = "_name_wf36a_57";
|
|
6
|
+
const title = "_title_wf36a_73";
|
|
7
|
+
const description = "_description_wf36a_87";
|
|
8
8
|
const css = {
|
|
9
9
|
avatar_sec,
|
|
10
10
|
container,
|
|
@@ -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_1r8g1_1";
|
|
2
|
+
const author = "_author_1r8g1_13";
|
|
3
|
+
const quote = "_quote_1r8g1_1";
|
|
4
4
|
const css = {
|
|
5
5
|
quote_spacer,
|
|
6
6
|
author,
|
|
@@ -16,12 +16,20 @@ const ApyCalculator = ({
|
|
|
16
16
|
variant
|
|
17
17
|
}) => {
|
|
18
18
|
const calculator_variant = getVariant(variant);
|
|
19
|
+
const [compounding, setCompounding] = useState(360);
|
|
20
|
+
const getAPR = (apy) => {
|
|
21
|
+
return Number.parseFloat(
|
|
22
|
+
(((1 + apy / 100) ** (1 / compounding) - 1) * compounding * 100).toFixed(
|
|
23
|
+
2
|
|
24
|
+
)
|
|
25
|
+
);
|
|
26
|
+
};
|
|
19
27
|
const AXOS_ONE_APY = +process.env.NEXT_PUBLIC_AXOS_ONE_APY;
|
|
28
|
+
const AXOS_ONE_APR = getAPR(AXOS_ONE_APY);
|
|
20
29
|
const [initialDeposit, setInititalDeposit] = useState(1e3);
|
|
21
|
-
const [APR, setAPR] = useState(
|
|
30
|
+
const [APR, setAPR] = useState(AXOS_ONE_APR);
|
|
22
31
|
const [APY, setAPY] = useState(AXOS_ONE_APY);
|
|
23
32
|
const [months, setMonths] = useState(12);
|
|
24
|
-
const [compounding, setCompounding] = useState(360);
|
|
25
33
|
const [monthlyDeposits, setMonthlyDeposits] = useState(100);
|
|
26
34
|
const [endingBalance, setEndingBalance] = useState("");
|
|
27
35
|
const [errors, setErrors] = useState([]);
|
|
@@ -103,9 +111,7 @@ const ApyCalculator = ({
|
|
|
103
111
|
};
|
|
104
112
|
const updateAPY = (value) => {
|
|
105
113
|
setAPY(value);
|
|
106
|
-
const new_apr =
|
|
107
|
-
(((1 + value / 100) ** (1 / compounding) - 1) * compounding * 100).toFixed(2)
|
|
108
|
-
);
|
|
114
|
+
const new_apr = getAPR(value);
|
|
109
115
|
setAPR(new_apr);
|
|
110
116
|
convertInterest();
|
|
111
117
|
};
|
|
@@ -622,7 +622,7 @@ const BuyDownCalculator = ({
|
|
|
622
622
|
id: "mooringOutsideContinentalUS",
|
|
623
623
|
...register("mooringOutsideContinentalUS"),
|
|
624
624
|
value: 0.5,
|
|
625
|
-
radioText: "Mooring Outside Continental U.S. (Includes Puerto Rico,\n Hawaii, and Alaska) (Does not apply to Full Time Charter)\n +0.500",
|
|
625
|
+
radioText: "Mooring Outside Continental U.S. (Includes Puerto Rico,\r\n Hawaii, and Alaska) (Does not apply to Full Time Charter)\r\n +0.500",
|
|
626
626
|
groupName: "dependentInputs",
|
|
627
627
|
disabled: disableMooringOutside
|
|
628
628
|
}
|
package/dist/Chatbot/Chatbot.js
CHANGED
|
@@ -17,8 +17,7 @@ const Chatbot = (props) => {
|
|
|
17
17
|
// or your region
|
|
18
18
|
projectId: process.env.CCAI_PROJECT_ID || props.project || "axos",
|
|
19
19
|
getToken: authenticate,
|
|
20
|
-
debug: props.debug || process.env.NODE_ENV === "development"
|
|
21
|
-
env_project: props.env || "prod"
|
|
20
|
+
debug: props.debug || process.env.NODE_ENV === "development"
|
|
22
21
|
});
|
|
23
22
|
return /* @__PURE__ */ jsxs("div", { className: props.project === "ufb" ? chatbotUFB : chatbotAXB, children: [
|
|
24
23
|
/* @__PURE__ */ jsx(Bubble, {}),
|
|
@@ -9,7 +9,6 @@ interface UseHeadlessChatOptions {
|
|
|
9
9
|
projectId?: "axos" | "" | "ufb" | string;
|
|
10
10
|
debug?: boolean;
|
|
11
11
|
menuOption?: string;
|
|
12
|
-
env_project?: "dev" | "qa" | "uat" | "prod";
|
|
13
12
|
}
|
|
14
13
|
export interface ChatMessage {
|
|
15
14
|
id: string;
|
|
@@ -17,7 +16,7 @@ export interface ChatMessage {
|
|
|
17
16
|
sender?: string;
|
|
18
17
|
timestamp?: string;
|
|
19
18
|
}
|
|
20
|
-
export declare function useHeadlessChat({ companyId, tenant, host, getToken, projectId, debug, menuOption,
|
|
19
|
+
export declare function useHeadlessChat({ companyId, tenant, host, getToken, projectId, debug, menuOption, }: UseHeadlessChatOptions): {
|
|
21
20
|
status: "error" | "idle" | "connected" | "connecting" | "finished";
|
|
22
21
|
sendMessage: (body: string) => Promise<void>;
|
|
23
22
|
showReconnect: boolean;
|
|
@@ -14,8 +14,7 @@ function useHeadlessChat({
|
|
|
14
14
|
getToken,
|
|
15
15
|
projectId = "axos",
|
|
16
16
|
debug = false,
|
|
17
|
-
menuOption = "Support Virtual Agent"
|
|
18
|
-
env_project = "prod"
|
|
17
|
+
menuOption = "Support Virtual Agent"
|
|
19
18
|
}) {
|
|
20
19
|
const { hostname } = useLocation();
|
|
21
20
|
const addMessage = useMessages((state) => state.addMessage);
|
|
@@ -56,14 +55,14 @@ function useHeadlessChat({
|
|
|
56
55
|
},
|
|
57
56
|
env: {
|
|
58
57
|
label: "env",
|
|
59
|
-
value:
|
|
58
|
+
value: hostname?.includes("www") ? "prod" : hostname?.split(".")[1] ? hostname?.split(".")[1] : ""
|
|
60
59
|
}
|
|
61
60
|
}
|
|
62
61
|
}
|
|
63
62
|
}
|
|
64
63
|
);
|
|
65
64
|
}
|
|
66
|
-
}, [clearMessages,
|
|
65
|
+
}, [clearMessages, hostname, menuOption, projectId]);
|
|
67
66
|
useEffect(() => {
|
|
68
67
|
let messageHandler;
|
|
69
68
|
let chatReadyHandler;
|
|
@@ -115,7 +114,7 @@ function useHeadlessChat({
|
|
|
115
114
|
},
|
|
116
115
|
env: {
|
|
117
116
|
label: "env",
|
|
118
|
-
value:
|
|
117
|
+
value: hostname?.includes("www") ? "prod" : hostname?.split(".")[1] ? hostname?.split(".")[1] : ""
|
|
119
118
|
}
|
|
120
119
|
}
|
|
121
120
|
};
|
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosAdvisor/NavBar.css.css';const header = "
|
|
2
|
-
const wrapper = "
|
|
3
|
-
const header_main_row = "
|
|
4
|
-
const mobile_header = "
|
|
5
|
-
const logo_wrap = "
|
|
6
|
-
const primary_links = "
|
|
7
|
-
const main_nav_link = "
|
|
8
|
-
const sub_nav_link = "
|
|
9
|
-
const signin_wrap = "
|
|
10
|
-
const signin_btn = "
|
|
11
|
-
const header_sub_row = "
|
|
12
|
-
const signin_dropdown = "
|
|
13
|
-
const shadow = "
|
|
14
|
-
const signin_header = "
|
|
15
|
-
const signin_subheader = "
|
|
16
|
-
const opacity = "
|
|
17
|
-
const fadeInDown = "
|
|
18
|
-
const footer = "
|
|
19
|
-
const open = "
|
|
20
|
-
const dd_wrapper = "
|
|
21
|
-
const dd_media = "
|
|
22
|
-
const dd_media_img = "
|
|
23
|
-
const dd_site_navs = "
|
|
24
|
-
const dd_media_header = "
|
|
25
|
-
const mt_8 = "
|
|
26
|
-
const mt_16 = "
|
|
27
|
-
const ml_8 = "
|
|
28
|
-
const dd_media_cta = "
|
|
29
|
-
const reversed_row = "
|
|
30
|
-
const headline = "
|
|
31
|
-
const nav_anchor = "
|
|
32
|
-
const headline_cta = "
|
|
33
|
-
const site_lists = "
|
|
34
|
-
const hamburger = "
|
|
35
|
-
const mobile_only = "
|
|
36
|
-
const mobile_logo = "
|
|
37
|
-
const highlight = "
|
|
38
|
-
const mobile_nav = "
|
|
39
|
-
const mobile_opened = "
|
|
40
|
-
const mobile_nav_item = "
|
|
41
|
-
const has_dropdown = "
|
|
42
|
-
const icon_wrap = "
|
|
43
|
-
const mobile_footer = "
|
|
44
|
-
const mobile_footer_content = "
|
|
45
|
-
const mobile_footer_media = "
|
|
46
|
-
const footer_cta = "
|
|
47
|
-
const inner_wrapper = "
|
|
48
|
-
const btn = "
|
|
49
|
-
const sub_menu = "
|
|
50
|
-
const main = "
|
|
51
|
-
const dd_footer = "
|
|
52
|
-
const desktop_only = "
|
|
1
|
+
import '../../assets/NavigationMenu/AxosAdvisor/NavBar.css.css';const header = "_header_18tu3_1";
|
|
2
|
+
const wrapper = "_wrapper_18tu3_9";
|
|
3
|
+
const header_main_row = "_header_main_row_18tu3_19";
|
|
4
|
+
const mobile_header = "_mobile_header_18tu3_21";
|
|
5
|
+
const logo_wrap = "_logo_wrap_18tu3_33";
|
|
6
|
+
const primary_links = "_primary_links_18tu3_41";
|
|
7
|
+
const main_nav_link = "_main_nav_link_18tu3_49";
|
|
8
|
+
const sub_nav_link = "_sub_nav_link_18tu3_93";
|
|
9
|
+
const signin_wrap = "_signin_wrap_18tu3_97";
|
|
10
|
+
const signin_btn = "_signin_btn_18tu3_99";
|
|
11
|
+
const header_sub_row = "_header_sub_row_18tu3_175";
|
|
12
|
+
const signin_dropdown = "_signin_dropdown_18tu3_213";
|
|
13
|
+
const shadow = "_shadow_18tu3_233";
|
|
14
|
+
const signin_header = "_signin_header_18tu3_249";
|
|
15
|
+
const signin_subheader = "_signin_subheader_18tu3_263";
|
|
16
|
+
const opacity = "_opacity_18tu3_307";
|
|
17
|
+
const fadeInDown = "_fadeInDown_18tu3_1";
|
|
18
|
+
const footer = "_footer_18tu3_319";
|
|
19
|
+
const open = "_open_18tu3_351";
|
|
20
|
+
const dd_wrapper = "_dd_wrapper_18tu3_375";
|
|
21
|
+
const dd_media = "_dd_media_18tu3_385";
|
|
22
|
+
const dd_media_img = "_dd_media_img_18tu3_395";
|
|
23
|
+
const dd_site_navs = "_dd_site_navs_18tu3_403";
|
|
24
|
+
const dd_media_header = "_dd_media_header_18tu3_417";
|
|
25
|
+
const mt_8 = "_mt_8_18tu3_435";
|
|
26
|
+
const mt_16 = "_mt_16_18tu3_443";
|
|
27
|
+
const ml_8 = "_ml_8_18tu3_451";
|
|
28
|
+
const dd_media_cta = "_dd_media_cta_18tu3_459";
|
|
29
|
+
const reversed_row = "_reversed_row_18tu3_487";
|
|
30
|
+
const headline = "_headline_18tu3_519";
|
|
31
|
+
const nav_anchor = "_nav_anchor_18tu3_531";
|
|
32
|
+
const headline_cta = "_headline_cta_18tu3_547";
|
|
33
|
+
const site_lists = "_site_lists_18tu3_577";
|
|
34
|
+
const hamburger = "_hamburger_18tu3_647";
|
|
35
|
+
const mobile_only = "_mobile_only_18tu3_675";
|
|
36
|
+
const mobile_logo = "_mobile_logo_18tu3_687";
|
|
37
|
+
const highlight = "_highlight_18tu3_697";
|
|
38
|
+
const mobile_nav = "_mobile_nav_18tu3_769";
|
|
39
|
+
const mobile_opened = "_mobile_opened_18tu3_791";
|
|
40
|
+
const mobile_nav_item = "_mobile_nav_item_18tu3_807";
|
|
41
|
+
const has_dropdown = "_has_dropdown_18tu3_837";
|
|
42
|
+
const icon_wrap = "_icon_wrap_18tu3_879";
|
|
43
|
+
const mobile_footer = "_mobile_footer_18tu3_889";
|
|
44
|
+
const mobile_footer_content = "_mobile_footer_content_18tu3_899";
|
|
45
|
+
const mobile_footer_media = "_mobile_footer_media_18tu3_927";
|
|
46
|
+
const footer_cta = "_footer_cta_18tu3_939";
|
|
47
|
+
const inner_wrapper = "_inner_wrapper_18tu3_995";
|
|
48
|
+
const btn = "_btn_18tu3_1005";
|
|
49
|
+
const sub_menu = "_sub_menu_18tu3_1015";
|
|
50
|
+
const main = "_main_18tu3_49";
|
|
51
|
+
const dd_footer = "_dd_footer_18tu3_1065";
|
|
52
|
+
const desktop_only = "_desktop_only_18tu3_1103";
|
|
53
53
|
const styles = {
|
|
54
54
|
header,
|
|
55
55
|
wrapper,
|
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css';const header = "
|
|
2
|
-
const wrapper = "
|
|
3
|
-
const main_nav = "
|
|
4
|
-
const header_main_row = "
|
|
5
|
-
const mobile_header = "
|
|
6
|
-
const logo_wrap = "
|
|
7
|
-
const primary_links = "
|
|
8
|
-
const main_nav_link = "
|
|
9
|
-
const sub_nav_link = "
|
|
10
|
-
const signin_wrap = "
|
|
11
|
-
const signin_btn = "
|
|
12
|
-
const header_sub_row = "
|
|
13
|
-
const signin_dropdown = "
|
|
14
|
-
const shadow = "
|
|
15
|
-
const signin_header = "
|
|
16
|
-
const signin_subheader = "
|
|
17
|
-
const opacity = "
|
|
18
|
-
const fadeInDown = "
|
|
19
|
-
const footer = "
|
|
20
|
-
const open = "
|
|
21
|
-
const dd_wrapper = "
|
|
22
|
-
const dd_media = "
|
|
23
|
-
const dd_media_img = "
|
|
24
|
-
const dd_site_navs = "
|
|
25
|
-
const dd_media_header = "
|
|
26
|
-
const mt_8 = "
|
|
27
|
-
const mt_16 = "
|
|
28
|
-
const ml_8 = "
|
|
29
|
-
const dd_media_cta = "
|
|
30
|
-
const reversed_row = "
|
|
31
|
-
const headline = "
|
|
32
|
-
const nav_anchor = "
|
|
33
|
-
const headline_cta = "
|
|
34
|
-
const site_lists = "
|
|
35
|
-
const hamburger = "
|
|
36
|
-
const mobile_only = "
|
|
37
|
-
const mobile_logo = "
|
|
38
|
-
const highlight = "
|
|
39
|
-
const mobile_nav = "
|
|
40
|
-
const mobile_opened = "
|
|
41
|
-
const mobile_nav_item = "
|
|
42
|
-
const has_dropdown = "
|
|
43
|
-
const icon_wrap = "
|
|
44
|
-
const mobile_footer = "
|
|
45
|
-
const mobile_footer_content = "
|
|
46
|
-
const mobile_footer_media = "
|
|
47
|
-
const footer_cta = "
|
|
48
|
-
const inner_wrapper = "
|
|
49
|
-
const btn = "
|
|
50
|
-
const sub_menu = "
|
|
51
|
-
const main = "
|
|
52
|
-
const dd_footer = "
|
|
53
|
-
const desktop_only = "
|
|
1
|
+
import '../../assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css';const header = "_header_1pmyy_1";
|
|
2
|
+
const wrapper = "_wrapper_1pmyy_9";
|
|
3
|
+
const main_nav = "_main_nav_1pmyy_19";
|
|
4
|
+
const header_main_row = "_header_main_row_1pmyy_33";
|
|
5
|
+
const mobile_header = "_mobile_header_1pmyy_35";
|
|
6
|
+
const logo_wrap = "_logo_wrap_1pmyy_59";
|
|
7
|
+
const primary_links = "_primary_links_1pmyy_67";
|
|
8
|
+
const main_nav_link = "_main_nav_link_1pmyy_75";
|
|
9
|
+
const sub_nav_link = "_sub_nav_link_1pmyy_119";
|
|
10
|
+
const signin_wrap = "_signin_wrap_1pmyy_123";
|
|
11
|
+
const signin_btn = "_signin_btn_1pmyy_125";
|
|
12
|
+
const header_sub_row = "_header_sub_row_1pmyy_199";
|
|
13
|
+
const signin_dropdown = "_signin_dropdown_1pmyy_237";
|
|
14
|
+
const shadow = "_shadow_1pmyy_257";
|
|
15
|
+
const signin_header = "_signin_header_1pmyy_273";
|
|
16
|
+
const signin_subheader = "_signin_subheader_1pmyy_287";
|
|
17
|
+
const opacity = "_opacity_1pmyy_331";
|
|
18
|
+
const fadeInDown = "_fadeInDown_1pmyy_1";
|
|
19
|
+
const footer = "_footer_1pmyy_343";
|
|
20
|
+
const open = "_open_1pmyy_375";
|
|
21
|
+
const dd_wrapper = "_dd_wrapper_1pmyy_399";
|
|
22
|
+
const dd_media = "_dd_media_1pmyy_409";
|
|
23
|
+
const dd_media_img = "_dd_media_img_1pmyy_419";
|
|
24
|
+
const dd_site_navs = "_dd_site_navs_1pmyy_427";
|
|
25
|
+
const dd_media_header = "_dd_media_header_1pmyy_441";
|
|
26
|
+
const mt_8 = "_mt_8_1pmyy_459";
|
|
27
|
+
const mt_16 = "_mt_16_1pmyy_467";
|
|
28
|
+
const ml_8 = "_ml_8_1pmyy_475";
|
|
29
|
+
const dd_media_cta = "_dd_media_cta_1pmyy_483";
|
|
30
|
+
const reversed_row = "_reversed_row_1pmyy_511";
|
|
31
|
+
const headline = "_headline_1pmyy_543";
|
|
32
|
+
const nav_anchor = "_nav_anchor_1pmyy_555";
|
|
33
|
+
const headline_cta = "_headline_cta_1pmyy_571";
|
|
34
|
+
const site_lists = "_site_lists_1pmyy_601";
|
|
35
|
+
const hamburger = "_hamburger_1pmyy_671";
|
|
36
|
+
const mobile_only = "_mobile_only_1pmyy_699";
|
|
37
|
+
const mobile_logo = "_mobile_logo_1pmyy_711";
|
|
38
|
+
const highlight = "_highlight_1pmyy_721";
|
|
39
|
+
const mobile_nav = "_mobile_nav_1pmyy_793";
|
|
40
|
+
const mobile_opened = "_mobile_opened_1pmyy_815";
|
|
41
|
+
const mobile_nav_item = "_mobile_nav_item_1pmyy_831";
|
|
42
|
+
const has_dropdown = "_has_dropdown_1pmyy_861";
|
|
43
|
+
const icon_wrap = "_icon_wrap_1pmyy_903";
|
|
44
|
+
const mobile_footer = "_mobile_footer_1pmyy_913";
|
|
45
|
+
const mobile_footer_content = "_mobile_footer_content_1pmyy_923";
|
|
46
|
+
const mobile_footer_media = "_mobile_footer_media_1pmyy_953";
|
|
47
|
+
const footer_cta = "_footer_cta_1pmyy_965";
|
|
48
|
+
const inner_wrapper = "_inner_wrapper_1pmyy_1021";
|
|
49
|
+
const btn = "_btn_1pmyy_1031";
|
|
50
|
+
const sub_menu = "_sub_menu_1pmyy_1043";
|
|
51
|
+
const main = "_main_1pmyy_19";
|
|
52
|
+
const dd_footer = "_dd_footer_1pmyy_1093";
|
|
53
|
+
const desktop_only = "_desktop_only_1pmyy_1133";
|
|
54
54
|
const styles = {
|
|
55
55
|
header,
|
|
56
56
|
wrapper,
|
|
@@ -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_1rjre_1";
|
|
2
|
+
const drawer = "_drawer_1rjre_17";
|
|
3
|
+
const hamburger = "_hamburger_1rjre_57";
|
|
4
|
+
const header = "_header_1rjre_79";
|
|
5
|
+
const back = "_back_1rjre_101";
|
|
6
|
+
const close = "_close_1rjre_123";
|
|
7
|
+
const levelContainer = "_levelContainer_1rjre_137";
|
|
8
|
+
const level = "_level_1rjre_137";
|
|
9
|
+
const levelTitle = "_levelTitle_1rjre_169";
|
|
10
|
+
const menu = "_menu_1rjre_179";
|
|
11
|
+
const menuItem = "_menuItem_1rjre_219";
|
|
12
|
+
const chevron = "_chevron_1rjre_251";
|
|
13
|
+
const chevronIcon = "_chevronIcon_1rjre_261";
|
|
14
|
+
const quickLinks = "_quickLinks_1rjre_283";
|
|
15
|
+
const quickLink = "_quickLink_1rjre_283";
|
|
16
|
+
const sr_only = "_sr_only_1rjre_331";
|
|
17
17
|
const styles = {
|
|
18
18
|
overlay,
|
|
19
19
|
drawer,
|
|
@@ -189,7 +189,7 @@ export declare const menuData: {
|
|
|
189
189
|
"Residential Warehouse Lending": string;
|
|
190
190
|
"Small Balance Commercial Real Estate": string;
|
|
191
191
|
"Leveraged Finance": string;
|
|
192
|
-
"
|
|
192
|
+
"Dealer Floorplan Finance": string;
|
|
193
193
|
"Premium Finance": string;
|
|
194
194
|
};
|
|
195
195
|
"Other Resources": {
|
|
@@ -523,7 +523,7 @@ const menuData = {
|
|
|
523
523
|
"Leveraged Finance": findMoreAxosDomains(
|
|
524
524
|
"{AXOSBANK}/commercial/lending/leveraged-finance"
|
|
525
525
|
),
|
|
526
|
-
"
|
|
526
|
+
"Dealer Floorplan Finance": findMoreAxosDomains(
|
|
527
527
|
"{AXOSBANK}/pages/axos-capital-solutions"
|
|
528
528
|
),
|
|
529
529
|
"Premium Finance": 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_nom5w_1";
|
|
2
|
+
const wrapper = "_wrapper_nom5w_9";
|
|
3
|
+
const header_main_row = "_header_main_row_nom5w_21";
|
|
4
|
+
const logo_wrap = "_logo_wrap_nom5w_33";
|
|
5
|
+
const primary_links = "_primary_links_nom5w_41";
|
|
6
|
+
const main_nav_link = "_main_nav_link_nom5w_49";
|
|
7
|
+
const sub_nav_link = "_sub_nav_link_nom5w_113";
|
|
8
|
+
const signin_wrap = "_signin_wrap_nom5w_117";
|
|
9
|
+
const signin_btn = "_signin_btn_nom5w_119";
|
|
10
|
+
const header_sub_row = "_header_sub_row_nom5w_193";
|
|
11
|
+
const signin_dropdown = "_signin_dropdown_nom5w_257";
|
|
12
|
+
const shadow = "_shadow_nom5w_277";
|
|
13
|
+
const signin_header = "_signin_header_nom5w_297";
|
|
14
|
+
const signin_subheader = "_signin_subheader_nom5w_311";
|
|
15
|
+
const opacity = "_opacity_nom5w_355";
|
|
16
|
+
const fadeInDown = "_fadeInDown_nom5w_1";
|
|
17
|
+
const signin_footer = "_signin_footer_nom5w_367";
|
|
18
|
+
const open = "_open_nom5w_409";
|
|
19
|
+
const dd_wrapper = "_dd_wrapper_nom5w_433";
|
|
20
|
+
const dd_media = "_dd_media_nom5w_451";
|
|
21
|
+
const dd_media_img = "_dd_media_img_nom5w_461";
|
|
22
|
+
const dd_site_navs = "_dd_site_navs_nom5w_469";
|
|
23
|
+
const dd_media_header = "_dd_media_header_nom5w_483";
|
|
24
|
+
const mt_8 = "_mt_8_nom5w_503";
|
|
25
|
+
const mt_16 = "_mt_16_nom5w_511";
|
|
26
|
+
const ml_8 = "_ml_8_nom5w_519";
|
|
27
|
+
const dd_media_cta = "_dd_media_cta_nom5w_527";
|
|
28
|
+
const reversed_row = "_reversed_row_nom5w_591";
|
|
29
|
+
const headline = "_headline_nom5w_611";
|
|
30
|
+
const nav_anchor = "_nav_anchor_nom5w_627";
|
|
31
|
+
const headline_cta = "_headline_cta_nom5w_643";
|
|
32
|
+
const site_lists = "_site_lists_nom5w_673";
|
|
33
|
+
const mobile_only = "_mobile_only_nom5w_749";
|
|
34
|
+
const mobile_logo = "_mobile_logo_nom5w_761";
|
|
35
|
+
const highlight = "_highlight_nom5w_775";
|
|
36
|
+
const mobile_opened = "_mobile_opened_nom5w_787";
|
|
37
|
+
const dd_footer = "_dd_footer_nom5w_803";
|
|
38
|
+
const skip_btn = "_skip_btn_nom5w_819";
|
|
39
|
+
const desktop_only = "_desktop_only_nom5w_891";
|
|
40
40
|
const styles = {
|
|
41
41
|
header,
|
|
42
42
|
wrapper,
|
|
@@ -2964,7 +2964,7 @@ function SubNavBar() {
|
|
|
2964
2964
|
href: findMoreAxosDomains(
|
|
2965
2965
|
"{AXOSBANK}/pages/axos-capital-solutions"
|
|
2966
2966
|
),
|
|
2967
|
-
children: "
|
|
2967
|
+
children: "Dealer Floorplan Finance"
|
|
2968
2968
|
}
|
|
2969
2969
|
) }),
|
|
2970
2970
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
import '../../assets/NavigationMenu/AxosClearing/NavBar.css.css';const header = "
|
|
2
|
-
const wrapper = "
|
|
3
|
-
const header_main_row = "
|
|
4
|
-
const mobile_header = "
|
|
5
|
-
const logo_wrap = "
|
|
6
|
-
const primary_links = "
|
|
7
|
-
const main_nav_link = "
|
|
8
|
-
const sub_nav_link = "
|
|
9
|
-
const signin_wrap = "
|
|
10
|
-
const signin_btn = "
|
|
11
|
-
const sub_nav = "
|
|
12
|
-
const header_sub_row = "
|
|
13
|
-
const signin_dropdown = "
|
|
14
|
-
const shadow = "
|
|
15
|
-
const signin_subheader = "
|
|
16
|
-
const opacity = "
|
|
17
|
-
const fadeInDown = "
|
|
18
|
-
const open = "
|
|
19
|
-
const hamburger = "
|
|
20
|
-
const mobile_only = "
|
|
21
|
-
const mobile_logo = "
|
|
22
|
-
const highlight = "
|
|
23
|
-
const mobile_nav = "
|
|
24
|
-
const mobile_opened = "
|
|
25
|
-
const mobile_nav_item = "
|
|
26
|
-
const has_dropdown = "
|
|
27
|
-
const icon_wrap = "
|
|
28
|
-
const mobile_footer = "
|
|
29
|
-
const mobile_footer_content = "
|
|
30
|
-
const mobile_footer_media = "
|
|
31
|
-
const footer_cta = "
|
|
32
|
-
const inner_wrapper = "
|
|
33
|
-
const btn = "
|
|
34
|
-
const sub_menu = "
|
|
35
|
-
const main = "
|
|
36
|
-
const dd_footer = "
|
|
37
|
-
const desktop_only = "
|
|
1
|
+
import '../../assets/NavigationMenu/AxosClearing/NavBar.css.css';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,
|