@axos-web-dev/shared-components 0.0.90 → 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.d.ts +4 -2
- package/dist/ATMLocator/ATMLocator.js +124 -18
- package/dist/Accordion/Accordion.css.d.ts +9 -9
- package/dist/Calculators/Calculator.js +14 -4
- package/dist/CallToActionBar/index.js +47 -30
- package/dist/Carousel/index.js +12 -11
- package/dist/Chevron/index.js +17 -16
- package/dist/Comparison/Comparison.js +15 -14
- package/dist/Comparison/ComparisonSet.js +20 -19
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +19 -18
- package/dist/Forms/ApplicationStart.js +2 -3
- package/dist/Forms/CommercialLending.js +2 -3
- package/dist/Forms/ContactCompany.js +2 -3
- package/dist/Forms/ContactUs.js +2 -3
- package/dist/Forms/ContactUsAAS.js +2 -3
- package/dist/Forms/ContactUsBusiness.js +17 -16
- package/dist/Forms/ContactUsNMLSId.js +17 -16
- package/dist/Forms/DealerServices.js +2 -3
- package/dist/Forms/EmailOnly.js +17 -16
- package/dist/Forms/SalesforceFieldsForm.d.ts +1 -0
- package/dist/Forms/ScheduleCall.js +3 -7
- package/dist/Forms/ScheduleCallPremier.js +2 -3
- package/dist/Forms/SuccesForm.js +13 -12
- package/dist/Forms/WcplSurvey.js +2 -3
- package/dist/Hyperlink/index.js +20 -19
- package/dist/ImageLink/ImageLink.js +13 -12
- package/dist/ImageLink/ImageLinkSet.js +11 -10
- package/dist/ImageLink/index.js +18 -17
- package/dist/Input/Checkbox.d.ts +1 -1
- package/dist/Input/CurrencyInput.js +2 -3
- package/dist/Input/InputPhone.js +2 -3
- package/dist/Input/InputProps.d.ts +0 -6
- package/dist/Input/index.d.ts +0 -3
- package/dist/Input/index.js +0 -6
- package/dist/Modal/Modal.js +16 -15
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +53 -53
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +1927 -1755
- 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 +13 -12
- package/dist/Table/Table.d.ts +22 -9
- 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/Table/Table.css +1 -1
- 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 -54
- package/dist/utils/allowedAxosDomains.js +3 -1
- package/package.json +1 -1
- package/dist/Input/DatePicker.css.d.ts +0 -1
- package/dist/Input/DatePicker.css.js +0 -6
- package/dist/Input/Datepicker.d.ts +0 -3
- package/dist/Input/Datepicker.js +0 -47
- package/dist/Input/InputDate.css.d.ts +0 -6
- package/dist/Input/InputDate.css.js +0 -15
- package/dist/Input/InputDate.d.ts +0 -3
- package/dist/Input/InputDate.js +0 -47
- package/dist/assets/Input/DatePicker.css +0 -95
- package/dist/assets/Input/InputDate.css +0 -39
|
@@ -0,0 +1,470 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
|
+
import { Button } from "../../Button/Button.js";
|
|
4
|
+
import "../../Button/Button.css.js";
|
|
5
|
+
import { useState, useRef, useEffect } from "react";
|
|
6
|
+
import "react-use";
|
|
7
|
+
import clsx from "clsx";
|
|
8
|
+
import Image from "next/image.js";
|
|
9
|
+
import Link from "next/link.js";
|
|
10
|
+
import { NavItem } from "../NavItem/index.js";
|
|
11
|
+
import { expand } from "./NavBar.css.js";
|
|
12
|
+
import styles from "./NavBar.module.js";
|
|
13
|
+
import { navItems } from "./NavData.js";
|
|
14
|
+
import SubNavBar from "./SubNavBar.js";
|
|
15
|
+
function NavBar() {
|
|
16
|
+
const [isOpenMobile, setisOpenMobile] = useState(false);
|
|
17
|
+
const [activeIndex, setActiveIndex] = useState();
|
|
18
|
+
const [lastNavItem, setLastNavItem] = useState();
|
|
19
|
+
const ref = useRef(null);
|
|
20
|
+
const mobileToggle = () => setisOpenMobile(!isOpenMobile);
|
|
21
|
+
const handleClick = (index) => setActiveIndex(index);
|
|
22
|
+
const [isOpenProducts1, setisOpenProducts1] = useState(false);
|
|
23
|
+
const [isOpenProducts2, setisOpenProducts2] = useState(false);
|
|
24
|
+
const [isOpenProducts3, setisOpenProducts3] = useState(false);
|
|
25
|
+
const toggleProducts1 = () => setisOpenProducts1(!isOpenProducts1);
|
|
26
|
+
const toggleProducts2 = () => setisOpenProducts2(!isOpenProducts2);
|
|
27
|
+
const toggleProducts3 = () => setisOpenProducts3(!isOpenProducts3);
|
|
28
|
+
const getActiveIndex = () => {
|
|
29
|
+
const pathname = "/" + location.pathname.split("/")[1];
|
|
30
|
+
const index = navItems.findIndex(
|
|
31
|
+
(path) => path.url === pathname
|
|
32
|
+
);
|
|
33
|
+
setActiveIndex(index);
|
|
34
|
+
};
|
|
35
|
+
useEffect(() => {
|
|
36
|
+
getActiveIndex();
|
|
37
|
+
}, [activeIndex]);
|
|
38
|
+
useEffect(() => {
|
|
39
|
+
setLastNavItem(navItems[navItems.length - 1]);
|
|
40
|
+
}, []);
|
|
41
|
+
return /* @__PURE__ */ jsxs("header", { id: "header", children: [
|
|
42
|
+
/* @__PURE__ */ jsx("div", { className: `${styles.header} bg_white`, children: /* @__PURE__ */ jsx("div", { className: styles.wrapper, children: /* @__PURE__ */ jsxs("div", { className: `${styles.header_main_row} flex_row between middle`, children: [
|
|
43
|
+
/* @__PURE__ */ jsx("div", { className: `${styles.desktop_only} flex_row middle`, children: /* @__PURE__ */ jsxs("div", { className: `${styles.main_nav} flex_row middle`, children: [
|
|
44
|
+
/* @__PURE__ */ jsx("div", { className: styles.logo_wrap, children: /* @__PURE__ */ jsx("a", { href: "/", "aria-label": "return to axos clearing homepage", children: /* @__PURE__ */ jsx(
|
|
45
|
+
Image,
|
|
46
|
+
{
|
|
47
|
+
src: "https://images.axos.com/o9ov1v03uwqk/1KWdk4xENAS8hmQRQWhviO/05df12996a96400c057b0066b4cf250f/axos-clearing-logo.svg",
|
|
48
|
+
alt: "",
|
|
49
|
+
width: 140,
|
|
50
|
+
height: 48,
|
|
51
|
+
priority: true
|
|
52
|
+
}
|
|
53
|
+
) }) }),
|
|
54
|
+
/* @__PURE__ */ jsx("nav", { className: styles.primary_links, children: /* @__PURE__ */ jsx("ul", { className: "list_unstyled flex_row middle", role: "menu", children: navItems.map(
|
|
55
|
+
(item, i, arr) => arr.length - 1 !== i && /* @__PURE__ */ jsx(
|
|
56
|
+
NavItem,
|
|
57
|
+
{
|
|
58
|
+
className: styles.main_nav_link,
|
|
59
|
+
onClick: handleClick,
|
|
60
|
+
index: i,
|
|
61
|
+
name: item.name,
|
|
62
|
+
url: item.url,
|
|
63
|
+
isActive: activeIndex == i
|
|
64
|
+
},
|
|
65
|
+
i
|
|
66
|
+
)
|
|
67
|
+
) }) })
|
|
68
|
+
] }) }),
|
|
69
|
+
/* @__PURE__ */ jsx(
|
|
70
|
+
"button",
|
|
71
|
+
{
|
|
72
|
+
className: clsx(styles.mobile_only, styles.hamburger),
|
|
73
|
+
onClick: mobileToggle,
|
|
74
|
+
children: /* @__PURE__ */ jsx(
|
|
75
|
+
"svg",
|
|
76
|
+
{
|
|
77
|
+
width: "24",
|
|
78
|
+
height: "24",
|
|
79
|
+
viewBox: "0 0 24 24",
|
|
80
|
+
fill: "none",
|
|
81
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
82
|
+
children: /* @__PURE__ */ jsx(
|
|
83
|
+
"path",
|
|
84
|
+
{
|
|
85
|
+
fillRule: "evenodd",
|
|
86
|
+
clipRule: "evenodd",
|
|
87
|
+
d: "M22.5 15.75V17.25H1.5V15.75H22.5ZM22.5 11.25V12.75H1.5V11.25H22.5ZM22.5 6.75V8.25H1.5V6.75H22.5Z",
|
|
88
|
+
fill: "#4A5560"
|
|
89
|
+
}
|
|
90
|
+
)
|
|
91
|
+
}
|
|
92
|
+
)
|
|
93
|
+
}
|
|
94
|
+
),
|
|
95
|
+
/* @__PURE__ */ jsx("div", { className: `${styles.mobile_only} ${styles.mobile_logo}`, children: /* @__PURE__ */ jsx(Link, { href: "/", "aria-label": "return to axos bank homepage", children: /* @__PURE__ */ jsx(
|
|
96
|
+
Image,
|
|
97
|
+
{
|
|
98
|
+
src: "https://images.axos.com/o9ov1v03uwqk/1KWdk4xENAS8hmQRQWhviO/05df12996a96400c057b0066b4cf250f/axos-clearing-logo.svg",
|
|
99
|
+
alt: "",
|
|
100
|
+
width: 112,
|
|
101
|
+
height: 40
|
|
102
|
+
}
|
|
103
|
+
) }) }),
|
|
104
|
+
/* @__PURE__ */ jsx("div", { className: styles.signin_wrap, children: /* @__PURE__ */ jsxs(
|
|
105
|
+
"div",
|
|
106
|
+
{
|
|
107
|
+
className: `${styles.desktop_only} flex_row middle relative`,
|
|
108
|
+
ref,
|
|
109
|
+
children: [
|
|
110
|
+
lastNavItem && /* @__PURE__ */ jsx(
|
|
111
|
+
NavItem,
|
|
112
|
+
{
|
|
113
|
+
url: lastNavItem.url,
|
|
114
|
+
name: lastNavItem.name,
|
|
115
|
+
className: `link list_unstyled ${styles.main_nav_link} ${styles.highlight}`,
|
|
116
|
+
isActive: activeIndex == navItems.length,
|
|
117
|
+
onClick: handleClick,
|
|
118
|
+
index: navItems.length
|
|
119
|
+
},
|
|
120
|
+
navItems.length + 1
|
|
121
|
+
),
|
|
122
|
+
/* @__PURE__ */ jsxs(
|
|
123
|
+
Button,
|
|
124
|
+
{
|
|
125
|
+
className: clsx(
|
|
126
|
+
styles.signin_btn,
|
|
127
|
+
"flex_row",
|
|
128
|
+
"center",
|
|
129
|
+
"middle"
|
|
130
|
+
),
|
|
131
|
+
as: "button",
|
|
132
|
+
type: "button",
|
|
133
|
+
color: "primary",
|
|
134
|
+
id: "signIn",
|
|
135
|
+
size: "small",
|
|
136
|
+
targetUrl: "/contact-us",
|
|
137
|
+
children: [
|
|
138
|
+
/* @__PURE__ */ jsx("span", { children: "Get in Touch" }),
|
|
139
|
+
/* @__PURE__ */ jsx(
|
|
140
|
+
"svg",
|
|
141
|
+
{
|
|
142
|
+
width: "20",
|
|
143
|
+
height: "12",
|
|
144
|
+
viewBox: "0 0 20 12",
|
|
145
|
+
fill: "none",
|
|
146
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
147
|
+
children: /* @__PURE__ */ jsx(
|
|
148
|
+
"path",
|
|
149
|
+
{
|
|
150
|
+
d: "M0.46875 1.76574L9.99908 11.2961L19.5294 1.76574L18.4687 0.705078L9.99908 9.17491L1.52941 0.705078L0.46875 1.76574Z",
|
|
151
|
+
fill: "#fff"
|
|
152
|
+
}
|
|
153
|
+
)
|
|
154
|
+
}
|
|
155
|
+
)
|
|
156
|
+
]
|
|
157
|
+
}
|
|
158
|
+
)
|
|
159
|
+
]
|
|
160
|
+
}
|
|
161
|
+
) })
|
|
162
|
+
] }) }) }),
|
|
163
|
+
/* @__PURE__ */ jsx(SubNavBar, {}),
|
|
164
|
+
/* @__PURE__ */ jsx(
|
|
165
|
+
"div",
|
|
166
|
+
{
|
|
167
|
+
className: clsx(
|
|
168
|
+
styles.mobile_nav,
|
|
169
|
+
styles.mobile_only,
|
|
170
|
+
"relative",
|
|
171
|
+
"bg_white",
|
|
172
|
+
isOpenMobile ? styles.mobile_opened : ""
|
|
173
|
+
),
|
|
174
|
+
"aria-expanded": isOpenMobile,
|
|
175
|
+
role: "menu",
|
|
176
|
+
children: /* @__PURE__ */ jsxs("div", { className: clsx(styles.inner_wrapper, "bg_white"), children: [
|
|
177
|
+
/* @__PURE__ */ jsxs("div", { className: `${styles.mobile_header} relative text_center`, children: [
|
|
178
|
+
/* @__PURE__ */ jsx("p", { role: "heading", children: "Welcome" }),
|
|
179
|
+
/* @__PURE__ */ jsx("button", { onClick: mobileToggle, "aria-label": "close navigation menu", children: /* @__PURE__ */ jsx(
|
|
180
|
+
"svg",
|
|
181
|
+
{
|
|
182
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
183
|
+
width: "24",
|
|
184
|
+
height: "24",
|
|
185
|
+
viewBox: "0 0 24 24",
|
|
186
|
+
fill: "none",
|
|
187
|
+
children: /* @__PURE__ */ jsx(
|
|
188
|
+
"path",
|
|
189
|
+
{
|
|
190
|
+
d: "M20.2812 2.65625L21.3419 3.71691L13.0602 11.9982L21.3419 20.2812L20.2812 21.3419L11.9982 13.0602L3.71691 21.3419L2.65625 20.2812L10.9377 11.9982L2.65625 3.71691L3.71691 2.65625L11.9982 10.9377L20.2812 2.65625Z",
|
|
191
|
+
fill: "#4A5560"
|
|
192
|
+
}
|
|
193
|
+
)
|
|
194
|
+
}
|
|
195
|
+
) })
|
|
196
|
+
] }),
|
|
197
|
+
/* @__PURE__ */ jsx("div", { className: styles.mobile_body, children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", "aria-expanded": isOpenMobile, children: [
|
|
198
|
+
/* @__PURE__ */ jsxs(
|
|
199
|
+
"li",
|
|
200
|
+
{
|
|
201
|
+
className: `${styles.mobile_nav_item} ${styles.has_dropdown}`,
|
|
202
|
+
id: "dd_1",
|
|
203
|
+
children: [
|
|
204
|
+
/* @__PURE__ */ jsxs(
|
|
205
|
+
"a",
|
|
206
|
+
{
|
|
207
|
+
href: "#",
|
|
208
|
+
onClick: toggleProducts1,
|
|
209
|
+
role: "button",
|
|
210
|
+
className: clsx("flex_row", "between"),
|
|
211
|
+
children: [
|
|
212
|
+
"Who We Serve",
|
|
213
|
+
/* @__PURE__ */ jsx(
|
|
214
|
+
"span",
|
|
215
|
+
{
|
|
216
|
+
className: clsx(
|
|
217
|
+
styles.icon_wrap,
|
|
218
|
+
isOpenProducts1 && styles.open
|
|
219
|
+
),
|
|
220
|
+
children: /* @__PURE__ */ jsx(
|
|
221
|
+
"svg",
|
|
222
|
+
{
|
|
223
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
224
|
+
width: "24",
|
|
225
|
+
height: "24",
|
|
226
|
+
viewBox: "0 0 24 24",
|
|
227
|
+
fill: "none",
|
|
228
|
+
children: /* @__PURE__ */ jsx(
|
|
229
|
+
"path",
|
|
230
|
+
{
|
|
231
|
+
d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
|
|
232
|
+
fill: "#4A5560"
|
|
233
|
+
}
|
|
234
|
+
)
|
|
235
|
+
}
|
|
236
|
+
)
|
|
237
|
+
}
|
|
238
|
+
)
|
|
239
|
+
]
|
|
240
|
+
}
|
|
241
|
+
),
|
|
242
|
+
/* @__PURE__ */ jsxs(
|
|
243
|
+
"div",
|
|
244
|
+
{
|
|
245
|
+
className: clsx(styles.sub_menu, isOpenProducts1 && expand),
|
|
246
|
+
children: [
|
|
247
|
+
/* @__PURE__ */ jsx(
|
|
248
|
+
Link,
|
|
249
|
+
{
|
|
250
|
+
href: "/who-we-serve",
|
|
251
|
+
className: styles.main,
|
|
252
|
+
role: "heading",
|
|
253
|
+
children: "Who We Serve Home"
|
|
254
|
+
}
|
|
255
|
+
),
|
|
256
|
+
/* @__PURE__ */ jsx(Link, { href: "/who-we-serve/broker-dealers", role: "menuitem", children: "Broker Dealers" }),
|
|
257
|
+
/* @__PURE__ */ jsx(
|
|
258
|
+
Link,
|
|
259
|
+
{
|
|
260
|
+
href: "/who-we-serve/registered-investment-advisors",
|
|
261
|
+
role: "menuitem",
|
|
262
|
+
children: "Registered Investment Advisors"
|
|
263
|
+
}
|
|
264
|
+
)
|
|
265
|
+
]
|
|
266
|
+
}
|
|
267
|
+
)
|
|
268
|
+
]
|
|
269
|
+
}
|
|
270
|
+
),
|
|
271
|
+
/* @__PURE__ */ jsxs(
|
|
272
|
+
"li",
|
|
273
|
+
{
|
|
274
|
+
className: `${styles.mobile_nav_item} ${styles.has_dropdown}`,
|
|
275
|
+
id: "dd_2",
|
|
276
|
+
children: [
|
|
277
|
+
/* @__PURE__ */ jsxs(
|
|
278
|
+
"a",
|
|
279
|
+
{
|
|
280
|
+
href: "#",
|
|
281
|
+
onClick: toggleProducts2,
|
|
282
|
+
role: "button",
|
|
283
|
+
className: clsx("flex_row", "between"),
|
|
284
|
+
children: [
|
|
285
|
+
"Products and Services",
|
|
286
|
+
/* @__PURE__ */ jsx(
|
|
287
|
+
"span",
|
|
288
|
+
{
|
|
289
|
+
className: clsx(
|
|
290
|
+
styles.icon_wrap,
|
|
291
|
+
isOpenProducts2 && styles.open
|
|
292
|
+
),
|
|
293
|
+
children: /* @__PURE__ */ jsx(
|
|
294
|
+
"svg",
|
|
295
|
+
{
|
|
296
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
297
|
+
width: "24",
|
|
298
|
+
height: "24",
|
|
299
|
+
viewBox: "0 0 24 24",
|
|
300
|
+
fill: "none",
|
|
301
|
+
children: /* @__PURE__ */ jsx(
|
|
302
|
+
"path",
|
|
303
|
+
{
|
|
304
|
+
d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
|
|
305
|
+
fill: "#4A5560"
|
|
306
|
+
}
|
|
307
|
+
)
|
|
308
|
+
}
|
|
309
|
+
)
|
|
310
|
+
}
|
|
311
|
+
)
|
|
312
|
+
]
|
|
313
|
+
}
|
|
314
|
+
),
|
|
315
|
+
/* @__PURE__ */ jsxs(
|
|
316
|
+
"div",
|
|
317
|
+
{
|
|
318
|
+
className: clsx(styles.sub_menu, isOpenProducts2 && expand),
|
|
319
|
+
children: [
|
|
320
|
+
/* @__PURE__ */ jsx(
|
|
321
|
+
Link,
|
|
322
|
+
{
|
|
323
|
+
href: "/products-and-services",
|
|
324
|
+
className: styles.main,
|
|
325
|
+
role: "heading",
|
|
326
|
+
children: "Products and Services Home"
|
|
327
|
+
}
|
|
328
|
+
),
|
|
329
|
+
/* @__PURE__ */ jsx(
|
|
330
|
+
Link,
|
|
331
|
+
{
|
|
332
|
+
href: "/products-and-services/capital-management",
|
|
333
|
+
role: "menuitem",
|
|
334
|
+
children: "Capital Management"
|
|
335
|
+
}
|
|
336
|
+
),
|
|
337
|
+
/* @__PURE__ */ jsx(
|
|
338
|
+
Link,
|
|
339
|
+
{
|
|
340
|
+
href: "/products-and-services/value-added-services",
|
|
341
|
+
role: "menuitem",
|
|
342
|
+
children: "Value Added Services"
|
|
343
|
+
}
|
|
344
|
+
),
|
|
345
|
+
/* @__PURE__ */ jsx(
|
|
346
|
+
Link,
|
|
347
|
+
{
|
|
348
|
+
href: "/products-and-services/securities-services",
|
|
349
|
+
role: "menuitem",
|
|
350
|
+
children: "Securities Services"
|
|
351
|
+
}
|
|
352
|
+
),
|
|
353
|
+
/* @__PURE__ */ jsx(
|
|
354
|
+
Link,
|
|
355
|
+
{
|
|
356
|
+
href: "/products-and-services/technology-platform",
|
|
357
|
+
role: "menuitem",
|
|
358
|
+
children: "Technology Platform"
|
|
359
|
+
}
|
|
360
|
+
)
|
|
361
|
+
]
|
|
362
|
+
}
|
|
363
|
+
)
|
|
364
|
+
]
|
|
365
|
+
}
|
|
366
|
+
),
|
|
367
|
+
/* @__PURE__ */ jsxs(
|
|
368
|
+
"li",
|
|
369
|
+
{
|
|
370
|
+
className: `${styles.mobile_nav_item} ${styles.has_dropdown}`,
|
|
371
|
+
id: "dd_3",
|
|
372
|
+
children: [
|
|
373
|
+
/* @__PURE__ */ jsxs(
|
|
374
|
+
"a",
|
|
375
|
+
{
|
|
376
|
+
href: "#",
|
|
377
|
+
onClick: toggleProducts3,
|
|
378
|
+
role: "button",
|
|
379
|
+
className: clsx("flex_row", "between"),
|
|
380
|
+
children: [
|
|
381
|
+
"Axos Advantage",
|
|
382
|
+
/* @__PURE__ */ jsx(
|
|
383
|
+
"span",
|
|
384
|
+
{
|
|
385
|
+
className: clsx(
|
|
386
|
+
styles.icon_wrap,
|
|
387
|
+
isOpenProducts3 && styles.open
|
|
388
|
+
),
|
|
389
|
+
children: /* @__PURE__ */ jsx(
|
|
390
|
+
"svg",
|
|
391
|
+
{
|
|
392
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
393
|
+
width: "24",
|
|
394
|
+
height: "24",
|
|
395
|
+
viewBox: "0 0 24 24",
|
|
396
|
+
fill: "none",
|
|
397
|
+
children: /* @__PURE__ */ jsx(
|
|
398
|
+
"path",
|
|
399
|
+
{
|
|
400
|
+
d: "M2.46875 7.76574L11.9991 17.2961L21.5294 7.76574L20.4687 6.70508L11.9991 15.1749L3.52941 6.70508L2.46875 7.76574Z",
|
|
401
|
+
fill: "#4A5560"
|
|
402
|
+
}
|
|
403
|
+
)
|
|
404
|
+
}
|
|
405
|
+
)
|
|
406
|
+
}
|
|
407
|
+
)
|
|
408
|
+
]
|
|
409
|
+
}
|
|
410
|
+
),
|
|
411
|
+
/* @__PURE__ */ jsxs(
|
|
412
|
+
"div",
|
|
413
|
+
{
|
|
414
|
+
className: clsx(styles.sub_menu, isOpenProducts3 && expand),
|
|
415
|
+
children: [
|
|
416
|
+
/* @__PURE__ */ jsx(
|
|
417
|
+
Link,
|
|
418
|
+
{
|
|
419
|
+
href: "/axos-advantage",
|
|
420
|
+
className: styles.main,
|
|
421
|
+
role: "heading",
|
|
422
|
+
children: "Axos Advantage Home"
|
|
423
|
+
}
|
|
424
|
+
),
|
|
425
|
+
/* @__PURE__ */ jsx(Link, { href: "/axos-advantage/contact-us", role: "menuitem", children: "Contact Us" }),
|
|
426
|
+
/* @__PURE__ */ jsx(Link, { href: "/axos-advantage/meet-the-team", role: "menuitem", children: "Meet the Team" }),
|
|
427
|
+
/* @__PURE__ */ jsx(
|
|
428
|
+
Link,
|
|
429
|
+
{
|
|
430
|
+
href: "/axos-advantage/meet-the-team/why-choose-axos",
|
|
431
|
+
role: "menuitem",
|
|
432
|
+
children: "Why Choose Axos"
|
|
433
|
+
}
|
|
434
|
+
)
|
|
435
|
+
]
|
|
436
|
+
}
|
|
437
|
+
)
|
|
438
|
+
]
|
|
439
|
+
}
|
|
440
|
+
),
|
|
441
|
+
/* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, children: /* @__PURE__ */ jsx(
|
|
442
|
+
Link,
|
|
443
|
+
{
|
|
444
|
+
href: "https://connect.axosclearing.com/",
|
|
445
|
+
className: `flex_row between ${styles.btn}`,
|
|
446
|
+
children: "Sign In"
|
|
447
|
+
}
|
|
448
|
+
) })
|
|
449
|
+
] }) }),
|
|
450
|
+
/* @__PURE__ */ jsx("div", { className: styles.mobile_footer, children: /* @__PURE__ */ jsxs("div", { className: "flex_row between", children: [
|
|
451
|
+
/* @__PURE__ */ jsxs(
|
|
452
|
+
"div",
|
|
453
|
+
{
|
|
454
|
+
className: `${styles.mobile_footer_content} flex_col between`,
|
|
455
|
+
children: [
|
|
456
|
+
/* @__PURE__ */ jsx("p", { children: /* @__PURE__ */ jsx("strong", { children: "Get in Touch" }) }),
|
|
457
|
+
/* @__PURE__ */ jsx("div", { className: styles.footer_cta, children: /* @__PURE__ */ jsx(Button, { color: "primary", targetUrl: "/contact-us", children: "Contact Us" }) })
|
|
458
|
+
]
|
|
459
|
+
}
|
|
460
|
+
),
|
|
461
|
+
/* @__PURE__ */ jsx("div", { className: styles.mobile_footer_media, children: " " })
|
|
462
|
+
] }) })
|
|
463
|
+
] })
|
|
464
|
+
}
|
|
465
|
+
)
|
|
466
|
+
] });
|
|
467
|
+
}
|
|
468
|
+
export {
|
|
469
|
+
NavBar as default
|
|
470
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as NavBarAXA } from './AxosAdvisor';
|
|
2
2
|
export { default as NavBarAAS } from './AxosAdvisorServices';
|
|
3
3
|
export { default as NavBarAXB } from './AxosBank';
|
|
4
|
+
export { default as NavBarAXC } from './AxosClearing';
|
|
4
5
|
export { default as NavBarAFS } from './AxosFiduciary';
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { default as default2 } from "./AxosAdvisor/index.js";
|
|
2
2
|
import { default as default3 } from "./AxosAdvisorServices/index.js";
|
|
3
3
|
import { default as default4 } from "./AxosBank/index.js";
|
|
4
|
-
import { default as default5 } from "./
|
|
4
|
+
import { default as default5 } from "./AxosClearing/index.js";
|
|
5
|
+
import { default as default6 } from "./AxosFiduciary/index.js";
|
|
5
6
|
export {
|
|
6
7
|
default3 as NavBarAAS,
|
|
7
|
-
|
|
8
|
+
default6 as NavBarAFS,
|
|
8
9
|
default2 as NavBarAXA,
|
|
9
|
-
default4 as NavBarAXB
|
|
10
|
+
default4 as NavBarAXB,
|
|
11
|
+
default5 as NavBarAXC
|
|
10
12
|
};
|
|
@@ -13,17 +13,7 @@ import "../icons/CheckIcon/CheckIcon.css.js";
|
|
|
13
13
|
/* empty css */
|
|
14
14
|
/* empty css */
|
|
15
15
|
/* empty css */
|
|
16
|
-
import "../Accordion/Accordion.js";
|
|
17
|
-
import "../Accordion/Accordion.css.js";
|
|
18
|
-
import "../AlertBanner/AlertBanner.css.js";
|
|
19
|
-
import "../Article/Article.css.js";
|
|
20
|
-
import "../ArticlesSet/ArticlesSet.css.js";
|
|
21
|
-
/* empty css */
|
|
22
|
-
/* empty css */
|
|
23
|
-
/* empty css */
|
|
24
|
-
import "next/image.js";
|
|
25
16
|
import { header_section } from "../IconBillboard/IconBillboard.css.js";
|
|
26
|
-
/* empty css */
|
|
27
17
|
import "../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
|
|
28
18
|
import "../Calculators/ApyCalculator/ApyCalculator.css.js";
|
|
29
19
|
import "../Table/Table.css.js";
|
|
@@ -31,11 +21,11 @@ import "../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
|
|
|
31
21
|
import "@hookform/resolvers/zod";
|
|
32
22
|
import "../Input/Checkbox.js";
|
|
33
23
|
import "../Input/CurrencyInput.js";
|
|
34
|
-
import "../Input/Input.css.js";
|
|
35
|
-
/* empty css */
|
|
36
24
|
import "../Input/Dropdown.js";
|
|
25
|
+
/* empty css */
|
|
37
26
|
/* empty css */
|
|
38
27
|
import "../Input/Input.js";
|
|
28
|
+
import "../Input/Input.css.js";
|
|
39
29
|
import "../Input/InputPhone.js";
|
|
40
30
|
import "../Input/InputTextArea.js";
|
|
41
31
|
import "react-hook-form";
|
|
@@ -47,6 +37,15 @@ import "iframe-resizer";
|
|
|
47
37
|
import "../Calculators/calculator.css.js";
|
|
48
38
|
/* empty css */
|
|
49
39
|
import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
|
|
40
|
+
import "../Accordion/Accordion.js";
|
|
41
|
+
import "../Accordion/Accordion.css.js";
|
|
42
|
+
import "../AlertBanner/AlertBanner.css.js";
|
|
43
|
+
import "../Article/Article.css.js";
|
|
44
|
+
import "../ArticlesSet/ArticlesSet.css.js";
|
|
45
|
+
/* empty css */
|
|
46
|
+
/* empty css */
|
|
47
|
+
import "next/image.js";
|
|
48
|
+
/* empty css */
|
|
50
49
|
/* empty css */
|
|
51
50
|
import "../Carousel/index.js";
|
|
52
51
|
/* empty css */
|
|
@@ -72,7 +71,9 @@ import "../Chevron/Chevron.css.js";
|
|
|
72
71
|
/* empty css */
|
|
73
72
|
import "next/link.js";
|
|
74
73
|
/* empty css */
|
|
74
|
+
import "next/navigation.js";
|
|
75
75
|
/* empty css */
|
|
76
|
+
/* empty css */
|
|
76
77
|
/* empty css */
|
|
77
78
|
/* empty css */
|
|
78
79
|
import "../StepItem/StepItem.css.js";
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -9,13 +9,14 @@ export declare const TableBody: ({ children }: PropsWithChildren) => import("rea
|
|
|
9
9
|
export declare const TableCell: ({ children, as, variant, highlighted, ...props }: CellProps) => import('react').DetailedReactHTMLElement<{
|
|
10
10
|
className: string;
|
|
11
11
|
manifest?: string | undefined;
|
|
12
|
+
amp?: string | undefined;
|
|
12
13
|
defaultChecked?: boolean | undefined;
|
|
13
14
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
14
15
|
suppressContentEditableWarning?: boolean | undefined;
|
|
15
16
|
suppressHydrationWarning?: boolean | undefined;
|
|
16
17
|
accessKey?: string | undefined;
|
|
17
18
|
autoFocus?: boolean | undefined;
|
|
18
|
-
contentEditable?: (boolean | "false" | "true") | "
|
|
19
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
19
20
|
contextMenu?: string | undefined;
|
|
20
21
|
dir?: string | undefined;
|
|
21
22
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
@@ -54,31 +55,37 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
|
|
|
54
55
|
results?: number | undefined;
|
|
55
56
|
security?: string | undefined;
|
|
56
57
|
unselectable?: "on" | "off" | undefined;
|
|
57
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" |
|
|
58
|
+
inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
58
59
|
is?: string | undefined;
|
|
60
|
+
popover?: "" | "auto" | "manual" | undefined;
|
|
61
|
+
popoverTargetAction?: "hide" | "show" | "toggle" | undefined;
|
|
62
|
+
popoverTarget?: string | undefined;
|
|
63
|
+
onToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
|
|
64
|
+
onBeforeToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
|
|
65
|
+
inert?: boolean | undefined;
|
|
59
66
|
"aria-activedescendant"?: string | undefined;
|
|
60
67
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
61
|
-
"aria-autocomplete"?: "none" | "
|
|
68
|
+
"aria-autocomplete"?: "none" | "both" | "inline" | "list" | undefined;
|
|
62
69
|
"aria-braillelabel"?: string | undefined;
|
|
63
70
|
"aria-brailleroledescription"?: string | undefined;
|
|
64
71
|
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
65
|
-
"aria-checked"?: boolean | "
|
|
72
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
66
73
|
"aria-colcount"?: number | undefined;
|
|
67
74
|
"aria-colindex"?: number | undefined;
|
|
68
75
|
"aria-colindextext"?: string | undefined;
|
|
69
76
|
"aria-colspan"?: number | undefined;
|
|
70
77
|
"aria-controls"?: string | undefined;
|
|
71
|
-
"aria-current"?: boolean | "false" | "true" | "
|
|
78
|
+
"aria-current"?: boolean | "page" | "false" | "true" | "time" | "step" | "location" | "date" | undefined;
|
|
72
79
|
"aria-describedby"?: string | undefined;
|
|
73
80
|
"aria-description"?: string | undefined;
|
|
74
81
|
"aria-details"?: string | undefined;
|
|
75
82
|
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
76
|
-
"aria-dropeffect"?: "none" | "copy" | "
|
|
83
|
+
"aria-dropeffect"?: "none" | "copy" | "move" | "link" | "execute" | "popup" | undefined;
|
|
77
84
|
"aria-errormessage"?: string | undefined;
|
|
78
85
|
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
79
86
|
"aria-flowto"?: string | undefined;
|
|
80
87
|
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
81
|
-
"aria-haspopup"?: boolean | "
|
|
88
|
+
"aria-haspopup"?: boolean | "grid" | "listbox" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
|
|
82
89
|
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
83
90
|
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
84
91
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -93,9 +100,9 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
|
|
|
93
100
|
"aria-owns"?: string | undefined;
|
|
94
101
|
"aria-placeholder"?: string | undefined;
|
|
95
102
|
"aria-posinset"?: number | undefined;
|
|
96
|
-
"aria-pressed"?: boolean | "
|
|
103
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
97
104
|
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
98
|
-
"aria-relevant"?: "
|
|
105
|
+
"aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
99
106
|
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
100
107
|
"aria-roledescription"?: string | undefined;
|
|
101
108
|
"aria-rowcount"?: number | undefined;
|
|
@@ -272,4 +279,10 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
|
|
|
272
279
|
onAnimationIterationCapture?: import('react').AnimationEventHandler<HTMLTableCellElement> | undefined;
|
|
273
280
|
onTransitionEnd?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
|
|
274
281
|
onTransitionEndCapture?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
|
|
282
|
+
onTransitionCancel?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
|
|
283
|
+
onTransitionCancelCapture?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
|
|
284
|
+
onTransitionRun?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
|
|
285
|
+
onTransitionRunCapture?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
|
|
286
|
+
onTransitionStart?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
|
|
287
|
+
onTransitionStartCapture?: import('react').TransitionEventHandler<HTMLTableCellElement> | undefined;
|
|
275
288
|
}, HTMLElement>;
|
|
@@ -5,15 +5,15 @@ const TopicalNavSet = ({
|
|
|
5
5
|
id,
|
|
6
6
|
topicalNavigationItems
|
|
7
7
|
}) => {
|
|
8
|
-
return /* @__PURE__ */ jsx("nav", { className: picker_section, children: /* @__PURE__ */ jsx("div", { className: picker_container, children: /* @__PURE__ */ jsx("div", { className: `${picker_orient} flex`, children: topicalNavigationItems?.map((nav) => /* @__PURE__ */ jsx(
|
|
8
|
+
return /* @__PURE__ */ jsx("nav", { id: `id_${id}`, className: picker_section, children: /* @__PURE__ */ jsx("div", { className: picker_container, children: /* @__PURE__ */ jsx("div", { className: `${picker_orient} flex`, children: topicalNavigationItems?.map((nav) => /* @__PURE__ */ jsx(
|
|
9
9
|
TopicalNavItem,
|
|
10
10
|
{
|
|
11
|
-
id: `id_${id}`,
|
|
11
|
+
id: `id_${nav?.id}`,
|
|
12
12
|
icon: { src: nav?.icon?.src || "" },
|
|
13
13
|
displayText: nav?.displayText,
|
|
14
14
|
targetUrl: nav?.targetUrl
|
|
15
15
|
},
|
|
16
|
-
`id_${id}`
|
|
16
|
+
`id_${nav?.id}`
|
|
17
17
|
)) }) }) });
|
|
18
18
|
};
|
|
19
19
|
export {
|