@apolitical/component-library 5.5.3-ac.0 → 5.5.3-ac.2
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/discussion/components/post/post.d.ts +6 -2
- package/helpers/intl.d.ts +1 -0
- package/index.js +26 -26
- package/index.mjs +1159 -1135
- package/package.json +1 -1
- package/style.css +1 -1
- package/user/member/member.types.d.ts +5 -1
|
@@ -5,8 +5,12 @@ import { IBadgesOption } from '../../../user/badges';
|
|
|
5
5
|
export interface IPostContent extends IFullDiscussionContent {
|
|
6
6
|
/** The post body */
|
|
7
7
|
postBody?: string;
|
|
8
|
-
/** Custom message to pass through to the Member component
|
|
9
|
-
memberCustomMessage?:
|
|
8
|
+
/** Custom message to pass through to the Member component */
|
|
9
|
+
memberCustomMessage?: {
|
|
10
|
+
text?: string;
|
|
11
|
+
communityName?: string;
|
|
12
|
+
communityUrl?: string;
|
|
13
|
+
};
|
|
10
14
|
}
|
|
11
15
|
export interface IDiscussionPostProps {
|
|
12
16
|
/** The element that will render around the content */
|
package/helpers/intl.d.ts
CHANGED
|
@@ -70,6 +70,7 @@ export declare const checkIntlPathExists: (path: string, language?: {
|
|
|
70
70
|
member_community: string;
|
|
71
71
|
member_deleted: string;
|
|
72
72
|
member_profile: string;
|
|
73
|
+
member_createdAt_community: string;
|
|
73
74
|
membersList: string;
|
|
74
75
|
membersList_admin: string;
|
|
75
76
|
membersList_profile: string;
|