@axos-web-dev/shared-components 1.0.100-dev.85 → 1.0.100-dev.86-videoPoster

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.
Files changed (56) hide show
  1. package/dist/ATMLocator/ATMLocator.js +5 -5
  2. package/dist/Auth/ErrorAlert.js +5 -5
  3. package/dist/Button/Button.js +5 -5
  4. package/dist/Calculators/Calculator.js +5 -5
  5. package/dist/Calculators/MarginTradingCalculator/index.js +5 -5
  6. package/dist/Carousel/index.js +5 -5
  7. package/dist/Chevron/index.js +5 -5
  8. package/dist/Comparison/Comparison.js +5 -5
  9. package/dist/ExecutiveBio/ExecutiveBio.js +5 -5
  10. package/dist/FaqAccordion/index.js +5 -5
  11. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +5 -5
  12. package/dist/Forms/ApplyNow.js +5 -5
  13. package/dist/Forms/ContactUsBusiness.js +5 -5
  14. package/dist/Forms/ContactUsBusinessNameEmail.js +5 -5
  15. package/dist/Forms/ContactUsNMLSId.js +5 -5
  16. package/dist/Forms/CpraRequest.js +5 -5
  17. package/dist/Forms/CraPublicFile.js +5 -5
  18. package/dist/Forms/EmailOnly.js +5 -5
  19. package/dist/Forms/MortgageRate/MortgageRateForm.js +5 -5
  20. package/dist/Forms/MortgageRate/MortgageRateWatch.js +5 -5
  21. package/dist/Forms/MortgageWarehouseLending.js +5 -5
  22. package/dist/Forms/SuccesForm.js +5 -5
  23. package/dist/HeroBanner/HeroBanner.css.js +2 -1
  24. package/dist/HeroBanner/HeroBanner.d.ts +1 -1
  25. package/dist/HeroBanner/HeroBanner.interface.d.ts +4 -1
  26. package/dist/HeroBanner/HeroBanner.js +17 -153
  27. package/dist/HeroBanner/HeroVideoPoster.d.ts +6 -0
  28. package/dist/HeroBanner/HeroVideoPoster.js +154 -0
  29. package/dist/HeroBanner/LargeBanner.css.d.ts +110 -0
  30. package/dist/HeroBanner/LargeBanner.css.js +22 -8
  31. package/dist/HeroBanner/LargeHeroBanner.d.ts +5 -0
  32. package/dist/HeroBanner/LargeHeroBanner.js +224 -0
  33. package/dist/Hyperlink/index.js +5 -5
  34. package/dist/ImageLink/ImageLinkSet.js +3 -3
  35. package/dist/ImageLink/index.js +5 -5
  36. package/dist/Insight/Featured/CategorySelector.js +5 -5
  37. package/dist/Insight/Featured/Featured.js +5 -5
  38. package/dist/Insight/Featured/Header.js +5 -5
  39. package/dist/Modal/Modal.js +5 -5
  40. package/dist/NavigationMenu/AxosALTS/index.js +5 -5
  41. package/dist/NavigationMenu/AxosBank/MobileMenu/MobileMenu.js +5 -5
  42. package/dist/NavigationMenu/AxosBank/SubNavBar.js +5 -5
  43. package/dist/NavigationMenu/AxosBank/index.js +5 -5
  44. package/dist/NavigationMenu/LaVictoire/index.js +5 -5
  45. package/dist/NavigationMenu/Navbar.js +5 -5
  46. package/dist/NavigationMenu/SignInNavButton.js +5 -5
  47. package/dist/SocialMediaBar/iconsRepository.js +5 -5
  48. package/dist/VideoTile/VideoTile.js +1 -1
  49. package/dist/VideoWrapper/index.js +5 -5
  50. package/dist/assets/ExecutiveBio/ExecutiveBio.css +3 -0
  51. package/dist/assets/HeroBanner/HeroBanner.css +4 -0
  52. package/dist/assets/HeroBanner/LargeBanner.css +126 -59
  53. package/dist/utils/getPosition.d.ts +1 -0
  54. package/dist/utils/getPosition.js +17 -0
  55. package/dist/utils/variant.types.d.ts +1 -0
  56. package/package.json +1 -1
