@axos-web-dev/shared-components 1.0.77-patch.47 → 1.0.77-patch.48
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/BuyDownCalculator/BuyDownCalculator.css.d.ts +0 -1
- package/dist/Calculators/BuyDownCalculator/BuyDownCalculator.css.js +2 -4
- package/dist/Calculators/BuyDownCalculator/index.d.ts +5 -1
- package/dist/Calculators/BuyDownCalculator/index.js +267 -141
- package/dist/Calculators/Calculator.js +1 -1
- package/dist/Chatbot/ChatWindow.css.js +1 -0
- package/dist/Chatbot/Chatbot.css.js +0 -1
- package/dist/Forms/FormEnums.js +57 -16
- package/dist/Forms/SuccesForm.js +1 -1
- package/dist/Input/Dropdown.js +1 -0
- 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 +3 -3
- package/dist/NavigationMenu/AxosBank/MobileMenu/MobileNavData.js +3 -3
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +39 -39
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +10 -8
- 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/Calculators/BuyDownCalculator/BuyDownCalculator.css +1 -7
- 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/package.json +135 -135
package/dist/Forms/FormEnums.js
CHANGED
|
@@ -177,20 +177,8 @@ const Fico = [
|
|
|
177
177
|
{ value: "720-759", text: "720-759" },
|
|
178
178
|
{ value: "700-719", text: "700-719" }
|
|
179
179
|
];
|
|
180
|
-
const BuydownRate = [
|
|
181
|
-
|
|
182
|
-
{ value: 3.99, text: "3.99%" },
|
|
183
|
-
{ value: 4.99, text: "4.99%" },
|
|
184
|
-
{ value: 5.99, text: "5.99%" },
|
|
185
|
-
{ value: 6.99, text: "6.99%" }
|
|
186
|
-
];
|
|
187
|
-
const BuydownTerm = [
|
|
188
|
-
{ value: 1, text: "1 Year" },
|
|
189
|
-
{ value: 2, text: "2 Years" },
|
|
190
|
-
{ value: 3, text: "3 Years" },
|
|
191
|
-
{ value: 4, text: "4 Years" },
|
|
192
|
-
{ value: 5, text: "5 Years" }
|
|
193
|
-
];
|
|
180
|
+
const BuydownRate = [{ value: 3.74, text: "3.74%" }];
|
|
181
|
+
const BuydownTerm = [{ value: 3, text: "3 Years" }];
|
|
194
182
|
const LoanRates = /* @__PURE__ */ new Map([
|
|
195
183
|
[
|
|
196
184
|
"3/6 SOFR ARM",
|
|
@@ -299,7 +287,60 @@ const LoanRates = /* @__PURE__ */ new Map([
|
|
|
299
287
|
])
|
|
300
288
|
],
|
|
301
289
|
[
|
|
302
|
-
"20 Year Fixed
|
|
290
|
+
"20 Year Fixed Personal Use",
|
|
291
|
+
/* @__PURE__ */ new Map([
|
|
292
|
+
[
|
|
293
|
+
"800+",
|
|
294
|
+
/* @__PURE__ */ new Map([
|
|
295
|
+
["$75,000 ≤ $100,000", "8.240%"],
|
|
296
|
+
["$100,001 ≤ $150,000", "8.240%"],
|
|
297
|
+
["$150,001 ≤ $250,000", "7.590%"],
|
|
298
|
+
["$250,001 ≤ $500,000", "7.290%"],
|
|
299
|
+
["$500,001 ≤ $1,500,000", "7.090%"],
|
|
300
|
+
["$1,500,001 ≤ $2,000,000", "7.290%"],
|
|
301
|
+
["> $2,000,000", "7.540%"]
|
|
302
|
+
])
|
|
303
|
+
],
|
|
304
|
+
[
|
|
305
|
+
"760-799",
|
|
306
|
+
/* @__PURE__ */ new Map([
|
|
307
|
+
["$75,000 ≤ $100,000", "8.490%"],
|
|
308
|
+
["$100,001 ≤ $150,000", "8.490%"],
|
|
309
|
+
["$150,001 ≤ $250,000", "7.990%"],
|
|
310
|
+
["$250,001 ≤ $500,000", "7.690%"],
|
|
311
|
+
["$500,001 ≤ $1,500,000", "7.490%"],
|
|
312
|
+
["$1,500,001 ≤ $2,000,000", "7.790%"],
|
|
313
|
+
["> $2,000,000", "8.040%"]
|
|
314
|
+
])
|
|
315
|
+
],
|
|
316
|
+
[
|
|
317
|
+
"720-759",
|
|
318
|
+
/* @__PURE__ */ new Map([
|
|
319
|
+
["$75,000 ≤ $100,000", "8.740%"],
|
|
320
|
+
["$100,001 ≤ $150,000", "8.740%"],
|
|
321
|
+
["$150,001 ≤ $250,000", "8.490%"],
|
|
322
|
+
["$250,001 ≤ $500,000", "8.190%"],
|
|
323
|
+
["$500,001 ≤ $1,500,000", "7.990%"],
|
|
324
|
+
["$1,500,001 ≤ $2,000,000", "8.390%"],
|
|
325
|
+
["> $2,000,000", "N/A"]
|
|
326
|
+
])
|
|
327
|
+
],
|
|
328
|
+
[
|
|
329
|
+
"700-719",
|
|
330
|
+
/* @__PURE__ */ new Map([
|
|
331
|
+
["$75,000 ≤ $100,000", "9.240%"],
|
|
332
|
+
["$100,001 ≤ $150,000", "9.240%"],
|
|
333
|
+
["$150,001 ≤ $250,000", "8.990%"],
|
|
334
|
+
["$250,001 ≤ $500,000", "8.990%"],
|
|
335
|
+
["$500,001 ≤ $1,500,000", "8.490%"],
|
|
336
|
+
["$1,500,001 ≤ $2,000,000", "N/A"],
|
|
337
|
+
["> $2,000,000", "N/A"]
|
|
338
|
+
])
|
|
339
|
+
]
|
|
340
|
+
])
|
|
341
|
+
],
|
|
342
|
+
[
|
|
343
|
+
"20 Year Fixed Limited Charter",
|
|
303
344
|
/* @__PURE__ */ new Map([
|
|
304
345
|
[
|
|
305
346
|
"800+",
|
|
@@ -352,7 +393,7 @@ const LoanRates = /* @__PURE__ */ new Map([
|
|
|
352
393
|
])
|
|
353
394
|
],
|
|
354
395
|
[
|
|
355
|
-
"20 Year Fixed
|
|
396
|
+
"20 Year Fixed Full Time Charter",
|
|
356
397
|
/* @__PURE__ */ new Map([
|
|
357
398
|
[
|
|
358
399
|
"800+",
|
package/dist/Forms/SuccesForm.js
CHANGED
|
@@ -60,8 +60,8 @@ import "../Carousel/index.js";
|
|
|
60
60
|
/* empty css */
|
|
61
61
|
import "../Chatbot/store/chat.js";
|
|
62
62
|
import "../Chatbot/authenticate.js";
|
|
63
|
-
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
64
63
|
import "react-use";
|
|
64
|
+
import "../Chatbot/Chatbot.css.ts.vanilla.css.js";
|
|
65
65
|
/* empty css */
|
|
66
66
|
import "../Chatbot/store/messages.js";
|
|
67
67
|
/* empty css */
|
package/dist/Input/Dropdown.js
CHANGED
|
@@ -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,
|
|
@@ -69,11 +69,11 @@ export declare const menuData: {
|
|
|
69
69
|
"Managed Portfolios Home": string;
|
|
70
70
|
"Investing Details": string;
|
|
71
71
|
};
|
|
72
|
-
"Self
|
|
73
|
-
"Self
|
|
72
|
+
"Self-Directed Trading": {
|
|
73
|
+
"Self-Directed Trading Home": string;
|
|
74
74
|
"Axos Elite Investing": string;
|
|
75
75
|
"Stocks & ETFs": string;
|
|
76
|
-
"Margin
|
|
76
|
+
"Margin Trading": string;
|
|
77
77
|
"Options Trading": string;
|
|
78
78
|
};
|
|
79
79
|
Retirement: string;
|
|
@@ -277,8 +277,8 @@ const menuData = {
|
|
|
277
277
|
"{AXOS}/invest/managed-portfolios/investing-details"
|
|
278
278
|
)
|
|
279
279
|
},
|
|
280
|
-
"Self
|
|
281
|
-
"Self
|
|
280
|
+
"Self-Directed Trading": {
|
|
281
|
+
"Self-Directed Trading Home": findMoreAxosDomains(
|
|
282
282
|
"{AXOS}/invest/self-directed-trading"
|
|
283
283
|
),
|
|
284
284
|
"Axos Elite Investing": findMoreAxosDomains(
|
|
@@ -287,7 +287,7 @@ const menuData = {
|
|
|
287
287
|
"Stocks & ETFs": findMoreAxosDomains(
|
|
288
288
|
"{AXOS}/invest/self-directed-trading/commission-free-stocks-and-etfs"
|
|
289
289
|
),
|
|
290
|
-
"Margin
|
|
290
|
+
"Margin Trading": findMoreAxosDomains(
|
|
291
291
|
"{AXOS}/invest/self-directed-trading/margin-trading"
|
|
292
292
|
),
|
|
293
293
|
"Options Trading": 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,
|
|
@@ -1465,8 +1465,8 @@ function SubNavBar() {
|
|
|
1465
1465
|
className: `${styles.dd_media} ${styles.opacity} ${dd_media} text_center`,
|
|
1466
1466
|
children: [
|
|
1467
1467
|
/* @__PURE__ */ jsxs("div", { className: styles.dd_media_header, children: [
|
|
1468
|
-
/* @__PURE__ */ jsx("p", { role: "heading", children: "
|
|
1469
|
-
/* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "
|
|
1468
|
+
/* @__PURE__ */ jsx("p", { role: "heading", children: "Managed portfolios selection tool" }),
|
|
1469
|
+
/* @__PURE__ */ jsx("p", { className: styles.mt_8, children: "Investing made personal and powerful. Answer a few questions and discover curated stock, mutual fund, and ETF portfolios designed to match your financial lifecycle phase." })
|
|
1470
1470
|
] }),
|
|
1471
1471
|
/* @__PURE__ */ jsx(
|
|
1472
1472
|
"div",
|
|
@@ -1476,7 +1476,7 @@ function SubNavBar() {
|
|
|
1476
1476
|
"img",
|
|
1477
1477
|
{
|
|
1478
1478
|
src: findMoreAxosDomains(
|
|
1479
|
-
"{AXOS}/images/
|
|
1479
|
+
"{AXOS}/images/1Gg7yGe3iY6GFxTSxL3i1u/nav-submenu-managed-portfolios-selection-tool.png"
|
|
1480
1480
|
),
|
|
1481
1481
|
alt: "",
|
|
1482
1482
|
width: 232,
|
|
@@ -1492,9 +1492,11 @@ function SubNavBar() {
|
|
|
1492
1492
|
children: /* @__PURE__ */ jsx(
|
|
1493
1493
|
Link,
|
|
1494
1494
|
{
|
|
1495
|
-
href:
|
|
1496
|
-
|
|
1497
|
-
|
|
1495
|
+
href: findMoreAxosDomains(
|
|
1496
|
+
"{AXOS}/invest/managed-portfolios/questionnaire"
|
|
1497
|
+
),
|
|
1498
|
+
"aria-label": "learn more about managed portfolios.",
|
|
1499
|
+
className: "text_center bg_white",
|
|
1498
1500
|
children: "Learn More"
|
|
1499
1501
|
}
|
|
1500
1502
|
)
|
|
@@ -1604,7 +1606,7 @@ function SubNavBar() {
|
|
|
1604
1606
|
"{AXOS}/invest/self-directed-trading"
|
|
1605
1607
|
),
|
|
1606
1608
|
role: "heading",
|
|
1607
|
-
children: "Self
|
|
1609
|
+
children: "Self-Directed Trading"
|
|
1608
1610
|
}
|
|
1609
1611
|
) }),
|
|
1610
1612
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
@@ -1631,7 +1633,7 @@ function SubNavBar() {
|
|
|
1631
1633
|
href: findMoreAxosDomains(
|
|
1632
1634
|
"{AXOS}/invest/self-directed-trading/margin-trading"
|
|
1633
1635
|
),
|
|
1634
|
-
children: "Margin
|
|
1636
|
+
children: "Margin Trading"
|
|
1635
1637
|
}
|
|
1636
1638
|
) }),
|
|
1637
1639
|
/* @__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,
|