@axos-web-dev/shared-components 0.0.64 → 0.0.66
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/AlertBanner/index.js +1 -1
- package/dist/ArticlesSet/ArticlesSet.d.ts +1 -1
- package/dist/ArticlesSet/ArticlesSet.js +1 -1
- package/dist/Calculators/calculators.js +20 -0
- package/dist/Carousel/index.js +1 -1
- package/dist/LandingPageHeader/LandingPageHeader.d.ts +2 -1
- package/dist/LandingPageHeader/LandingPageHeader.js +85 -70
- package/dist/NavigationMenu/AxosAdvisorServices/NavBar.module.js +53 -53
- package/dist/NavigationMenu/AxosAdvisorServices/NavData.js +2 -2
- package/dist/NavigationMenu/AxosAdvisorServices/index.js +17 -13
- package/dist/StepItem/StepItem.js +2 -2
- package/dist/Table/Table.d.ts +1 -1
- package/dist/assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css +118 -118
- package/dist/assets/StepItem/StepItem.css +4 -1
- package/dist/assets/StepItemSet/StepItemSet.css +6 -3
- package/dist/icons/Logos/AAS.d.ts +6 -0
- package/dist/icons/Logos/AAS.js +30 -0
- package/dist/icons/Logos/AFS.d.ts +6 -0
- package/dist/icons/Logos/AFS.js +30 -0
- package/dist/icons/Logos/AXA.d.ts +6 -0
- package/dist/icons/Logos/AXA.js +32 -0
- package/dist/icons/Logos/AXC.d.ts +6 -0
- package/dist/icons/Logos/AXC.js +30 -0
- package/dist/icons/Logos/AXI.d.ts +6 -0
- package/dist/icons/Logos/AXI.js +56 -0
- package/dist/icons/Logos/AXOS.d.ts +6 -0
- package/dist/icons/Logos/AXOS.js +31 -0
- package/dist/icons/index.d.ts +7 -1
- package/dist/icons/index.js +24 -12
- package/dist/main.js +24 -12
- package/package.json +1 -1
|
@@ -5,9 +5,9 @@ import "../icons/CheckIcon/CheckIcon.css.js";
|
|
|
5
5
|
/* empty css */
|
|
6
6
|
/* empty css */
|
|
7
7
|
/* empty css */
|
|
8
|
+
/* empty css */
|
|
8
9
|
import SvgLockIcon from "../icons/LockIcon/index.js";
|
|
9
10
|
import { SvgWarningIcon } from "../icons/WarningIcon/index.js";
|
|
10
|
-
/* empty css */
|
|
11
11
|
import { alertBanner, alertBanner_img_section, alertBanner_body, alertBanner_cta } from "./AlertBanner.css.js";
|
|
12
12
|
const AlertBanner = ({
|
|
13
13
|
alertType,
|
|
@@ -76,6 +76,26 @@ const calculators = /* @__PURE__ */ new Map([
|
|
|
76
76
|
[
|
|
77
77
|
"Calculate a Loan Payment",
|
|
78
78
|
{ src: "https://www.fintactix.com/bofi/tools/debt/d08" }
|
|
79
|
+
],
|
|
80
|
+
[
|
|
81
|
+
"Compare Two Vehicle Loans",
|
|
82
|
+
{
|
|
83
|
+
src: "https://www.fintactix.com/bofi/tools/auto/a05"
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
[
|
|
87
|
+
"Calculate a Mortgage Payment",
|
|
88
|
+
{
|
|
89
|
+
src: "https://www.fintactix.com/bofi/tools/mortgage/m01"
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
[
|
|
93
|
+
"Time to Refinance?",
|
|
94
|
+
{ src: "https://www.fintactix.com/bofi/tools/mortgage/m07" }
|
|
95
|
+
],
|
|
96
|
+
[
|
|
97
|
+
"Rent or buy?",
|
|
98
|
+
{ src: "https://www.fintactix.com/bofi/tools/mortgage/m02" }
|
|
79
99
|
]
|
|
80
100
|
]);
|
|
81
101
|
export {
|
package/dist/Carousel/index.js
CHANGED
|
@@ -6,10 +6,10 @@ import "../icons/CheckIcon/CheckIcon.css.js";
|
|
|
6
6
|
/* empty css */
|
|
7
7
|
/* empty css */
|
|
8
8
|
/* empty css */
|
|
9
|
+
/* empty css */
|
|
9
10
|
import SvgQuoteIconGrey from "../icons/QuoteIconGrey.js";
|
|
10
11
|
import SvgQuoteIconWhite from "../icons/QuoteIconWhite.js";
|
|
11
12
|
import SvgQuoteIconYellow from "../icons/QuoteIconYellow.js";
|
|
12
|
-
/* empty css */
|
|
13
13
|
/* empty css */
|
|
14
14
|
/* empty css */
|
|
15
15
|
import { getVariant } from "../utils/getVariant.js";
|
|
@@ -3,5 +3,6 @@ import { QuaternaryTypes } from '../utils/variant.types';
|
|
|
3
3
|
export interface LandingPageHeaderProps {
|
|
4
4
|
id: string;
|
|
5
5
|
variant: QuaternaryTypes;
|
|
6
|
+
project?: string;
|
|
6
7
|
}
|
|
7
|
-
export declare const LandingPageHeader: ({ id, variant: fullVariant, }: LandingPageHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const LandingPageHeader: ({ id, variant: fullVariant, project, }: LandingPageHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,84 +1,99 @@
|
|
|
1
|
-
import { jsx
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import "../icons/ArrowIcon/ArrowIcon.css.js";
|
|
3
|
+
import "../icons/CheckIcon/CheckIcon.css.js";
|
|
4
|
+
/* empty css */
|
|
5
|
+
/* empty css */
|
|
6
|
+
/* empty css */
|
|
7
|
+
/* empty css */
|
|
8
|
+
import SvgComponent$3 from "../icons/Logos/AAS.js";
|
|
9
|
+
import SvgComponent$1 from "../icons/Logos/AFS.js";
|
|
10
|
+
import SvgComponent from "../icons/Logos/AXA.js";
|
|
11
|
+
import SvgComponent$2 from "../icons/Logos/AXC.js";
|
|
12
|
+
import SvgComponent$4 from "../icons/Logos/AXI.js";
|
|
13
|
+
import SvgComponent$5 from "../icons/Logos/AXOS.js";
|
|
2
14
|
import { getVariant } from "../utils/getVariant.js";
|
|
3
|
-
import { lp_theme, lp_container, lp_hover
|
|
15
|
+
import { svg_fill, lp_theme, lp_container, lp_hover } from "./LandingPageHeader.css.js";
|
|
4
16
|
const LandingPageHeader = ({
|
|
5
17
|
id,
|
|
6
|
-
variant: fullVariant = "primary"
|
|
18
|
+
variant: fullVariant = "primary",
|
|
19
|
+
project = "AXOS"
|
|
7
20
|
}) => {
|
|
8
21
|
const variant = getVariant(fullVariant);
|
|
22
|
+
const website = /* @__PURE__ */ new Map([
|
|
23
|
+
[
|
|
24
|
+
"AXA",
|
|
25
|
+
/* @__PURE__ */ jsx(
|
|
26
|
+
SvgComponent,
|
|
27
|
+
{
|
|
28
|
+
classNameFill: `${svg_fill({ variant })}`,
|
|
29
|
+
height: 36,
|
|
30
|
+
width: 120
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
],
|
|
34
|
+
[
|
|
35
|
+
"AFS",
|
|
36
|
+
/* @__PURE__ */ jsx(
|
|
37
|
+
SvgComponent$1,
|
|
38
|
+
{
|
|
39
|
+
classNameFill: `${svg_fill({ variant })}`,
|
|
40
|
+
height: 36,
|
|
41
|
+
width: 120
|
|
42
|
+
}
|
|
43
|
+
)
|
|
44
|
+
],
|
|
45
|
+
[
|
|
46
|
+
"AXC",
|
|
47
|
+
/* @__PURE__ */ jsx(
|
|
48
|
+
SvgComponent$2,
|
|
49
|
+
{
|
|
50
|
+
classNameFill: `${svg_fill({ variant })}`,
|
|
51
|
+
height: 36,
|
|
52
|
+
width: 120
|
|
53
|
+
}
|
|
54
|
+
)
|
|
55
|
+
],
|
|
56
|
+
[
|
|
57
|
+
"AAS",
|
|
58
|
+
/* @__PURE__ */ jsx(
|
|
59
|
+
SvgComponent$3,
|
|
60
|
+
{
|
|
61
|
+
classNameFill: `${svg_fill({ variant })}`,
|
|
62
|
+
height: 36,
|
|
63
|
+
width: 120
|
|
64
|
+
}
|
|
65
|
+
)
|
|
66
|
+
],
|
|
67
|
+
[
|
|
68
|
+
"AXI",
|
|
69
|
+
/* @__PURE__ */ jsx(
|
|
70
|
+
SvgComponent$4,
|
|
71
|
+
{
|
|
72
|
+
classNameFill: `${svg_fill({ variant })}`,
|
|
73
|
+
height: 36,
|
|
74
|
+
width: 120
|
|
75
|
+
}
|
|
76
|
+
)
|
|
77
|
+
],
|
|
78
|
+
[
|
|
79
|
+
"AXOS",
|
|
80
|
+
/* @__PURE__ */ jsx(
|
|
81
|
+
SvgComponent$5,
|
|
82
|
+
{
|
|
83
|
+
height: 30,
|
|
84
|
+
width: 120,
|
|
85
|
+
classNameFill: `${svg_fill({ variant })}`
|
|
86
|
+
}
|
|
87
|
+
)
|
|
88
|
+
]
|
|
89
|
+
]);
|
|
9
90
|
return /* @__PURE__ */ jsx("header", { className: `${lp_theme({ variant })}`, id: `id_${id}`, children: /* @__PURE__ */ jsx("div", { className: `${lp_container} flex center middle`, children: /* @__PURE__ */ jsx(
|
|
10
91
|
"a",
|
|
11
92
|
{
|
|
12
93
|
href: "/",
|
|
13
94
|
className: lp_hover,
|
|
14
95
|
"aria-label": "axos logo, return to homepage",
|
|
15
|
-
children:
|
|
16
|
-
"svg",
|
|
17
|
-
{
|
|
18
|
-
width: "120",
|
|
19
|
-
height: "27",
|
|
20
|
-
viewBox: "0 0 120 27",
|
|
21
|
-
fill: "none",
|
|
22
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
-
children: [
|
|
24
|
-
/* @__PURE__ */ jsx(
|
|
25
|
-
"path",
|
|
26
|
-
{
|
|
27
|
-
d: "M35.9428 0.576394C35.4899 0.123506 34.79 0.123506 34.3371 0.576394L33.6784 1.23514C33.2255 1.68803 33.2255 2.38794 33.6784 2.84083L44.0948 13.2984L33.6784 23.756C33.2255 24.2089 33.2255 24.9088 33.6784 25.3617L34.3371 26.0204C34.79 26.4733 35.4899 26.4733 35.9428 26.0204L48.6237 13.2984L35.9428 0.576394Z",
|
|
28
|
-
fill: "#FAA74A"
|
|
29
|
-
}
|
|
30
|
-
),
|
|
31
|
-
/* @__PURE__ */ jsx(
|
|
32
|
-
"path",
|
|
33
|
-
{
|
|
34
|
-
d: "M115.157 2.38795C115.157 1.02929 116.186 0 117.545 0C118.903 0 119.933 1.02929 119.933 2.38795C119.933 3.74661 118.903 4.7759 117.545 4.7759C116.186 4.7759 115.157 3.74661 115.157 2.38795ZM119.645 2.38795C119.645 1.1528 118.78 0.288201 117.545 0.288201C116.31 0.288201 115.445 1.19398 115.445 2.38795C115.445 3.6231 116.31 4.4877 117.545 4.4877C118.739 4.52887 119.645 3.58193 119.645 2.38795ZM117.133 3.58193H116.804V1.11163C116.968 1.07046 117.174 1.07046 117.38 1.07046C117.998 1.07046 118.368 1.35866 118.368 1.89389C118.368 2.30561 118.08 2.55264 117.792 2.63498L118.615 3.6231H118.245L117.504 2.71732H117.174L117.133 3.58193ZM117.133 2.42912H117.421C117.751 2.42912 118.039 2.26444 118.039 1.89389C118.039 1.56452 117.792 1.39983 117.38 1.39983C117.298 1.39983 117.174 1.39983 117.092 1.39983L117.133 2.42912Z",
|
|
35
|
-
fill: "#1e3860",
|
|
36
|
-
className: `${svg_fill({ variant })}`
|
|
37
|
-
}
|
|
38
|
-
),
|
|
39
|
-
/* @__PURE__ */ jsx(
|
|
40
|
-
"path",
|
|
41
|
-
{
|
|
42
|
-
d: "M105.687 11.8162C105.687 11.8162 104.493 11.528 103.835 11.281C101.735 10.5399 99.7999 9.42828 99.7999 7.41088C99.7999 5.0641 101.817 3.4584 104.864 3.4584C106.881 3.4584 108.446 4.03481 109.558 5.14644L109.928 5.51698C110.381 5.96987 111.081 5.96987 111.534 5.51698L112.193 4.85824C112.645 4.40535 112.645 3.70543 112.193 3.25255C112.028 3.04669 111.822 2.882 111.822 2.882C110.052 1.19397 107.623 0.288193 104.864 0.288193C102.353 0.288193 100.335 0.946938 98.6471 2.34677C97.0414 3.70543 96.2592 5.39347 96.2592 7.45205C96.2592 12.475 100.953 13.7101 105.07 14.8218L105.193 14.8629C108.816 15.7275 110.628 17.1685 110.628 19.1448C110.628 21.6562 108.528 23.1384 105.07 23.1384C102.888 23.1384 100.953 22.3973 99.6352 21.0798L99.2647 20.7093C98.8118 20.2564 98.1119 20.2564 97.659 20.7093L96.8767 21.4916C96.4239 21.9444 96.4239 22.6444 96.8767 23.0972L97.2473 23.4678C99.1412 25.3205 101.859 26.3498 105.07 26.3498C107.746 26.3498 109.928 25.6911 111.657 24.3324C113.345 23.0561 114.169 21.2857 114.169 19.1036C114.251 14.4512 110.216 12.8455 105.687 11.8162Z",
|
|
43
|
-
fill: "#1e3860",
|
|
44
|
-
className: `${svg_fill({ variant })}`
|
|
45
|
-
}
|
|
46
|
-
),
|
|
47
|
-
/* @__PURE__ */ jsx(
|
|
48
|
-
"path",
|
|
49
|
-
{
|
|
50
|
-
d: "M76.4145 0.247032C69.2094 0.247032 63.4042 6.0934 63.4042 13.2984C63.4042 20.5035 69.2094 26.3498 76.4145 26.3498C83.6195 26.3498 89.4247 20.5035 89.4247 13.2984C89.4247 6.0934 83.5783 0.247032 76.4145 0.247032ZM76.4145 3.45842C81.8491 3.45842 86.2545 7.86378 86.2545 13.2984C86.2545 18.7331 81.8491 23.1384 76.4145 23.1384C70.9798 23.1384 66.5744 18.7331 66.5744 13.2984C66.5744 7.86378 70.9798 3.45842 76.4145 3.45842Z",
|
|
51
|
-
fill: "#1e3860",
|
|
52
|
-
className: `${svg_fill({ variant })}`
|
|
53
|
-
}
|
|
54
|
-
),
|
|
55
|
-
/* @__PURE__ */ jsx(
|
|
56
|
-
"path",
|
|
57
|
-
{
|
|
58
|
-
d: "M59.04 25.3617L58.3812 26.0204C57.9284 26.4733 57.2284 26.4733 56.7755 26.0204L47.9237 17.1685L50.1881 14.9041L59.04 23.756C59.4929 24.1677 59.4929 24.9088 59.04 25.3617Z",
|
|
59
|
-
fill: "#1e3860",
|
|
60
|
-
className: `${svg_fill({ variant })}`
|
|
61
|
-
}
|
|
62
|
-
),
|
|
63
|
-
/* @__PURE__ */ jsx(
|
|
64
|
-
"path",
|
|
65
|
-
{
|
|
66
|
-
d: "M59.04 1.23514L58.3812 0.576394C57.9284 0.123506 57.2284 0.123506 56.7755 0.576394L47.9237 9.42828L50.1881 11.6927L59.04 2.84083C59.4929 2.42911 59.4929 1.68803 59.04 1.23514Z",
|
|
67
|
-
fill: "#1e3860",
|
|
68
|
-
className: `${svg_fill({ variant })}`
|
|
69
|
-
}
|
|
70
|
-
),
|
|
71
|
-
/* @__PURE__ */ jsx(
|
|
72
|
-
"path",
|
|
73
|
-
{
|
|
74
|
-
d: "M22.8502 13.3396C22.8091 18.7331 18.4037 23.1384 13.0102 23.1384C7.57557 23.1384 3.17021 18.7331 3.17021 13.2984C3.17021 7.86378 7.61674 3.45842 13.0102 3.45842C18.4037 3.45842 22.8091 7.8226 22.8502 13.2573V13.3396ZM24.9088 0.247032H23.9619C23.3443 0.247032 22.8091 0.741091 22.8091 1.39984V4.73474C20.4623 1.97624 16.9627 0.247032 13.0102 0.247032C5.80519 0.247032 0 6.0934 0 13.2984C0 20.5035 5.84636 26.3498 13.0102 26.3498C16.9215 26.3498 20.4623 24.6206 22.8502 21.8621V25.197C22.8502 25.8146 23.3443 26.3498 24.003 26.3498H24.95C25.5676 26.3498 26.1028 25.8558 26.1028 25.197V1.39984C26.0616 0.782263 25.5676 0.247032 24.9088 0.247032Z",
|
|
75
|
-
fill: "#1e3860",
|
|
76
|
-
className: `${svg_fill({ variant })}`
|
|
77
|
-
}
|
|
78
|
-
)
|
|
79
|
-
]
|
|
80
|
-
}
|
|
81
|
-
)
|
|
96
|
+
children: website.get(project)
|
|
82
97
|
}
|
|
83
98
|
) }) });
|
|
84
99
|
};
|
|
@@ -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 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_1v54w_1";
|
|
2
|
+
const wrapper = "_wrapper_1v54w_5";
|
|
3
|
+
const header_main_row = "_header_main_row_1v54w_11";
|
|
4
|
+
const mobile_header = "_mobile_header_1v54w_12";
|
|
5
|
+
const logo_wrap = "_logo_wrap_1v54w_18";
|
|
6
|
+
const primary_links = "_primary_links_1v54w_22";
|
|
7
|
+
const main_nav_link = "_main_nav_link_1v54w_26";
|
|
8
|
+
const sub_nav_link = "_sub_nav_link_1v54w_48";
|
|
9
|
+
const signin_wrap = "_signin_wrap_1v54w_50";
|
|
10
|
+
const signin_btn = "_signin_btn_1v54w_51";
|
|
11
|
+
const sub_nav = "_sub_nav_1v54w_48";
|
|
12
|
+
const header_sub_row = "_header_sub_row_1v54w_93";
|
|
13
|
+
const signin_dropdown = "_signin_dropdown_1v54w_109";
|
|
14
|
+
const shadow = "_shadow_1v54w_119";
|
|
15
|
+
const signin_header = "_signin_header_1v54w_127";
|
|
16
|
+
const signin_subheader = "_signin_subheader_1v54w_134";
|
|
17
|
+
const opacity = "_opacity_1v54w_156";
|
|
18
|
+
const fadeInDown = "_fadeInDown_1v54w_1";
|
|
19
|
+
const footer = "_footer_1v54w_162";
|
|
20
|
+
const open = "_open_1v54w_178";
|
|
21
|
+
const dd_wrapper = "_dd_wrapper_1v54w_190";
|
|
22
|
+
const dd_media = "_dd_media_1v54w_195";
|
|
23
|
+
const dd_media_img = "_dd_media_img_1v54w_200";
|
|
24
|
+
const dd_site_navs = "_dd_site_navs_1v54w_204";
|
|
25
|
+
const dd_media_header = "_dd_media_header_1v54w_211";
|
|
26
|
+
const mt_8 = "_mt_8_1v54w_220";
|
|
27
|
+
const mt_16 = "_mt_16_1v54w_224";
|
|
28
|
+
const ml_8 = "_ml_8_1v54w_228";
|
|
29
|
+
const dd_media_cta = "_dd_media_cta_1v54w_232";
|
|
30
|
+
const reversed_row = "_reversed_row_1v54w_246";
|
|
31
|
+
const headline = "_headline_1v54w_262";
|
|
32
|
+
const nav_anchor = "_nav_anchor_1v54w_268";
|
|
33
|
+
const headline_cta = "_headline_cta_1v54w_276";
|
|
34
|
+
const site_lists = "_site_lists_1v54w_291";
|
|
35
|
+
const hamburger = "_hamburger_1v54w_326";
|
|
36
|
+
const mobile_only = "_mobile_only_1v54w_340";
|
|
37
|
+
const mobile_logo = "_mobile_logo_1v54w_346";
|
|
38
|
+
const highlight = "_highlight_1v54w_351";
|
|
39
|
+
const mobile_nav = "_mobile_nav_1v54w_387";
|
|
40
|
+
const mobile_opened = "_mobile_opened_1v54w_398";
|
|
41
|
+
const mobile_nav_item = "_mobile_nav_item_1v54w_402";
|
|
42
|
+
const has_dropdown = "_has_dropdown_1v54w_417";
|
|
43
|
+
const icon_wrap = "_icon_wrap_1v54w_438";
|
|
44
|
+
const mobile_footer = "_mobile_footer_1v54w_443";
|
|
45
|
+
const mobile_footer_content = "_mobile_footer_content_1v54w_448";
|
|
46
|
+
const mobile_footer_media = "_mobile_footer_media_1v54w_462";
|
|
47
|
+
const footer_cta = "_footer_cta_1v54w_468";
|
|
48
|
+
const inner_wrapper = "_inner_wrapper_1v54w_496";
|
|
49
|
+
const btn = "_btn_1v54w_501";
|
|
50
|
+
const sub_menu = "_sub_menu_1v54w_506";
|
|
51
|
+
const main = "_main_1v54w_26";
|
|
52
|
+
const dd_footer = "_dd_footer_1v54w_531";
|
|
53
|
+
const desktop_only = "_desktop_only_1v54w_551";
|
|
54
54
|
const styles = {
|
|
55
55
|
header,
|
|
56
56
|
wrapper,
|
|
@@ -20,7 +20,7 @@ const subNavItems = {
|
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
name: "Sales Team",
|
|
23
|
-
url: "/
|
|
23
|
+
url: "/sales-team",
|
|
24
24
|
id: "ps_3"
|
|
25
25
|
}
|
|
26
26
|
],
|
|
@@ -44,7 +44,7 @@ const subNavItems = {
|
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
name: "Banking and Lending Solutions",
|
|
47
|
-
url: "/growth-solutions/
|
|
47
|
+
url: "/growth-solutions/banking-and-lending-solutions",
|
|
48
48
|
id: "gs_3"
|
|
49
49
|
}
|
|
50
50
|
]
|
|
@@ -21,8 +21,12 @@ function NavBar() {
|
|
|
21
21
|
const signInToggle = () => setisOpenSignInToggle(!isOpenSignInToggle);
|
|
22
22
|
const mobileToggle = () => setisOpenMobile(!isOpenMobile);
|
|
23
23
|
const handleClick = (index) => setActiveIndex(index);
|
|
24
|
-
const [
|
|
25
|
-
const
|
|
24
|
+
const [isOpenProducts1, setisOpenProducts1] = useState(false);
|
|
25
|
+
const [isOpenProducts2, setisOpenProducts2] = useState(false);
|
|
26
|
+
const [isOpenProducts3, setisOpenProducts3] = useState(false);
|
|
27
|
+
const toggleProducts1 = () => setisOpenProducts1(!isOpenProducts1);
|
|
28
|
+
const toggleProducts2 = () => setisOpenProducts2(!isOpenProducts2);
|
|
29
|
+
const toggleProducts3 = () => setisOpenProducts3(!isOpenProducts3);
|
|
26
30
|
const getActiveIndex = () => {
|
|
27
31
|
const pathname = "/" + location.pathname.split("/")[1];
|
|
28
32
|
const index = navItems.findIndex(
|
|
@@ -236,7 +240,7 @@ function NavBar() {
|
|
|
236
240
|
}
|
|
237
241
|
) })
|
|
238
242
|
] }),
|
|
239
|
-
/* @__PURE__ */ jsx("div", { className: styles.mobile_body, children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", "aria-expanded":
|
|
243
|
+
/* @__PURE__ */ jsx("div", { className: styles.mobile_body, children: /* @__PURE__ */ jsxs("ul", { className: "list_unstyled", "aria-expanded": isOpenMobile, children: [
|
|
240
244
|
/* @__PURE__ */ jsx("li", { className: `${styles.mobile_nav_item}`, children: /* @__PURE__ */ jsx(
|
|
241
245
|
"a",
|
|
242
246
|
{
|
|
@@ -256,7 +260,7 @@ function NavBar() {
|
|
|
256
260
|
"a",
|
|
257
261
|
{
|
|
258
262
|
href: "#",
|
|
259
|
-
onClick:
|
|
263
|
+
onClick: toggleProducts1,
|
|
260
264
|
role: "button",
|
|
261
265
|
className: clsx("flex_row", "between"),
|
|
262
266
|
children: [
|
|
@@ -266,7 +270,7 @@ function NavBar() {
|
|
|
266
270
|
{
|
|
267
271
|
className: clsx(
|
|
268
272
|
styles.icon_wrap,
|
|
269
|
-
|
|
273
|
+
isOpenProducts1 && styles.open
|
|
270
274
|
),
|
|
271
275
|
children: /* @__PURE__ */ jsx(
|
|
272
276
|
"svg",
|
|
@@ -293,7 +297,7 @@ function NavBar() {
|
|
|
293
297
|
/* @__PURE__ */ jsxs(
|
|
294
298
|
"div",
|
|
295
299
|
{
|
|
296
|
-
className: clsx(styles.sub_menu,
|
|
300
|
+
className: clsx(styles.sub_menu, isOpenProducts1 && expand),
|
|
297
301
|
children: [
|
|
298
302
|
/* @__PURE__ */ jsx(
|
|
299
303
|
"a",
|
|
@@ -337,7 +341,7 @@ function NavBar() {
|
|
|
337
341
|
"a",
|
|
338
342
|
{
|
|
339
343
|
href: "#",
|
|
340
|
-
onClick:
|
|
344
|
+
onClick: toggleProducts2,
|
|
341
345
|
role: "button",
|
|
342
346
|
className: clsx("flex_row", "between"),
|
|
343
347
|
children: [
|
|
@@ -347,7 +351,7 @@ function NavBar() {
|
|
|
347
351
|
{
|
|
348
352
|
className: clsx(
|
|
349
353
|
styles.icon_wrap,
|
|
350
|
-
|
|
354
|
+
isOpenProducts2 && styles.open
|
|
351
355
|
),
|
|
352
356
|
children: /* @__PURE__ */ jsx(
|
|
353
357
|
"svg",
|
|
@@ -374,7 +378,7 @@ function NavBar() {
|
|
|
374
378
|
/* @__PURE__ */ jsxs(
|
|
375
379
|
"div",
|
|
376
380
|
{
|
|
377
|
-
className: clsx(styles.sub_menu,
|
|
381
|
+
className: clsx(styles.sub_menu, isOpenProducts2 && expand),
|
|
378
382
|
children: [
|
|
379
383
|
/* @__PURE__ */ jsx(
|
|
380
384
|
"a",
|
|
@@ -409,7 +413,7 @@ function NavBar() {
|
|
|
409
413
|
"a",
|
|
410
414
|
{
|
|
411
415
|
href: "#",
|
|
412
|
-
onClick:
|
|
416
|
+
onClick: toggleProducts3,
|
|
413
417
|
role: "button",
|
|
414
418
|
className: clsx("flex_row", "between"),
|
|
415
419
|
children: [
|
|
@@ -419,7 +423,7 @@ function NavBar() {
|
|
|
419
423
|
{
|
|
420
424
|
className: clsx(
|
|
421
425
|
styles.icon_wrap,
|
|
422
|
-
|
|
426
|
+
isOpenProducts3 && styles.open
|
|
423
427
|
),
|
|
424
428
|
children: /* @__PURE__ */ jsx(
|
|
425
429
|
"svg",
|
|
@@ -446,7 +450,7 @@ function NavBar() {
|
|
|
446
450
|
/* @__PURE__ */ jsxs(
|
|
447
451
|
"div",
|
|
448
452
|
{
|
|
449
|
-
className: clsx(styles.sub_menu,
|
|
453
|
+
className: clsx(styles.sub_menu, isOpenProducts3 && expand),
|
|
450
454
|
children: [
|
|
451
455
|
/* @__PURE__ */ jsx(
|
|
452
456
|
"a",
|
|
@@ -476,7 +480,7 @@ function NavBar() {
|
|
|
476
480
|
/* @__PURE__ */ jsx(
|
|
477
481
|
"a",
|
|
478
482
|
{
|
|
479
|
-
href: "/growth-solutions/
|
|
483
|
+
href: "/growth-solutions/banking-and-lending-solutions",
|
|
480
484
|
role: "menuitem",
|
|
481
485
|
children: "Banking and Lending Solutions"
|
|
482
486
|
}
|
|
@@ -15,8 +15,8 @@ const StepItem = ({
|
|
|
15
15
|
/* @__PURE__ */ jsx("div", { className: `flex center middle ${step_num({ variant })}`, children: counter })
|
|
16
16
|
] }) }),
|
|
17
17
|
/* @__PURE__ */ jsxs("div", { className: bullet_details, children: [
|
|
18
|
-
/* @__PURE__ */ jsx("span", { className: `${bs_topic({ variant })}`, role: "heading", children: title }),
|
|
19
|
-
/* @__PURE__ */ jsx("span", { className: bs_copy, children: /* @__PURE__ */ jsx(Fragment, { children: description }) })
|
|
18
|
+
title && /* @__PURE__ */ jsx("span", { className: `${bs_topic({ variant })}`, role: "heading", children: title }),
|
|
19
|
+
description && /* @__PURE__ */ jsx("span", { className: bs_copy, children: /* @__PURE__ */ jsx(Fragment, { children: description }) })
|
|
20
20
|
] })
|
|
21
21
|
] });
|
|
22
22
|
};
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
|
|
|
28
28
|
style?: import('react').CSSProperties | undefined;
|
|
29
29
|
tabIndex?: number | undefined;
|
|
30
30
|
title?: string | undefined;
|
|
31
|
-
translate?: "
|
|
31
|
+
translate?: "no" | "yes" | undefined;
|
|
32
32
|
radioGroup?: string | undefined;
|
|
33
33
|
role?: import('react').AriaRole | undefined;
|
|
34
34
|
about?: string | undefined;
|