@amityco/ui-kit-open-source 4.11.3 → 4.12.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/dist/esm/index.css +1 -1
- package/dist/esm/index.js +757 -756
- package/dist/index.css +1 -1
- package/dist/index.d.mts +116 -50
- package/dist/index.d.ts +116 -50
- package/dist/index.js +863 -855
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React, { FC, ReactNode } from 'react';
|
|
2
2
|
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
3
3
|
import * as styled_components from 'styled-components';
|
|
4
|
+
import { FeedSourceEnum } from '@amityco/ts-sdk';
|
|
4
5
|
|
|
5
6
|
type AmityReactionType = {
|
|
6
7
|
name: string;
|
|
@@ -69,11 +70,29 @@ interface Config {
|
|
|
69
70
|
};
|
|
70
71
|
excludes?: string[];
|
|
71
72
|
message_reactions?: AmityReactionType[];
|
|
73
|
+
social_reactions?: AmityReactionType[];
|
|
72
74
|
customizations?: {
|
|
73
75
|
[key: string]: GetConfigReturnValue;
|
|
74
76
|
};
|
|
75
77
|
}
|
|
76
78
|
|
|
79
|
+
interface PostDetailPageProps {
|
|
80
|
+
id: string;
|
|
81
|
+
hideTarget?: boolean;
|
|
82
|
+
category?: AmityPostCategory;
|
|
83
|
+
commentId?: string;
|
|
84
|
+
parentId?: string;
|
|
85
|
+
posts?: Amity.Post<'clip' | 'video'>[];
|
|
86
|
+
selectedReplyComment?: Amity.Comment;
|
|
87
|
+
showReplyCommentAt?: string;
|
|
88
|
+
keyword?: string;
|
|
89
|
+
isFromCommentClick?: boolean;
|
|
90
|
+
}
|
|
91
|
+
interface GoToPostDetailPageParams extends Omit<PostDetailPageProps, 'id'> {
|
|
92
|
+
postId: string;
|
|
93
|
+
}
|
|
94
|
+
declare function PostDetailPage({ id, hideTarget, category, commentId, parentId, posts, selectedReplyComment, showReplyCommentAt, keyword, isFromCommentClick, }: PostDetailPageProps): React.JSX.Element | null;
|
|
95
|
+
|
|
77
96
|
declare enum AmityPostContentComponentStyle {
|
|
78
97
|
FEED = "feed",
|
|
79
98
|
DETAIL = "detail"
|
|
@@ -86,8 +105,9 @@ declare enum AmityPostCategory {
|
|
|
86
105
|
}
|
|
87
106
|
interface PostContentProps {
|
|
88
107
|
post: Amity.Post;
|
|
89
|
-
onClick?: () => void;
|
|
108
|
+
onClick?: (context?: Pick<PostDetailPageProps, 'commentId' | 'selectedReplyComment' | 'parentId' | 'showReplyCommentAt' | 'isFromCommentClick'>) => void;
|
|
90
109
|
onPostDeleted?: (post: Amity.Post) => void;
|
|
110
|
+
onPollPostDeleted?: (post: Amity.Post) => void;
|
|
91
111
|
style: AmityPostContentComponentStyle;
|
|
92
112
|
category: AmityPostCategory;
|
|
93
113
|
hideMenu?: boolean;
|
|
@@ -96,8 +116,11 @@ interface PostContentProps {
|
|
|
96
116
|
disabledContent?: boolean;
|
|
97
117
|
isGlobalFeaturePost?: boolean;
|
|
98
118
|
className?: string;
|
|
119
|
+
keyword?: string;
|
|
120
|
+
isSearchPost?: boolean;
|
|
121
|
+
expandAllContent?: boolean;
|
|
99
122
|
}
|
|
100
|
-
declare const PostContent: ({ pageId, post, onClick, onPostDeleted, category, hideMenu, hideTarget, style, disabledContent, isGlobalFeaturePost, className, }: PostContentProps) => React.JSX.Element;
|
|
123
|
+
declare const PostContent: ({ pageId, post, onClick, onPostDeleted, onPollPostDeleted, category, hideMenu, hideTarget, style, disabledContent, isGlobalFeaturePost, className, keyword, isSearchPost, expandAllContent, }: PostContentProps) => React.JSX.Element;
|
|
101
124
|
|
|
102
125
|
type MemberCommunitySetup = {
|
|
103
126
|
userId: string;
|
|
@@ -163,11 +186,7 @@ interface PageBehavior {
|
|
|
163
186
|
}) => void;
|
|
164
187
|
};
|
|
165
188
|
AmityGlobalFeedComponentBehavior?: {
|
|
166
|
-
goToPostDetailPage?: (context:
|
|
167
|
-
postId: string;
|
|
168
|
-
hideTarget?: boolean;
|
|
169
|
-
category?: AmityPostCategory;
|
|
170
|
-
}) => void;
|
|
189
|
+
goToPostDetailPage?: (context: GoToPostDetailPageParams) => void;
|
|
171
190
|
goToViewStoryPage?: (context: {
|
|
172
191
|
targetId: string;
|
|
173
192
|
targetType: Amity.StoryTargetType;
|
|
@@ -185,6 +204,9 @@ interface PageBehavior {
|
|
|
185
204
|
targetType?: 'community' | 'user';
|
|
186
205
|
targetId?: string;
|
|
187
206
|
}) => void;
|
|
207
|
+
goToSocialGlobalSearchPage?: (context: {
|
|
208
|
+
keyword: string;
|
|
209
|
+
}) => void;
|
|
188
210
|
};
|
|
189
211
|
AmityPostContentComponentBehavior?: {
|
|
190
212
|
goToCommunityProfilePage?: (context: {
|
|
@@ -199,7 +221,14 @@ interface PageBehavior {
|
|
|
199
221
|
isClipPost?: boolean;
|
|
200
222
|
}) => void;
|
|
201
223
|
};
|
|
202
|
-
AmitySocialGlobalSearchPageBehavior?:
|
|
224
|
+
AmitySocialGlobalSearchPageBehavior?: {
|
|
225
|
+
goToPostDetailPage?: (context: {
|
|
226
|
+
postId: string;
|
|
227
|
+
hideTarget?: boolean;
|
|
228
|
+
category?: AmityPostCategory;
|
|
229
|
+
keyword?: string;
|
|
230
|
+
}) => void;
|
|
231
|
+
};
|
|
203
232
|
AmityCommunitySearchResultComponentBehavior?: {
|
|
204
233
|
goToCommunityProfilePage?: (context: {
|
|
205
234
|
communityId: string;
|
|
@@ -257,11 +286,7 @@ interface PageBehavior {
|
|
|
257
286
|
post?: Amity.Post;
|
|
258
287
|
isClipPost?: boolean;
|
|
259
288
|
}): void;
|
|
260
|
-
goToPostDetailPage?(context:
|
|
261
|
-
postId: string;
|
|
262
|
-
hideTarget?: boolean;
|
|
263
|
-
category?: AmityPostCategory;
|
|
264
|
-
}): void;
|
|
289
|
+
goToPostDetailPage?(context: GoToPostDetailPageParams): void;
|
|
265
290
|
goToStoryCreationPage?(context: {
|
|
266
291
|
targetId: string | null;
|
|
267
292
|
targetType: Amity.StoryTargetType;
|
|
@@ -290,6 +315,7 @@ interface PageBehavior {
|
|
|
290
315
|
goToPollPostComposerPage?(context: {
|
|
291
316
|
targetId: string | null;
|
|
292
317
|
targetType: 'community' | 'user';
|
|
318
|
+
pollType?: 'text' | 'image';
|
|
293
319
|
}): void;
|
|
294
320
|
goToPendingRequestPage?(context: {
|
|
295
321
|
community: Amity.Community;
|
|
@@ -369,9 +395,7 @@ interface PageBehavior {
|
|
|
369
395
|
}) => void;
|
|
370
396
|
};
|
|
371
397
|
AmityUserFeedComponentBehavior?: {
|
|
372
|
-
goToPostDetailPage?(context:
|
|
373
|
-
postId: string;
|
|
374
|
-
}): void;
|
|
398
|
+
goToPostDetailPage?(context: GoToPostDetailPageParams): void;
|
|
375
399
|
};
|
|
376
400
|
AmityUserProfilePageBehavior?: {
|
|
377
401
|
goToEditUserPage?(context: {
|
|
@@ -420,18 +444,16 @@ interface PageBehavior {
|
|
|
420
444
|
goToPollPostComposerPage?(context: {
|
|
421
445
|
targetId: string | null;
|
|
422
446
|
targetType: 'community' | 'user';
|
|
447
|
+
pollType?: 'text' | 'image';
|
|
423
448
|
}): void;
|
|
424
449
|
};
|
|
425
450
|
AmityNotificationTrayPageBehavior?: {
|
|
426
451
|
goToCommunityProfilePage?(context: {
|
|
427
452
|
communityId: string;
|
|
428
453
|
}): void;
|
|
429
|
-
goToPostDetailPage?(context:
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
category?: AmityPostCategory;
|
|
433
|
-
commentId?: string;
|
|
434
|
-
parentId?: string;
|
|
454
|
+
goToPostDetailPage?(context: GoToPostDetailPageParams): void;
|
|
455
|
+
goToUserProfilePage?(context: {
|
|
456
|
+
userId: string;
|
|
435
457
|
}): void;
|
|
436
458
|
};
|
|
437
459
|
AmityDraftClipPageBehavior?: {
|
|
@@ -447,14 +469,7 @@ interface PageBehavior {
|
|
|
447
469
|
goToSelectClipPostTargetPage?(context: {
|
|
448
470
|
isClipPost: boolean;
|
|
449
471
|
}): void;
|
|
450
|
-
goToPostDetailPage?(context:
|
|
451
|
-
postId: string;
|
|
452
|
-
hideTarget?: boolean;
|
|
453
|
-
category?: AmityPostCategory;
|
|
454
|
-
commentId?: string;
|
|
455
|
-
parentId?: string;
|
|
456
|
-
posts?: Amity.Post<'clip' | 'video'>[];
|
|
457
|
-
}): void;
|
|
472
|
+
goToPostDetailPage?(context: GoToPostDetailPageParams): void;
|
|
458
473
|
goToUserProfilePage?(context: {
|
|
459
474
|
userId: string;
|
|
460
475
|
}): void;
|
|
@@ -709,6 +724,8 @@ declare class AmityUIKitManager {
|
|
|
709
724
|
private onConnectionStatusChange?;
|
|
710
725
|
private onConnected?;
|
|
711
726
|
private onDisconnected?;
|
|
727
|
+
private globalBannedUnsubscribe?;
|
|
728
|
+
private onGlobalBanned?;
|
|
712
729
|
/**
|
|
713
730
|
* Private constructor to prevent direct instantiation.
|
|
714
731
|
*/
|
|
@@ -736,7 +753,7 @@ declare class AmityUIKitManager {
|
|
|
736
753
|
* @param onConnected - The callback function to be called when connected.
|
|
737
754
|
* @param onDisconnected - The callback function to be called when disconnected.
|
|
738
755
|
*/
|
|
739
|
-
static registerDevice(userId: string, displayName: string, sessionHandler: SessionHandler, authToken?: string, onConnectionStatusChange?: (state: Amity.SessionStates) => void, onConnected?: () => void, onDisconnected?: () => void): Promise<void>;
|
|
756
|
+
static registerDevice(userId: string, displayName: string, sessionHandler: SessionHandler, authToken?: string, onConnectionStatusChange?: (state: Amity.SessionStates) => void, onConnected?: () => void, onDisconnected?: () => void, onGlobalBanned?: (payload: Amity.UserPayload) => void): Promise<void>;
|
|
740
757
|
/**
|
|
741
758
|
* Sets the AmityClient instance to be used by the AmityUIKitManager.
|
|
742
759
|
* This method is useful when sharing the AmityClient instance between different parts of the application.
|
|
@@ -827,8 +844,9 @@ interface ReactionListProps$1 {
|
|
|
827
844
|
pageId: string;
|
|
828
845
|
referenceId: string;
|
|
829
846
|
referenceType: Amity.ReactableType;
|
|
847
|
+
customReferenceType?: string;
|
|
830
848
|
}
|
|
831
|
-
declare const ReactionList: ({ pageId, referenceId, referenceType }: ReactionListProps$1) => React.JSX.Element | null;
|
|
849
|
+
declare const ReactionList: ({ pageId, referenceId, referenceType, customReferenceType, }: ReactionListProps$1) => React.JSX.Element | null;
|
|
832
850
|
|
|
833
851
|
interface ReactionListProps {
|
|
834
852
|
referenceId: string;
|
|
@@ -912,17 +930,9 @@ declare function SelectPostTargetPage({ isClipPost }: {
|
|
|
912
930
|
|
|
913
931
|
declare function MyCommunitiesSearchPage(): React.JSX.Element;
|
|
914
932
|
|
|
915
|
-
declare function SocialGlobalSearchPage(
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
id: string;
|
|
919
|
-
hideTarget?: boolean;
|
|
920
|
-
category?: AmityPostCategory;
|
|
921
|
-
commentId?: string;
|
|
922
|
-
parentId?: string;
|
|
923
|
-
posts?: Amity.Post<'clip' | 'video'>[];
|
|
924
|
-
}
|
|
925
|
-
declare function PostDetailPage({ id, hideTarget, category, commentId, parentId, posts, }: PostDetailPageProps): React.JSX.Element | null;
|
|
933
|
+
declare function SocialGlobalSearchPage({ keyword }: {
|
|
934
|
+
keyword?: string;
|
|
935
|
+
}): React.JSX.Element;
|
|
926
936
|
|
|
927
937
|
type UserProfilePageProps = {
|
|
928
938
|
userId: string;
|
|
@@ -951,6 +961,13 @@ interface CommunityAddMemberPageProps {
|
|
|
951
961
|
}
|
|
952
962
|
declare const CommunityAddMemberPage: ({ member, closePopup, communityId, onAddedAction, }: CommunityAddMemberPageProps) => React.JSX.Element;
|
|
953
963
|
|
|
964
|
+
type CommunityInviteMemberPageProps = {
|
|
965
|
+
communityId?: string;
|
|
966
|
+
users?: Amity.User[];
|
|
967
|
+
onSubmit?: (userId: string[]) => void;
|
|
968
|
+
};
|
|
969
|
+
declare const CommunityInviteMemberPage: (props: CommunityInviteMemberPageProps) => React.JSX.Element;
|
|
970
|
+
|
|
954
971
|
interface CommunityProfileProps {
|
|
955
972
|
communityId: string;
|
|
956
973
|
page?: number;
|
|
@@ -982,11 +999,17 @@ type CommunityMembershipPageProps = {
|
|
|
982
999
|
};
|
|
983
1000
|
declare const CommunityMembershipPage: ({ community }: CommunityMembershipPageProps) => React.JSX.Element;
|
|
984
1001
|
|
|
1002
|
+
type CommunityPendingInvitationPageProps = {
|
|
1003
|
+
community: Amity.Community;
|
|
1004
|
+
};
|
|
1005
|
+
declare function CommunityPendingInvitationPage(props: CommunityPendingInvitationPageProps): React.JSX.Element;
|
|
1006
|
+
|
|
985
1007
|
type PollPostComposerPageProps = {
|
|
986
1008
|
targetId: string | null;
|
|
987
1009
|
targetType: 'community' | 'user';
|
|
1010
|
+
pollType?: 'text' | 'image';
|
|
988
1011
|
};
|
|
989
|
-
declare const PollPostComposerPage: ({ targetId, targetType }: PollPostComposerPageProps) => React.JSX.Element;
|
|
1012
|
+
declare const PollPostComposerPage: ({ targetId, targetType, pollType, }: PollPostComposerPageProps) => React.JSX.Element;
|
|
990
1013
|
|
|
991
1014
|
declare function PollTargetSelectionPage(): React.JSX.Element;
|
|
992
1015
|
|
|
@@ -999,12 +1022,17 @@ declare function CommunitiesByCategoryPage({ categoryId }: CommunitiesByCategory
|
|
|
999
1022
|
|
|
1000
1023
|
type LiveStreamPlayerPageProps = {
|
|
1001
1024
|
post: Amity.Post;
|
|
1002
|
-
goToDetailPage?: () => void;
|
|
1025
|
+
goToDetailPage?: (context?: GoToPostDetailPageParams) => void;
|
|
1003
1026
|
};
|
|
1004
1027
|
declare function LiveStreamPlayerPage({ post, goToDetailPage }: LiveStreamPlayerPageProps): React.JSX.Element;
|
|
1005
1028
|
|
|
1006
1029
|
declare function LivestreamTerminatedPage(): React.JSX.Element;
|
|
1007
1030
|
|
|
1031
|
+
type PendingRequestPageProps = {
|
|
1032
|
+
community: Amity.Community;
|
|
1033
|
+
};
|
|
1034
|
+
declare const PendingRequestPage: ({ community }: PendingRequestPageProps) => React.JSX.Element | null;
|
|
1035
|
+
|
|
1008
1036
|
type DraftClipPageProps = {
|
|
1009
1037
|
targetId: string | null;
|
|
1010
1038
|
targetType: 'community' | 'user';
|
|
@@ -1091,8 +1119,9 @@ type TopSearchBarProps = {
|
|
|
1091
1119
|
onFocus?: () => void;
|
|
1092
1120
|
hasCancelButton?: boolean;
|
|
1093
1121
|
search: (keyword: string) => void;
|
|
1122
|
+
initialValue?: string;
|
|
1094
1123
|
};
|
|
1095
|
-
declare function TopSearchBar({ pageId, search, onFocus, hasCancelButton, }: TopSearchBarProps): React.JSX.Element | null;
|
|
1124
|
+
declare function TopSearchBar({ pageId, search, onFocus, hasCancelButton, initialValue, }: TopSearchBarProps): React.JSX.Element | null;
|
|
1096
1125
|
|
|
1097
1126
|
interface MyCommunitiesProps {
|
|
1098
1127
|
pageId?: string;
|
|
@@ -1176,24 +1205,61 @@ declare const UserProfileHeader: React.FC<UserProfileHeaderProps>;
|
|
|
1176
1205
|
interface UserFeedProps {
|
|
1177
1206
|
userId: string;
|
|
1178
1207
|
pageId?: string;
|
|
1208
|
+
feedSources?: FeedSourceEnum[];
|
|
1209
|
+
followStatus?: Amity.FollowStatus['status'] | null;
|
|
1179
1210
|
}
|
|
1180
|
-
declare const UserFeed: ({ pageId, userId }: UserFeedProps) => React.JSX.Element;
|
|
1211
|
+
declare const UserFeed: ({ pageId, userId, feedSources, followStatus }: UserFeedProps) => React.JSX.Element;
|
|
1181
1212
|
|
|
1182
1213
|
interface UserImageFeedProps {
|
|
1183
1214
|
userId: string;
|
|
1184
1215
|
pageId?: string;
|
|
1216
|
+
feedSources?: FeedSourceEnum[];
|
|
1217
|
+
followStatus?: Amity.FollowStatus['status'] | null;
|
|
1185
1218
|
}
|
|
1186
|
-
declare const UserImageFeed: ({ pageId, userId }: UserImageFeedProps) => React.JSX.Element;
|
|
1219
|
+
declare const UserImageFeed: ({ pageId, userId, feedSources, followStatus, }: UserImageFeedProps) => React.JSX.Element;
|
|
1187
1220
|
|
|
1188
1221
|
interface UserVideoFeedProps {
|
|
1189
1222
|
userId: string;
|
|
1190
1223
|
pageId?: string;
|
|
1224
|
+
feedSources?: FeedSourceEnum[];
|
|
1225
|
+
followStatus?: Amity.FollowStatus['status'] | null;
|
|
1191
1226
|
}
|
|
1192
|
-
declare const UserVideoFeed: ({ pageId, userId }: UserVideoFeedProps) => React.JSX.Element;
|
|
1227
|
+
declare const UserVideoFeed: ({ pageId, userId, feedSources, followStatus, }: UserVideoFeedProps) => React.JSX.Element;
|
|
1193
1228
|
|
|
1194
1229
|
type ExploreProps = {
|
|
1195
1230
|
pageId?: string;
|
|
1196
1231
|
};
|
|
1197
1232
|
declare const Explore: ({ pageId }: ExploreProps) => React.JSX.Element;
|
|
1198
1233
|
|
|
1199
|
-
|
|
1234
|
+
type InvitationBannerProps = {
|
|
1235
|
+
pageId?: string;
|
|
1236
|
+
community: Amity.Community;
|
|
1237
|
+
removeInvitation?: () => void;
|
|
1238
|
+
invitation?: Amity.Invitation;
|
|
1239
|
+
};
|
|
1240
|
+
declare function InvitationBanner({ community, pageId, removeInvitation, invitation: $invitation, }: InvitationBannerProps): React.JSX.Element;
|
|
1241
|
+
|
|
1242
|
+
type InvitationSectionProps = {
|
|
1243
|
+
pageId?: string;
|
|
1244
|
+
onClose?: () => void;
|
|
1245
|
+
invitations: Amity.Invitation[];
|
|
1246
|
+
};
|
|
1247
|
+
declare const InvitationSection: ({ onClose, pageId, invitations, }: InvitationSectionProps) => React.JSX.Element | null;
|
|
1248
|
+
|
|
1249
|
+
type PendingPostListProps = {
|
|
1250
|
+
pageId?: string;
|
|
1251
|
+
reviewingPosts: Amity.Post[];
|
|
1252
|
+
canReviewCommunityPosts?: boolean;
|
|
1253
|
+
refresh?: () => void;
|
|
1254
|
+
};
|
|
1255
|
+
declare const PendingPostList: ({ pageId, reviewingPosts, canReviewCommunityPosts, refresh, }: PendingPostListProps) => React.JSX.Element;
|
|
1256
|
+
|
|
1257
|
+
type JoinRequestContentProps = {
|
|
1258
|
+
pageId?: string;
|
|
1259
|
+
joinRequests: Amity.JoinRequest[] | null;
|
|
1260
|
+
isLoading: boolean;
|
|
1261
|
+
refresh?: () => void;
|
|
1262
|
+
};
|
|
1263
|
+
declare const JoinRequestContent: ({ pageId, joinRequests, isLoading, refresh, }: JoinRequestContentProps) => React.JSX.Element;
|
|
1264
|
+
|
|
1265
|
+
export { AllCategoriesPage as AmityAllCategoriesPage, _default$1 as AmityAvatar, BlockedUserPage as AmityBlockedUserPage, ClipFeedPage as AmityClipFeedPage, CommentTray as AmityCommentTrayComponent, CommunitiesByCategoryPage as AmityCommunitiesByCategoryPage, CommunityAddCategoryPage as AmityCommunityAddCategoryPage, CommunityAddMemberPage as AmityCommunityAddMemberPage, CommunityFeed as AmityCommunityFeedComponent, CommunityHeader as AmityCommunityHeaderComponent, CommunityImageFeed as AmityCommunityImageFeedComponent, CommunityInviteMemberPage as AmityCommunityInviteMemberPage, CommunityMembershipPage as AmityCommunityMembershipPage, CommunityPendingInvitationPage as AmityCommunityPendingInvitationPage, CommunityPinnedPost as AmityCommunityPinnedPostComponent, CommunityPostPermissionPage as AmityCommunityPostPermissionPage, CommunityProfilePage as AmityCommunityProfilePage, CommunitySearchResult as AmityCommunitySearchResultComponent, CommunitySettingPage as AmityCommunitySettingPage, CommunitySetupPage as AmityCommunitySetupPage, AmityCommunitySetupPageMode, CommunityStorySettingPage as AmityCommunityStorySettingPage, CommunityVideoFeed as AmityCommunityVideoFeedComponent, CreatePostMenu as AmityCreatePostMenuComponent, DetailedMediaAttachment as AmityDetailedMediaAttachmentComponent, DraftClipPage as AmityDraftClipPage, AmityDraftStoryPage, EditUserProfilePage as AmityEditUserProfilePage, EmptyNewsfeed as AmityEmptyNewsFeedComponent, CommentText as AmityExpandableText, Explore as AmityExploreComponent, GlobalFeed as AmityGlobalFeedComponent, InvitationBanner as AmityInvitationBannerComponent, InvitationSection as AmityInvitationSectionComponent, JoinRequestContent as AmityJoinRequestContentComponent, ChatHeader as AmityLiveChatHeader, MessageComposer as AmityLiveChatMessageComposeBar, MessageList as AmityLiveChatMessageList, MessageQuickReaction as AmityLiveChatMessageQuickReaction, MessageReactionPicker as AmityLiveChatMessageReactionPicker, MessageReactionPreview as AmityLiveChatMessageReactionPreview, LiveChat as AmityLiveChatPage, LiveStreamPlayerPage as AmityLiveStreamPlayerPage, LivestreamTerminatedPage as AmityLivestreamTerminatedPage, MediaAttachment as AmityMediaAttachmentComponent, type MessageActionType as AmityMessageActionType, MyCommunities as AmityMyCommunitiesComponent, MyCommunitiesSearchPage as AmityMyCommunitiesSearchPage, Newsfeed as AmityNewsFeedComponent, PageRenderer as AmityPageRenderer, PendingPostContent as AmityPendingPostContentComponent, PendingPostList as AmityPendingPostListComponent, PendingPostsPage as AmityPendingPostsPage, PendingRequestPage as AmityPendingRequestPage, PollPostComposerPage as AmityPollPostComposerPage, PollTargetSelectionPage as AmityPollTargetSelectionPage, PostComposerPage as AmityPostComposerPage, PostContainer as AmityPostContainer, PostContent as AmityPostContentComponent, PostDetailPage as AmityPostDetailPage, _default as AmityPostEngagementBar, SelectPostTargetPage as AmityPostTargetSelectionPage, ReactionList as AmityReactionListComponent, type ReactionListProps as AmityReactionListProps, SocialGlobalSearchPage as AmitySocialGlobalSearchPage, SocialHomePage as AmitySocialHomePage, HomePageTab as AmitySocialHomePageTab, TopNavigation as AmitySocialHomeTopNavigationComponent, StoryPreview as AmityStoryPreview, StoryPreviewThumbnail as AmityStoryPreviewThumbnail, StoryTab as AmityStoryTabComponent, StoryTargetSelectionPage as AmityStoryTargetSelectionPage, TopSearchBar as AmityTopSearchBarComponent, AmityUIKitManager, ChatApplication as AmityUiKitChat, _default$2 as AmityUiKitFeed, AmityUIKitProvider as AmityUiKitProvider, Application as AmityUiKitSocial, UserFeed as AmityUserFeedComponent, UserImageFeed as AmityUserImageFeedComponent, UserPendingFollowRequestPage as AmityUserPendingFollowRequestPage, UserProfileHeader as AmityUserProfileHeaderComponent, UserProfilePage as AmityUserProfilePage, UserRelationshipPage as AmityUserRelationshipPage, UserRelationshipPageTabs as AmityUserRelationshipPageTabs, UserSearchResult as AmityUserSearchResultComponent, UserVideoFeed as AmityUserVideoFeedComponent, ViewStoryPage as AmityViewStoryPage, addChatMembers as amityAddChatMembers, removeChatMembers as amityRemoveChatMembers, useNavigation as useAmityNavigation, useSDK as useAmitySDK, useUser as useAmityUser };
|