@windstream/react-shared-components 0.1.78 → 0.1.80

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.
@@ -684,8 +684,10 @@ declare function BlogGridBase({ title, paginatedArticles, totalArticles, current
684
684
  type BreadcrumbNavigationProps = {
685
685
  links?: Array<any>;
686
686
  textColor?: "dark" | "light";
687
+ mobileTextColor?: "dark" | "light";
688
+ desktopTextColor?: "dark" | "light";
687
689
  maxWidth?: boolean;
688
- floatOnMobile?: boolean;
690
+ float?: "none" | "mobile" | "desktop" | "always";
689
691
  };
690
692
 
691
693
  declare const BreadcrumbNavigation: React__default.FC<BreadcrumbNavigationProps>;