From a4705a3b559eaa491bbcbe1781ada838bbb67ad9 Mon Sep 17 00:00:00 2001 From: Lucas Correia Date: Thu, 8 Apr 2021 12:53:06 -0300 Subject: [PATCH 1/2] add missing preview components exports --- src/components/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/index.ts b/src/components/index.ts index 619adfb008..de70243493 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -59,6 +59,10 @@ export * from './ChannelList/Skeleton'; export * from './ChannelPreview/ChannelAvatar'; export * from './ChannelPreview/ChannelPreview'; export * from './ChannelPreview/ChannelPreviewMessenger'; +export * from './ChannelPreview/ChannelPreviewMessage'; +export * from './ChannelPreview/ChannelPreviewStatus'; +export * from './ChannelPreview/ChannelPreviewTitle'; +export * from './ChannelPreview/ChannelPreviewUnreadCount'; export * from './ChannelPreview/hooks/useChannelPreviewDisplayAvatar'; export * from './ChannelPreview/hooks/useChannelPreviewDisplayName'; export * from './ChannelPreview/hooks/useChannelPreviewDisplayPresence'; From df20b4001c6330c81dd72a4e6d7b9f82b00cd26d Mon Sep 17 00:00:00 2001 From: Lucas Correia Date: Thu, 8 Apr 2021 13:25:30 -0300 Subject: [PATCH 2/2] add other missing exports --- src/components/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/index.ts b/src/components/index.ts index de70243493..a99a4d3550 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -41,6 +41,7 @@ export * from './ChannelList/ChannelList'; export * from './ChannelList/ChannelListFooterLoadingIndicator'; export * from './ChannelList/ChannelListHeaderErrorIndicator'; export * from './ChannelList/ChannelListHeaderNetworkDownIndicator'; +export * from './ChannelList/ChannelListLoadingIndicator'; export * from './ChannelList/ChannelListMessenger'; export * from './ChannelList/hooks/listeners/useAddedToChannelNotification'; export * from './ChannelList/hooks/listeners/useChannelDeleted'; @@ -69,6 +70,7 @@ export * from './ChannelPreview/hooks/useChannelPreviewDisplayPresence'; export * from './ChannelPreview/hooks/useLatestMessagePreview'; export * from './Chat/Chat'; +export * from './Chat/hooks/useAppStateListener'; export * from './Chat/hooks/useCreateChatContext'; export * from './Chat/hooks/useIsOnline'; @@ -105,6 +107,7 @@ export * from './MessageInput/AttachButton'; export * from './MessageInput/CommandsButton'; export * from './MessageInput/FileUploadPreview'; export * from './MessageInput/ImageUploadPreview'; +export * from './MessageInput/InputButtons'; export * from './MessageInput/MessageInput'; export * from './MessageInput/MoreOptionsButton'; export * from './MessageInput/SendButton';