@windstream/react-shared-components 0.1.62 → 0.1.63

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.
@@ -555,6 +555,7 @@ interface BlogCardProps {
555
555
  };
556
556
  }
557
557
  interface BlogGridBaseProps {
558
+ title?: string;
558
559
  paginatedArticles: BlogCardProps[];
559
560
  totalArticles: number;
560
561
  currentPage: number;
@@ -571,7 +572,7 @@ interface BlogCategoryOption {
571
572
  label: string;
572
573
  }
573
574
 
574
- declare function BlogGridBase({ paginatedArticles, totalArticles, currentPage, totalPages, selectedCategory, categoryOptions, onCategoryChange, onPageChange, imageComponent, }: BlogGridBaseProps): react_jsx_runtime.JSX.Element;
575
+ declare function BlogGridBase({ title, paginatedArticles, totalArticles, currentPage, totalPages, selectedCategory, categoryOptions, onCategoryChange, onPageChange, imageComponent, }: BlogGridBaseProps): react_jsx_runtime.JSX.Element;
575
576
 
576
577
  type BreadcrumbNavigationProps = {
577
578
  links?: Array<any>;