@apolitical/component-library 6.1.2 → 6.1.3
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/form/form.type.d.ts +21 -2
- package/discussion/components/form/index.d.ts +1 -1
- package/discussion/feeds/replies-feed/cache/hooks/feed/index.d.ts +0 -1
- package/discussion/feeds/replies-feed/mocks/index.d.ts +0 -1
- package/discussion/feeds/replies-feed/{components/nested-replies-feed → nested-replies-feed}/nested-replies-feed.d.ts +3 -3
- package/discussion/feeds/replies-feed/replies-feed.d.ts +2 -4
- package/discussion/sections/activity-section/mocks/activity-section.mock.d.ts +39 -45
- package/discussion/sections/activity-section/mocks/index.d.ts +0 -1
- package/discussion/shared/interfaces/discussion.interface.d.ts +0 -19
- package/helpers/intl.d.ts +1 -1
- package/index.js +36 -36
- package/index.mjs +7611 -7718
- package/navigation/action-bar/action-bar.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/discussion/feeds/replies-feed/cache/hooks/feed/parse-replies/index.d.ts +0 -1
- package/discussion/feeds/replies-feed/cache/hooks/feed/parse-replies/mocks/index.d.ts +0 -2
- package/discussion/feeds/replies-feed/cache/hooks/feed/parse-replies/mocks/replies.mock.d.ts +0 -2
- package/discussion/feeds/replies-feed/cache/hooks/feed/parse-replies/mocks/user.mock.d.ts +0 -4
- package/discussion/feeds/replies-feed/cache/hooks/feed/parse-replies/parse-replies.d.ts +0 -28
- package/discussion/feeds/replies-feed/components/add-reply-form/add-reply-form.d.ts +0 -16
- package/discussion/feeds/replies-feed/components/add-reply-form/index.d.ts +0 -1
- package/discussion/feeds/replies-feed/components/index.d.ts +0 -3
- package/discussion/feeds/replies-feed/components/load-more-replies-button/index.d.ts +0 -1
- package/discussion/feeds/replies-feed/components/load-more-replies-button/load-more-replies-button.d.ts +0 -13
- package/discussion/feeds/replies-feed/components/reply-item/index.d.ts +0 -1
- package/discussion/feeds/replies-feed/components/reply-item/reply-item.d.ts +0 -26
- package/discussion/feeds/replies-feed/mocks/parsed-replies-feed.mock.d.ts +0 -13
- package/discussion/sections/activity-section/activity-section.helpers.d.ts +0 -2
- package/discussion/sections/activity-section/activity-section.mock.d.ts +0 -103
- package/discussion/sections/activity-section/mocks/activity-functions.mock.d.ts +0 -46
- /package/discussion/feeds/replies-feed/{components/nested-replies-feed → nested-replies-feed}/index.d.ts +0 -0
- /package/discussion/feeds/replies-feed/{components/nested-replies-feed → nested-replies-feed}/mocks/index.d.ts +0 -0
- /package/discussion/feeds/replies-feed/{components/nested-replies-feed → nested-replies-feed}/mocks/nested-replies-feed.mock.d.ts +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { IEnrichedUrlData } from '../../../navigation';
|
|
2
|
-
import { IDiscussionContent, IMentions } from './../../discussion';
|
|
3
|
-
import { ICategory
|
|
2
|
+
import { DiscussionCreateContentFunction, IDiscussionContent, IListMemberData, IMentions, IDiscussionFormFns } from './../../discussion';
|
|
3
|
+
import { ICategory } from '../../shared';
|
|
4
4
|
export interface IDiscussionFormMeta {
|
|
5
5
|
/** Whether the form data is still loading */
|
|
6
6
|
isLoading?: boolean;
|
|
@@ -36,6 +36,24 @@ export interface IDiscussionFormMeta {
|
|
|
36
36
|
/** Whether the success message should show on a successful submit */
|
|
37
37
|
showSuccessMessage?: boolean;
|
|
38
38
|
}
|
|
39
|
+
interface IDiscussionFormFunctions extends IDiscussionFormFns {
|
|
40
|
+
onChange?: (args: {
|
|
41
|
+
[key: string]: string | boolean;
|
|
42
|
+
}) => void;
|
|
43
|
+
create: DiscussionCreateContentFunction;
|
|
44
|
+
handleSaveEdit?: (({ title, body }: {
|
|
45
|
+
title: string;
|
|
46
|
+
body: string;
|
|
47
|
+
}) => Promise<void>) | (() => void);
|
|
48
|
+
handleCancel?: () => void;
|
|
49
|
+
callback?: (args: void) => void;
|
|
50
|
+
onMention?: (value?: IListMemberData) => void;
|
|
51
|
+
props?: {
|
|
52
|
+
create: {
|
|
53
|
+
projectNames: ['questions-answers'];
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
}
|
|
39
57
|
export interface IDiscussionForm {
|
|
40
58
|
/** A unique ID for the form */
|
|
41
59
|
id?: string;
|
|
@@ -89,3 +107,4 @@ export interface IDiscussionFormState {
|
|
|
89
107
|
link?: false | IEnrichedUrlData;
|
|
90
108
|
};
|
|
91
109
|
}
|
|
110
|
+
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type { IDiscussionForm, IDiscussionFormMeta
|
|
1
|
+
export type { IDiscussionForm, IDiscussionFormMeta } from './form.type';
|
|
2
2
|
export { default as DiscussionForm } from './form';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { IDiscussionFormFns } from '
|
|
3
|
-
import { ILikesFeedQueryFns } from '
|
|
4
|
-
import { type IQueryFns } from '
|
|
2
|
+
import type { IDiscussionFormFns } from '../../../../discussion/discussion.d';
|
|
3
|
+
import { ILikesFeedQueryFns } from '../../../../discussion/feeds/likes-feed';
|
|
4
|
+
import { type IQueryFns } from './../cache';
|
|
5
5
|
interface NestedRepliesFunctions {
|
|
6
6
|
/** Functions for the replies query */
|
|
7
7
|
reactions: IQueryFns;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { type IProfileFormProps } from '../../../form';
|
|
3
3
|
import { ILikesFeedQueryFns } from '../../../discussion/feeds/likes-feed';
|
|
4
|
-
import type { IDiscussionFormFns } from '
|
|
4
|
+
import type { IDiscussionFormFns } from './../../discussion';
|
|
5
5
|
import { type IQueryFns } from './cache';
|
|
6
6
|
interface RepliesFunctions {
|
|
7
7
|
/** Functions for the replies query */
|
|
8
8
|
reactions: IQueryFns;
|
|
9
|
-
/** Functions for likes query */
|
|
9
|
+
/** Functions for the likes query */
|
|
10
10
|
likes: ILikesFeedQueryFns;
|
|
11
11
|
/** Query functions for the mentions */
|
|
12
12
|
form: IDiscussionFormFns;
|
|
@@ -30,8 +30,6 @@ interface Props {
|
|
|
30
30
|
functions: RepliesFunctions;
|
|
31
31
|
/** Props to pass into the profile form */
|
|
32
32
|
profile: IProfileFormProps;
|
|
33
|
-
/** Whether to show the replies */
|
|
34
|
-
showReplies: boolean;
|
|
35
33
|
}
|
|
36
34
|
declare const RepliesFeed: React.FC<Props>;
|
|
37
35
|
export default RepliesFeed;
|
|
@@ -1,52 +1,46 @@
|
|
|
1
1
|
export declare const activitySectionMock: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
'community-slug': string[];
|
|
17
|
-
};
|
|
2
|
+
actor: {
|
|
3
|
+
created_at: string;
|
|
4
|
+
updated_at: string;
|
|
5
|
+
id: string;
|
|
6
|
+
data: {
|
|
7
|
+
jobTitle: string;
|
|
8
|
+
name: string;
|
|
9
|
+
organization: string;
|
|
10
|
+
location: {
|
|
11
|
+
en: string;
|
|
12
|
+
};
|
|
13
|
+
badges: {
|
|
14
|
+
communities: {
|
|
15
|
+
'community-slug': string[];
|
|
18
16
|
};
|
|
19
17
|
};
|
|
20
18
|
};
|
|
21
|
-
categories: never[];
|
|
22
|
-
content: string;
|
|
23
|
-
feed_id: string;
|
|
24
|
-
foreign_id: string;
|
|
25
|
-
id: string;
|
|
26
|
-
latest_reactions: {
|
|
27
|
-
like: never[];
|
|
28
|
-
reply: never[];
|
|
29
|
-
};
|
|
30
|
-
latest_reactions_extra: {
|
|
31
|
-
like: never[];
|
|
32
|
-
reply: never[];
|
|
33
|
-
};
|
|
34
|
-
object: string;
|
|
35
|
-
origin: null;
|
|
36
|
-
own_reactions: {
|
|
37
|
-
like: never[];
|
|
38
|
-
reply: never[];
|
|
39
|
-
};
|
|
40
|
-
reaction_counts: {
|
|
41
|
-
like: number;
|
|
42
|
-
reply: number;
|
|
43
|
-
};
|
|
44
|
-
target: string;
|
|
45
|
-
time: string;
|
|
46
|
-
verb: string;
|
|
47
19
|
};
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
20
|
+
categories: string[];
|
|
21
|
+
content: string;
|
|
22
|
+
feed_id: string;
|
|
23
|
+
foreign_id: string;
|
|
24
|
+
id: string;
|
|
25
|
+
latest_reactions: {
|
|
26
|
+
like: never[];
|
|
27
|
+
reply: never[];
|
|
28
|
+
};
|
|
29
|
+
latest_reactions_extra: {
|
|
30
|
+
like: never[];
|
|
31
|
+
reply: never[];
|
|
32
|
+
};
|
|
33
|
+
object: string;
|
|
34
|
+
origin: null;
|
|
35
|
+
own_reactions: {
|
|
36
|
+
like: never[];
|
|
37
|
+
reply: never[];
|
|
38
|
+
};
|
|
39
|
+
reaction_counts: {
|
|
40
|
+
like: number;
|
|
41
|
+
reply: number;
|
|
51
42
|
};
|
|
43
|
+
target: string;
|
|
44
|
+
time: string;
|
|
45
|
+
verb: string;
|
|
52
46
|
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { MemberProps, MemberDetailsProps } from '../../../user';
|
|
2
2
|
import type { ListMembers, ClickMentionFallback } from '../../../form';
|
|
3
3
|
import type { IEnrichedUrlData } from '../../../navigation';
|
|
4
|
-
import { IDiscussionFormFns } from '../../discussion';
|
|
5
4
|
export type IDiscussionContentType = 'answer' | 'post' | 'response' | 'reply' | 'question';
|
|
6
5
|
export interface IDiscussionContent {
|
|
7
6
|
/** The type of content */
|
|
@@ -91,21 +90,3 @@ export interface IConversation {
|
|
|
91
90
|
prepopulateForm?: string;
|
|
92
91
|
mentionData?: IListMemberData;
|
|
93
92
|
}
|
|
94
|
-
export interface IDiscussionFormFunctions extends IDiscussionFormFns {
|
|
95
|
-
onChange?: (args: {
|
|
96
|
-
[key: string]: string | boolean;
|
|
97
|
-
}) => void;
|
|
98
|
-
create: DiscussionCreateContentFunction;
|
|
99
|
-
handleSaveEdit?: (({ title, body }: {
|
|
100
|
-
title: string;
|
|
101
|
-
body: string;
|
|
102
|
-
}) => Promise<void>) | (() => void);
|
|
103
|
-
handleCancel?: () => void;
|
|
104
|
-
callback?: (args: void) => void;
|
|
105
|
-
onMention?: (value?: IListMemberData) => void;
|
|
106
|
-
props?: {
|
|
107
|
-
create: {
|
|
108
|
-
projectNames: ['questions-answers'];
|
|
109
|
-
};
|
|
110
|
-
};
|
|
111
|
-
}
|
package/helpers/intl.d.ts
CHANGED
|
@@ -171,6 +171,7 @@ export declare const checkIntlPathExists: (path: string, language?: {
|
|
|
171
171
|
discussion_moreMenu_report: string;
|
|
172
172
|
discussion_comments_screenReader: string;
|
|
173
173
|
discussion_comments: string;
|
|
174
|
+
discussion_comments_loading: string;
|
|
174
175
|
discussion_responses_answer: string;
|
|
175
176
|
discussion_responses_comment: string;
|
|
176
177
|
discussion_responses_title: string;
|
|
@@ -350,7 +351,6 @@ export declare const checkIntlPathExists: (path: string, language?: {
|
|
|
350
351
|
poll_num_votes: string;
|
|
351
352
|
poll_remove_vote_button: string;
|
|
352
353
|
poll_aria_votes: string;
|
|
353
|
-
replies_feed_missing_polls_vote_message: string;
|
|
354
354
|
tableOfContents: string;
|
|
355
355
|
timeToComplete_hours: string;
|
|
356
356
|
timeToComplete_hours_short: string;
|