@apolitical/component-library 3.5.12-ac.2 → 3.5.13-ac.10
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/feeds/activities-feed/mocks/activities-feed.mock.d.ts +56 -0
- package/discussion/shared/interfaces/activity.interface.d.ts +1 -0
- package/helpers/intl.d.ts +2 -1
- package/hooks/index.d.ts +0 -1
- package/index.js +19 -19
- package/index.mjs +1933 -1936
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/base/_blockquotes.scss +11 -0
- package/styles/base/_lists.scss +3 -3
- package/styles/variables/colors/theme/_discussion.scss +2 -0
- package/text/hide-show-text-box/hide-show-text-box.d.ts +3 -1
- package/hooks/use-remove-signup-cookie.d.ts +0 -2
|
@@ -10,6 +10,7 @@ export declare const activitiesFeedMock: {
|
|
|
10
10
|
organization: string;
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
|
+
title: string;
|
|
13
14
|
content: string;
|
|
14
15
|
feed_id: string;
|
|
15
16
|
foreign_id: string;
|
|
@@ -36,6 +37,7 @@ export declare const activitiesFeedMock: {
|
|
|
36
37
|
organization: string;
|
|
37
38
|
};
|
|
38
39
|
};
|
|
40
|
+
title: string;
|
|
39
41
|
content: string;
|
|
40
42
|
feed_id: string;
|
|
41
43
|
foreign_id: string;
|
|
@@ -51,6 +53,60 @@ export declare const activitiesFeedMock: {
|
|
|
51
53
|
target: string;
|
|
52
54
|
time: string;
|
|
53
55
|
verb: string;
|
|
56
|
+
} | {
|
|
57
|
+
actor: {
|
|
58
|
+
created_at: string;
|
|
59
|
+
updated_at: string;
|
|
60
|
+
id: string;
|
|
61
|
+
data: {
|
|
62
|
+
jobTitle: string;
|
|
63
|
+
name: string;
|
|
64
|
+
organization: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
content: string;
|
|
68
|
+
feed_id: string;
|
|
69
|
+
foreign_id: string;
|
|
70
|
+
id: string;
|
|
71
|
+
latest_reactions: {};
|
|
72
|
+
latest_reactions_extra: {};
|
|
73
|
+
object: string;
|
|
74
|
+
origin: null;
|
|
75
|
+
own_reactions: {};
|
|
76
|
+
reaction_counts: {
|
|
77
|
+
like?: undefined;
|
|
78
|
+
};
|
|
79
|
+
target: string;
|
|
80
|
+
time: string;
|
|
81
|
+
verb: string;
|
|
82
|
+
title?: undefined;
|
|
83
|
+
} | {
|
|
84
|
+
actor: {
|
|
85
|
+
created_at: string;
|
|
86
|
+
updated_at: string;
|
|
87
|
+
id: string;
|
|
88
|
+
data: {
|
|
89
|
+
jobTitle: string;
|
|
90
|
+
name: string;
|
|
91
|
+
organization: string;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
title: string;
|
|
95
|
+
feed_id: string;
|
|
96
|
+
foreign_id: string;
|
|
97
|
+
id: string;
|
|
98
|
+
latest_reactions: {};
|
|
99
|
+
latest_reactions_extra: {};
|
|
100
|
+
object: string;
|
|
101
|
+
origin: null;
|
|
102
|
+
own_reactions: {};
|
|
103
|
+
reaction_counts: {
|
|
104
|
+
like?: undefined;
|
|
105
|
+
};
|
|
106
|
+
target: string;
|
|
107
|
+
time: string;
|
|
108
|
+
verb: string;
|
|
109
|
+
content?: undefined;
|
|
54
110
|
})[];
|
|
55
111
|
next: string;
|
|
56
112
|
duration: string;
|
package/helpers/intl.d.ts
CHANGED
|
@@ -256,7 +256,7 @@ export declare const checkIntlPathExists: (path: string, language?: {
|
|
|
256
256
|
timeToComplete_range_aria: string;
|
|
257
257
|
tooltip_loading: string;
|
|
258
258
|
return_to_nav_button: string;
|
|
259
|
-
|
|
259
|
+
progressTracker: string;
|
|
260
260
|
cookieBanner_title: string;
|
|
261
261
|
cookieBanner_text: string;
|
|
262
262
|
cookieBanner_buttons_settings: string;
|
|
@@ -274,6 +274,7 @@ export declare const checkIntlPathExists: (path: string, language?: {
|
|
|
274
274
|
footer_community_join: string;
|
|
275
275
|
footer_community_guidelines: string;
|
|
276
276
|
footer_company: string;
|
|
277
|
+
footer_company_news: string;
|
|
277
278
|
footer_company_story: string;
|
|
278
279
|
footer_company_team: string;
|
|
279
280
|
footer_company_careers: string;
|
package/hooks/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export { default as useCurrentPath } from './use-current-path';
|
|
2
2
|
export { default as useEffectAfterMount } from './use-effect-after-mount';
|
|
3
3
|
export { default as useElementWidth } from './use-element-width';
|
|
4
|
-
export { default as useRemoveSignupCookie } from './use-remove-signup-cookie';
|
|
5
4
|
export { default as useScrollListener } from './use-scroll-listener';
|
|
6
5
|
export { default as useScrollToHash } from './use-scroll-to-hash';
|