@apolitical/component-library 4.7.4-ac.4 → 4.7.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/context/user/user.context.d.ts +3 -0
- package/discussion/feeds/activities-feed/mocks/activities-feed.mock.d.ts +3 -36
- package/helpers/intl.d.ts +1 -0
- package/index.js +32 -32
- package/index.mjs +2278 -2279
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/base/buttons/_icons.scss +0 -1
- package/text/pill/pill.d.ts +1 -1
|
@@ -15,40 +15,13 @@ export declare const activitiesFeedMock: {
|
|
|
15
15
|
feed_id: string;
|
|
16
16
|
foreign_id: string;
|
|
17
17
|
id: string;
|
|
18
|
-
latest_reactions: {
|
|
19
|
-
pin: {
|
|
20
|
-
created_at: string;
|
|
21
|
-
updated_at: string;
|
|
22
|
-
id: string;
|
|
23
|
-
user_id: string;
|
|
24
|
-
user: {
|
|
25
|
-
created_at: string;
|
|
26
|
-
updated_at: string;
|
|
27
|
-
id: string;
|
|
28
|
-
data: {
|
|
29
|
-
jobTitle: string;
|
|
30
|
-
name: string;
|
|
31
|
-
organization: string;
|
|
32
|
-
thumbnail: string;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
kind: string;
|
|
36
|
-
activity_id: string;
|
|
37
|
-
data: {
|
|
38
|
-
mentioned_users: null;
|
|
39
|
-
};
|
|
40
|
-
parent: string;
|
|
41
|
-
latest_children: {};
|
|
42
|
-
children_counts: {};
|
|
43
|
-
}[];
|
|
44
|
-
};
|
|
18
|
+
latest_reactions: {};
|
|
45
19
|
latest_reactions_extra: {};
|
|
46
20
|
object: string;
|
|
47
21
|
origin: null;
|
|
48
22
|
own_reactions: {};
|
|
49
23
|
reaction_counts: {
|
|
50
24
|
like: number;
|
|
51
|
-
pin: number;
|
|
52
25
|
};
|
|
53
26
|
target: string;
|
|
54
27
|
time: string;
|
|
@@ -69,16 +42,13 @@ export declare const activitiesFeedMock: {
|
|
|
69
42
|
feed_id: string;
|
|
70
43
|
foreign_id: string;
|
|
71
44
|
id: string;
|
|
72
|
-
latest_reactions: {
|
|
73
|
-
pin?: undefined;
|
|
74
|
-
};
|
|
45
|
+
latest_reactions: {};
|
|
75
46
|
latest_reactions_extra: {};
|
|
76
47
|
object: string;
|
|
77
48
|
origin: null;
|
|
78
49
|
own_reactions: {};
|
|
79
50
|
reaction_counts: {
|
|
80
51
|
like?: undefined;
|
|
81
|
-
pin?: undefined;
|
|
82
52
|
};
|
|
83
53
|
target: string;
|
|
84
54
|
time: string;
|
|
@@ -98,16 +68,13 @@ export declare const activitiesFeedMock: {
|
|
|
98
68
|
feed_id: string;
|
|
99
69
|
foreign_id: string;
|
|
100
70
|
id: string;
|
|
101
|
-
latest_reactions: {
|
|
102
|
-
pin?: undefined;
|
|
103
|
-
};
|
|
71
|
+
latest_reactions: {};
|
|
104
72
|
latest_reactions_extra: {};
|
|
105
73
|
object: string;
|
|
106
74
|
origin: null;
|
|
107
75
|
own_reactions: {};
|
|
108
76
|
reaction_counts: {
|
|
109
77
|
like?: undefined;
|
|
110
|
-
pin?: undefined;
|
|
111
78
|
};
|
|
112
79
|
target: string;
|
|
113
80
|
time: string;
|
package/helpers/intl.d.ts
CHANGED
|
@@ -242,6 +242,7 @@ export declare const checkIntlPathExists: (path: string, language?: {
|
|
|
242
242
|
profileForm_organization_placeholder: string;
|
|
243
243
|
profileForm_location: string;
|
|
244
244
|
profileForm_location_placeholder: string;
|
|
245
|
+
profileForm_location_error: string;
|
|
245
246
|
profileForm_bio: string;
|
|
246
247
|
profileForm_bio_placeholder: string;
|
|
247
248
|
profileForm_cta: string;
|