@windstream/react-shared-components 0.1.17 → 0.1.18
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 -0
- package/dist/contentful/index.esm.js +2 -2
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +2 -2
- package/dist/contentful/index.js.map +1 -1
- package/dist/core.d.ts +2 -2
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/contentful/blocks/callout/index.tsx +28 -8
- package/src/contentful/blocks/callout/types.ts +15 -14
- package/src/contentful/blocks/cards/blog-card/index.tsx +6 -1
- package/src/contentful/blocks/cards/blog-card/types.ts +1 -0
|
@@ -29,6 +29,7 @@ type CalloutProps = {
|
|
|
29
29
|
noGutter?: boolean;
|
|
30
30
|
items: any[];
|
|
31
31
|
maxWidth?: boolean;
|
|
32
|
+
cardType?: "simple" | "blog";
|
|
32
33
|
};
|
|
33
34
|
|
|
34
35
|
declare const Callout: React$1.FC<CalloutProps>;
|
|
@@ -462,6 +463,7 @@ interface BlogCardProps$1 {
|
|
|
462
463
|
height: number;
|
|
463
464
|
};
|
|
464
465
|
readMoreText?: string;
|
|
466
|
+
asGrid?: boolean;
|
|
465
467
|
}
|
|
466
468
|
|
|
467
469
|
declare const BlogCard: React$1.FC<BlogCardProps$1>;
|