@apolitical/component-library 4.1.7 → 4.1.8-beta.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/discussion/components/post/post.helpers.d.ts +2 -0
- package/discussion/discussion.mock.d.ts +24 -0
- package/discussion/shared/interfaces/reaction.interface.d.ts +3 -0
- package/index.js +25 -25
- package/index.mjs +2704 -2692
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
export const mentions: {
|
|
2
|
+
"123456ab-12ab-12ab-12ab-123456789abc": {
|
|
3
|
+
created_at: string;
|
|
4
|
+
updated_at: string;
|
|
5
|
+
id: string;
|
|
6
|
+
data: {
|
|
7
|
+
jobTitle: string;
|
|
8
|
+
name: string;
|
|
9
|
+
organization: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
"12abcdef-12cd-12cd-12cd-123456abcdef": {
|
|
13
|
+
created_at: string;
|
|
14
|
+
updated_at: string;
|
|
15
|
+
id: string;
|
|
16
|
+
data: {
|
|
17
|
+
jobTitle: string;
|
|
18
|
+
name: string;
|
|
19
|
+
organization: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
1
23
|
export namespace authors {
|
|
2
24
|
namespace me {
|
|
3
25
|
let id: string;
|
|
@@ -31,6 +53,7 @@ export namespace reply {
|
|
|
31
53
|
import author = authors.me;
|
|
32
54
|
export { author };
|
|
33
55
|
export let userLiked: boolean;
|
|
56
|
+
export { mentions };
|
|
34
57
|
}
|
|
35
58
|
export { me_1 as me };
|
|
36
59
|
export namespace otherUser_1 {
|
|
@@ -92,6 +115,7 @@ export namespace answer {
|
|
|
92
115
|
export { createdAt_2 as createdAt };
|
|
93
116
|
let updatedAt_2: string;
|
|
94
117
|
export { updatedAt_2 as updatedAt };
|
|
118
|
+
export { mentions };
|
|
95
119
|
}
|
|
96
120
|
export { me_2 as me };
|
|
97
121
|
export namespace otherUser_2 {
|