@windstream/react-shared-components 0.2.38 → 0.2.41
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 +1 -2
- 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/dist/index.d.ts +3 -3
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/src/components/brand-button/index.tsx +4 -4
- package/src/contentful/blocks/button/Button.stories.tsx +0 -1
- package/src/contentful/blocks/button/index.test.tsx +109 -8
- package/src/contentful/blocks/button/index.tsx +64 -18
- package/src/contentful/blocks/button/types.ts +1 -1
- package/src/contentful/blocks/cards/blog-card/index.test.tsx +18 -42
- package/src/contentful/blocks/cards/blog-card/index.tsx +45 -63
- package/src/contentful/blocks/cards/blog-card/types.ts +0 -1
- package/src/contentful/blocks/cards/floating-image-card/index.test.tsx +69 -2
- package/src/contentful/blocks/cards/floating-image-card/index.tsx +7 -4
- package/src/contentful/blocks/carousel/helper.test.tsx +33 -10
- package/src/contentful/blocks/carousel/index.test.tsx +6 -8
- package/src/contentful/blocks/carousel/types.test.ts +10 -0
- package/src/contentful/blocks/cta-callout/CtaCallout.stories.tsx +0 -1
- package/src/contentful/blocks/dynamic-tabs/ordered-tab-views.tsx +1 -1
- package/src/contentful/blocks/ordered-list/index.tsx +2 -2
- package/src/contentful/blocks/primary-hero/index.tsx +6 -2
- package/src/hooks/use-carousel-swipe.test.ts +26 -6
- package/src/types/micro-components.ts +2 -2
|
@@ -44,7 +44,7 @@ type ButtonProps = {
|
|
|
44
44
|
buttonPrefix?: string;
|
|
45
45
|
badge?: string;
|
|
46
46
|
badgeIcon?: string;
|
|
47
|
-
|
|
47
|
+
buttonIconName?: string;
|
|
48
48
|
buttonIconPosition?: "left" | "right";
|
|
49
49
|
href?: string;
|
|
50
50
|
target?: "_self" | "_blank";
|
|
@@ -638,7 +638,6 @@ interface BlogCardProps$2 {
|
|
|
638
638
|
};
|
|
639
639
|
/** Pass next/image's Image component here to enable image optimization */
|
|
640
640
|
imageComponent?: React__default.ComponentType<BlogCardImageProps>;
|
|
641
|
-
readMoreText?: string;
|
|
642
641
|
asGrid?: boolean;
|
|
643
642
|
index?: number;
|
|
644
643
|
}
|