@@ -16,8 +16,8 @@ import '../assets/icons/FollowIcon/FollowIcon.css';import '../assets/icons/Downl
16
16
  import { getVariant } from "../utils/getVariant.js";
17
17
  import Image from "next/image.js";
18
18
  import clsx from "clsx";
19
- import { logout, hero_banner, hero_wrapper, hero_content, reversed, hero_text, heroSupertag, headline_text, hero_bullet_item, hero_sub_bullets, hero_btns, hero_img, img_contents, reversed_lg_image } from "./HeroBanner.css.js";
20
- 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";
19
+ import { LargeHeroBanner } from "./LargeHeroBanner.js";
20
+ import { logout, hero_banner, hero_wrapper, hero_content, reversed, hero_text, heroSupertag, headline_text, hero_bullet_item, hero_sub_bullets, hero_btns, hero_img, img_contents } from "./HeroBanner.css.js";
21
21
  import { selection_section_icon_img, selection_section_icon, selection_section, selection_section_bg, selection_section_content, selection_headline_text } from "./SelectionBanner.css.js";
22
22
  const HeroBanner = ({
23
23
  id,
@@ -32,7 +32,9 @@ const HeroBanner = ({
32
32
  imagePlacement = "Right",
33
33
  variant,
34
34
  selection,
35
- isSelectionBanner = false
35
+ isSelectionBanner = false,
36
+ video,
37
+ videoTextPosition
36
38
  }) => {
37
39
  return /* @__PURE__ */ jsx(Fragment, { children: bannerType === "Hero" || bannerType === "Logout" ? /* @__PURE__ */ jsx(
38
40
  "section",
@@ -270,158 +272,20 @@ const HeroBanner = ({
270
272
  },
271
273
  id
272
274
  ) : /* @__PURE__ */ jsx(
273
- "section",
275
+ LargeHeroBanner,
274
276
  {
275
- className: lg_hero_banner({ variant: getVariant(variant) }),
276
277
  id,
277
- children: /* @__PURE__ */ jsx("div", { className: `${hero_wrapper} containment`, children: /* @__PURE__ */ jsxs(
278
- "div",
279
- {
280
- className: `${lg_hero_content} ${imagePlacement !== "Right" ? reversed : ""} flex between middle `,
281
- children: [
282
- /* @__PURE__ */ jsx(
283
- "div",
284
- {
285
- className: `${lg_hero_text({ variant: getVariant(variant) })} rounded`,
286
- children: /* @__PURE__ */ jsxs("div", { className: "containment", children: [
287
- eyebrow && /* @__PURE__ */ jsx(
288
- "h1",
289
- {
290
- className: lg_hero_eyebrow({
291
- variant: getVariant(variant)
292
- }),
293
- children: eyebrow
294
- }
295
- ),
296
- eyebrow ? /* @__PURE__ */ jsx(
297
- "h2",
298
- {
299
- className: lg_headline_text({
300
- variant: getVariant(variant)
301
- }),
302
- children: headline
303
- }
304
- ) : /* @__PURE__ */ jsx(
305
- "h1",
306
- {
307
- className: lg_headline_text({
308
- variant: getVariant(variant)
309
- }),
310
- children: headline
311
- }
312
- ),
313
- /* @__PURE__ */ jsxs("div", { className: "push_up", children: [
314
- /* @__PURE__ */ jsx(Fragment, { children: bodyCopy }),
315
- bullets && bullets.length > 0 && /* @__PURE__ */ jsx("ul", { className: "list_unstyled mb_0 push_up_24", children: bullets.map(
316
- ({ id: id2, icon, copy, subBullet }) => !subBullet ? /* @__PURE__ */ jsxs(
317
- "li",
318
- {
319
- className: `list_item flex ${hero_bullet_item}`,
320
- children: [
321
- /* @__PURE__ */ jsx("div", { className: "img_item", children: getVariant(variant) ? /* @__PURE__ */ jsx(
322
- SvgCheckIcon,
323
- {
324
- variant: getVariant(variant) === "primary" || getVariant(variant) === "secondary" ? "secondary" : "primary"
325
- }
326
- ) : /* @__PURE__ */ jsx("img", { src: icon?.src, alt: icon?.altText }) }),
327
- /* @__PURE__ */ jsx("span", { children: copy })
328
- ]
329
- },
330
- id2
331
- ) : /* @__PURE__ */ jsx(
332
- "ul",
333
- {
334
- className: clsx(
335
- hero_sub_bullets,
336
- "mb_0",
337
- "push_up"
338
- ),
339
- children: /* @__PURE__ */ jsxs("li", { className: "list_item flex", children: [
340
- /* @__PURE__ */ jsx("div", { className: "img_item", children: /* @__PURE__ */ jsx(
341
- "img",
342
- {
343
- style: { maxWidth: "max-content" },
344
- src: icon?.src,
345
- alt: icon?.altText
346
- }
347
- ) }),
348
- /* @__PURE__ */ jsx("span", { children: copy })
349
- ] })
350
- },
351
- id2
352
- )
353
- ) })
354
- ] }),
355
- callToActionRow && callToActionRow.length > 0 && /* @__PURE__ */ jsx("div", { className: `${hero_btns}`, children: callToActionRow.map(
356
- ({
357
- id: id2,
358
- variant: variant2,
359
- displayText,
360
- targetUrl,
361
- type,
362
- newTab
363
- }) => type === "Button" ? /* @__PURE__ */ jsx(
364
- Button,
365
- {
366
- targetUrl,
367
- color: getVariant(variant2),
368
- size: "large",
369
- rounded: "medium",
370
- newTab,
371
- children: displayText
372
- },
373
- id2
374
- ) : /* @__PURE__ */ jsx(
375
- Chevron,
376
- {
377
- targetUrl,
378
- variant: getVariant(variant2),
379
- newTab,
380
- children: displayText
381
- },
382
- id2
383
- )
384
- ) })
385
- ] })
386
- }
387
- ),
388
- /* @__PURE__ */ jsx(
389
- "div",
390
- {
391
- className: `${lg_hero_img} ${imagePlacement !== "Right" ? reversed_lg_image : ""} rounded`,
392
- role: "presentation",
393
- children: /* @__PURE__ */ jsxs("picture", { className: img_contents, children: [
394
- /* @__PURE__ */ jsx(
395
- "source",
396
- {
397
- srcSet: `https:${image?.src}?fm=avif`,
398
- type: "image/avif"
399
- }
400
- ),
401
- /* @__PURE__ */ jsx(
402
- "source",
403
- {
404
- srcSet: `https:${image?.src}?fm=webp`,
405
- type: "image/webp"
406
- }
407
- ),
408
- /* @__PURE__ */ jsx(
409
- Image,
410
- {
411
- src: `https:${image?.src}?q=85`,
412
- className: lg_hero_sizing,
413
- alt: "",
414
- height: 600,
415
- width: 792,
416
- priority: true
417
- }
418
- )
419
- ] })
420
- }
421
- )
422
- ]
423
- }
424
- ) })
278
+ eyebrow,
279
+ headline,
280
+ bodyCopy,
281
+ bullets,
282
+ callToActionRow,
283
+ image,
284
+ imagePlacement,
285
+ variant,
286
+ bannerType,
287
+ video,
288
+ videoTextPosition
425
289
  }
426
290
  ) });
427
291
  };
@@ -0,0 +1,6 @@
1
+ export interface HeroVideoPosterProps {
2
+ videoId: string;
3
+ videoPlayer: string;
4
+ thumbnailImage?: string;
5
+ }
6
+ export declare const HeroVideoPoster: ({ videoId, videoPlayer, thumbnailImage, }: HeroVideoPosterProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,154 @@
1
+ import { jsxs, Fragment, jsx } from "react/jsx-runtime";
2
+ import { VideoInit } from "../VideoTile/VideoInit.js";
3
+ import "../icons/ArrowIcon/ArrowIcon.css.js";
4
+ import "../icons/CheckIcon/CheckIcon.css.js";
5
+ import '../assets/VideoWrapper/VideoWrapper.css';import '../assets/TopicalNavSet/TopicalNavSet.css';import '../assets/TopicalNavItem/TopicalNavItem.css';import '../assets/Topic/Topic.css';import '../assets/TextBlock/TextBlock.css';import '../assets/SocialMediaBar/SocialMediaBar.css';import '../assets/SecondaryFooter/SecondaryFooter.css';import '../assets/Pagination/Pagination.css';import '../assets/PageNavSet/PageNavigationSet.css';import '../assets/NavigationMenu/LaVictoire/NavBar.css';import '../assets/NavigationMenu/AxosALTS/NavBar.css';import '../assets/NavigationMenu/AxosClearing/NavBar.css';import '../assets/NavigationMenu/AxosBank/SubNavbar.css';import '../assets/NavigationMenu/AxosBank/NavBar.css';import '../assets/NavigationMenu/AxosAdvisorServices/SubNavbar.css';import '../assets/NavigationMenu/AxosAdvisorServices/NavBar.css';import '../assets/NavigationMenu/AxosAdvisor/SubNavbar.css';import '../assets/NavigationMenu/AxosAdvisor/NavBar.css';import '../assets/Insight/Featured/Header.css';import '../assets/Insight/Featured/CategorySelector.css';import '../assets/Insight/Featured/Featured.css';import '../assets/ImageLink/ImageLink.css';import '../assets/HelpArticle/HelpArticle.css';import '../assets/FooterSiteMap/AxosBank/FooterSiteMap.css';import '../assets/FooterDisclosure/LVF/LaVictorieFooter.css';import '../assets/DownloadTile/DownloadTile.css';import '../assets/CollectInformationAlert/CollectInformationAlert.css';import '../assets/Chatbot/ChatWindow.css';import '../assets/Chatbot/Chatbot.css';import '../assets/Chatbot/Bubble.css';import '../assets/Chatbot/AnimatedGradientBorder.css';import '../assets/CallToActionBar/CallToActionBar.css';import '../assets/Insight/Insight.css';import '../assets/AwardsItem/AwardsItem.css';import '../assets/AwardsBanner/AwardsBanner.css';import '../assets/Auth/SignIn.css';import '../assets/Auth/ErrorAlert.css';import '../assets/Calculators/MarginTradingCalculator/MarginTradingCalculator.css';import '../assets/Forms/QuickPricer/UserInformation.css';import '../assets/Forms/QuickPricer/QuickPricerResults.css';import '../assets/Modal/Modal.css';import '../assets/BulletItem/BulletItem.css';import '../assets/VideoTile/VideoTile.css';import '../assets/Typography/Typography.css';import '../assets/icons/FollowIcon/FollowIcon.css';import '../assets/icons/DownloadIcon/DownloadIcon.css';import '../assets/themes/victorie.css';import '../assets/themes/ufb.css';import '../assets/themes/premier.css';import '../assets/themes/axos.css';/* empty css */
6
+ /* empty css */
7
+ /* empty css */
8
+ /* empty css */
9
+ /* empty css */
10
+ /* empty css */
11
+ import "react-use";
12
+ /* empty css */
13
+ /* empty css */
14
+ import "react";
15
+ import "../ImageBillboard/ImageBillboard.css.js";
16
+ import "clsx";
17
+ import "../IconBillboard/IconBillboard.css.js";
18
+ /* empty css */
19
+ import "../Accordion/Accordion.js";
20
+ import "../Accordion/Accordion.css.js";
21
+ import "../AlertBanner/AlertBanner.css.js";
22
+ import "../Article/Article.css.js";
23
+ import "../ArticlesSet/ArticlesSet.css.js";
24
+ import "../Calculators/calculator.css.js";
25
+ import "../Calculators/AnnualFeeCalculator/AnnualFeeCalculator.css.js";
26
+ import "../Button/Button.css.js";
27
+ import "../Modal/contextApi/store.js";
28
+ import "../Calculators/ApyCalculator/ApyCalculator.css.js";
29
+ import "../Table/Table.css.js";
30
+ import "../Calculators/AxosOneCalculator/BalanceAPYCalculator.css.js";
31
+ import "../Calculators/BalanceAPYCalculator/BalanceAPYCalculator.css.js";
32
+ import "@hookform/resolvers/zod";
33
+ import "../Input/Checkbox.js";
34
+ import "../Input/CurrencyInput.js";
35
+ import "../Input/Dropdown.js";
36
+ import "../Input/Dropdown.css.js";
37
+ import "../Input/Input.js";
38
+ import "../Input/Input.css.js";
39
+ import "../Input/InputAmount.js";
40
+ import "../Input/InputPhone.js";
41
+ import "../Input/InputTextArea.js";
42
+ import "../Input/DownPaymentInput.js";
43
+ import "../Input/RadioButton.js";
44
+ import "../Input/PercentageInput.js";
45
+ import "react-hook-form";
46
+ import "../Calculators/BuyDownCalculator/BuyDownCalculator.css.js";
47
+ import "../Forms/Forms.css.js";
48
+ import "../Forms/HoneyPot/index.js";
49
+ import "../Forms/SalesforceFieldsForm.js";
50
+ import "../Input/RadioButton.css.js";
51
+ import "../Input/Checkbox.css.js";
52
+ import "../LoadingIndicator/LoadingIndicator.css.js";
53
+ import "../Chevron/Chevron.css.js";
54
+ /* empty css */
55
+ import "../Interstitial/Interstitial-variants.css.js";
56
+ import "../Inputs/Input.css.js";
57
+ /* empty css */
58
+ import "../Hyperlink/Hyperlink.css.js";
59
+ /* empty css */
60
+ import "iframe-resizer";
61
+ /* empty css */
62
+ import "../Calculators/MonthlyPaymentCalculator/MonthlyPaymentCalculator.css.js";
63
+ import "../Calculators/MonthlyPaymentLVFCalculator/MonthlyPaymentCalculator.css.js";
64
+ import "../Calculators/SummitApyCalculator/BalanceAPYCalculator.css.js";
65
+ /* empty css */
66
+ import "react-dom";
67
+ /* empty css */
68
+ import "../Auth/SignInPassword.js";
69
+ /* empty css */
70
+ /* empty css */
71
+ /* empty css */
72
+ /* empty css */
73
+ import "../Carousel/index.js";
74
+ /* empty css */
75
+ /* empty css */
76
+ import "../Chatbot/store/chat.js";
77
+ import "../Chatbot/authenticate.js";
78
+ /* empty css */
79
+ /* empty css */
80
+ import "../Chatbot/store/messages.js";
81
+ /* empty css */
82
+ import "../Comparison/Comparison.css.js";
83
+ import "next/image.js";
84
+ import "./HeroBanner.css.js";
85
+ import { player } from "./LargeBanner.css.js";
86
+ import "./SelectionBanner.css.js";
87
+ import "../SetContainer/SetContainer.css.js";
88
+ import "../Tab/Tab.css.js";
89
+ import "../icons/Star/Star.css.js";
90
+ import "../ContentBanner/ContentBanner.css.js";
91
+ /* empty css */
92
+ import "../ExecutiveBio/ExecutiveBio.css.js";
93
+ import "../FaqAccordion/index.js";
94
+ import "../FooterDisclosure/FooterDisclosure.css.js";
95
+ /* empty css */
96
+ /* empty css */
97
+ /* empty css */
98
+ /* empty css */
99
+ /* empty css */
100
+ /* empty css */
101
+ /* empty css */
102
+ import "../LandingPageHeader/LandingPageHeader.css.js";
103
+ /* empty css */
104
+ import "next/navigation.js";
105
+ /* empty css */
106
+ /* empty css */
107
+ /* empty css */
108
+ import "next/link.js";
109
+ /* empty css */
110
+ /* empty css */
111
+ /* empty css */
112
+ /* empty css */
113
+ /* empty css */
114
+ import "../PageNavItem/PageNavItem.css.js";
115
+ import "react-slick";
116
+ /* empty css */
117
+ /* empty css */
118
+ /* empty css */
119
+ /* empty css */
120
+ import "../StepItem/StepItem.css.js";
121
+ import "../StepItemSet/StepItemSet.css.js";
122
+ /* empty css */
123
+ /* empty css */
124
+ /* empty css */
125
+ /* empty css */
126
+ /* empty css */
127
+ const HeroVideoPoster = ({
128
+ videoId,
129
+ videoPlayer,
130
+ thumbnailImage
131
+ }) => {
132
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
133
+ /* @__PURE__ */ jsx(VideoInit, {}),
134
+ /* @__PURE__ */ jsx("div", { className: player, "data-uuid": videoId, children: /* @__PURE__ */ jsx(
135
+ "img",
136
+ {
137
+ style: {
138
+ width: "100%",
139
+ margin: "auto",
140
+ display: "block"
141
+ },
142
+ alt: "",
143
+ className: "vidyard-player-embed",
144
+ src: thumbnailImage ? thumbnailImage : `https://play.vidyard.com/${videoId}.jpg`,
145
+ "data-uuid": videoId,
146
+ "data-v": "4",
147
+ "data-type": videoPlayer
148
+ }
149
+ ) })
150
+ ] });
151
+ };
152
+ export {
153
+ HeroVideoPoster
154
+ };
@@ -1,3 +1,4 @@
1
+ export declare const video_bg: string;
1
2
  export declare const lg_hero_banner: import('@vanilla-extract/recipes').RuntimeFn<{
2
3
  variant: {
3
4
  primary: {
@@ -14,24 +15,51 @@ export declare const lg_hero_banner: import('@vanilla-extract/recipes').RuntimeF
14
15
  };
15
16
  };
16
17
  }>;
18
+ export declare const lg_hero_container: string;
17
19
  export declare const lg_hero_content: string;
20
+ export declare const content_display_lg: string;
21
+ export declare const lg_hero_content_mobile: string;
18
22
  export declare const lg_hero_text: import('@vanilla-extract/recipes').RuntimeFn<{
19
23
  variant: {
20
24
  primary: {
21
25
  background: `var(--${string})`;
22
26
  color: `var(--${string})`;
27
+ selectors: {
28
+ [x: string]: {
29
+ background: `var(--${string})`;
30
+ color: `var(--${string})`;
31
+ };
32
+ };
23
33
  };
24
34
  secondary: {
25
35
  background: `var(--${string})`;
26
36
  color: `var(--${string})`;
37
+ selectors: {
38
+ [x: string]: {
39
+ background: `var(--${string})`;
40
+ color: `var(--${string})`;
41
+ };
42
+ };
27
43
  };
28
44
  tertiary: {
29
45
  background: `var(--${string})`;
30
46
  color: `var(--${string})`;
47
+ selectors: {
48
+ [x: string]: {
49
+ background: `var(--${string})`;
50
+ color: `var(--${string})`;
51
+ };
52
+ };
31
53
  };
32
54
  quaternary: {
33
55
  background: `var(--${string})`;
34
56
  color: `var(--${string})`;
57
+ selectors: {
58
+ [x: string]: {
59
+ background: `var(--${string})`;
60
+ color: `var(--${string})`;
61
+ };
62
+ };
35
63
  };
36
64
  };
37
65
  }>;
@@ -39,15 +67,35 @@ export declare const lg_hero_eyebrow: import('@vanilla-extract/recipes').Runtime
39
67
  variant: {
40
68
  primary: {
41
69
  color: `var(--${string})`;
70
+ selectors: {
71
+ [x: string]: {
72
+ color: `var(--${string})`;
73
+ };
74
+ };
42
75
  };
43
76
  secondary: {
44
77
  color: `var(--${string})`;
78
+ selectors: {
79
+ [x: string]: {
80
+ color: `var(--${string})`;
81
+ };
82
+ };
45
83
  };
46
84
  tertiary: {
47
85
  color: `var(--${string})`;
86
+ selectors: {
87
+ [x: string]: {
88
+ color: `var(--${string})`;
89
+ };
90
+ };
48
91
  };
49
92
  quaternary: {
50
93
  color: `var(--${string})`;
94
+ selectors: {
95
+ [x: string]: {
96
+ color: `var(--${string})`;
97
+ };
98
+ };
51
99
  };
52
100
  };
53
101
  }>;
