@windstream/react-shared-components 0.2.45 → 0.2.46

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.
@@ -899,9 +899,10 @@ declare const toDocument: (v: unknown | null | undefined) => Document | null;
899
899
  * Utility function to render Contentful Rich Text.
900
900
  * Safe to use inside .map() loops.
901
901
  */
902
- declare function renderContentfulRichText(doc: Document | null | undefined, target?: boolean, className?: string, linkClassName?: string, options?: Options): ReactNode | null;
902
+ declare function renderContentfulRichText(doc: Document | null | undefined, target?: boolean, className?: string, linkClassName?: string, options?: Options, links?: any): ReactNode | null;
903
903
  declare function useContentfulRichText(doc: Document | null | undefined, options?: Options, config?: {
904
904
  boldClassName?: string;
905
+ links?: any;
905
906
  }): ReactNode | null;
906
907
  declare function renderContentfulRichTextTable(doc: Document | null | undefined, links?: any): ReactNode;
907
908