@amityco/ui-kit-open-source 4.17.2 → 4.18.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/index.d.ts CHANGED
@@ -1,7 +1,5 @@
1
- import React, { FC, ReactNode } from 'react';
1
+ import React, { FC } from 'react';
2
2
  import * as react_jsx_runtime from 'react/jsx-runtime';
3
- import * as styled_components_dist_types from 'styled-components/dist/types';
4
- import * as styled_components from 'styled-components';
5
3
  import { AnalyticsSourceTypeEnum, FeedSourceEnum } from '@amityco/ts-sdk';
6
4
 
7
5
  /**
@@ -106,6 +104,13 @@ interface Config {
106
104
  can_view_tab: UserAccess;
107
105
  };
108
106
  };
107
+ chat?: {
108
+ enabled_channel_types?: ('conversation' | 'community')[];
109
+ conversation_chat_user_actions?: {
110
+ name: 'mute' | 'report' | 'block';
111
+ enabled: boolean;
112
+ }[];
113
+ };
109
114
  };
110
115
  }
111
116
 
@@ -772,10 +777,10 @@ interface AmityUIKitProviderProps {
772
777
  };
773
778
  userId?: string;
774
779
  displayName?: string;
775
- postRendererConfig?: any;
776
780
  theme?: Record<string, unknown>;
777
781
  children?: React.ReactNode;
778
782
  socialCommunityCreationButtonVisible?: boolean;
783
+ hideExplore?: boolean;
779
784
  actionHandlers?: {
780
785
  onChangePage?: (data: {
781
786
  type: string;
@@ -829,181 +834,92 @@ interface AmityUIKitProviderProps {
829
834
  }
830
835
  declare const AmityUIKitProvider: React.FC<AmityUIKitProviderProps>;
831
836
 
832
- interface FeedProps {
833
- className?: string;
834
- feedType?: 'reviewing' | 'published';
835
- targetType?: string;
836
- targetId?: string | null;
837
- showPostCreator?: boolean;
838
- onPostCreated?: () => void;
839
- goToExplore?: () => void;
840
- readonly?: boolean;
841
- isHiddenProfile?: boolean;
837
+ declare const Application$1: () => react_jsx_runtime.JSX.Element;
838
+
839
+ interface LiveChatProps {
840
+ channelId: Amity.Channel['channelId'];
842
841
  }
843
- declare const _default$2: React.MemoExoticComponent<(props: FeedProps) => react_jsx_runtime.JSX.Element>;
844
-
845
- declare const Application: () => react_jsx_runtime.JSX.Element;
846
-
847
- type PartialChannel = Pick<Amity.Channel, 'channelId' | 'type'>;
848
- declare const ChatApplication: ({ membershipFilter, defaultChannelId, onMemberSelect, onChannelSelect, onAddNewChannel, onEditChatMember, }: {
849
- membershipFilter?: "all" | "member" | "notMember" | undefined;
850
- defaultChannelId: string | null;
851
- onMemberSelect?: ((member: Amity.Membership<'channel'>) => void) | undefined;
852
- onChannelSelect?: ((channel: PartialChannel) => void) | undefined;
853
- onAddNewChannel?: (() => void) | undefined;
854
- onEditChatMember?: (({ channel, members, }: {
855
- channel: Amity.Channel;
856
- members: Amity.Membership<'channel'>[];
857
- }) => void) | undefined;
858
- }) => react_jsx_runtime.JSX.Element;
842
+ declare const LiveChat: ({ channelId }: LiveChatProps) => react_jsx_runtime.JSX.Element | null;
859
843
 
860
- type PageRendererProps = {
861
- children: React.JSX.Element;
844
+ declare function Application(): react_jsx_runtime.JSX.Element;
845
+
846
+ declare function ChatHomePage(): react_jsx_runtime.JSX.Element;
847
+
848
+ declare function ChannelCreateConversationPage(): react_jsx_runtime.JSX.Element;
849
+
850
+ type SelectGroupMemberPageProps = {
851
+ selectedGroupMember?: Amity.User[];
862
852
  };
863
- declare const PageRenderer: ({ children }: PageRendererProps) => react_jsx_runtime.JSX.Element | null;
853
+ declare function SelectGroupMemberPage({ selectedGroupMember }: SelectGroupMemberPageProps): react_jsx_runtime.JSX.Element;
864
854
 
865
- declare const addChatMembers: (channelId: string, userIds: string[]) => Promise<boolean>;
855
+ type CreateGroupChatPageProps = {
856
+ selectedUsers: Amity.User[];
857
+ };
858
+ declare function CreateGroupChatPage({ selectedUsers }: CreateGroupChatPageProps): react_jsx_runtime.JSX.Element;
866
859
 
867
- declare const removeChatMembers: (channelId: string, userIds: string[]) => Promise<boolean>;
860
+ type ChatPageProps = {
861
+ channelId?: string;
862
+ userId?: string;
863
+ userDisplayName?: string;
864
+ avatarUrl?: string;
865
+ isJustCreated?: boolean;
866
+ jumpToMessageId?: string;
867
+ };
868
+ declare function ChatPage({ channelId, userId, userDisplayName, avatarUrl, isJustCreated, jumpToMessageId, }: ChatPageProps): react_jsx_runtime.JSX.Element;
868
869
 
869
- declare const useUser: (userId?: string | null) => Amity.User | null;
870
+ type GroupChatPageProps = {
871
+ channelId: string;
872
+ isJustCreated?: boolean;
873
+ jumpToMessageId?: string;
874
+ };
875
+ declare function GroupChatPage({ channelId, isJustCreated, jumpToMessageId }: GroupChatPageProps): react_jsx_runtime.JSX.Element;
870
876
 
871
- declare const enum PageTypes {
872
- Explore = "explore",
873
- Category = "category",
874
- NewsFeed = "newsfeed",
875
- UserFeed = "userfeed",
876
- CommunityFeed = "communityfeed",
877
- CommunityEdit = "communityedit",
878
- UserEdit = "useredit",
879
- ViewStory = "viewstory",
880
- DraftPage = "draftpage"
881
- }
877
+ type EditGroupProfilePageProps = {
878
+ channelId: string;
879
+ };
880
+ declare function EditGroupProfilePage({ channelId }: EditGroupProfilePageProps): react_jsx_runtime.JSX.Element;
882
881
 
883
- type AmityStoryMediaType$1 = {
884
- type: 'image';
885
- url: string;
886
- } | {
887
- type: 'video';
888
- url: string;
882
+ type EditGroupNotificationPageProps = {
883
+ channelId: string;
889
884
  };
890
- type AmityDraftStoryPageProps = {
891
- targetId: string;
892
- targetType: Amity.StoryTargetType;
893
- mediaType?: AmityStoryMediaType$1;
885
+ declare function EditGroupNotificationPage({ channelId }: EditGroupNotificationPageProps): react_jsx_runtime.JSX.Element;
886
+
887
+ type EditGroupMemberPermissionsPageProps = {
888
+ channelId: string;
894
889
  };
895
- declare const AmityDraftStoryPage: (props: AmityDraftStoryPageProps) => react_jsx_runtime.JSX.Element;
890
+ declare function EditGroupMemberPermissionsPage({ channelId }: EditGroupMemberPermissionsPageProps): react_jsx_runtime.JSX.Element;
896
891
 
897
- type Page = {
898
- type: PageTypes.Explore | PageTypes.NewsFeed;
899
- communityId?: string;
900
- } | {
901
- type: PageTypes.CommunityFeed;
902
- communityId: string;
903
- isNewCommunity: boolean;
904
- } | {
905
- type: PageTypes.CommunityEdit;
906
- communityId: string;
907
- tab: string;
908
- } | {
909
- type: PageTypes.Category;
910
- categoryId: string;
911
- communityId?: string;
912
- } | {
913
- type: PageTypes.UserFeed | PageTypes.UserEdit;
914
- userId: string;
915
- communityId?: string;
916
- } | {
917
- type: PageTypes.ViewStory;
918
- storyId: string;
919
- targetId: string;
920
- communityId?: string;
921
- targetIds: string[];
922
- storyType: 'communityFeed' | 'globalFeed';
923
- } | {
924
- type: PageTypes.DraftPage;
925
- communityId?: string;
926
- mediaType: AmityStoryMediaType$1;
927
- targetId: string;
928
- targetType: Amity.StoryTargetType;
929
- storyType: 'communityFeed' | 'globalFeed';
930
- };
931
- type ContextValue = {
932
- page: Page;
933
- onChangePage: (type: string) => void;
934
- onClickCategory: (categoryId: string) => void;
935
- onClickCommunity: (communityId: string) => void;
936
- onClickUser: (userId: string, pageType?: string) => void;
937
- onClickStory: (storyId: string, storyType: 'communityFeed' | 'globalFeed', targetId?: string[]) => void;
938
- onCommunityCreated: (communityId: string) => void;
939
- onEditCommunity: (communityId: string, tab?: string) => void;
940
- onEditUser: (userId: string) => void;
941
- onMessageUser: (userId: string) => void;
942
- onBack: () => void;
943
- goToDraftStoryPage: (targetId: string, targetType: string, mediaType: AmityStoryMediaType$1, storyType: 'communityFeed' | 'globalFeed') => void;
944
- setNavigationBlocker?: (params: {
945
- title: ReactNode;
946
- content: ReactNode;
947
- okText: ReactNode;
948
- onOk?: () => void;
949
- } | null | undefined) => void;
950
- };
951
- declare const useNavigation: () => ContextValue;
952
-
953
- declare const SIZE_ALIAS: {
954
- BIG: string;
955
- REGULAR: string;
956
- SMALL: string;
957
- TINY: string;
958
- };
959
-
960
- interface AvatarProps {
961
- className?: string;
962
- avatar?: string | null;
963
- showOverlay?: boolean;
964
- size?: ValueOf<typeof SIZE_ALIAS> | null;
965
- onClick?: () => void;
966
- loading?: boolean;
967
- backgroundImage?: string | null;
968
- }
969
- declare const _default$1: (props: AvatarProps) => react_jsx_runtime.JSX.Element;
892
+ type GroupNotificationPreferencePageProps = {
893
+ channelId: string;
894
+ };
895
+ declare function GroupNotificationPreferencePage({ channelId, }: GroupNotificationPreferencePageProps): react_jsx_runtime.JSX.Element;
970
896
 
971
- declare const PostContainer: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<{
972
- className?: string | undefined;
973
- children?: ReactNode;
974
- }, never>> & string & Omit<({ className, ...props }: {
975
- className?: string | undefined;
976
- children?: ReactNode;
977
- }) => react_jsx_runtime.JSX.Element, keyof React.Component<any, {}, any>>;
897
+ type GroupSettingPageProps = {
898
+ channelId: string;
899
+ };
900
+ declare function GroupSettingPage({ channelId }: GroupSettingPageProps): react_jsx_runtime.JSX.Element;
978
901
 
979
- type Mentioned = {
980
- userId: string;
981
- length: number;
982
- index: number;
983
- type: string;
984
- displayName: string;
902
+ type GroupMemberListPageProps = {
903
+ channelId: string;
985
904
  };
905
+ declare function GroupMemberListPage({ channelId }: GroupMemberListPageProps): react_jsx_runtime.JSX.Element;
986
906
 
987
- interface EngagementBarProps {
988
- postId: string;
989
- readonly?: boolean;
990
- }
907
+ type AddGroupMemberPageProps = {
908
+ channelId: string;
909
+ };
910
+ declare function AddGroupMemberPage({ channelId }: AddGroupMemberPageProps): react_jsx_runtime.JSX.Element;
991
911
 
992
- declare const _default: React.MemoExoticComponent<(props: EngagementBarProps) => react_jsx_runtime.JSX.Element>;
912
+ type BannedGroupMemberListPageProps = {
913
+ channelId: string;
914
+ };
915
+ declare function BannedGroupMemberListPage({ channelId }: BannedGroupMemberListPageProps): react_jsx_runtime.JSX.Element;
993
916
 
994
- interface CommentTextProps {
995
- text?: string;
996
- className?: string;
997
- mentionees?: Mentioned[];
998
- maxLines?: number;
999
- }
1000
- declare const CommentText: ({ text, className, mentionees, maxLines, }: CommentTextProps) => react_jsx_runtime.JSX.Element | null;
917
+ declare function ArchivedChatPage(): react_jsx_runtime.JSX.Element;
1001
918
 
1002
- declare const useSDK: () => {
1003
- client?: Amity.Client | null | undefined;
1004
- currentUserId?: string | null | undefined;
1005
- userRoles: string[];
919
+ type PageRendererProps = {
920
+ children: React.JSX.Element;
1006
921
  };
922
+ declare const PageRenderer: ({ children }: PageRendererProps) => react_jsx_runtime.JSX.Element | null;
1007
923
 
1008
924
  /**
1009
925
  * Interface representing the session handler for the Amity SDK.
@@ -1169,12 +1085,7 @@ interface ReactionListProps {
1169
1085
  referenceType: Amity.ReactableType;
1170
1086
  }
1171
1087
 
1172
- interface LiveChatProps {
1173
- channelId: Amity.Channel['channelId'];
1174
- }
1175
- declare const LiveChat: ({ channelId }: LiveChatProps) => react_jsx_runtime.JSX.Element | null;
1176
-
1177
- type AmityStoryMediaType = {
1088
+ type AmityStoryMediaType$1 = {
1178
1089
  type: 'image';
1179
1090
  url: string;
1180
1091
  } | {
@@ -1182,7 +1093,7 @@ type AmityStoryMediaType = {
1182
1093
  url: string;
1183
1094
  };
1184
1095
  type StoryPreviewProps = {
1185
- mediaType?: AmityStoryMediaType;
1096
+ mediaType?: AmityStoryMediaType$1;
1186
1097
  imageMode: 'fit' | 'fill';
1187
1098
  width?: number;
1188
1099
  height?: number;
@@ -1220,6 +1131,20 @@ type StoryPreviewThumbnailProps = {
1220
1131
  };
1221
1132
  declare const StoryPreviewThumbnail: React.FC<StoryPreviewThumbnailProps>;
1222
1133
 
1134
+ type AmityStoryMediaType = {
1135
+ type: 'image';
1136
+ url: string;
1137
+ } | {
1138
+ type: 'video';
1139
+ url: string;
1140
+ };
1141
+ type AmityDraftStoryPageProps = {
1142
+ targetId: string;
1143
+ targetType: Amity.StoryTargetType;
1144
+ mediaType?: AmityStoryMediaType;
1145
+ };
1146
+ declare const AmityDraftStoryPage: (props: AmityDraftStoryPageProps) => react_jsx_runtime.JSX.Element;
1147
+
1223
1148
  type ViewStoryPageType = 'communityFeed' | 'globalFeed';
1224
1149
  interface AmityViewStoryPageProps {
1225
1150
  type: ViewStoryPageType;
@@ -1230,6 +1155,7 @@ declare const ViewStoryPage: React.FC<AmityViewStoryPageProps>;
1230
1155
  declare function StoryTargetSelectionPage(): react_jsx_runtime.JSX.Element;
1231
1156
 
1232
1157
  declare enum HomePageTab {
1158
+ ForYou = "ForYou",
1233
1159
  Newsfeed = "Newsfeed",
1234
1160
  Explore = "Explore",
1235
1161
  MyCommunities = "My communities",
@@ -1241,6 +1167,12 @@ declare enum HomePageTab {
1241
1167
  declare function SocialHomePage({ activeTab: initialActiveTab }: {
1242
1168
  activeTab?: HomePageTab;
1243
1169
  }): react_jsx_runtime.JSX.Element;
1170
+ declare namespace SocialHomePage {
1171
+ var TabsSkeleton: () => react_jsx_runtime.JSX.Element;
1172
+ var FeedSkeleton: ({ pageId }: {
1173
+ pageId?: string | undefined;
1174
+ }) => react_jsx_runtime.JSX.Element;
1175
+ }
1244
1176
 
1245
1177
  declare function SelectPostTargetPage({ isClipPost }: {
1246
1178
  isClipPost?: boolean;
@@ -1455,18 +1387,6 @@ type MyCommunitiesProps = {
1455
1387
  };
1456
1388
  declare const MyCommunities: ({ pageId }: MyCommunitiesProps) => react_jsx_runtime.JSX.Element;
1457
1389
 
1458
- interface GlobalFeedProps {
1459
- pageId?: string;
1460
- componentId?: string;
1461
- items: Array<Amity.Post | Amity.Ad>;
1462
- globalFeaturedPosts?: Array<Amity.PinnedPost>;
1463
- isLoading: boolean;
1464
- isGlobalFeaturedPostsLoading?: boolean;
1465
- onFeedReachBottom: () => void;
1466
- onPostDeleted?: (post: Amity.Post) => void;
1467
- }
1468
- declare const GlobalFeed: ({ pageId, componentId, items, isLoading, globalFeaturedPosts, isGlobalFeaturedPostsLoading, onFeedReachBottom, onPostDeleted, }: GlobalFeedProps) => react_jsx_runtime.JSX.Element;
1469
-
1470
1390
  interface EmptyNewsfeedProps {
1471
1391
  pageId?: string;
1472
1392
  }
@@ -1589,6 +1509,48 @@ type JoinRequestContentProps = {
1589
1509
  };
1590
1510
  declare const JoinRequestContent: ({ pageId, joinRequests, isLoading, refresh, }: JoinRequestContentProps) => react_jsx_runtime.JSX.Element;
1591
1511
 
1512
+ type FeedProps = {
1513
+ pageId?: string;
1514
+ componentId?: string;
1515
+ posts: Array<Amity.Post>;
1516
+ newPosts?: Array<Amity.Post>;
1517
+ globalFeaturedPosts?: Array<Amity.PinnedPost>;
1518
+ isLoading: boolean;
1519
+ isLoadingFirstPage: boolean;
1520
+ hasMore: boolean;
1521
+ isGlobalFeaturedPostsLoading?: boolean;
1522
+ withAnalytics?: boolean;
1523
+ onFeedReachBottom: () => void;
1524
+ onPostDeleted?: (post: Amity.Post) => void;
1525
+ };
1526
+ declare function Feed({ pageId, componentId, posts, newPosts, globalFeaturedPosts, isLoading, isLoadingFirstPage, hasMore, withAnalytics, onFeedReachBottom, onPostDeleted, }: FeedProps): react_jsx_runtime.JSX.Element;
1527
+ declare namespace Feed {
1528
+ var Post: typeof FeedPost;
1529
+ }
1530
+ type FeedPostProps = {
1531
+ pageId: string;
1532
+ post: Amity.Post;
1533
+ renderIndex: number;
1534
+ withAnalytics: boolean;
1535
+ onPostDeleted?: (post: Amity.Post) => void;
1536
+ onClick: NonNullable<React.ComponentProps<typeof PostContent>['onClick']>;
1537
+ };
1538
+ declare function FeedPost({ pageId, post, renderIndex, withAnalytics, onPostDeleted, onClick, }: FeedPostProps): react_jsx_runtime.JSX.Element;
1539
+
1540
+ type ForYouFeedProps = {
1541
+ pageId: string;
1542
+ };
1543
+ declare function ForYouFeed({ pageId }: ForYouFeedProps): react_jsx_runtime.JSX.Element;
1544
+
1545
+ type FeedCaughtUpProps = {
1546
+ pageId?: string;
1547
+ componentId?: string;
1548
+ title?: string;
1549
+ ctaLabel?: string;
1550
+ onSwitchRequested: () => void;
1551
+ };
1552
+ declare function FeedCaughtUp({ pageId, componentId, title, ctaLabel, onSwitchRequested, }: FeedCaughtUpProps): react_jsx_runtime.JSX.Element | null;
1553
+
1592
1554
  type ExploreEventProps = {
1593
1555
  pageId?: string;
1594
1556
  };
@@ -1599,4 +1561,4 @@ type MyEventsProps = {
1599
1561
  };
1600
1562
  declare function MyEvents({ pageId }: MyEventsProps): react_jsx_runtime.JSX.Element | null;
1601
1563
 
1602
- 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, CommunityEventFeed as AmityCommunityEventFeedComponent, CommunityFeed as AmityCommunityFeedComponent, CommunityHeader as AmityCommunityHeaderComponent, CommunityImageFeed as AmityCommunityImageFeedComponent, CommunityInviteMemberPage as AmityCommunityInviteMemberPage, CommunityMediaFeed as AmityCommunityMediaFeedComponent, 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, CreateLivestreamPage as AmityCreateLivestreamPage, CreatePostMenu as AmityCreatePostMenuComponent, DetailedMediaAttachment as AmityDetailedMediaAttachmentComponent, DraftClipPage as AmityDraftClipPage, AmityDraftStoryPage, EditUserProfilePage as AmityEditUserProfilePage, EmptyNewsfeed as AmityEmptyNewsFeedComponent, EventAttendeesPage as AmityEventAttendeesPage, EventDetailPage as AmityEventDetailPage, EventInfo as AmityEventInfoComponent, EventSetupPage as AmityEventSetupPage, EventSetupMode as AmityEventSetupPageMode, EventTargetSelectionPage as AmityEventTargetSelectionPage, CommentText as AmityExpandableText, Explore as AmityExploreComponent, ExploreEvent as AmityExploreEventFeedComponent, 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, LiveStreamBannedPage as AmityLiveStreamBannedPage, LiveStreamPlayerPage as AmityLiveStreamPlayerPage, LivestreamChatMessageComposer as AmityLivestreamChatMessageComposerComponent, LivestreamTargetSelectionPage as AmityLivestreamTargetSelectionPage, LivestreamTerminatedPage as AmityLivestreamTerminatedPage, LivestreamUnsupportedPage as AmityLivestreamUnsupportedPage, ManageProductTagList as AmityManageProductTagListComponent, MediaAttachment as AmityMediaAttachmentComponent, type MessageActionType as AmityMessageActionType, MyCommunities as AmityMyCommunitiesComponent, MyCommunitiesSearchPage as AmityMyCommunitiesSearchPage, MyEvents as AmityMyEventFeedComponent, Newsfeed as AmityNewsFeedComponent, PageRenderer as AmityPageRenderer, PastEventsPage as AmityPastEventsPage, 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, ProductTagList as AmityProductTagListComponent, ProductTagSelection as AmityProductTagSelectionComponent, 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, UpcomingEventsPage as AmityUpcomingEventsPage, 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 };
1564
+ export { AddGroupMemberPage as AmityAddGroupMemberPage, AllCategoriesPage as AmityAllCategoriesPage, ArchivedChatPage as AmityArchivedChatPage, BannedGroupMemberListPage as AmityBannedGroupMemberListPage, BlockedUserPage as AmityBlockedUserPage, ChannelCreateConversationPage as AmityChannelCreateConversationPage, ChatHomePage as AmityChatHomePage, ChatPage as AmityChatPage, ClipFeedPage as AmityClipFeedPage, CommentTray as AmityCommentTrayComponent, CommunitiesByCategoryPage as AmityCommunitiesByCategoryPage, CommunityAddCategoryPage as AmityCommunityAddCategoryPage, CommunityAddMemberPage as AmityCommunityAddMemberPage, CommunityEventFeed as AmityCommunityEventFeedComponent, CommunityFeed as AmityCommunityFeedComponent, CommunityHeader as AmityCommunityHeaderComponent, CommunityImageFeed as AmityCommunityImageFeedComponent, CommunityInviteMemberPage as AmityCommunityInviteMemberPage, CommunityMediaFeed as AmityCommunityMediaFeedComponent, 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, CreateGroupChatPage as AmityCreateGroupChatPage, CreateLivestreamPage as AmityCreateLivestreamPage, CreatePostMenu as AmityCreatePostMenuComponent, DetailedMediaAttachment as AmityDetailedMediaAttachmentComponent, DraftClipPage as AmityDraftClipPage, AmityDraftStoryPage, EditGroupMemberPermissionsPage as AmityEditGroupMemberPermissionsPage, EditGroupNotificationPage as AmityEditGroupNotificationPage, EditGroupProfilePage as AmityEditGroupProfilePage, EditUserProfilePage as AmityEditUserProfilePage, EmptyNewsfeed as AmityEmptyNewsFeedComponent, EventAttendeesPage as AmityEventAttendeesPage, EventDetailPage as AmityEventDetailPage, EventInfo as AmityEventInfoComponent, EventSetupPage as AmityEventSetupPage, EventSetupMode as AmityEventSetupPageMode, EventTargetSelectionPage as AmityEventTargetSelectionPage, Explore as AmityExploreComponent, ExploreEvent as AmityExploreEventFeedComponent, FeedCaughtUp as AmityFeedCaughtUpComponent, ForYouFeed as AmityForYouFeedComponent, Feed as AmityGlobalFeedComponent, GroupChatPage as AmityGroupChatPage, GroupMemberListPage as AmityGroupMemberListPage, GroupNotificationPreferencePage as AmityGroupNotificationPreferencePage, GroupSettingPage as AmityGroupSettingPage, 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, LiveStreamBannedPage as AmityLiveStreamBannedPage, LiveStreamPlayerPage as AmityLiveStreamPlayerPage, LivestreamChatMessageComposer as AmityLivestreamChatMessageComposerComponent, LivestreamTargetSelectionPage as AmityLivestreamTargetSelectionPage, LivestreamTerminatedPage as AmityLivestreamTerminatedPage, LivestreamUnsupportedPage as AmityLivestreamUnsupportedPage, ManageProductTagList as AmityManageProductTagListComponent, MediaAttachment as AmityMediaAttachmentComponent, type MessageActionType as AmityMessageActionType, MyCommunities as AmityMyCommunitiesComponent, MyCommunitiesSearchPage as AmityMyCommunitiesSearchPage, MyEvents as AmityMyEventFeedComponent, Newsfeed as AmityNewsFeedComponent, PageRenderer as AmityPageRenderer, PastEventsPage as AmityPastEventsPage, PendingPostContent as AmityPendingPostContentComponent, PendingPostList as AmityPendingPostListComponent, PendingPostsPage as AmityPendingPostsPage, PendingRequestPage as AmityPendingRequestPage, PollPostComposerPage as AmityPollPostComposerPage, PollTargetSelectionPage as AmityPollTargetSelectionPage, PostComposerPage as AmityPostComposerPage, PostContent as AmityPostContentComponent, PostDetailPage as AmityPostDetailPage, SelectPostTargetPage as AmityPostTargetSelectionPage, ProductTagList as AmityProductTagListComponent, ProductTagSelection as AmityProductTagSelectionComponent, ReactionList as AmityReactionListComponent, type ReactionListProps as AmityReactionListProps, SelectGroupMemberPage as AmitySelectGroupMemberPage, 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, Application as AmityUiKitChatV4, AmityUIKitProvider as AmityUiKitProvider, Application$1 as AmityUiKitSocial, UpcomingEventsPage as AmityUpcomingEventsPage, 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 };