@@ -55,17 +103,79 @@ export declare const lg_headline_text: import('@vanilla-extract/recipes').Runtim
55
103
  variant: {
56
104
  primary: {
57
105
  color: `var(--${string})`;
106
+ selectors: {
107
+ [x: string]: {
108
+ color: `var(--${string})`;
109
+ };
110
+ };
58
111
  };
59
112
  secondary: {
60
113
  color: `var(--${string})`;
114
+ selectors: {
115
+ [x: string]: {
116
+ color: `var(--${string})`;
117
+ };
118
+ };
61
119
  };
62
120
  tertiary: {
63
121
  color: `var(--${string})`;
122
+ selectors: {
123
+ [x: string]: {
124
+ color: `var(--${string})`;
125
+ };
126
+ };
64
127
  };
65
128
  quaternary: {
66
129
  color: `var(--${string})`;
130
+ selectors: {
131
+ [x: string]: {
132
+ color: `var(--${string})`;
133
+ };
134
+ };
67
135
  };
68
136
  };
69
137
  }>;
70
138
  export declare const lg_hero_img: string;
71
139
  export declare const lg_hero_sizing: string;
140
+ export declare const video_wrapper: string;
141
+ export declare const player: string;
142
+ export declare const placement: import('@vanilla-extract/recipes').RuntimeFn<{
143
+ position: {
144
+ "top left": {
145
+ "@media": {
146
+ "(min-width: 1024px)": {
147
+ borderRadius: "0 0 1rem 0";
148
+ left: number;
149
+ top: number;
150
+ };
151
+ };
152
+ };
153
+ "top right": {
154
+ "@media": {
155
+ "(min-width: 1024px)": {
156
+ borderRadius: "0 0 0 1rem";
157
+ right: number;
158
+ top: number;
159
+ };
160
+ };
161
+ };
162
+ "bottom left": {
163
+ "@media": {
164
+ "(min-width: 1024px)": {
165
+ borderRadius: "0 1rem 0 0";
166
+ bottom: number;
167
+ left: number;
168
+ };
169
+ };
170
+ };
171
+ "bottom right": {
172
+ "@media": {
173
+ "(min-width: 1024px)": {
174
+ borderRadius: "1rem 0 0 0";
175
+ bottom: number;
176
+ right: number;
177
+ };
178
+ };
179
+ };
180
+ };
181
+ }>;
@@ -5,19 +5,33 @@ import '../assets/HeroBanner/LargeBanner.css';import '../assets/Typography/Typog
5
5
  /* empty css */
