@windstream/react-shared-components 0.1.32 → 0.1.33
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 +14 -2
- package/dist/contentful/index.esm.js +3 -3
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +3 -3
- package/dist/contentful/index.js.map +1 -1
- package/dist/core.d.ts +2 -2
- 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/dist/utils/index.d.ts +5 -1
- package/dist/utils/index.esm.js +1 -1
- package/dist/utils/index.esm.js.map +1 -1
- package/dist/utils/index.js +1 -1
- package/dist/utils/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/brand-button/index.tsx +3 -4
- package/src/components/checklist/index.tsx +5 -3
- package/src/components/checklist/types.ts +1 -0
- package/src/contentful/blocks/cookiebanner/index.tsx +146 -0
- package/src/contentful/blocks/cookiebanner/type.ts +7 -0
- package/src/contentful/blocks/image-promo-bar/index.tsx +14 -12
- package/src/contentful/index.ts +3 -0
- package/src/utils/cookie.ts +22 -0
- package/src/utils/index.ts +1 -1
|
@@ -583,5 +583,17 @@ interface AnchoredBottomBannerProps {
|
|
|
583
583
|
|
|
584
584
|
declare const AnchoredBottomBanner: React$1.FC<AnchoredBottomBannerProps>;
|
|
585
585
|
|
|
586
|
-
|
|
587
|
-
|
|
586
|
+
interface TypeComponentRichTextFields {
|
|
587
|
+
entryName?: string;
|
|
588
|
+
anchorId?: string;
|
|
589
|
+
title?: string;
|
|
590
|
+
isTargetBlank?: boolean;
|
|
591
|
+
richText: React.ReactNode;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
declare function CookieBanner({ content, }: {
|
|
595
|
+
content: TypeComponentRichTextFields;
|
|
596
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
597
|
+
|
|
598
|
+
export { Accordion, AddressInputBanner, AnchoredBottomBanner, BlogCard, BlogGrid, BreadcrumbNavigation, Button, Callout, Cards, Carousel, ComparisonTable, CookieBanner, CtaCallout, DynamicTabs, FindKinetic, FloatingBanner, Footer, ImagePromoBar, Modal, Navigation, PrimaryHero, ProductCard, SearchBlock, ShapeBackgroundWrapper, SimpleCard, TestimonialCard, Text };
|
|
599
|
+
export type { AccordionProps, AddressInputBannerProps, AnchoredBottomBannerProps, BlogCardProps$1 as BlogCardProps, BlogGridProps, BreadcrumbNavigationProps, ButtonProps, CalloutProps, CardsProps, CarouselProps, ComparisonTableProps, TypeComponentRichTextFields as CookieBannerProps, CtaCalloutProps, DynamicTabsT, FindKineticProps, FloatingBannerProps, FooterProps, ImagePromoBarProps, ModalProps, NavigationProps, PrimaryHeroProps, ProductCardProps, SearchBlockProps, ShapeBackgroundWrapperProps, SimpleCardProps, TestimonialCardProps, TextProps };
|