@windstream/react-shared-components 0.1.46 → 0.1.47
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 -2
- package/dist/contentful/index.esm.js +2 -4
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +2 -4
- package/dist/contentful/index.js.map +1 -1
- package/dist/index.esm.js +12 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +12 -6
- package/dist/index.js.map +1 -1
- package/dist/next/index.esm.js +1 -3
- package/dist/next/index.esm.js.map +1 -1
- package/dist/next/index.js +1 -3
- package/dist/next/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/utils/index.d.ts +2 -3
- 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/contentful/blocks/cartretentionbanner/CartRetentionBanner.tsx +99 -0
- package/src/contentful/blocks/cartretentionbanner/types.ts +11 -0
|
@@ -640,11 +640,11 @@ declare const toDocument: (v: unknown | null | undefined) => Document | null;
|
|
|
640
640
|
*/
|
|
641
641
|
declare function renderContentfulRichText(doc: Document | null | undefined, target?: boolean, className?: string, linkClassName?: string, options?: Options): ReactNode | null;
|
|
642
642
|
declare function useContentfulRichText(doc: Document | null | undefined, options?: Options): ReactNode | null;
|
|
643
|
-
declare function renderContentfulRichTextTable(doc: Document | null | undefined, links?: any):
|
|
643
|
+
declare function renderContentfulRichTextTable(doc: Document | null | undefined, links?: any): any;
|
|
644
644
|
|
|
645
645
|
declare const label1BoldOptions: {
|
|
646
646
|
renderMark: {
|
|
647
|
-
|
|
647
|
+
[x: number]: (text: ReactNode) => React$1.DetailedReactHTMLElement<{
|
|
648
648
|
className: string;
|
|
649
649
|
}, HTMLElement>;
|
|
650
650
|
};
|