@windstream/react-shared-components 0.2.1 → 0.2.3

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.
@@ -625,8 +625,6 @@ interface BlogCardProps$2 {
625
625
  imageComponent?: React__default.ComponentType<BlogCardImageProps>;
626
626
  readMoreText?: string;
627
627
  asGrid?: boolean;
628
- lgWidth?: string;
629
- mdWidth?: string;
630
628
  index?: number;
631
629
  }
632
630
 
@@ -683,6 +681,7 @@ interface BlogGridBaseProps {
683
681
  categoryOptions: BlogCategoryOption[];
684
682
  onCategoryChange?: (category: BlogCategoryOption) => void;
685
683
  onPageChange?: (page: number) => void;
684
+ getPageHref: (page: number) => string;
686
685
  /** Pass next/image's Image component here to enable image optimization */
687
686
  imageComponent?: React__default.ComponentType<BlogCardImageProps$1>;
688
687
  }
@@ -691,7 +690,7 @@ interface BlogCategoryOption {
691
690
  label: string;
692
691
  }
693
692
 
694
- declare function BlogGridBase({ title, paginatedArticles, totalArticles, currentPage, totalPages, selectedCategory, categoryOptions, onCategoryChange, onPageChange, imageComponent, }: BlogGridBaseProps): react_jsx_runtime.JSX.Element;
693
+ declare function BlogGridBase({ title, paginatedArticles, totalArticles, currentPage, totalPages, selectedCategory, categoryOptions, onCategoryChange, onPageChange, getPageHref, imageComponent, }: BlogGridBaseProps): react_jsx_runtime.JSX.Element;
695
694
 
696
695
  type BreadcrumbNavigationProps = {
697
696
  links?: Array<any>;