@windstream/react-shared-components 0.2.3 → 0.2.4

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.
@@ -681,7 +681,7 @@ interface BlogGridBaseProps {
681
681
  categoryOptions: BlogCategoryOption[];
682
682
  onCategoryChange?: (category: BlogCategoryOption) => void;
683
683
  onPageChange?: (page: number) => void;
684
- getPageHref: (page: number) => string;
684
+ getPageHref?: (page: number) => string;
685
685
  /** Pass next/image's Image component here to enable image optimization */
686
686
  imageComponent?: React__default.ComponentType<BlogCardImageProps$1>;
687
687
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windstream/react-shared-components",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "type": "module",
5
5
  "description": "Shared React components for Kinetic applications",
6
6
  "main": "dist/index.js",
@@ -26,7 +26,7 @@ export interface BlogGridBaseProps {
26
26
  categoryOptions: BlogCategoryOption[];
27
27
  onCategoryChange?: (category: BlogCategoryOption) => void;
28
28
  onPageChange?: (page: number) => void;
29
- getPageHref: (page: number) => string;
29
+ getPageHref?: (page: number) => string;
30
30
  /** Pass next/image's Image component here to enable image optimization */
31
31
  imageComponent?: React.ComponentType<BlogCardImageProps>;
32
32
  }