@windstream/react-shared-components 0.2.28 → 0.2.30

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.
@@ -434,6 +434,10 @@ type NavigationProps = Navigation$1;
434
434
 
435
435
  declare const Navigation: React__default.FC<NavigationProps>;
436
436
 
437
+ type PrimaryHeroVideo = {
438
+ url?: string;
439
+ title?: string;
440
+ };
437
441
  type PrimaryHeroProps = {
438
442
  title: string;
439
443
  showAsHeading?: boolean;
@@ -460,6 +464,8 @@ type PrimaryHeroProps = {
460
464
  secondaryCta?: any;
461
465
  bottomLink?: any;
462
466
  carouselImages?: string[];
467
+ heroVideo?: PrimaryHeroVideo;
468
+ heroVideoMobile?: PrimaryHeroVideo;
463
469
  squareImage?: boolean;
464
470
  badgeImage?: string;
465
471
  textColor?: "light" | "dark";