@amityco/ui-kit-open-source 4.15.0-beta.1 → 4.15.0-beta.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/dist/index.d.mts CHANGED
@@ -2,7 +2,7 @@ import React, { FC, ReactNode } from 'react';
2
2
  import * as react_jsx_runtime from 'react/jsx-runtime';
3
3
  import * as styled_components_dist_types from 'styled-components/dist/types';
4
4
  import * as styled_components from 'styled-components';
5
- import { FeedSourceEnum } from '@amityco/ts-sdk';
5
+ import { AnalyticsSourceTypeEnum, FeedSourceEnum } from '@amityco/ts-sdk';
6
6
 
7
7
  type AmityReactionType = {
8
8
  name: string;
@@ -96,6 +96,7 @@ interface PostDetailPageProps {
96
96
  hideTarget?: boolean;
97
97
  category?: AmityPostCategory;
98
98
  commentId?: string;
99
+ rootId?: string;
99
100
  parentId?: string;
100
101
  posts?: Amity.Post<'clip' | 'video'>[];
101
102
  selectedReplyComment?: Amity.Comment;
@@ -107,7 +108,7 @@ interface PostDetailPageProps {
107
108
  interface GoToPostDetailPageParams extends Omit<PostDetailPageProps, 'id'> {
108
109
  postId: string;
109
110
  }
110
- declare function PostDetailPage({ id, hideTarget, category, commentId, parentId, posts, selectedReplyComment, showReplyCommentAt, keyword, isFromCommentClick, eventCreatorId, }: PostDetailPageProps): react_jsx_runtime.JSX.Element | null;
111
+ declare function PostDetailPage({ id, hideTarget, category, commentId, rootId, parentId, posts, selectedReplyComment, showReplyCommentAt, keyword, isFromCommentClick, eventCreatorId, }: PostDetailPageProps): react_jsx_runtime.JSX.Element | null;
111
112
 
112
113
  declare enum AmityPostContentComponentStyle {
113
114
  FEED = "feed",
@@ -224,6 +225,80 @@ declare function LivestreamTerminatedPage(): react_jsx_runtime.JSX.Element;
224
225
 
225
226
  declare function LivestreamUnsupportedPage(): react_jsx_runtime.JSX.Element;
226
227
 
228
+ declare const enum DisplayModeEnum {
229
+ DESKTOP = "desktop",
230
+ MOBILE = "mobile"
231
+ }
232
+ type DisplayMode = `${DisplayModeEnum}`;
233
+ declare const enum ProductTagListRenderModeEnum {
234
+ POST = "post",
235
+ LIVESTREAM = "livestream",
236
+ IMAGE = "image",
237
+ VIDEO = "video"
238
+ }
239
+ type ProductTagListRenderMode = `${ProductTagListRenderModeEnum}`;
240
+ declare const enum LayoutVariantEnum {
241
+ LIST = "list",
242
+ CARD = "card"
243
+ }
244
+ type LayoutVariant = `${LayoutVariantEnum}`;
245
+
246
+ type RenderModeEnum = 'livestream' | 'playback';
247
+
248
+ type ProductTagSelectionMode = 'create' | 'edit' | 'livestream';
249
+ interface ProductTagSelectionProps {
250
+ selectedProductTags?: Amity.ProductTag[];
251
+ onTagChanges: (tags: Amity.ProductTag[]) => void;
252
+ onUpdateProductTags?: (tags: Amity.ProductTag[]) => Promise<Amity.ProductTag[] | undefined> | void;
253
+ displayMode?: DisplayMode;
254
+ mode?: ProductTagSelectionMode;
255
+ onDone?: () => void;
256
+ onClose?: (selectedProducts?: Amity.ProductTag[], hasChanges?: boolean) => void;
257
+ pageId?: string;
258
+ maxCount?: number;
259
+ isFromManageTagList?: boolean;
260
+ pinnedProductId?: string;
261
+ onPinnedProductIdChange?: (pinnedProductId: string | undefined) => void;
262
+ renderMode?: RenderModeEnum;
263
+ isShowSearch?: boolean;
264
+ isHost?: boolean;
265
+ onRemoveProduct?: (productTag: Amity.ProductTag) => void;
266
+ remainingLimit?: number;
267
+ taggedProductIds?: string[];
268
+ }
269
+ declare function ProductTagSelection({ selectedProductTags, onTagChanges, onUpdateProductTags, displayMode, mode, onDone, onClose, pageId, maxCount, isFromManageTagList, pinnedProductId, onPinnedProductIdChange, renderMode, isShowSearch, isHost, onRemoveProduct, remainingLimit, taggedProductIds, }: ProductTagSelectionProps): react_jsx_runtime.JSX.Element | null;
270
+
271
+ interface ManageProductTagListProps {
272
+ productTags?: Amity.MediaProductTag[];
273
+ onProductTagsChange?: (tags: Amity.ProductTag[]) => void;
274
+ onUpdateProductTags?: (tags: Amity.ProductTag[]) => Promise<Amity.ProductTag[] | undefined> | void;
275
+ onRemove?: (productTag: Amity.ProductTag) => void;
276
+ pageId?: string;
277
+ onClose: (tags: Amity.ProductTag[], pinnedProductId: string) => void;
278
+ maxCount?: number;
279
+ pinnedProductId?: string;
280
+ onPinnedProductIdChange?: (pinnedProductId: string | undefined) => void;
281
+ isPinning?: boolean;
282
+ isUnpinning?: boolean;
283
+ renderMode?: RenderModeEnum;
284
+ isHost?: boolean;
285
+ sourceType?: AnalyticsSourceTypeEnum;
286
+ sourceId: string;
287
+ }
288
+ declare function ManageProductTagList({ productTags: initialProductTags, onProductTagsChange, onUpdateProductTags, onRemove, pageId, onClose, maxCount, pinnedProductId, onPinnedProductIdChange, isPinning, isUnpinning, renderMode, isHost, sourceType, sourceId, }: ManageProductTagListProps): react_jsx_runtime.JSX.Element;
289
+
290
+ interface ProductTagListProps {
291
+ pageId?: string;
292
+ productTags: Amity.ProductTag[];
293
+ displayMode?: DisplayMode;
294
+ onClose?: () => void;
295
+ renderMode?: ProductTagListRenderMode;
296
+ layout?: LayoutVariant;
297
+ pinnedProductId?: string;
298
+ sourceId?: string;
299
+ }
300
+ declare function ProductTagList({ productTags, displayMode, pageId, onClose, renderMode, layout, pinnedProductId, sourceId, }: ProductTagListProps): react_jsx_runtime.JSX.Element | null;
301
+
227
302
  type MemberCommunitySetup = {
228
303
  userId: string;
229
304
  displayName: string;
@@ -276,6 +351,8 @@ type UserRelationshipPageProps = {
276
351
  };
277
352
  declare const UserRelationshipPage: FC<UserRelationshipPageProps>;
278
353
 
354
+ type NotificationAlignment = 'fullscreen' | 'withSidebar' | 'fixed' | 'live-chat' | 'livestreamWithChat';
355
+
279
356
  interface PageBehavior {
280
357
  AmityStoryViewPageBehavior?: {
281
358
  onCloseAction?(): void;
@@ -567,6 +644,7 @@ interface PageBehavior {
567
644
  }): void;
568
645
  goToEventDetailPage?(context: EventDetailProps): void;
569
646
  goToLivestreamPlayerPage?(context: LiveStreamPlayerPageProps): void;
647
+ goToEditProfilePage?(): void;
570
648
  };
571
649
  AmityDraftClipPageBehavior?: {
572
650
  goToPostComposerPage?(context: {
@@ -590,40 +668,52 @@ interface PageBehavior {
590
668
  }): void;
591
669
  };
592
670
  AmityGlobalBehavior?: {
593
- handleVisitorUserAction?(): void;
594
- handleNonMemberAction?(): void;
595
- handleNonFollowerAction?(): void;
671
+ handleVisitorUserAction?(context: {
672
+ alignment: NotificationAlignment;
673
+ }): void;
674
+ handleNonMemberAction?(context: {
675
+ alignment: NotificationAlignment;
676
+ }): void;
677
+ handleNonFollowerAction?(context: {
678
+ alignment: NotificationAlignment;
679
+ }): void;
680
+ onPostProductTagClick?(context: {
681
+ product: Amity.Product;
682
+ }): void;
683
+ onLivestreamProductTagClick?(context: {
684
+ product: Amity.Product;
685
+ }): void;
596
686
  };
597
- AmityEventTargetSelectionPageBehavior: {
687
+ AmityEventTargetSelectionPageBehavior?: {
598
688
  goToEventSetupPage?(context: EventSetupProps): void;
599
689
  };
600
- AmityMyCommunitiesComponentBehavior: {
690
+ AmityMyCommunitiesComponentBehavior?: {
601
691
  goToCommunitySetupPage?(context: {
602
692
  mode: AmityCommunitySetupPageMode;
603
693
  }): void;
604
694
  };
605
- AmityExploreEventFeedComponentBehavior: {
695
+ AmityExploreEventFeedComponentBehavior?: {
606
696
  goToUpcomingEventsPage?(context: UpcomingEventsPageProps): void;
607
697
  };
608
- AmityMyEventFeedComponentBehavior: {
698
+ AmityMyEventFeedComponentBehavior?: {
609
699
  goToUpcomingEventsPage?(context: UpcomingEventsPageProps): void;
610
700
  goToPastEventsPage?(): void;
611
701
  };
612
- AmityEventDetailPageBehavior: {
613
- goToCommunityProfilePage(context: {
702
+ AmityEventDetailPageBehavior?: {
703
+ goToCommunityProfilePage?(context: {
614
704
  communityId: string;
615
705
  }): void;
616
- goToPostDetailPage(context: GoToPostDetailPageParams): void;
617
- goToEventSetupPage(context: EventSetupProps): void;
706
+ goToPostDetailPage?(context: GoToPostDetailPageParams): void;
707
+ goToEventSetupPage?(context: EventSetupProps): void;
618
708
  goToCreateLivestreamPage?(context: CreateLivestreamPageProps): void;
619
- goToPostComposerPage(context: {
709
+ goToPostComposerPage?(context: {
620
710
  mode: Mode.CREATE;
621
711
  targetName?: string;
622
712
  targetId: string | null;
623
713
  targetType: 'community' | 'user';
624
714
  community?: Amity.Community;
625
715
  }): void;
626
- goToPollPostComposerPage(context: {
716
+ goToPollPostComposerPage?(context: {
627
717
  targetId: string | null;
628
718
  targetType: 'community' | 'user';
629
719
  pollType?: 'text' | 'image';
@@ -635,10 +725,10 @@ interface PageBehavior {
635
725
  userId: string;
636
726
  }): void;
637
727
  };
638
- AmityEventSetupPageBehavior: {
639
- goToEventDetailPage: (context: EventDetailProps) => void;
728
+ AmityEventSetupPageBehavior?: {
729
+ goToEventDetailPage?(context: EventDetailProps): void;
640
730
  };
641
- AmityEventAttendeesPageBehavior: {
731
+ AmityEventAttendeesPageBehavior?: {
642
732
  goToUserProfilePage?(context: {
643
733
  userId: string;
644
734
  }): void;
@@ -695,6 +785,7 @@ interface AmityUIKitProviderProps {
695
785
  onRouteChange?: (route: AmityRoute) => void;
696
786
  seoOptimizationEnabled?: boolean;
697
787
  syncNetworkConfig?: boolean;
788
+ onEmptyNavigationStack?: () => void;
698
789
  }
699
790
  declare const AmityUIKitProvider: React.FC<AmityUIKitProviderProps>;
700
791
 
@@ -1243,8 +1334,9 @@ type CommentTrayProps = {
1243
1334
  shouldAllowCreation?: boolean;
1244
1335
  shouldAllowInteraction?: boolean;
1245
1336
  referenceType: Amity.CommentReferenceType;
1337
+ commentCount?: number;
1246
1338
  };
1247
- declare const CommentTray: ({ referenceId, pageId, referenceType, shouldAllowCreation, shouldAllowInteraction, community, }: CommentTrayProps) => react_jsx_runtime.JSX.Element;
1339
+ declare const CommentTray: ({ referenceId, pageId, referenceType, shouldAllowCreation, shouldAllowInteraction, community, commentCount, }: CommentTrayProps) => react_jsx_runtime.JSX.Element;
1248
1340
 
1249
1341
  type StoryTabProps = ({
1250
1342
  type: 'communityFeed';
@@ -1263,14 +1355,16 @@ declare function CreatePostMenu({ pageId }: CreatePostMenuProps): react_jsx_runt
1263
1355
 
1264
1356
  interface MediaAttachmentProps {
1265
1357
  pageId: string;
1358
+ sourceId?: string;
1266
1359
  isVisibleCamera: boolean;
1267
1360
  isVisibleImage: boolean;
1268
1361
  isVisibleVideo: boolean;
1269
1362
  totalMedia?: number;
1363
+ productTags?: Amity.ProductTag[];
1270
1364
  onVideoFileChange?: (files: File[], fileType?: string) => void;
1271
1365
  onImageFileChange?: (files: File[], fileType?: string) => void;
1272
1366
  }
1273
- declare function MediaAttachment({ pageId, isVisibleCamera, isVisibleImage, isVisibleVideo, totalMedia, onVideoFileChange, onImageFileChange, }: MediaAttachmentProps): react_jsx_runtime.JSX.Element | null;
1367
+ declare function MediaAttachment({ pageId, sourceId, isVisibleCamera, isVisibleImage, isVisibleVideo, totalMedia, productTags, onVideoFileChange, onImageFileChange, }: MediaAttachmentProps): react_jsx_runtime.JSX.Element | null;
1274
1368
 
1275
1369
  interface DetailedMediaAttachmentProps {
1276
1370
  pageId: string;
@@ -1462,4 +1556,4 @@ type MyEventsProps = {
1462
1556
  };
1463
1557
  declare function MyEvents({ pageId }: MyEventsProps): react_jsx_runtime.JSX.Element | null;
1464
1558
 
1465
- 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, 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, 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 };
1559
+ 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 };
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import React, { FC, ReactNode } from 'react';
2
2
  import * as react_jsx_runtime from 'react/jsx-runtime';
3
3
  import * as styled_components_dist_types from 'styled-components/dist/types';
4
4
  import * as styled_components from 'styled-components';
5
- import { FeedSourceEnum } from '@amityco/ts-sdk';
5
+ import { AnalyticsSourceTypeEnum, FeedSourceEnum } from '@amityco/ts-sdk';
6
6
 
7
7
  type AmityReactionType = {
8
8
  name: string;
@@ -96,6 +96,7 @@ interface PostDetailPageProps {
96
96
  hideTarget?: boolean;
97
97
  category?: AmityPostCategory;
98
98
  commentId?: string;
99
+ rootId?: string;
99
100
  parentId?: string;
100
101
  posts?: Amity.Post<'clip' | 'video'>[];
101
102
  selectedReplyComment?: Amity.Comment;
@@ -107,7 +108,7 @@ interface PostDetailPageProps {
107
108
  interface GoToPostDetailPageParams extends Omit<PostDetailPageProps, 'id'> {
108
109
  postId: string;
109
110
  }
110
- declare function PostDetailPage({ id, hideTarget, category, commentId, parentId, posts, selectedReplyComment, showReplyCommentAt, keyword, isFromCommentClick, eventCreatorId, }: PostDetailPageProps): react_jsx_runtime.JSX.Element | null;
111
+ declare function PostDetailPage({ id, hideTarget, category, commentId, rootId, parentId, posts, selectedReplyComment, showReplyCommentAt, keyword, isFromCommentClick, eventCreatorId, }: PostDetailPageProps): react_jsx_runtime.JSX.Element | null;
111
112
 
112
113
  declare enum AmityPostContentComponentStyle {
113
114
  FEED = "feed",
@@ -224,6 +225,80 @@ declare function LivestreamTerminatedPage(): react_jsx_runtime.JSX.Element;
224
225
 
225
226
  declare function LivestreamUnsupportedPage(): react_jsx_runtime.JSX.Element;
226
227
 
228
+ declare const enum DisplayModeEnum {
229
+ DESKTOP = "desktop",
230
+ MOBILE = "mobile"
231
+ }
232
+ type DisplayMode = `${DisplayModeEnum}`;
233
+ declare const enum ProductTagListRenderModeEnum {
234
+ POST = "post",
235
+ LIVESTREAM = "livestream",
236
+ IMAGE = "image",
237
+ VIDEO = "video"
238
+ }
239
+ type ProductTagListRenderMode = `${ProductTagListRenderModeEnum}`;
240
+ declare const enum LayoutVariantEnum {
241
+ LIST = "list",
242
+ CARD = "card"
243
+ }
244
+ type LayoutVariant = `${LayoutVariantEnum}`;
245
+
246
+ type RenderModeEnum = 'livestream' | 'playback';
247
+
248
+ type ProductTagSelectionMode = 'create' | 'edit' | 'livestream';
249
+ interface ProductTagSelectionProps {
250
+ selectedProductTags?: Amity.ProductTag[];
251
+ onTagChanges: (tags: Amity.ProductTag[]) => void;
252
+ onUpdateProductTags?: (tags: Amity.ProductTag[]) => Promise<Amity.ProductTag[] | undefined> | void;
253
+ displayMode?: DisplayMode;
254
+ mode?: ProductTagSelectionMode;
255
+ onDone?: () => void;
256
+ onClose?: (selectedProducts?: Amity.ProductTag[], hasChanges?: boolean) => void;
257
+ pageId?: string;
258
+ maxCount?: number;
259
+ isFromManageTagList?: boolean;
260
+ pinnedProductId?: string;
261
+ onPinnedProductIdChange?: (pinnedProductId: string | undefined) => void;
262
+ renderMode?: RenderModeEnum;
263
+ isShowSearch?: boolean;
264
+ isHost?: boolean;
265
+ onRemoveProduct?: (productTag: Amity.ProductTag) => void;
266
+ remainingLimit?: number;
267
+ taggedProductIds?: string[];
268
+ }
269
+ declare function ProductTagSelection({ selectedProductTags, onTagChanges, onUpdateProductTags, displayMode, mode, onDone, onClose, pageId, maxCount, isFromManageTagList, pinnedProductId, onPinnedProductIdChange, renderMode, isShowSearch, isHost, onRemoveProduct, remainingLimit, taggedProductIds, }: ProductTagSelectionProps): react_jsx_runtime.JSX.Element | null;
270
+
271
+ interface ManageProductTagListProps {
272
+ productTags?: Amity.MediaProductTag[];
273
+ onProductTagsChange?: (tags: Amity.ProductTag[]) => void;
274
+ onUpdateProductTags?: (tags: Amity.ProductTag[]) => Promise<Amity.ProductTag[] | undefined> | void;
275
+ onRemove?: (productTag: Amity.ProductTag) => void;
276
+ pageId?: string;
277
+ onClose: (tags: Amity.ProductTag[], pinnedProductId: string) => void;
278
+ maxCount?: number;
279
+ pinnedProductId?: string;
280
+ onPinnedProductIdChange?: (pinnedProductId: string | undefined) => void;
281
+ isPinning?: boolean;
282
+ isUnpinning?: boolean;
283
+ renderMode?: RenderModeEnum;
284
+ isHost?: boolean;
285
+ sourceType?: AnalyticsSourceTypeEnum;
286
+ sourceId: string;
287
+ }
288
+ declare function ManageProductTagList({ productTags: initialProductTags, onProductTagsChange, onUpdateProductTags, onRemove, pageId, onClose, maxCount, pinnedProductId, onPinnedProductIdChange, isPinning, isUnpinning, renderMode, isHost, sourceType, sourceId, }: ManageProductTagListProps): react_jsx_runtime.JSX.Element;
289
+
290
+ interface ProductTagListProps {
291
+ pageId?: string;
292
+ productTags: Amity.ProductTag[];
293
+ displayMode?: DisplayMode;
294
+ onClose?: () => void;
295
+ renderMode?: ProductTagListRenderMode;
296
+ layout?: LayoutVariant;
297
+ pinnedProductId?: string;
298
+ sourceId?: string;
299
+ }
300
+ declare function ProductTagList({ productTags, displayMode, pageId, onClose, renderMode, layout, pinnedProductId, sourceId, }: ProductTagListProps): react_jsx_runtime.JSX.Element | null;
301
+
227
302
  type MemberCommunitySetup = {
228
303
  userId: string;
229
304
  displayName: string;
@@ -276,6 +351,8 @@ type UserRelationshipPageProps = {
276
351
  };
277
352
  declare const UserRelationshipPage: FC<UserRelationshipPageProps>;
278
353
 
354
+ type NotificationAlignment = 'fullscreen' | 'withSidebar' | 'fixed' | 'live-chat' | 'livestreamWithChat';
355
+
279
356
  interface PageBehavior {
280
357
  AmityStoryViewPageBehavior?: {
281
358
  onCloseAction?(): void;
@@ -567,6 +644,7 @@ interface PageBehavior {
567
644
  }): void;
568
645
  goToEventDetailPage?(context: EventDetailProps): void;
569
646
  goToLivestreamPlayerPage?(context: LiveStreamPlayerPageProps): void;
647
+ goToEditProfilePage?(): void;
570
648
  };
571
649
  AmityDraftClipPageBehavior?: {
572
650
  goToPostComposerPage?(context: {
@@ -590,40 +668,52 @@ interface PageBehavior {
590
668
  }): void;
591
669
  };
592
670
  AmityGlobalBehavior?: {
593
- handleVisitorUserAction?(): void;
594
- handleNonMemberAction?(): void;
595
- handleNonFollowerAction?(): void;
671
+ handleVisitorUserAction?(context: {
672
+ alignment: NotificationAlignment;
673
+ }): void;
674
+ handleNonMemberAction?(context: {
675
+ alignment: NotificationAlignment;
676
+ }): void;
677
+ handleNonFollowerAction?(context: {
678
+ alignment: NotificationAlignment;
679
+ }): void;
680
+ onPostProductTagClick?(context: {
681
+ product: Amity.Product;
682
+ }): void;
683
+ onLivestreamProductTagClick?(context: {
684
+ product: Amity.Product;
685
+ }): void;
596
686
  };
597
- AmityEventTargetSelectionPageBehavior: {
687
+ AmityEventTargetSelectionPageBehavior?: {
598
688
  goToEventSetupPage?(context: EventSetupProps): void;
599
689
  };
600
- AmityMyCommunitiesComponentBehavior: {
690
+ AmityMyCommunitiesComponentBehavior?: {
601
691
  goToCommunitySetupPage?(context: {
602
692
  mode: AmityCommunitySetupPageMode;
603
693
  }): void;
604
694
  };
605
- AmityExploreEventFeedComponentBehavior: {
695
+ AmityExploreEventFeedComponentBehavior?: {
606
696
  goToUpcomingEventsPage?(context: UpcomingEventsPageProps): void;
607
697
  };
608
- AmityMyEventFeedComponentBehavior: {
698
+ AmityMyEventFeedComponentBehavior?: {
609
699
  goToUpcomingEventsPage?(context: UpcomingEventsPageProps): void;
610
700
  goToPastEventsPage?(): void;
611
701
  };
612
- AmityEventDetailPageBehavior: {
613
- goToCommunityProfilePage(context: {
702
+ AmityEventDetailPageBehavior?: {
703
+ goToCommunityProfilePage?(context: {
614
704
  communityId: string;
615
705
  }): void;
616
- goToPostDetailPage(context: GoToPostDetailPageParams): void;
617
- goToEventSetupPage(context: EventSetupProps): void;
706
+ goToPostDetailPage?(context: GoToPostDetailPageParams): void;
707
+ goToEventSetupPage?(context: EventSetupProps): void;
618
708
  goToCreateLivestreamPage?(context: CreateLivestreamPageProps): void;
619
- goToPostComposerPage(context: {
709
+ goToPostComposerPage?(context: {
620
710
  mode: Mode.CREATE;
621
711
  targetName?: string;
622
712
  targetId: string | null;
623
713
  targetType: 'community' | 'user';
624
714
  community?: Amity.Community;
625
715
  }): void;
626
- goToPollPostComposerPage(context: {
716
+ goToPollPostComposerPage?(context: {
627
717
  targetId: string | null;
628
718
  targetType: 'community' | 'user';
629
719
  pollType?: 'text' | 'image';
@@ -635,10 +725,10 @@ interface PageBehavior {
635
725
  userId: string;
636
726
  }): void;
637
727
  };
638
- AmityEventSetupPageBehavior: {
639
- goToEventDetailPage: (context: EventDetailProps) => void;
728
+ AmityEventSetupPageBehavior?: {
729
+ goToEventDetailPage?(context: EventDetailProps): void;
640
730
  };
641
- AmityEventAttendeesPageBehavior: {
731
+ AmityEventAttendeesPageBehavior?: {
642
732
  goToUserProfilePage?(context: {
643
733
  userId: string;
644
734
  }): void;
@@ -695,6 +785,7 @@ interface AmityUIKitProviderProps {
695
785
  onRouteChange?: (route: AmityRoute) => void;
696
786
  seoOptimizationEnabled?: boolean;
697
787
  syncNetworkConfig?: boolean;
788
+ onEmptyNavigationStack?: () => void;
698
789
  }
699
790
  declare const AmityUIKitProvider: React.FC<AmityUIKitProviderProps>;
700
791
 
@@ -1243,8 +1334,9 @@ type CommentTrayProps = {
1243
1334
  shouldAllowCreation?: boolean;
1244
1335
  shouldAllowInteraction?: boolean;
1245
1336
  referenceType: Amity.CommentReferenceType;
1337
+ commentCount?: number;
1246
1338
  };
1247
- declare const CommentTray: ({ referenceId, pageId, referenceType, shouldAllowCreation, shouldAllowInteraction, community, }: CommentTrayProps) => react_jsx_runtime.JSX.Element;
1339
+ declare const CommentTray: ({ referenceId, pageId, referenceType, shouldAllowCreation, shouldAllowInteraction, community, commentCount, }: CommentTrayProps) => react_jsx_runtime.JSX.Element;
1248
1340
 
1249
1341
  type StoryTabProps = ({
1250
1342
  type: 'communityFeed';
@@ -1263,14 +1355,16 @@ declare function CreatePostMenu({ pageId }: CreatePostMenuProps): react_jsx_runt
1263
1355
 
1264
1356
  interface MediaAttachmentProps {
1265
1357
  pageId: string;
1358
+ sourceId?: string;
1266
1359
  isVisibleCamera: boolean;
1267
1360
  isVisibleImage: boolean;
1268
1361
  isVisibleVideo: boolean;
1269
1362
  totalMedia?: number;
1363
+ productTags?: Amity.ProductTag[];
1270
1364
  onVideoFileChange?: (files: File[], fileType?: string) => void;
1271
1365
  onImageFileChange?: (files: File[], fileType?: string) => void;
1272
1366
  }
1273
- declare function MediaAttachment({ pageId, isVisibleCamera, isVisibleImage, isVisibleVideo, totalMedia, onVideoFileChange, onImageFileChange, }: MediaAttachmentProps): react_jsx_runtime.JSX.Element | null;
1367
+ declare function MediaAttachment({ pageId, sourceId, isVisibleCamera, isVisibleImage, isVisibleVideo, totalMedia, productTags, onVideoFileChange, onImageFileChange, }: MediaAttachmentProps): react_jsx_runtime.JSX.Element | null;
1274
1368
 
1275
1369
  interface DetailedMediaAttachmentProps {
1276
1370
  pageId: string;
@@ -1462,4 +1556,4 @@ type MyEventsProps = {
1462
1556
  };
1463
1557
  declare function MyEvents({ pageId }: MyEventsProps): react_jsx_runtime.JSX.Element | null;
1464
1558
 
1465
- 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, 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, 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 };
1559
+ 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 };