@windstream/react-shared-components 0.2.32 → 0.2.33

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.
@@ -682,6 +682,7 @@ interface BlogCardProps {
682
682
  }
683
683
  interface BlogGridBaseProps {
684
684
  title?: string;
685
+ description?: string;
685
686
  paginatedArticles: BlogCardProps[];
686
687
  totalArticles: number;
687
688
  currentPage: number;
@@ -701,7 +702,7 @@ interface BlogCategoryOption {
701
702
  label: string;
702
703
  }
703
704
 
704
- declare function BlogGridBase({ title, paginatedArticles, totalArticles, currentPage, totalPages, selectedCategory, categoryOptions, onCategoryChange, onPageChange, getPageHref, asList, imageComponent, }: BlogGridBaseProps): react_jsx_runtime.JSX.Element;
705
+ declare function BlogGridBase({ title, description, paginatedArticles, totalArticles, currentPage, totalPages, selectedCategory, categoryOptions, onCategoryChange, onPageChange, getPageHref, asList, imageComponent, }: BlogGridBaseProps): react_jsx_runtime.JSX.Element;
705
706
 
706
707
  type BreadcrumbNavigationProps = {
707
708
  links?: Array<any>;