@apolitical/component-library 5.1.2-SW.3 → 5.1.2-SW.4
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/index.d.ts +1 -0
- package/discussion/components/post/post.d.ts +8 -4
- package/discussion/index.d.ts +2 -2
- package/discussion/shared/interfaces/activity.interface.d.ts +2 -1
- package/discussion/shared/interfaces/discussion.interface.d.ts +84 -0
- package/discussion/shared/interfaces/index.d.ts +1 -0
- package/index.js +49 -49
- package/index.mjs +3548 -3517
- package/package.json +4 -1
- package/style.css +1 -1
- package/user/member/member.d.ts +3 -0
package/user/member/member.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ interface Props {
|
|
|
39
39
|
additionalContent?: false | {
|
|
40
40
|
createdAt?: Date | string;
|
|
41
41
|
didEdit?: boolean;
|
|
42
|
+
customMessage?: string;
|
|
42
43
|
};
|
|
43
44
|
/** Whether to show badges and the scope of the badge */
|
|
44
45
|
badges?: IBadgesOption;
|
|
@@ -50,6 +51,8 @@ interface Props {
|
|
|
50
51
|
variant?: 'inline' | 'card';
|
|
51
52
|
/** Whether the user details should be condensed into one line */
|
|
52
53
|
isCondensed?: boolean;
|
|
54
|
+
/** Whether to shift the additional content onto a new line after the badges. Hide the Job title + Organisation */
|
|
55
|
+
additionalContentNewLine?: boolean;
|
|
53
56
|
};
|
|
54
57
|
/** Optional functions for the wrapper */
|
|
55
58
|
functions?: {
|