@axos-web-dev/shared-components 0.0.69 → 0.0.71
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/ArticlesSet/ArticlesSet.js +3 -3
- package/dist/AwardsBanner/AwardsBanner.js +3 -3
- package/dist/Calculators/Calculator.js +2 -0
- package/dist/CallToActionBar/CallToActionBar.css.d.ts +1 -4
- package/dist/CallToActionBar/CallToActionBar.css.js +14 -20
- package/dist/CallToActionBar/index.js +2 -2
- package/dist/Carousel/index.js +2 -0
- package/dist/Chevron/index.js +2 -0
- package/dist/Comparison/Comparison.js +25 -2
- package/dist/Comparison/ComparisonSet.js +2 -0
- package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +2 -0
- package/dist/Forms/ContactUsAAS.js +22 -24
- package/dist/Forms/ContactUsBusiness.js +2 -0
- package/dist/Forms/EmailOnly.js +2 -0
- package/dist/Forms/FormEnums.d.ts +3 -2
- package/dist/Forms/SalesforceFieldsForm.d.ts +0 -12
- package/dist/Forms/SalesforceFieldsForm.js +1 -4
- package/dist/Forms/SuccesForm.js +2 -0
- package/dist/HeroBanner/HeroBanner.interface.d.ts +1 -1
- package/dist/HeroBanner/HeroBanner.js +220 -105
- package/dist/HeroBanner/LargeBanner.css.d.ts +77 -0
- package/dist/HeroBanner/LargeBanner.css.js +21 -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/Input/DatePicker.css.d.ts +1 -0
- package/dist/Input/DatePicker.css.js +6 -0
- package/dist/Input/Datepicker.d.ts +4 -0
- package/dist/Input/Datepicker.js +40 -0
- package/dist/Input/InputTextArea.js +2 -1
- package/dist/Modal/Modal.js +2 -0
- package/dist/NavigationMenu/AxosAdvisor/NavBar.module.js +56 -53
- package/dist/NavigationMenu/AxosAdvisor/SubNavBar.js +3 -3
- package/dist/NavigationMenu/AxosAdvisor/SubNavbar.css.d.ts +1 -1
- package/dist/NavigationMenu/AxosAdvisor/SubNavbar.css.js +2 -2
- package/dist/NavigationMenu/AxosAdvisorServices/NavBar.module.js +57 -54
- package/dist/NavigationMenu/AxosBank/NavBar.css.d.ts +2 -0
- package/dist/NavigationMenu/AxosBank/NavBar.css.js +9 -0
- package/dist/NavigationMenu/AxosBank/NavBar.module.js +170 -0
- package/dist/NavigationMenu/AxosBank/NavData.d.ts +31 -0
- package/dist/NavigationMenu/AxosBank/NavData.js +132 -0
- package/dist/NavigationMenu/AxosBank/SubNavBar.d.ts +1 -0
- package/dist/NavigationMenu/AxosBank/SubNavBar.js +2893 -0
- package/dist/NavigationMenu/AxosBank/SubNavbar.css.d.ts +4 -0
- package/dist/NavigationMenu/AxosBank/SubNavbar.css.js +13 -0
- package/dist/NavigationMenu/AxosBank/index.d.ts +2 -0
- package/dist/NavigationMenu/AxosBank/index.js +703 -0
- package/dist/NavigationMenu/AxosFiduciary/NavBar.module.js +43 -40
- package/dist/NavigationMenu/NavItem/index.js +2 -1
- package/dist/SetContainer/SetContainer.js +2 -0
- package/dist/VideoWrapper/index.js +3 -3
- package/dist/assets/Button/Button.css +2 -2
- package/dist/assets/CallToActionBar/CallToActionBar.css +21 -34
- package/dist/assets/Carousel/Carousel.css +1 -0
- package/dist/assets/HeroBanner/LargeBanner.css +243 -0
- package/dist/assets/Input/DatePicker.css +86 -0
- package/dist/assets/NavigationMenu/AxosAdvisor/NavBar.css.css +119 -115
- package/dist/assets/NavigationMenu/AxosAdvisorServices/NavBar.css.css +122 -118
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css +9 -0
- package/dist/assets/NavigationMenu/AxosBank/NavBar.css.css +626 -0
- package/dist/assets/NavigationMenu/AxosBank/SubNavbar.css +17 -0
- package/dist/assets/NavigationMenu/AxosFiduciary/NavBar.css.css +85 -81
- package/dist/assets/SetContainer/SetContainer.css +20 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { Button } from "../Button/Button.js";
|
|
3
3
|
import "../Button/Button.css.js";
|
|
4
4
|
import "react";
|
|
@@ -7,6 +7,7 @@ import { Chevron } from "../Chevron/index.js";
|
|
|
7
7
|
import { getVariant } from "../utils/getVariant.js";
|
|
8
8
|
import clsx from "clsx";
|
|
9
9
|
import { logout, hero_banner, hero_wrapper, hero_content, reversed, hero_text, heroSupertag, headline_text, hero_btns, hero_img } from "./HeroBanner.css.js";
|
|
10
|
+
import { lg_hero_banner, lg_hero_content, lg_hero_text, lg_hero_eyebrow, lg_headline_text, lg_hero_img, lg_hero_sizing } from "./LargeBanner.css.js";
|
|
10
11
|
import { selection_section, selection_section_bg, selection_section_content, selection_headline_text, selection_section_icon, selection_section_icon_img } from "./SelectionBanner.css.js";
|
|
11
12
|
const HeroBanner = ({
|
|
12
13
|
id,
|
|
@@ -21,134 +22,248 @@ const HeroBanner = ({
|
|
|
21
22
|
selection,
|
|
22
23
|
isSelectionBanner = false
|
|
23
24
|
}) => {
|
|
24
|
-
return /* @__PURE__ */
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"div",
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
callToActionRow && callToActionRow.length > 0 && /* @__PURE__ */ jsx("div", { className: `${hero_btns}`, children: callToActionRow.map(
|
|
39
|
-
({
|
|
40
|
-
id: id2,
|
|
41
|
-
variant: variant2,
|
|
42
|
-
displayText,
|
|
43
|
-
targetUrl,
|
|
44
|
-
type
|
|
45
|
-
}) => type === "Button" ? /* @__PURE__ */ jsx(
|
|
46
|
-
Button,
|
|
25
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
26
|
+
bannerType === "Hero" || /* @__PURE__ */ jsx(
|
|
27
|
+
"section",
|
|
28
|
+
{
|
|
29
|
+
id: `id_${id}`,
|
|
30
|
+
className: `${bannerType !== "Hero" ? logout : ""} ${hero_banner({ variant: getVariant(variant) })}`,
|
|
31
|
+
children: /* @__PURE__ */ jsx("div", { className: `${hero_wrapper} containment`, children: /* @__PURE__ */ jsxs(
|
|
32
|
+
"div",
|
|
33
|
+
{
|
|
34
|
+
className: `${hero_content} ${imagePlacement !== "Right" ? reversed : ""}`,
|
|
35
|
+
children: [
|
|
36
|
+
/* @__PURE__ */ jsxs("div", { className: hero_text, children: [
|
|
37
|
+
eyebrow && /* @__PURE__ */ jsx(
|
|
38
|
+
"h1",
|
|
47
39
|
{
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
40
|
+
className: heroSupertag({ variant: getVariant(variant) }),
|
|
41
|
+
children: eyebrow
|
|
42
|
+
}
|
|
43
|
+
),
|
|
44
|
+
eyebrow ? /* @__PURE__ */ jsx(
|
|
45
|
+
"h2",
|
|
46
|
+
{
|
|
47
|
+
className: headline_text({
|
|
48
|
+
variant: getVariant(variant)
|
|
49
|
+
}),
|
|
50
|
+
children: headline
|
|
51
|
+
}
|
|
55
52
|
) : /* @__PURE__ */ jsx(
|
|
56
|
-
|
|
53
|
+
"h1",
|
|
57
54
|
{
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
children:
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
)
|
|
65
|
-
|
|
66
|
-
] }),
|
|
67
|
-
!isSelectionBanner ? /* @__PURE__ */ jsx("div", { className: hero_img, role: "presentation", children: /* @__PURE__ */ jsx(
|
|
68
|
-
"img",
|
|
69
|
-
{
|
|
70
|
-
decoding: "async",
|
|
71
|
-
"data-nimg": 1,
|
|
72
|
-
className: "img_fluid",
|
|
73
|
-
style: { color: "transparent" },
|
|
74
|
-
src: `${image?.src}?fm=webp&w=604&h=480&fit=fill`,
|
|
75
|
-
alt: image?.alt
|
|
76
|
-
}
|
|
77
|
-
) }) : /* @__PURE__ */ jsxs("div", { className: clsx(selection_section), children: [
|
|
78
|
-
/* @__PURE__ */ jsx("div", { className: clsx(selection_section_bg) }),
|
|
79
|
-
/* @__PURE__ */ jsxs("div", { className: clsx(selection_section_content), children: [
|
|
80
|
-
/* @__PURE__ */ jsxs("div", { children: [
|
|
81
|
-
/* @__PURE__ */ jsx(
|
|
82
|
-
"h3",
|
|
83
|
-
{
|
|
84
|
-
className: clsx(
|
|
85
|
-
"header_2",
|
|
86
|
-
selection_headline_text({ variant: getVariant(variant) })
|
|
87
|
-
),
|
|
88
|
-
children: selection?.headline
|
|
89
|
-
}
|
|
90
|
-
),
|
|
91
|
-
/* @__PURE__ */ jsx("div", { children: selection?.bodyCopy })
|
|
92
|
-
] }),
|
|
93
|
-
selection?.callToActionRow && selection?.callToActionRow.length > 0 && /* @__PURE__ */ jsx("div", { className: `${hero_btns}`, children: selection?.callToActionRow.map(
|
|
55
|
+
className: headline_text({
|
|
56
|
+
variant: getVariant(variant)
|
|
57
|
+
}),
|
|
58
|
+
children: headline
|
|
59
|
+
}
|
|
60
|
+
),
|
|
61
|
+
/* @__PURE__ */ jsx(Fragment, { children: bodyCopy }),
|
|
62
|
+
callToActionRow && callToActionRow.length > 0 && /* @__PURE__ */ jsx("div", { className: `${hero_btns}`, children: callToActionRow.map(
|
|
94
63
|
({
|
|
95
64
|
id: id2,
|
|
96
|
-
|
|
65
|
+
variant: variant2,
|
|
97
66
|
displayText,
|
|
98
67
|
targetUrl,
|
|
99
68
|
type
|
|
100
|
-
}) => type === "Button" ? /* @__PURE__ */
|
|
69
|
+
}) => type === "Button" ? /* @__PURE__ */ jsx(
|
|
101
70
|
Button,
|
|
102
71
|
{
|
|
103
72
|
targetUrl,
|
|
104
|
-
color:
|
|
73
|
+
color: getVariant(variant2),
|
|
105
74
|
size: "large",
|
|
106
75
|
rounded: "medium",
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
displayText
|
|
118
|
-
]
|
|
76
|
+
children: displayText
|
|
77
|
+
},
|
|
78
|
+
id2
|
|
79
|
+
) : /* @__PURE__ */ jsx(
|
|
80
|
+
Chevron,
|
|
81
|
+
{
|
|
82
|
+
targetUrl,
|
|
83
|
+
variant: getVariant(variant2),
|
|
84
|
+
goBack: bannerType == "Logout",
|
|
85
|
+
children: displayText
|
|
119
86
|
},
|
|
120
87
|
id2
|
|
121
|
-
)
|
|
88
|
+
)
|
|
89
|
+
) })
|
|
90
|
+
] }),
|
|
91
|
+
!isSelectionBanner ? /* @__PURE__ */ jsx("div", { className: hero_img, role: "presentation", children: /* @__PURE__ */ jsx(
|
|
92
|
+
"img",
|
|
93
|
+
{
|
|
94
|
+
decoding: "async",
|
|
95
|
+
"data-nimg": 1,
|
|
96
|
+
className: "img_fluid",
|
|
97
|
+
style: { color: "transparent" },
|
|
98
|
+
src: `${image?.src}?fm=webp&w=604&h=480&fit=fill`,
|
|
99
|
+
alt: image?.alt
|
|
100
|
+
}
|
|
101
|
+
) }) : /* @__PURE__ */ jsxs("div", { className: clsx(selection_section), children: [
|
|
102
|
+
/* @__PURE__ */ jsx("div", { className: clsx(selection_section_bg) }),
|
|
103
|
+
/* @__PURE__ */ jsxs("div", { className: clsx(selection_section_content), children: [
|
|
104
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
105
|
+
/* @__PURE__ */ jsx(
|
|
106
|
+
"h3",
|
|
107
|
+
{
|
|
108
|
+
className: clsx(
|
|
109
|
+
"header_2",
|
|
110
|
+
selection_headline_text({
|
|
111
|
+
variant: getVariant(variant)
|
|
112
|
+
})
|
|
113
|
+
),
|
|
114
|
+
children: selection?.headline
|
|
115
|
+
}
|
|
116
|
+
),
|
|
117
|
+
/* @__PURE__ */ jsx("div", { children: selection?.bodyCopy })
|
|
118
|
+
] }),
|
|
119
|
+
selection?.callToActionRow && selection?.callToActionRow.length > 0 && /* @__PURE__ */ jsx("div", { className: `${hero_btns}`, children: selection?.callToActionRow.map(
|
|
120
|
+
({
|
|
121
|
+
id: id2,
|
|
122
|
+
icon,
|
|
123
|
+
displayText,
|
|
124
|
+
targetUrl,
|
|
125
|
+
type
|
|
126
|
+
}) => type === "Button" ? /* @__PURE__ */ jsxs(
|
|
127
|
+
Button,
|
|
128
|
+
{
|
|
129
|
+
targetUrl,
|
|
130
|
+
color: "tertiary",
|
|
131
|
+
size: "large",
|
|
132
|
+
rounded: "medium",
|
|
133
|
+
square: true,
|
|
134
|
+
children: [
|
|
135
|
+
/* @__PURE__ */ jsx(
|
|
136
|
+
"div",
|
|
137
|
+
{
|
|
138
|
+
className: clsx(selection_section_icon),
|
|
139
|
+
children: /* @__PURE__ */ jsx(
|
|
140
|
+
"img",
|
|
141
|
+
{
|
|
142
|
+
alt: "",
|
|
143
|
+
src: icon,
|
|
144
|
+
className: clsx(
|
|
145
|
+
selection_section_icon_img
|
|
146
|
+
)
|
|
147
|
+
}
|
|
148
|
+
)
|
|
149
|
+
}
|
|
150
|
+
),
|
|
151
|
+
displayText
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
id2
|
|
155
|
+
) : /* @__PURE__ */ jsxs(
|
|
156
|
+
Button,
|
|
157
|
+
{
|
|
158
|
+
targetUrl,
|
|
159
|
+
color: "tertiary",
|
|
160
|
+
rounded: "medium",
|
|
161
|
+
size: "large",
|
|
162
|
+
square: true,
|
|
163
|
+
children: [
|
|
164
|
+
/* @__PURE__ */ jsx(
|
|
165
|
+
"div",
|
|
166
|
+
{
|
|
167
|
+
className: clsx(selection_section_icon),
|
|
168
|
+
children: /* @__PURE__ */ jsx(
|
|
169
|
+
"img",
|
|
170
|
+
{
|
|
171
|
+
alt: "",
|
|
172
|
+
src: icon,
|
|
173
|
+
className: clsx(
|
|
174
|
+
selection_section_icon_img
|
|
175
|
+
)
|
|
176
|
+
}
|
|
177
|
+
)
|
|
178
|
+
}
|
|
179
|
+
),
|
|
180
|
+
displayText
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
id2
|
|
184
|
+
)
|
|
185
|
+
) })
|
|
186
|
+
] })
|
|
187
|
+
] })
|
|
188
|
+
]
|
|
189
|
+
}
|
|
190
|
+
) })
|
|
191
|
+
},
|
|
192
|
+
id
|
|
193
|
+
),
|
|
194
|
+
bannerType === "Large" && /* @__PURE__ */ jsx(
|
|
195
|
+
"section",
|
|
196
|
+
{
|
|
197
|
+
className: lg_hero_banner({ variant: getVariant(variant) }),
|
|
198
|
+
id: `id_${id}`,
|
|
199
|
+
children: /* @__PURE__ */ jsx("div", { className: "containment", children: /* @__PURE__ */ jsxs("div", { className: `${lg_hero_content} flex between middle`, children: [
|
|
200
|
+
/* @__PURE__ */ jsx(
|
|
201
|
+
"div",
|
|
202
|
+
{
|
|
203
|
+
className: `${lg_hero_text({ variant: getVariant(variant) })} rounded`,
|
|
204
|
+
children: /* @__PURE__ */ jsxs("div", { className: "containment", children: [
|
|
205
|
+
eyebrow && /* @__PURE__ */ jsx(
|
|
206
|
+
"h1",
|
|
207
|
+
{
|
|
208
|
+
className: lg_hero_eyebrow({
|
|
209
|
+
variant: getVariant(variant)
|
|
210
|
+
}),
|
|
211
|
+
children: eyebrow
|
|
212
|
+
}
|
|
213
|
+
),
|
|
214
|
+
eyebrow ? /* @__PURE__ */ jsx(
|
|
215
|
+
"h2",
|
|
216
|
+
{
|
|
217
|
+
className: lg_headline_text({
|
|
218
|
+
variant: getVariant(variant)
|
|
219
|
+
}),
|
|
220
|
+
children: headline
|
|
221
|
+
}
|
|
222
|
+
) : /* @__PURE__ */ jsx(
|
|
223
|
+
"h1",
|
|
224
|
+
{
|
|
225
|
+
className: headline_text({
|
|
226
|
+
variant: getVariant(variant)
|
|
227
|
+
}),
|
|
228
|
+
children: headline
|
|
229
|
+
}
|
|
230
|
+
),
|
|
231
|
+
/* @__PURE__ */ jsx("div", { className: "push_up", children: /* @__PURE__ */ jsx(Fragment, { children: bodyCopy }) }),
|
|
232
|
+
callToActionRow && callToActionRow.length > 0 && /* @__PURE__ */ jsx("div", { className: `${hero_btns}`, children: callToActionRow.map(
|
|
233
|
+
({
|
|
234
|
+
id: id2,
|
|
235
|
+
variant: variant2,
|
|
236
|
+
displayText,
|
|
237
|
+
targetUrl,
|
|
238
|
+
type
|
|
239
|
+
}) => type === "Button" ? /* @__PURE__ */ jsx(
|
|
122
240
|
Button,
|
|
123
241
|
{
|
|
124
242
|
targetUrl,
|
|
125
|
-
color:
|
|
126
|
-
rounded: "medium",
|
|
243
|
+
color: getVariant(variant2),
|
|
127
244
|
size: "large",
|
|
128
|
-
|
|
129
|
-
children:
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
displayText
|
|
139
|
-
]
|
|
245
|
+
rounded: "medium",
|
|
246
|
+
children: displayText
|
|
247
|
+
},
|
|
248
|
+
id2
|
|
249
|
+
) : /* @__PURE__ */ jsx(
|
|
250
|
+
Chevron,
|
|
251
|
+
{
|
|
252
|
+
targetUrl,
|
|
253
|
+
variant: getVariant(variant2),
|
|
254
|
+
children: displayText
|
|
140
255
|
},
|
|
141
256
|
id2
|
|
142
257
|
)
|
|
143
258
|
) })
|
|
144
259
|
] })
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
);
|
|
260
|
+
}
|
|
261
|
+
),
|
|
262
|
+
/* @__PURE__ */ jsx("div", { role: "presentation", className: "containment", children: /* @__PURE__ */ jsx("div", { className: `${lg_hero_img} rounded`, role: "presentation", children: /* @__PURE__ */ jsx("img", { alt: "", className: lg_hero_sizing, src: image?.src }) }) })
|
|
263
|
+
] }) })
|
|
264
|
+
}
|
|
265
|
+
)
|
|
266
|
+
] });
|
|
152
267
|
};
|
|
153
268
|
export {
|
|
154
269
|
HeroBanner
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
export declare const lg_hero_banner: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
2
|
+
variant: {
|
|
3
|
+
primary: {
|
|
4
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
5
|
+
};
|
|
6
|
+
secondary: {
|
|
7
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
8
|
+
};
|
|
9
|
+
tertiary: {
|
|
10
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
11
|
+
};
|
|
12
|
+
quaternary: {
|
|
13
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
}>;
|
|
17
|
+
export declare const lg_hero_content: string;
|
|
18
|
+
export declare const lg_hero_text: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
19
|
+
variant: {
|
|
20
|
+
primary: {
|
|
21
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
22
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
23
|
+
};
|
|
24
|
+
secondary: {
|
|
25
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
26
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
27
|
+
};
|
|
28
|
+
tertiary: {
|
|
29
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
30
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
31
|
+
};
|
|
32
|
+
quaternary: {
|
|
33
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
34
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
}>;
|
|
38
|
+
export declare const lg_hero_eyebrow: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
39
|
+
variant: {
|
|
40
|
+
primary: {
|
|
41
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
42
|
+
};
|
|
43
|
+
secondary: {
|
|
44
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
45
|
+
};
|
|
46
|
+
tertiary: {
|
|
47
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
48
|
+
backgroundClip: "text";
|
|
49
|
+
WebkitTextFillColor: "transparent";
|
|
50
|
+
textShadow: "0px 0px #00000000";
|
|
51
|
+
};
|
|
52
|
+
quaternary: {
|
|
53
|
+
background: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
54
|
+
backgroundClip: "text";
|
|
55
|
+
WebkitTextFillColor: "transparent";
|
|
56
|
+
textShadow: "0px 0px #00000000";
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
}>;
|
|
60
|
+
export declare const lg_headline_text: import('@vanilla-extract/recipes').RuntimeFn<{
|
|
61
|
+
variant: {
|
|
62
|
+
primary: {
|
|
63
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
64
|
+
};
|
|
65
|
+
secondary: {
|
|
66
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
67
|
+
};
|
|
68
|
+
tertiary: {
|
|
69
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
70
|
+
};
|
|
71
|
+
quaternary: {
|
|
72
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
}>;
|
|
76
|
+
export declare const lg_hero_img: string;
|
|
77
|
+
export declare const lg_hero_sizing: string;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/* empty css */
|
|
2
|
+
/* empty css */
|
|
3
|
+
/* empty css */
|
|
4
|
+
/* empty css */
|
|
5
|
+
import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
6
|
+
var lg_hero_banner = createRuntimeFn({ defaultClassName: "_1bsyngo0", variantClassNames: { variant: { primary: "_1bsyngo1", secondary: "_1bsyngo2", tertiary: "_1bsyngo3", quaternary: "_1bsyngo4" } }, defaultVariants: {}, compoundVariants: [] });
|
|
7
|
+
var lg_hero_content = "_1bsyngo5";
|
|
8
|
+
var lg_hero_text = createRuntimeFn({ defaultClassName: "_1bsyngo6", variantClassNames: { variant: { primary: "_1bsyngo7", secondary: "_1bsyngo8", tertiary: "_1bsyngo9", quaternary: "_1bsyngoa" } }, defaultVariants: {}, compoundVariants: [] });
|
|
9
|
+
var lg_hero_eyebrow = createRuntimeFn({ defaultClassName: "_1bsyngob", variantClassNames: { variant: { primary: "_1bsyngoc", secondary: "_1bsyngod", tertiary: "_1bsyngoe", quaternary: "_1bsyngof" } }, defaultVariants: {}, compoundVariants: [] });
|
|
10
|
+
var lg_headline_text = createRuntimeFn({ defaultClassName: "_1bsyngog", variantClassNames: { variant: { primary: "_1bsyngoh", secondary: "_1bsyngoi", tertiary: "_1bsyngoj", quaternary: "_1bsyngok" } }, defaultVariants: {}, compoundVariants: [] });
|
|
11
|
+
var lg_hero_img = "_1bsyngol";
|
|
12
|
+
var lg_hero_sizing = "_1bsyngom";
|
|
13
|
+
export {
|
|
14
|
+
lg_headline_text,
|
|
15
|
+
lg_hero_banner,
|
|
16
|
+
lg_hero_content,
|
|
17
|
+
lg_hero_eyebrow,
|
|
18
|
+
lg_hero_img,
|
|
19
|
+
lg_hero_sizing,
|
|
20
|
+
lg_hero_text
|
|
21
|
+
};
|
package/dist/Hyperlink/index.js
CHANGED
|
@@ -46,6 +46,7 @@ import "../Carousel/index.js";
|
|
|
46
46
|
/* empty css */
|
|
47
47
|
import "../Comparison/Comparison.css.js";
|
|
48
48
|
import "../HeroBanner/HeroBanner.css.js";
|
|
49
|
+
import "../HeroBanner/LargeBanner.css.js";
|
|
49
50
|
import "../HeroBanner/SelectionBanner.css.js";
|
|
50
51
|
import "../SetContainer/SetContainer.css.js";
|
|
51
52
|
import "../Tab/Tab.css.js";
|
|
@@ -59,6 +60,7 @@ import "../FooterDisclosure/FooterDisclosure.css.js";
|
|
|
59
60
|
import "../ImageBillboard/ImageBillboard.css.js";
|
|
60
61
|
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
61
62
|
/* empty css */
|
|
63
|
+
import "next/link.js";
|
|
62
64
|
/* empty css */
|
|
63
65
|
/* empty css */
|
|
64
66
|
/* empty css */
|
|
@@ -56,6 +56,7 @@ import "../ImageBillboard/ImageBillboard.css.js";
|
|
|
56
56
|
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
57
57
|
import "../Chevron/Chevron.css.js";
|
|
58
58
|
/* empty css */
|
|
59
|
+
import "next/link.js";
|
|
59
60
|
/* empty css */
|
|
60
61
|
/* empty css */
|
|
61
62
|
/* empty css */
|
|
@@ -71,6 +72,7 @@ import "../Table/Table.css.js";
|
|
|
71
72
|
import "next/script.js";
|
|
72
73
|
/* empty css */
|
|
73
74
|
/* empty css */
|
|
75
|
+
import "../HeroBanner/LargeBanner.css.js";
|
|
74
76
|
import "../HeroBanner/SelectionBanner.css.js";
|
|
75
77
|
const ImageLink = ({
|
|
76
78
|
id,
|
|
@@ -54,6 +54,7 @@ import "../ExecutiveBio/ExecutiveBio.css.js";
|
|
|
54
54
|
import "../FaqAccordion/index.js";
|
|
55
55
|
import "../FooterDisclosure/FooterDisclosure.css.js";
|
|
56
56
|
/* empty css */
|
|
57
|
+
import "../HeroBanner/LargeBanner.css.js";
|
|
57
58
|
import "../HeroBanner/SelectionBanner.css.js";
|
|
58
59
|
import "../ImageBillboard/ImageBillboard.css.js";
|
|
59
60
|
import ImageLink from "./ImageLink.js";
|
|
@@ -61,6 +62,7 @@ import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
|
61
62
|
import "../Chevron/Chevron.css.js";
|
|
62
63
|
/* empty css */
|
|
63
64
|
import "../Modal/contextApi/store.js";
|
|
65
|
+
import "next/link.js";
|
|
64
66
|
/* empty css */
|
|
65
67
|
/* empty css */
|
|
66
68
|
/* empty css */
|
package/dist/ImageLink/index.js
CHANGED
|
@@ -43,6 +43,7 @@ import "../Carousel/index.js";
|
|
|
43
43
|
/* empty css */
|
|
44
44
|
import "../Comparison/Comparison.css.js";
|
|
45
45
|
import "../HeroBanner/HeroBanner.css.js";
|
|
46
|
+
import "../HeroBanner/LargeBanner.css.js";
|
|
46
47
|
import "../HeroBanner/SelectionBanner.css.js";
|
|
47
48
|
import "../SetContainer/SetContainer.css.js";
|
|
48
49
|
import "../Tab/Tab.css.js";
|
|
@@ -57,6 +58,7 @@ import "../ImageBillboard/ImageBillboard.css.js";
|
|
|
57
58
|
import { ImageLinkSet } from "./ImageLinkSet.js";
|
|
58
59
|
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
59
60
|
/* empty css */
|
|
61
|
+
import "next/link.js";
|
|
60
62
|
/* empty css */
|
|
61
63
|
/* empty css */
|
|
62
64
|
/* empty css */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const datePicker: string;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import DatePicker from "react-date-picker";
|
|
4
|
+
import { wrapper, labelClassName, container, iconContainer, iconInput, helperText } from "./Input.css.js";
|
|
5
|
+
const DatePickerInput = forwardRef(
|
|
6
|
+
(props) => {
|
|
7
|
+
const {
|
|
8
|
+
disabled,
|
|
9
|
+
label,
|
|
10
|
+
iconLeft,
|
|
11
|
+
iconRight,
|
|
12
|
+
sizes,
|
|
13
|
+
error = false,
|
|
14
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
15
|
+
// skeleton = false,
|
|
16
|
+
helperText: helper,
|
|
17
|
+
variant
|
|
18
|
+
// ...rest
|
|
19
|
+
} = props;
|
|
20
|
+
return /* @__PURE__ */ jsxs("div", { className: wrapper(), children: [
|
|
21
|
+
label && /* @__PURE__ */ jsx(
|
|
22
|
+
"label",
|
|
23
|
+
{
|
|
24
|
+
className: labelClassName({ error, variant }),
|
|
25
|
+
htmlFor: props.name,
|
|
26
|
+
children: label
|
|
27
|
+
}
|
|
28
|
+
),
|
|
29
|
+
/* @__PURE__ */ jsxs("div", { className: container({ size: sizes, error }), children: [
|
|
30
|
+
iconLeft && /* @__PURE__ */ jsx("span", { className: iconContainer["left"], children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconLeft }) }),
|
|
31
|
+
/* @__PURE__ */ jsx(DatePicker, { minDate: /* @__PURE__ */ new Date() }),
|
|
32
|
+
iconRight && /* @__PURE__ */ jsx("span", { className: iconContainer.right, children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconRight }) })
|
|
33
|
+
] }),
|
|
34
|
+
/* @__PURE__ */ jsx("span", { className: helperText({ disabled, error }), children: helper })
|
|
35
|
+
] });
|
|
36
|
+
}
|
|
37
|
+
);
|
|
38
|
+
export {
|
|
39
|
+
DatePickerInput
|
|
40
|
+
};
|
|
@@ -35,7 +35,8 @@ const InputTextArea = forwardRef((props, ref) => {
|
|
|
35
35
|
className: clsx(props.className, input({ size: sizes })),
|
|
36
36
|
rows,
|
|
37
37
|
placeholder: props.placeholder,
|
|
38
|
-
maxLength
|
|
38
|
+
maxLength,
|
|
39
|
+
style: { resize: "vertical" }
|
|
39
40
|
}
|
|
40
41
|
),
|
|
41
42
|
iconRight && /* @__PURE__ */ jsx("span", { className: iconContainer.right, children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconRight }) })
|
package/dist/Modal/Modal.js
CHANGED
|
@@ -43,6 +43,7 @@ import "../Carousel/index.js";
|
|
|
43
43
|
/* empty css */
|
|
44
44
|
import "../Comparison/Comparison.css.js";
|
|
45
45
|
import "../HeroBanner/HeroBanner.css.js";
|
|
46
|
+
import "../HeroBanner/LargeBanner.css.js";
|
|
46
47
|
import "../HeroBanner/SelectionBanner.css.js";
|
|
47
48
|
import "../SetContainer/SetContainer.css.js";
|
|
48
49
|
import "../Tab/Tab.css.js";
|
|
@@ -56,6 +57,7 @@ import "../FooterDisclosure/FooterDisclosure.css.js";
|
|
|
56
57
|
import "../ImageBillboard/ImageBillboard.css.js";
|
|
57
58
|
import "../LandingPageHeader/LandingPageHeader.css.js";
|
|
58
59
|
import "./contextApi/store.js";
|
|
60
|
+
import "next/link.js";
|
|
59
61
|
/* empty css */
|
|
60
62
|
/* empty css */
|
|
61
63
|
/* empty css */
|