6
6
  /* empty css */
7
7
  import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
8
- var lg_hero_banner = createRuntimeFn({ defaultClassName: "_1bsyngo0", variantClassNames: { variant: { primary: "_1bsyngo1", secondary: "_1bsyngo2", tertiary: "_1bsyngo3", quaternary: "_1bsyngo4" } }, defaultVariants: {}, compoundVariants: [] });
9
- var lg_hero_content = "_1bsyngo5";
10
- var lg_hero_text = createRuntimeFn({ defaultClassName: "_1bsyngo6", variantClassNames: { variant: { primary: "_1bsyngo7", secondary: "_1bsyngo8", tertiary: "_1bsyngo9", quaternary: "_1bsyngoa" } }, defaultVariants: {}, compoundVariants: [] });
11
- var lg_hero_eyebrow = createRuntimeFn({ defaultClassName: "_1bsyngob", variantClassNames: { variant: { primary: "_1bsyngoc", secondary: "_1bsyngod", tertiary: "_1bsyngoe", quaternary: "_1bsyngof" } }, defaultVariants: {}, compoundVariants: [] });
12
- var lg_headline_text = createRuntimeFn({ defaultClassName: "_1bsyngog", variantClassNames: { variant: { primary: "_1bsyngoh", secondary: "_1bsyngoi", tertiary: "_1bsyngoj", quaternary: "_1bsyngok" } }, defaultVariants: {}, compoundVariants: [] });
13
- var lg_hero_img = "_1bsyngol";
14
- var lg_hero_sizing = "_1bsyngom";
8
+ var video_bg = "_1bsyngo0";
9
+ var lg_hero_banner = createRuntimeFn({ defaultClassName: "_1bsyngo1", variantClassNames: { variant: { primary: "_1bsyngo2", secondary: "_1bsyngo3", tertiary: "_1bsyngo4", quaternary: "_1bsyngo5" } }, defaultVariants: {}, compoundVariants: [] });
10
+ var lg_hero_container = "_1bsyngo6";
11
+ var lg_hero_content = "_1bsyngo7";
12
+ var content_display_lg = "_1bsyngo8";
13
+ var lg_hero_content_mobile = "_1bsyngo9";
14
+ var lg_hero_text = createRuntimeFn({ defaultClassName: "_1bsyngoa", variantClassNames: { variant: { primary: "_1bsyngob", secondary: "_1bsyngoc", tertiary: "_1bsyngod", quaternary: "_1bsyngoe" } }, defaultVariants: {}, compoundVariants: [] });
15
+ var lg_hero_eyebrow = createRuntimeFn({ defaultClassName: "_1bsyngof", variantClassNames: { variant: { primary: "_1bsyngog", secondary: "_1bsyngoh", tertiary: "_1bsyngoi", quaternary: "_1bsyngoj" } }, defaultVariants: {}, compoundVariants: [] });
16
+ var lg_headline_text = createRuntimeFn({ defaultClassName: "_1bsyngok", variantClassNames: { variant: { primary: "_1bsyngol", secondary: "_1bsyngom", tertiary: "_1bsyngon", quaternary: "_1bsyngoo" } }, defaultVariants: {}, compoundVariants: [] });
17
+ var lg_hero_img = "_1bsyngop";
18
+ var lg_hero_sizing = "_1bsyngoq";
19
+ var video_wrapper = "_1bsyngor";
20
+ var player = "_1bsyngos";
21
+ var placement = createRuntimeFn({ defaultClassName: "_1bsyngot", variantClassNames: { position: { "top left": "_1bsyngou", "top right": "_1bsyngov", "bottom left": "_1bsyngow", "bottom right": "_1bsyngox" } }, defaultVariants: {}, compoundVariants: [] });
15
22
  export {
23
+ content_display_lg,
16
24
  lg_headline_text,
17
25
  lg_hero_banner,
26
+ lg_hero_container,
18
27
  lg_hero_content,
28
+ lg_hero_content_mobile,
19
29
  lg_hero_eyebrow,
20
30
  lg_hero_img,
21
31
  lg_hero_sizing,
22
- lg_hero_text
32
+ lg_hero_text,
33
+ placement,
34
+ player,
35
+ video_bg,
36
+ video_wrapper
23
37
  };
@@ -0,0 +1,5 @@
1
+ import { HeroBannerInterface } from './HeroBanner.interface';
2
+
3
+ type LargeHeroBannerProps = Pick<HeroBannerInterface, "id" | "eyebrow" | "headline" | "bodyCopy" | "bullets" | "callToActionRow" | "image" | "imagePlacement" | "variant" | "video" | "bannerType" | "videoTextPosition">;
4
+ export declare const LargeHeroBanner: ({ id, eyebrow, headline, bodyCopy, bullets, callToActionRow, image, imagePlacement, variant, video, bannerType, videoTextPosition, }: LargeHeroBannerProps) => import("react/jsx-runtime").JSX.Element;
5
+ export {};