@windstream/react-shared-components 0.1.50 → 0.1.51
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 +4 -2
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +4 -2
- package/dist/contentful/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +6 -12
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6 -12
- package/dist/index.js.map +1 -1
- package/dist/next/index.esm.js +3 -1
- package/dist/next/index.esm.js.map +1 -1
- package/dist/next/index.js +3 -1
- package/dist/next/index.js.map +1 -1
- package/dist/utils/index.d.ts +3 -2
- 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/button/index.tsx +1 -0
|
@@ -663,11 +663,11 @@ declare const toDocument: (v: unknown | null | undefined) => Document | null;
|
|
|
663
663
|
*/
|
|
664
664
|
declare function renderContentfulRichText(doc: Document | null | undefined, target?: boolean, className?: string, linkClassName?: string, options?: Options): ReactNode | null;
|
|
665
665
|
declare function useContentfulRichText(doc: Document | null | undefined, options?: Options): ReactNode | null;
|
|
666
|
-
declare function renderContentfulRichTextTable(doc: Document | null | undefined, links?: any):
|
|
666
|
+
declare function renderContentfulRichTextTable(doc: Document | null | undefined, links?: any): ReactNode;
|
|
667
667
|
|
|
668
668
|
declare const label1BoldOptions: {
|
|
669
669
|
renderMark: {
|
|
670
|
-
|
|
670
|
+
bold: (text: ReactNode) => React$1.DetailedReactHTMLElement<{
|
|
671
671
|
className: string;
|
|
672
672
|
}, HTMLElement>;
|
|
673
673
|
};
|