@windstream/react-shared-components 0.1.21 → 0.1.23
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 +5 -1
- 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 +1 -1
- package/package.json +1 -1
- package/src/contentful/blocks/blogs-grid/index.tsx +7 -2
- package/src/contentful/blocks/cards/blog-card/index.tsx +6 -1
- package/src/contentful/blocks/cards/blog-card/types.ts +1 -0
- package/src/contentful/blocks/modal/index.tsx +6 -2
|
@@ -347,7 +347,10 @@ type ModalProps = {
|
|
|
347
347
|
bodyClassName?: string;
|
|
348
348
|
};
|
|
349
349
|
|
|
350
|
-
|
|
350
|
+
type ExtendedModalProps = ModalProps & {
|
|
351
|
+
containerAttributes?: React$1.HTMLAttributes<HTMLDivElement>;
|
|
352
|
+
};
|
|
353
|
+
declare const Modal: React$1.FC<ExtendedModalProps>;
|
|
351
354
|
|
|
352
355
|
declare const svgPaths: Record<string, string>;
|
|
353
356
|
type ThemeKey = "blue" | "green" | "yellow" | "purple" | "white" | "navy";
|
|
@@ -466,6 +469,7 @@ interface BlogCardProps$1 {
|
|
|
466
469
|
};
|
|
467
470
|
readMoreText?: string;
|
|
468
471
|
asGrid?: boolean;
|
|
472
|
+
index?: number;
|
|
469
473
|
}
|
|
470
474
|
|
|
471
475
|
declare const BlogCard: React$1.FC<BlogCardProps$1>;
|