@apolitical/component-library 4.2.8 → 4.3.0-4520.0
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/constants/attributes.d.ts +1 -0
- package/constants/index.d.ts +2 -1
- package/discussion/components/likes/likes.d.ts +1 -1
- package/discussion/discussion.helpers.d.ts +1 -0
- package/index.js +40 -40
- package/index.mjs +5087 -5058
- package/package.json +1 -1
- package/user/member/member.d.ts +3 -1
package/package.json
CHANGED
package/user/member/member.d.ts
CHANGED
|
@@ -48,8 +48,10 @@ interface Props {
|
|
|
48
48
|
className?: string;
|
|
49
49
|
/** The language to use for the text */
|
|
50
50
|
locale?: string;
|
|
51
|
+
/** The alt text for the image */
|
|
52
|
+
alt?: string;
|
|
51
53
|
}
|
|
52
|
-
declare const Member: ({ element, member: memberDetails, additionalContent, styling, functions, gtmContext, gtmType, className, }: Props) => React.DetailedReactHTMLElement<{
|
|
54
|
+
declare const Member: ({ element, member: memberDetails, additionalContent, styling, functions, gtmContext, gtmType, className, alt, }: Props) => React.DetailedReactHTMLElement<{
|
|
53
55
|
children: import("react/jsx-runtime").JSX.Element;
|
|
54
56
|
/** Optional onclick function */
|
|
55
57
|
onClick?: ((e: React.MouseEvent) => void) | undefined;
|