UNPKG

react-native-chating-ui-kit

Version:

CometChat React Native UI Kit is a collection of custom UI Components designed to build text , chat and calling features in your application. The UI Kit is developed to keep developers in mind and aims to reduce development efforts significantly

28 lines 3.09 kB
import { CometChatContext, CometChatContextProvider } from "./CometChatContext"; import { BaseStyle, BorderStyle, FontStyle, ShadowStyle } from './base'; import { ChatConfigurator, MessageDataSource, DataSourceDecorator } from './framework'; import { CometChatMessageTemplate, } from './modals'; import { CometChatLocalize, localize } from './resources/CometChatLocalize'; import { CometChatTheme, Palette, Typography } from './resources/CometChatTheme'; import { CometChatConversationEvents, CometChatGroupsEvents, CometChatUIEvents, MessageEvents, CometChatUIEventHandler } from "./events"; import { CometChatConversationUtils, getDefaultDetailsTemplate, CometChatLiveReactions, CometChatMessagePreview, MessagePreviewConfiguration, MessagePreviewStyle, CometChatSoundManager, } from './utils'; import { CometChatListItem, ListItemStyle, CometChatAvatar, CometChatBadge, CometChatStatusIndicator, CometChatReceipt, CometChatDate, AvatarConfiguration, BadgeConfiguration, BadgeStyle, DateConfiguration, ReceiptConfiguration, StatusIndicatorConfiguration, StatusIndicatorStyle, DateStyle, AvatarStyle, CometChatMessageInput, AudioBubbleStyle, CometChatAudioBubble, CometChatFileBubble, FileBubbleStyle, CometChatVideoBubble, VideoBubbleStyle, CometChatTextBubble, TextBubbleStyle, CometChatImageBubble, ImageBubbleStyle, // CometChatActionSheet, ActionSheetStyles, ActionItem, CometChatBottomSheet, CometChatConfirmDialog, CometChatList, ListItemConfiguration, FormatTextForLinks, } from './views'; import { CometChatUIKit, CometChatUIKitHelper, UIKitSettings, } from "./CometChatUiKit"; import * as CometChatUiKitConstants from './constants/UIKitConstants'; import { messageStatus } from './utils/CometChatMessageHelper/index'; export { CometChatContextProvider, CometChatUIEventHandler, CometChatUiKitConstants, messageStatus, CometChatConversationEvents, CometChatGroupsEvents, CometChatUIEvents, MessageEvents, CometChatTheme, Palette, Typography, FormatTextForLinks, DataSourceDecorator, CometChatUIKit, CometChatUIKitHelper, UIKitSettings, CometChatContext, ListItemConfiguration, BaseStyle, BorderStyle, FontStyle, ShadowStyle, // ChatConfigurator, MessageDataSource, CometChatMessageTemplate, // CometChatLocalize, localize, // CometChatConversationUtils, getDefaultDetailsTemplate, CometChatLiveReactions, // CometChatListItem, ListItemStyle, CometChatAvatar, CometChatBadge, CometChatStatusIndicator, CometChatReceipt, CometChatDate, AvatarConfiguration, BadgeConfiguration, BadgeStyle, DateConfiguration, ReceiptConfiguration, StatusIndicatorConfiguration, StatusIndicatorStyle, DateStyle, AvatarStyle, CometChatMessageInput, AudioBubbleStyle, CometChatAudioBubble, CometChatFileBubble, FileBubbleStyle, CometChatVideoBubble, VideoBubbleStyle, CometChatTextBubble, TextBubbleStyle, CometChatImageBubble, ImageBubbleStyle, // CometChatActionSheet, ActionSheetStyles, ActionItem, CometChatBottomSheet, CometChatConfirmDialog, CometChatMessagePreview, MessagePreviewConfiguration, MessagePreviewStyle, CometChatSoundManager, // CometChatList, }; //# sourceMappingURL=index.js.map