@axos-web-dev/shared-components 0.0.91 → 0.0.92
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/ATMLocator/ATMLocator.js +2 -0
- package/dist/Calculators/Calculator.js +2 -0
- package/dist/CallToActionBar/index.js +47 -30
- package/dist/Carousel/index.js +2 -0
- package/dist/Chevron/index.js +2 -0
- package/dist/Comparison/Comparison.js +3 -1
- package/dist/Comparison/ComparisonSet.js +2 -0
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +2 -0
- package/dist/Forms/ContactUsBusiness.js +2 -0
- package/dist/Forms/ContactUsNMLSId.js +2 -0
- package/dist/Forms/EmailOnly.js +2 -0
- package/dist/Forms/SuccesForm.js +2 -0
- package/dist/Hyperlink/index.js +2 -0
- package/dist/ImageLink/ImageLink.js +2 -0
- package/dist/ImageLink/ImageLinkSet.js +2 -0
- package/dist/ImageLink/index.js +2 -0
- package/dist/Modal/Modal.js +2 -0
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +53 -53
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +1910 -1737
- package/dist/NavigationMenu/AxosBank/index.js +8 -15
- package/dist/NavigationMenu/AxosClearing/NavBar.css.d.ts +1 -0
- package/dist/NavigationMenu/AxosClearing/NavBar.css.js +5 -0
- package/dist/NavigationMenu/AxosClearing/NavBar.module.js +98 -0
- package/dist/NavigationMenu/AxosClearing/NavData.d.ts +21 -0
- package/dist/NavigationMenu/AxosClearing/NavData.js +63 -0
- package/dist/NavigationMenu/AxosClearing/SubNavBar.d.ts +1 -0
- package/dist/NavigationMenu/AxosClearing/SubNavBar.js +56 -0
- package/dist/NavigationMenu/AxosClearing/index.d.ts +2 -0
- package/dist/NavigationMenu/AxosClearing/index.js +470 -0
- package/dist/NavigationMenu/index.d.ts +1 -0
- package/dist/NavigationMenu/index.js +5 -3
- package/dist/SetContainer/SetContainer.js +2 -0
- package/dist/Table/Table.d.ts +13 -0
- package/dist/TopicalNavSet/TopicalNavSet.js +3 -3
- package/dist/assets/CallToActionBar/CallToActionBar.css +3 -1
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +126 -124
- package/dist/assets/NavigationMenu/AxosClearing/NavBar.css +4 -0
- package/dist/assets/NavigationMenu/AxosClearing/NavBar.css.css +405 -0
- package/dist/assets/globals.css +71 -0
- package/dist/icons/Clock/index.d.ts +4 -0
- package/dist/icons/Clock/index.js +22 -0
- package/dist/icons/index.d.ts +1 -0
- package/dist/icons/index.js +14 -12
- package/dist/main.js +52 -48
- package/dist/utils/allowedAxosDomains.js +1 -0
- package/package.json +1 -1
|
@@ -73,7 +73,9 @@ import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
|
73
73
|
/* empty css */
|
|
74
74
|
import "next/link.js";
|
|
75
75
|
/* empty css */
|
|
76
|
+
import "next/navigation.js";
|
|
76
77
|
/* empty css */
|
|
78
|
+
/* empty css */
|
|
77
79
|
/* empty css */
|
|
78
80
|
/* empty css */
|
|
79
81
|
import "../StepItem/StepItem.css.js";
|
|
@@ -63,10 +63,15 @@ const CallToActionBar = ({
|
|
|
63
63
|
children: /* @__PURE__ */ jsxs(
|
|
64
64
|
"div",
|
|
65
65
|
{
|
|
66
|
-
className:
|
|
66
|
+
className: clsx(
|
|
67
|
+
"containment",
|
|
68
|
+
"flex",
|
|
69
|
+
"middle",
|
|
70
|
+
row_reverse && image ? "reversed" : ""
|
|
71
|
+
),
|
|
67
72
|
style: { justifyContent: "center" },
|
|
68
73
|
children: [
|
|
69
|
-
banner_size !== "small" && !imageMobileView && image
|
|
74
|
+
banner_size !== "small" && !imageMobileView && image && /* @__PURE__ */ jsx(
|
|
70
75
|
"div",
|
|
71
76
|
{
|
|
72
77
|
className: `${cta_image_section} ${image_overlap ? cta_image_section_overlap : ""}`,
|
|
@@ -79,7 +84,7 @@ const CallToActionBar = ({
|
|
|
79
84
|
}
|
|
80
85
|
)
|
|
81
86
|
}
|
|
82
|
-
)
|
|
87
|
+
),
|
|
83
88
|
/* @__PURE__ */ jsxs(
|
|
84
89
|
"div",
|
|
85
90
|
{
|
|
@@ -88,6 +93,7 @@ const CallToActionBar = ({
|
|
|
88
93
|
banner_size !== "large" ? "flex middle" : "",
|
|
89
94
|
row_reverse ? "reversed" : ""
|
|
90
95
|
),
|
|
96
|
+
style: imageMobileView && !image ? { justifyContent: "center" } : {},
|
|
91
97
|
children: [
|
|
92
98
|
/* @__PURE__ */ jsxs(
|
|
93
99
|
"div",
|
|
@@ -103,33 +109,44 @@ const CallToActionBar = ({
|
|
|
103
109
|
]
|
|
104
110
|
}
|
|
105
111
|
),
|
|
106
|
-
callToActionRow.length > 0 && /* @__PURE__ */ jsx(
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
112
|
+
callToActionRow.length > 0 && /* @__PURE__ */ jsx(
|
|
113
|
+
"div",
|
|
114
|
+
{
|
|
115
|
+
className: clsx(
|
|
116
|
+
ctas_section,
|
|
117
|
+
"flex",
|
|
118
|
+
"text_center",
|
|
119
|
+
(!image || imageMobileView) && "center"
|
|
120
|
+
),
|
|
121
|
+
children: callToActionRow.map(
|
|
122
|
+
({
|
|
123
|
+
id: id2,
|
|
124
|
+
variant,
|
|
125
|
+
displayText,
|
|
126
|
+
targetUrl,
|
|
127
|
+
type
|
|
128
|
+
}) => type === "Button" ? /* @__PURE__ */ jsx(
|
|
129
|
+
Button,
|
|
130
|
+
{
|
|
131
|
+
targetUrl,
|
|
132
|
+
color: getVariant(variant),
|
|
133
|
+
size: "medium",
|
|
134
|
+
rounded: "medium",
|
|
135
|
+
children: displayText
|
|
136
|
+
},
|
|
137
|
+
id2
|
|
138
|
+
) : /* @__PURE__ */ jsx(
|
|
139
|
+
Chevron,
|
|
140
|
+
{
|
|
141
|
+
targetUrl,
|
|
142
|
+
variant: getVariant(variant),
|
|
143
|
+
children: displayText
|
|
144
|
+
},
|
|
145
|
+
id2
|
|
146
|
+
)
|
|
147
|
+
)
|
|
148
|
+
}
|
|
149
|
+
)
|
|
133
150
|
]
|
|
134
151
|
}
|
|
135
152
|
)
|
package/dist/Carousel/index.js
CHANGED
package/dist/Chevron/index.js
CHANGED
|
@@ -74,7 +74,9 @@ import { chevron_wrapper, chevron } from "./Chevron.css.js";
|
|
|
74
74
|
/* empty css */
|
|
75
75
|
import "next/link.js";
|
|
76
76
|
/* empty css */
|
|
77
|
+
import "next/navigation.js";
|
|
77
78
|
/* empty css */
|
|
79
|
+
/* empty css */
|
|
78
80
|
/* empty css */
|
|
79
81
|
/* empty css */
|
|
80
82
|
import "../StepItem/StepItem.css.js";
|
|
@@ -73,7 +73,9 @@ import "../Modal/contextApi/store.js";
|
|
|
73
73
|
/* empty css */
|
|
74
74
|
import "next/link.js";
|
|
75
75
|
/* empty css */
|
|
76
|
+
import "next/navigation.js";
|
|
76
77
|
/* empty css */
|
|
78
|
+
/* empty css */
|
|
77
79
|
/* empty css */
|
|
78
80
|
/* empty css */
|
|
79
81
|
import "../StepItem/StepItem.css.js";
|
|
@@ -140,7 +142,7 @@ const Comparison = ({
|
|
|
140
142
|
}
|
|
141
143
|
) }),
|
|
142
144
|
/* @__PURE__ */ jsx("span", { children: item.copy })
|
|
143
|
-
] }, id)
|
|
145
|
+
] }, item.id)
|
|
144
146
|
) }) })
|
|
145
147
|
] }) }),
|
|
146
148
|
callToActionRow && /* @__PURE__ */ jsx("div", { className: clsx(comparison_buttons, "push_up"), children: callToActionRow.map(
|
|
@@ -71,7 +71,9 @@ import "../../LandingPageHeader/LandingPageHeader.css.js";
|
|
|
71
71
|
/* empty css */
|
|
72
72
|
import "next/link.js";
|
|
73
73
|
/* empty css */
|
|
74
|
+
import "next/navigation.js";
|
|
74
75
|
/* empty css */
|
|
76
|
+
/* empty css */
|
|
75
77
|
/* empty css */
|
|
76
78
|
/* empty css */
|
|
77
79
|
import "../../StepItem/StepItem.css.js";
|
package/dist/Forms/EmailOnly.js
CHANGED
package/dist/Forms/SuccesForm.js
CHANGED
|
@@ -70,7 +70,9 @@ import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
|
70
70
|
/* empty css */
|
|
71
71
|
import "next/link.js";
|
|
72
72
|
/* empty css */
|
|
73
|
+
import "next/navigation.js";
|
|
73
74
|
/* empty css */
|
|
75
|
+
/* empty css */
|
|
74
76
|
/* empty css */
|
|
75
77
|
/* empty css */
|
|
76
78
|
import "../StepItem/StepItem.css.js";
|
package/dist/Hyperlink/index.js
CHANGED
|
@@ -73,7 +73,9 @@ import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
|
73
73
|
/* empty css */
|
|
74
74
|
import "next/link.js";
|
|
75
75
|
/* empty css */
|
|
76
|
+
import "next/navigation.js";
|
|
76
77
|
/* empty css */
|
|
78
|
+
/* empty css */
|
|
77
79
|
/* empty css */
|
|
78
80
|
/* empty css */
|
|
79
81
|
import "../StepItem/StepItem.css.js";
|
package/dist/ImageLink/index.js
CHANGED
|
@@ -71,7 +71,9 @@ import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
|
71
71
|
/* empty css */
|
|
72
72
|
import "next/link.js";
|
|
73
73
|
/* empty css */
|
|
74
|
+
import "next/navigation.js";
|
|
74
75
|
/* empty css */
|
|
76
|
+
/* empty css */
|
|
75
77
|
/* empty css */
|
|
76
78
|
/* empty css */
|
|
77
79
|
import "../StepItem/StepItem.css.js";
|
package/dist/Modal/Modal.js
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
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_header = "
|
|
16
|
-
const signin_subheader = "
|
|
17
|
-
const opacity = "
|
|
18
|
-
const fadeInDown = "
|
|
19
|
-
const signin_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
|
+
const header = "_header_jjq4u_1";
|
|
2
|
+
const wrapper = "_wrapper_jjq4u_5";
|
|
3
|
+
const header_main_row = "_header_main_row_jjq4u_11";
|
|
4
|
+
const mobile_header = "_mobile_header_jjq4u_12";
|
|
5
|
+
const logo_wrap = "_logo_wrap_jjq4u_18";
|
|
6
|
+
const primary_links = "_primary_links_jjq4u_22";
|
|
7
|
+
const main_nav_link = "_main_nav_link_jjq4u_26";
|
|
8
|
+
const sub_nav_link = "_sub_nav_link_jjq4u_45";
|
|
9
|
+
const signin_wrap = "_signin_wrap_jjq4u_47";
|
|
10
|
+
const signin_btn = "_signin_btn_jjq4u_48";
|
|
11
|
+
const sub_nav = "_sub_nav_jjq4u_45";
|
|
12
|
+
const header_sub_row = "_header_sub_row_jjq4u_94";
|
|
13
|
+
const signin_dropdown = "_signin_dropdown_jjq4u_117";
|
|
14
|
+
const shadow = "_shadow_jjq4u_127";
|
|
15
|
+
const signin_header = "_signin_header_jjq4u_137";
|
|
16
|
+
const signin_subheader = "_signin_subheader_jjq4u_144";
|
|
17
|
+
const opacity = "_opacity_jjq4u_166";
|
|
18
|
+
const fadeInDown = "_fadeInDown_jjq4u_1";
|
|
19
|
+
const signin_footer = "_signin_footer_jjq4u_172";
|
|
20
|
+
const open = "_open_jjq4u_193";
|
|
21
|
+
const dd_wrapper = "_dd_wrapper_jjq4u_205";
|
|
22
|
+
const dd_media = "_dd_media_jjq4u_213";
|
|
23
|
+
const dd_media_img = "_dd_media_img_jjq4u_218";
|
|
24
|
+
const dd_site_navs = "_dd_site_navs_jjq4u_222";
|
|
25
|
+
const dd_media_header = "_dd_media_header_jjq4u_229";
|
|
26
|
+
const mt_8 = "_mt_8_jjq4u_239";
|
|
27
|
+
const mt_16 = "_mt_16_jjq4u_243";
|
|
28
|
+
const ml_8 = "_ml_8_jjq4u_247";
|
|
29
|
+
const dd_media_cta = "_dd_media_cta_jjq4u_251";
|
|
30
|
+
const reversed_row = "_reversed_row_jjq4u_283";
|
|
31
|
+
const headline = "_headline_jjq4u_293";
|
|
32
|
+
const nav_anchor = "_nav_anchor_jjq4u_300";
|
|
33
|
+
const headline_cta = "_headline_cta_jjq4u_308";
|
|
34
|
+
const site_lists = "_site_lists_jjq4u_323";
|
|
35
|
+
const hamburger = "_hamburger_jjq4u_361";
|
|
36
|
+
const mobile_only = "_mobile_only_jjq4u_375";
|
|
37
|
+
const mobile_logo = "_mobile_logo_jjq4u_381";
|
|
38
|
+
const highlight = "_highlight_jjq4u_386";
|
|
39
|
+
const mobile_nav = "_mobile_nav_jjq4u_413";
|
|
40
|
+
const mobile_opened = "_mobile_opened_jjq4u_424";
|
|
41
|
+
const mobile_nav_item = "_mobile_nav_item_jjq4u_432";
|
|
42
|
+
const has_dropdown = "_has_dropdown_jjq4u_447";
|
|
43
|
+
const icon_wrap = "_icon_wrap_jjq4u_468";
|
|
44
|
+
const mobile_footer = "_mobile_footer_jjq4u_473";
|
|
45
|
+
const mobile_footer_content = "_mobile_footer_content_jjq4u_478";
|
|
46
|
+
const mobile_footer_media = "_mobile_footer_media_jjq4u_492";
|
|
47
|
+
const footer_cta = "_footer_cta_jjq4u_498";
|
|
48
|
+
const inner_wrapper = "_inner_wrapper_jjq4u_526";
|
|
49
|
+
const btn = "_btn_jjq4u_531";
|
|
50
|
+
const sub_menu = "_sub_menu_jjq4u_536";
|
|
51
|
+
const main = "_main_jjq4u_26";
|
|
52
|
+
const dd_footer = "_dd_footer_jjq4u_561";
|
|
53
|
+
const desktop_only = "_desktop_only_jjq4u_590";
|
|
54
54
|
const styles = {
|
|
55
55
|
header,
|
|
56
56
|
wrapper,
|