@windstream/react-shared-components 0.1.62 → 0.1.64
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.
- package/dist/contentful/index.d.ts +2 -1
- package/dist/contentful/index.esm.js +1 -1
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +1 -1
- package/dist/contentful/index.js.map +1 -1
- package/package.json +1 -1
- package/src/contentful/blocks/blogs-grid-base/index.tsx +2 -1
- package/src/contentful/blocks/blogs-grid-base/types.ts +1 -0
- package/src/contentful/blocks/cart-retention-banner/index.tsx +105 -97
|
@@ -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>;
|