stream-chat-react-native-core 5.17.1 → 5.18.0-beta.1

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.
@@ -1 +1 @@
1
- {"version":3,"names":["_utils","require","DEFAULT_STATUS_ICON_SIZE","exports","Colors","accent_blue","accent_green","accent_red","bg_gradient_end","bg_gradient_start","black","blue_alice","border","grey","grey_dark","grey_gainsboro","grey_whisper","icon_background","label_bg_transparent","light_gray","modal_shadow","overlay","shadow_icon","static_black","static_white","targetedMessageBackground","transparent","white","white_smoke","white_snow","defaultTheme","attachmentPicker","bottomSheetContentContainer","durationText","errorButtonText","errorContainer","errorText","image","imageOverlay","imageOverlaySelectedComponent","check","attachmentSelectionBar","container","icon","avatar","BASE_AVATAR_SIZE","borderRadius","height","width","presenceIndicator","cx","cy","r","strokeWidth","presenceIndicatorContainer","channel","selectChannel","channelListFooterLoadingIndicator","channelListHeaderErrorIndicator","channelListLoadingIndicator","channelListMessenger","flatList","flatListContent","channelListSkeleton","animationTime","background","gradientStart","stopOpacity","gradientStop","channelPreview","checkAllIcon","checkIcon","contentContainer","date","message","fontWeight","mutedStatus","iconStyle","row","title","unreadContainer","unreadText","colors","_extends2","dateHeader","text","emptyStateIndicator","channelContainer","channelDetails","channelTitle","groupAvatar","resizeMode","iconBadge","iconInner","unreadCount","iconSquare","imageGallery","footer","centerContainer","imageCountText","innerContainer","leftContainer","rightContainer","grid","gridAvatar","gridAvatarWrapper","gridImage","handle","handleText","header","dateText","usernameText","videoControl","durationTextStyle","roundedView","videoContainer","inlineDateSeparator","loadingDots","loadingDot","spacing","loadingErrorIndicator","retryText","loadingIndicator","loadingText","messageInput","attachButton","attachButtonContainer","autoCompleteInputContainer","commandsButton","commandsButtonContainer","composerContainer","cooldownTimer","editingBoxContainer","editingBoxHeader","editingBoxHeaderTitle","editingStateHeader","fileUploadPreview","audioAttachment","progressControlView","progressDurationText","audioAttachmentFileContainer","dismiss","fileContainer","fileContentContainer","filenameText","fileSizeText","fileTextContainer","giphyCommandInput","giphyContainer","giphyText","imageUploadPreview","dismissIconColor","itemContainer","upload","inputBox","inputBoxContainer","moreOptionsButton","optionsContainer","replyContainer","sendButton","sendButtonContainer","sendMessageDisallowedIndicator","showThreadMessageInChannelButton","checkBoxActive","checkBoxInactive","suggestions","command","args","iconContainer","maxHeight","vh","emoji","item","mention","avatarSize","column","name","tag","suggestionsListContainer","flatlist","uploadProgressIndicator","messageList","errorNotification","errorNotificationText","inlineUnreadIndicator","listContainer","messageSystem","line","textContainer","scrollToBottomButton","touchable","unreadCountNotificationContainer","unreadCountNotificationText","wrapper","typingIndicatorContainer","messageSimple","actions","button","buttonText","avatarWrapper","leftAlign","marginRight","rightAlign","marginLeft","spacer","card","authorName","authorNameContainer","authorNameFooter","authorNameFooterContainer","authorNameMask","cover","description","noURI","borderLeftWidth","paddingLeft","playButtonStyle","playIcon","content","borderRadiusL","borderRadiusS","containerInner","deletedContainer","deletedContainerInner","deletedMetaText","paddingHorizontal","deletedText","em","fontSize","fontStyle","paddingRight","paddingTop","errorIcon","errorIconContainer","bottom","position","right","eyeIcon","markdown","messageUser","metaContainer","flexDirection","marginTop","metaText","replyBorder","onlyEmojiMarkdown","file","details","fileSize","fileAttachmentGroup","gallery","galleryContainer","galleryItemColumn","gridHeight","gridWidth","imageContainer","maxWidth","minHeight","minWidth","moreImagesContainer","moreImagesText","thumbnail","giphy","buttonContainer","cancel","giphyHeaderText","giphyHeaderTitle","giphyMask","giphyMaskText","selectionContainer","send","shuffle","pinnedHeader","label","reactionList","middleIcon","radius","reactionBubble","reactionBubbleBackground","reactionSize","strokeSize","replies","avatarContainerMultiple","avatarContainerSingle","leftAvatarsContainer","leftCurve","messageRepliesText","rightAvatarsContainer","rightCurve","status","readByCount","statusContainer","timeIcon","targetedMessageContainer","targetedMessageUnderlay","videoThumbnail","messageActions","actionContainer","padding","reactions","avatarContainer","avatarName","flatListContainer","reactionsList","reaction","reply","fileAttachmentContainer","imageAttachment","markdownStyles","messageContainer","screenPadding","spinner","thread","newThread","typingIndicator"],"sources":["theme.ts"],"sourcesContent":["import type { ImageStyle, TextStyle, ViewStyle } from 'react-native';\nimport type { CircleProps, Color, StopProps } from 'react-native-svg';\n\nimport type { IconProps } from '../../../icons/utils/base';\nimport { vh } from '../../../utils/utils';\n\nexport const DEFAULT_STATUS_ICON_SIZE = 16;\n\nexport const Colors = {\n accent_blue: '#005FFF',\n accent_green: '#20E070',\n accent_red: '#FF3742',\n bg_gradient_end: '#F7F7F7',\n bg_gradient_start: '#FCFCFC',\n black: '#000000',\n blue_alice: '#E9F2FF',\n border: '#00000014', // 14 = 8% opacity; top: x=0, y=-1; bottom: x=0, y=1\n grey: '#7A7A7A',\n grey_dark: '#72767E',\n grey_gainsboro: '#DBDBDB',\n grey_whisper: '#ECEBEB',\n icon_background: '#FFFFFF',\n label_bg_transparent: '#00000033', // 33 = 20% opacity\n light_gray: '#DBDDE1',\n modal_shadow: '#00000099', // 99 = 60% opacity; x=0, y= 1, radius=4\n overlay: '#000000CC', // CC = 80% opacity\n shadow_icon: '#00000040', // 40 = 25% opacity; x=0, y=0, radius=4\n static_black: '#000000',\n static_white: '#ffffff',\n targetedMessageBackground: '#FBF4DD', // dark mode = #302D22\n transparent: 'transparent',\n white: '#FFFFFF',\n white_smoke: '#F2F2F2',\n white_snow: '#FCFCFC',\n};\n\nexport type MarkdownStyle = Partial<{\n autolink: TextStyle;\n blockQuoteBar: ViewStyle;\n blockQuoteSection: ViewStyle;\n blockQuoteSectionBar: ViewStyle;\n blockQuoteText: TextStyle | ViewStyle;\n br: TextStyle;\n codeBlock: TextStyle;\n del: TextStyle;\n em: TextStyle;\n heading: TextStyle;\n heading1: TextStyle;\n heading2: TextStyle;\n heading3: TextStyle;\n heading4: TextStyle;\n heading5: TextStyle;\n heading6: TextStyle;\n hr: ViewStyle;\n image: ImageStyle;\n inlineCode: TextStyle;\n list: ViewStyle;\n listItem: ViewStyle;\n listItemBullet: TextStyle;\n listItemNumber: TextStyle;\n listItemText: TextStyle;\n listRow: ViewStyle;\n mailTo: TextStyle;\n mentions: TextStyle;\n newline: TextStyle;\n noMargin: TextStyle;\n paragraph: TextStyle;\n paragraphCenter: TextStyle;\n paragraphWithImage: ViewStyle;\n strong: TextStyle;\n sublist: ViewStyle;\n table: ViewStyle;\n tableHeader: ViewStyle;\n tableHeaderCell: TextStyle;\n tableRow: ViewStyle;\n tableRowCell: ViewStyle;\n tableRowLast: ViewStyle;\n text: TextStyle;\n u: TextStyle;\n view: ViewStyle;\n}>;\n\nexport type Theme = {\n attachmentPicker: {\n bottomSheetContentContainer: ViewStyle;\n durationText: TextStyle;\n errorButtonText: TextStyle;\n errorContainer: ViewStyle;\n errorText: TextStyle;\n image: ViewStyle;\n imageOverlay: ViewStyle;\n imageOverlaySelectedComponent: {\n check: ViewStyle;\n };\n };\n attachmentSelectionBar: {\n container: ViewStyle;\n icon: ViewStyle;\n };\n avatar: {\n BASE_AVATAR_SIZE: number;\n container: ViewStyle;\n image: ImageStyle;\n presenceIndicator: CircleProps;\n presenceIndicatorContainer: ViewStyle;\n };\n channel: {\n selectChannel: TextStyle;\n };\n channelListFooterLoadingIndicator: {\n container: ViewStyle;\n };\n channelListHeaderErrorIndicator: {\n container: ViewStyle;\n errorText: TextStyle;\n };\n channelListLoadingIndicator: {\n container: ViewStyle;\n };\n channelListMessenger: {\n flatList: ViewStyle;\n flatListContent: ViewStyle;\n };\n channelListSkeleton: {\n animationTime: number;\n background: ViewStyle;\n container: ViewStyle;\n gradientStart: StopProps;\n gradientStop: StopProps;\n height: number;\n maskFillColor?: Color;\n };\n channelPreview: {\n checkAllIcon: IconProps;\n checkIcon: IconProps;\n container: ViewStyle;\n contentContainer: ViewStyle;\n date: TextStyle;\n message: TextStyle & {\n fontWeight: TextStyle['fontWeight'];\n };\n mutedStatus: {\n height: number;\n iconStyle: ViewStyle;\n width: number;\n };\n row: ViewStyle;\n title: TextStyle;\n unreadContainer: ViewStyle;\n unreadText: TextStyle;\n };\n colors: typeof Colors & { [key: string]: string };\n dateHeader: {\n container: ViewStyle;\n text: TextStyle;\n };\n emptyStateIndicator: {\n channelContainer: ViewStyle;\n channelDetails: TextStyle;\n channelTitle: TextStyle;\n };\n groupAvatar: {\n container: ViewStyle;\n image: ImageStyle;\n };\n iconBadge: {\n icon: ViewStyle;\n iconInner: ViewStyle;\n unreadCount: TextStyle;\n };\n iconSquare: {\n container: ViewStyle;\n image: ImageStyle;\n };\n imageGallery: {\n footer: {\n centerContainer: ViewStyle;\n container: ViewStyle;\n imageCountText: TextStyle;\n innerContainer: ViewStyle;\n leftContainer: ViewStyle;\n rightContainer: ViewStyle;\n };\n grid: {\n container: ViewStyle;\n contentContainer: ViewStyle;\n gridAvatar: ImageStyle;\n gridAvatarWrapper: ViewStyle;\n gridImage: ViewStyle;\n handle: ViewStyle;\n handleText: TextStyle;\n overlay: ViewStyle;\n };\n header: {\n centerContainer: ViewStyle;\n container: ViewStyle;\n dateText: TextStyle;\n innerContainer: ViewStyle;\n leftContainer: ViewStyle;\n rightContainer: ViewStyle;\n usernameText: TextStyle;\n };\n videoControl: {\n durationTextStyle: TextStyle;\n roundedView: ViewStyle;\n videoContainer: ViewStyle;\n };\n backgroundColor?: string;\n pager?: ViewStyle;\n slide?: ImageStyle;\n };\n inlineDateSeparator: {\n container: ViewStyle;\n text: TextStyle;\n };\n loadingDots: {\n container: ViewStyle;\n loadingDot: ViewStyle;\n spacing: number;\n };\n loadingErrorIndicator: {\n container: ViewStyle;\n errorText: TextStyle;\n retryText: TextStyle;\n };\n loadingIndicator: {\n container: ViewStyle;\n loadingText: TextStyle;\n };\n messageInput: {\n attachButton: ViewStyle;\n attachButtonContainer: ViewStyle;\n attachmentSelectionBar: ViewStyle;\n autoCompleteInputContainer: ViewStyle;\n commandsButton: ViewStyle;\n commandsButtonContainer: ViewStyle;\n composerContainer: ViewStyle;\n container: ViewStyle;\n cooldownTimer: {\n container: ViewStyle;\n text: TextStyle;\n };\n editingBoxContainer: ViewStyle;\n editingBoxHeader: ViewStyle;\n editingBoxHeaderTitle: TextStyle;\n editingStateHeader: {\n editingBoxHeader: ViewStyle;\n editingBoxHeaderTitle: TextStyle;\n };\n fileUploadPreview: {\n audioAttachment: {\n progressControlView: ViewStyle;\n progressDurationText: TextStyle;\n roundedView: ViewStyle;\n };\n audioAttachmentFileContainer: ViewStyle;\n dismiss: ViewStyle;\n fileContainer: ViewStyle;\n fileContentContainer: ViewStyle;\n filenameText: TextStyle;\n fileSizeText: TextStyle;\n fileTextContainer: ViewStyle;\n flatList: ViewStyle;\n };\n giphyCommandInput: {\n giphyContainer: ViewStyle;\n giphyText: TextStyle;\n };\n imageUploadPreview: {\n dismiss: ViewStyle;\n dismissIconColor: Color;\n flatList: ViewStyle;\n itemContainer: ViewStyle;\n upload: ImageStyle;\n };\n inputBox: TextStyle;\n inputBoxContainer: ViewStyle;\n moreOptionsButton: ViewStyle;\n optionsContainer: ViewStyle;\n replyContainer: ViewStyle;\n sendButton: ViewStyle;\n sendButtonContainer: ViewStyle;\n sendMessageDisallowedIndicator: {\n container: ViewStyle;\n text: TextStyle;\n };\n showThreadMessageInChannelButton: {\n check: IconProps;\n checkBoxActive: ViewStyle;\n checkBoxInactive: ViewStyle;\n container: ViewStyle;\n innerContainer: ViewStyle;\n text: TextStyle;\n };\n suggestions: {\n command: {\n args: TextStyle;\n container: ViewStyle;\n iconContainer: ViewStyle;\n title: TextStyle;\n };\n container: ViewStyle & {\n maxHeight: number;\n };\n emoji: {\n container: ViewStyle;\n text: TextStyle;\n };\n header: {\n container: ViewStyle;\n title: TextStyle;\n };\n item: ViewStyle;\n mention: {\n avatarSize: number;\n column: ViewStyle;\n container: ViewStyle;\n name: TextStyle;\n tag: TextStyle;\n };\n };\n suggestionsListContainer: {\n container: ViewStyle;\n flatlist: ViewStyle;\n };\n uploadProgressIndicator: {\n container: ViewStyle;\n overlay: ViewStyle;\n };\n };\n messageList: {\n container: ViewStyle;\n contentContainer: ViewStyle;\n errorNotification: ViewStyle;\n errorNotificationText: TextStyle;\n inlineUnreadIndicator: {\n container: ViewStyle;\n text: TextStyle;\n };\n listContainer: ViewStyle;\n messageSystem: {\n container: ViewStyle;\n dateText: TextStyle;\n line: ViewStyle;\n text: TextStyle;\n textContainer: ViewStyle;\n };\n scrollToBottomButton: {\n container: ViewStyle;\n touchable: ViewStyle;\n unreadCountNotificationContainer: ViewStyle;\n unreadCountNotificationText: TextStyle;\n wrapper: ViewStyle;\n chevronColor?: Color;\n };\n typingIndicatorContainer: ViewStyle;\n };\n messageSimple: {\n actions: {\n button: ViewStyle & {\n defaultBackgroundColor?: ViewStyle['backgroundColor'];\n defaultBorderColor?: ViewStyle['borderColor'];\n primaryBackgroundColor?: ViewStyle['backgroundColor'];\n primaryBorderColor?: ViewStyle['borderColor'];\n };\n buttonText: TextStyle & {\n defaultColor?: TextStyle['color'];\n primaryColor?: TextStyle['color'];\n };\n container: ViewStyle;\n };\n avatarWrapper: {\n container: ViewStyle;\n leftAlign: ViewStyle;\n rightAlign: ViewStyle;\n spacer: ViewStyle;\n };\n card: {\n authorName: TextStyle;\n authorNameContainer: ViewStyle;\n authorNameFooter: TextStyle;\n authorNameFooterContainer: ViewStyle;\n authorNameMask: ViewStyle;\n container: ViewStyle;\n cover: ImageStyle;\n footer: ViewStyle & {\n description: TextStyle;\n title: TextStyle;\n };\n noURI: ViewStyle;\n playButtonStyle: {\n durationTextStyle: TextStyle;\n roundedView: ViewStyle;\n videoContainer: ViewStyle;\n };\n playIcon: IconProps;\n };\n container: ViewStyle;\n content: {\n container: ViewStyle & {\n borderRadiusL: ViewStyle['borderBottomLeftRadius' | 'borderTopLeftRadius'];\n borderRadiusS: ViewStyle['borderBottomRightRadius' | 'borderTopRightRadius'];\n };\n containerInner: ViewStyle;\n deletedContainer: ViewStyle;\n deletedContainerInner: ViewStyle;\n deletedMetaText: TextStyle;\n deletedText: MarkdownStyle;\n errorContainer: ViewStyle;\n errorIcon: IconProps;\n errorIconContainer: ViewStyle;\n eyeIcon: IconProps;\n /**\n * Available options for styling text:\n * https://github.com/andangrd/react-native-markdown-package/blob/main/styles.js\n */\n markdown: MarkdownStyle;\n messageUser: TextStyle;\n metaContainer: ViewStyle;\n metaText: TextStyle;\n replyBorder: ViewStyle;\n replyContainer: ViewStyle;\n textContainer: ViewStyle & {\n onlyEmojiMarkdown: MarkdownStyle;\n };\n wrapper: ViewStyle;\n };\n file: {\n container: ViewStyle;\n details: ViewStyle;\n fileSize: TextStyle;\n icon: IconProps;\n title: TextStyle;\n };\n fileAttachmentGroup: {\n container: ViewStyle;\n };\n gallery: {\n galleryContainer: ViewStyle;\n galleryItemColumn: ViewStyle;\n gridHeight: number;\n gridWidth: number;\n image: ImageStyle;\n imageContainer: ViewStyle;\n maxHeight: number;\n maxWidth: number;\n minHeight: number;\n minWidth: number;\n moreImagesContainer: ViewStyle;\n moreImagesText: TextStyle;\n thumbnail: ViewStyle;\n };\n giphy: {\n buttonContainer: ViewStyle;\n cancel: TextStyle;\n container: ViewStyle;\n giphy: ImageStyle;\n giphyContainer: ViewStyle;\n giphyHeaderText: TextStyle;\n giphyHeaderTitle: TextStyle;\n giphyMask: ViewStyle;\n giphyMaskText: TextStyle;\n header: ViewStyle;\n selectionContainer: ViewStyle;\n send: TextStyle;\n shuffle: TextStyle;\n title: TextStyle;\n };\n loadingIndicator: {\n container: ViewStyle;\n roundedView: ViewStyle;\n };\n pinnedHeader: {\n container: ViewStyle;\n label: TextStyle;\n };\n reactionList: {\n container: ViewStyle;\n middleIcon: ViewStyle;\n radius: number;\n reactionBubble: ViewStyle;\n reactionBubbleBackground: ViewStyle;\n reactionSize: number;\n strokeSize: number;\n };\n replies: {\n avatar: ViewStyle;\n avatarContainerMultiple: ViewStyle;\n avatarContainerSingle: ViewStyle;\n container: ViewStyle;\n leftAvatarsContainer: ViewStyle;\n leftCurve: ViewStyle;\n messageRepliesText: TextStyle;\n rightAvatarsContainer: ViewStyle;\n rightCurve: ViewStyle;\n avatarSize?: number;\n };\n status: {\n checkAllIcon: IconProps;\n checkIcon: IconProps;\n readByCount: TextStyle;\n statusContainer: ViewStyle;\n timeIcon: IconProps;\n };\n targetedMessageContainer: ViewStyle;\n targetedMessageUnderlay: ViewStyle;\n videoThumbnail: {\n container: ViewStyle;\n roundedView: ViewStyle;\n };\n };\n overlay: {\n container: ViewStyle;\n messageActions: {\n actionContainer: ViewStyle;\n icon: ViewStyle;\n title: TextStyle;\n };\n padding: number;\n reactions: {\n avatarContainer: ViewStyle;\n avatarName: TextStyle;\n avatarSize: number;\n container: ViewStyle;\n flatListContainer: ViewStyle;\n radius: number;\n reactionBubble: ViewStyle;\n reactionBubbleBackground: ViewStyle;\n title: TextStyle;\n };\n reactionsList: {\n radius: number;\n reaction: ViewStyle;\n reactionList: ViewStyle;\n reactionSize: number;\n };\n };\n reply: {\n container: ViewStyle;\n fileAttachmentContainer: ViewStyle;\n imageAttachment: ImageStyle;\n markdownStyles: MarkdownStyle;\n messageContainer: ViewStyle;\n textContainer: ViewStyle;\n videoThumbnail: {\n container: ViewStyle;\n image: ImageStyle;\n };\n };\n screenPadding: number;\n spinner: ViewStyle;\n thread: {\n newThread: ViewStyle & {\n text: TextStyle;\n backgroundGradientStart?: string;\n backgroundGradientStop?: string;\n };\n };\n typingIndicator: {\n container: ViewStyle;\n text: TextStyle & {\n fontSize: TextStyle['fontSize'];\n };\n };\n};\n\nexport const defaultTheme: Theme = {\n attachmentPicker: {\n bottomSheetContentContainer: {},\n durationText: {},\n errorButtonText: {},\n errorContainer: {},\n errorText: {},\n image: {},\n imageOverlay: {},\n imageOverlaySelectedComponent: {\n check: {},\n },\n },\n attachmentSelectionBar: {\n container: {},\n icon: {},\n },\n avatar: {\n BASE_AVATAR_SIZE: 32,\n container: {},\n image: {\n borderRadius: 16,\n height: 32,\n width: 32,\n },\n presenceIndicator: {\n cx: 6,\n cy: 6,\n r: 5,\n strokeWidth: 2,\n },\n presenceIndicatorContainer: {},\n },\n channel: {\n selectChannel: {},\n },\n channelListFooterLoadingIndicator: {\n container: {},\n },\n channelListHeaderErrorIndicator: {\n container: {},\n errorText: {},\n },\n channelListLoadingIndicator: {\n container: {},\n },\n channelListMessenger: {\n flatList: {},\n flatListContent: {},\n },\n channelListSkeleton: {\n animationTime: 1800, // in milliseconds\n background: {},\n container: {},\n gradientStart: {\n stopOpacity: 0,\n },\n gradientStop: {\n stopOpacity: 0.5,\n },\n height: 64,\n },\n channelPreview: {\n checkAllIcon: {\n height: DEFAULT_STATUS_ICON_SIZE,\n width: DEFAULT_STATUS_ICON_SIZE,\n },\n checkIcon: {\n height: DEFAULT_STATUS_ICON_SIZE,\n width: DEFAULT_STATUS_ICON_SIZE,\n },\n container: {},\n contentContainer: {},\n date: {},\n message: {\n fontWeight: '400',\n },\n mutedStatus: {\n height: 20,\n iconStyle: {},\n width: 20,\n },\n row: {},\n title: {},\n unreadContainer: {},\n unreadText: {},\n },\n colors: {\n ...Colors,\n },\n dateHeader: {\n container: {},\n text: {},\n },\n emptyStateIndicator: {\n channelContainer: {},\n channelDetails: {},\n channelTitle: {},\n },\n groupAvatar: {\n container: {},\n image: {\n resizeMode: 'cover',\n },\n },\n iconBadge: {\n icon: {},\n iconInner: {},\n unreadCount: {},\n },\n iconSquare: {\n container: {},\n image: {},\n },\n imageGallery: {\n footer: {\n centerContainer: {},\n container: {},\n imageCountText: {},\n innerContainer: {},\n leftContainer: {},\n rightContainer: {},\n },\n grid: {\n container: {},\n contentContainer: {},\n gridAvatar: {},\n gridAvatarWrapper: {},\n gridImage: {},\n handle: {},\n handleText: {},\n overlay: {},\n },\n header: {\n centerContainer: {},\n container: {},\n dateText: {},\n innerContainer: {},\n leftContainer: {},\n rightContainer: {},\n usernameText: {},\n },\n videoControl: {\n durationTextStyle: {},\n roundedView: {},\n videoContainer: {},\n },\n },\n inlineDateSeparator: {\n container: {},\n text: {},\n },\n loadingDots: {\n container: {},\n loadingDot: {},\n spacing: 4,\n },\n loadingErrorIndicator: {\n container: {},\n errorText: {},\n retryText: {},\n },\n loadingIndicator: {\n container: {},\n loadingText: {},\n },\n messageInput: {\n attachButton: {},\n attachButtonContainer: {},\n attachmentSelectionBar: {},\n autoCompleteInputContainer: {},\n commandsButton: {},\n commandsButtonContainer: {},\n composerContainer: {},\n container: {},\n cooldownTimer: {\n container: {},\n text: {},\n },\n editingBoxContainer: {},\n editingBoxHeader: {},\n editingBoxHeaderTitle: {},\n editingStateHeader: {\n editingBoxHeader: {},\n editingBoxHeaderTitle: {},\n },\n fileUploadPreview: {\n audioAttachment: {\n progressControlView: {},\n progressDurationText: {},\n roundedView: {},\n },\n audioAttachmentFileContainer: {},\n dismiss: {},\n fileContainer: {},\n fileContentContainer: {},\n filenameText: {},\n fileSizeText: {},\n fileTextContainer: {},\n flatList: {},\n },\n giphyCommandInput: {\n giphyContainer: {},\n giphyText: {},\n },\n imageUploadPreview: {\n dismiss: {},\n dismissIconColor: '',\n flatList: {},\n itemContainer: {},\n upload: {},\n },\n inputBox: {},\n inputBoxContainer: {},\n moreOptionsButton: {},\n optionsContainer: {},\n replyContainer: {},\n sendButton: {},\n sendButtonContainer: {},\n sendMessageDisallowedIndicator: {\n container: {},\n text: {},\n },\n showThreadMessageInChannelButton: {\n check: {},\n checkBoxActive: {},\n checkBoxInactive: {},\n container: {},\n innerContainer: {},\n text: {},\n },\n suggestions: {\n command: {\n args: {},\n container: {},\n iconContainer: {},\n title: {},\n },\n container: {\n maxHeight: vh(25),\n },\n emoji: {\n container: {},\n text: {},\n },\n header: {\n container: {},\n title: {},\n },\n item: {},\n mention: {\n avatarSize: 40,\n column: {},\n container: {},\n name: {},\n tag: {},\n },\n },\n suggestionsListContainer: {\n container: {},\n flatlist: {},\n },\n uploadProgressIndicator: {\n container: {},\n overlay: {},\n },\n },\n messageList: {\n container: {},\n contentContainer: {},\n errorNotification: {},\n errorNotificationText: {},\n inlineUnreadIndicator: {\n container: {},\n text: {},\n },\n listContainer: {},\n messageSystem: {\n container: {},\n dateText: {},\n line: {},\n text: {},\n textContainer: {},\n },\n scrollToBottomButton: {\n container: {},\n touchable: {},\n unreadCountNotificationContainer: {},\n unreadCountNotificationText: {},\n wrapper: {},\n },\n typingIndicatorContainer: {},\n },\n messageSimple: {\n actions: {\n button: {},\n buttonText: {},\n container: {},\n },\n avatarWrapper: {\n container: {},\n leftAlign: {\n marginRight: 8,\n },\n rightAlign: {\n marginLeft: 8,\n },\n spacer: {\n height: 28,\n width: 32, // same as BASE_AVATAR_SIZE\n },\n },\n card: {\n authorName: {},\n authorNameContainer: {},\n authorNameFooter: {},\n authorNameFooterContainer: {},\n authorNameMask: {},\n container: {},\n cover: {},\n footer: {\n description: {},\n title: {\n fontWeight: '700',\n },\n },\n noURI: {\n borderLeftWidth: 2,\n paddingLeft: 8,\n },\n playButtonStyle: {\n durationTextStyle: {},\n roundedView: {},\n videoContainer: {},\n },\n playIcon: {\n height: 24,\n width: 24,\n },\n },\n container: {},\n content: {\n container: {\n borderRadiusL: 16,\n borderRadiusS: 0,\n },\n containerInner: {},\n deletedContainer: {},\n deletedContainerInner: {},\n deletedMetaText: {\n paddingHorizontal: 5,\n },\n deletedText: {\n em: {\n fontSize: 15,\n fontStyle: 'italic',\n fontWeight: '400',\n },\n },\n errorContainer: {\n paddingRight: 12,\n paddingTop: 0,\n },\n errorIcon: {\n height: 20,\n width: 20,\n },\n errorIconContainer: {\n bottom: -2,\n position: 'absolute',\n right: -12,\n },\n eyeIcon: {\n height: 16,\n width: 16,\n },\n markdown: {},\n messageUser: {\n fontSize: 12,\n fontWeight: '700',\n paddingRight: 6,\n },\n metaContainer: {\n flexDirection: 'row',\n marginTop: 4,\n },\n metaText: {\n fontSize: 12,\n },\n replyBorder: {},\n replyContainer: {},\n textContainer: {\n onlyEmojiMarkdown: { text: { fontSize: 50 } },\n },\n wrapper: {},\n },\n file: {\n container: {},\n details: {},\n fileSize: {},\n icon: {},\n title: {},\n },\n fileAttachmentGroup: {\n container: {},\n },\n gallery: {\n galleryContainer: {},\n galleryItemColumn: {},\n gridHeight: 195,\n gridWidth: 256,\n image: {},\n imageContainer: {},\n maxHeight: 300,\n maxWidth: 256,\n minHeight: 100,\n minWidth: 170,\n moreImagesContainer: {},\n moreImagesText: {},\n thumbnail: {},\n },\n giphy: {\n buttonContainer: {},\n cancel: {},\n container: {},\n giphy: {},\n giphyContainer: {},\n giphyHeaderText: {},\n giphyHeaderTitle: {},\n giphyMask: {},\n giphyMaskText: {},\n header: {},\n selectionContainer: {},\n send: {},\n shuffle: {},\n title: {},\n },\n loadingIndicator: {\n container: {},\n roundedView: {},\n },\n pinnedHeader: {\n container: {},\n label: {},\n },\n reactionList: {\n container: {},\n middleIcon: {},\n radius: 2, // not recommended to change this\n reactionBubble: {},\n reactionBubbleBackground: {},\n reactionSize: 24,\n strokeSize: 1, // not recommended to change this\n },\n replies: {\n avatar: {},\n avatarContainerMultiple: {},\n avatarContainerSingle: {},\n container: {},\n leftAvatarsContainer: {},\n leftCurve: {},\n messageRepliesText: {},\n rightAvatarsContainer: {},\n rightCurve: {},\n },\n status: {\n checkAllIcon: {\n height: DEFAULT_STATUS_ICON_SIZE,\n width: DEFAULT_STATUS_ICON_SIZE,\n },\n checkIcon: {\n height: DEFAULT_STATUS_ICON_SIZE,\n width: DEFAULT_STATUS_ICON_SIZE,\n },\n readByCount: {},\n statusContainer: {},\n timeIcon: {\n height: DEFAULT_STATUS_ICON_SIZE,\n width: DEFAULT_STATUS_ICON_SIZE,\n },\n },\n targetedMessageContainer: {},\n targetedMessageUnderlay: {},\n videoThumbnail: {\n container: {},\n roundedView: {},\n },\n },\n overlay: {\n container: {},\n messageActions: {\n actionContainer: {},\n icon: {},\n title: {},\n },\n padding: 8,\n reactions: {\n avatarContainer: {},\n avatarName: {},\n avatarSize: 64,\n container: {},\n flatListContainer: {},\n radius: 2,\n reactionBubble: {},\n reactionBubbleBackground: {},\n title: {},\n },\n reactionsList: {\n radius: 2.5,\n reaction: {},\n reactionList: {},\n reactionSize: 24,\n },\n },\n reply: {\n container: {},\n fileAttachmentContainer: {},\n imageAttachment: {},\n markdownStyles: {},\n messageContainer: {},\n textContainer: {},\n videoThumbnail: {\n container: {},\n image: {},\n },\n },\n screenPadding: 8,\n spinner: {},\n thread: {\n newThread: {\n text: {},\n },\n },\n typingIndicator: {\n container: {},\n text: {\n fontSize: 14,\n },\n },\n};\n"],"mappings":"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"}
1
+ {"version":3,"names":["_utils","require","DEFAULT_STATUS_ICON_SIZE","exports","Colors","accent_blue","accent_green","accent_red","bg_gradient_end","bg_gradient_start","black","blue_alice","border","grey","grey_dark","grey_gainsboro","grey_whisper","icon_background","label_bg_transparent","light_gray","modal_shadow","overlay","shadow_icon","static_black","static_white","targetedMessageBackground","transparent","white","white_smoke","white_snow","defaultTheme","attachmentPicker","bottomSheetContentContainer","durationText","errorButtonText","errorContainer","errorText","image","imageOverlay","imageOverlaySelectedComponent","check","attachmentSelectionBar","container","icon","avatar","BASE_AVATAR_SIZE","borderRadius","height","width","presenceIndicator","cx","cy","r","strokeWidth","presenceIndicatorContainer","channel","selectChannel","channelListFooterLoadingIndicator","channelListHeaderErrorIndicator","channelListLoadingIndicator","channelListMessenger","flatList","flatListContent","channelListSkeleton","animationTime","background","gradientStart","stopOpacity","gradientStop","channelPreview","checkAllIcon","checkIcon","contentContainer","date","message","fontWeight","mutedStatus","iconStyle","row","title","unreadContainer","unreadText","colors","_extends2","dateHeader","text","emptyStateIndicator","channelContainer","channelDetails","channelTitle","groupAvatar","resizeMode","iconBadge","iconInner","unreadCount","iconSquare","imageGallery","footer","centerContainer","imageCountText","innerContainer","leftContainer","rightContainer","grid","gridAvatar","gridAvatarWrapper","gridImage","handle","handleText","header","dateText","usernameText","videoControl","durationTextStyle","roundedView","videoContainer","inlineDateSeparator","loadingDots","loadingDot","spacing","loadingErrorIndicator","retryText","loadingIndicator","loadingText","messageInput","attachButton","attachButtonContainer","autoCompleteInputContainer","commandsButton","commandsButtonContainer","composerContainer","cooldownTimer","editingBoxContainer","editingBoxHeader","editingBoxHeaderTitle","editingStateHeader","fileUploadPreview","audioAttachment","progressControlView","progressDurationText","audioAttachmentFileContainer","dismiss","fileContainer","fileContentContainer","filenameText","fileSizeText","fileTextContainer","giphyCommandInput","giphyContainer","giphyText","imageUploadPreview","dismissIconColor","itemContainer","upload","inputBox","inputBoxContainer","moreOptionsButton","optionsContainer","replyContainer","sendButton","sendButtonContainer","sendMessageDisallowedIndicator","showThreadMessageInChannelButton","checkBoxActive","checkBoxInactive","suggestions","command","args","iconContainer","maxHeight","vh","emoji","item","mention","avatarSize","column","name","tag","suggestionsListContainer","flatlist","uploadProgressIndicator","messageList","errorNotification","errorNotificationText","inlineUnreadIndicator","listContainer","messageContainer","messageSystem","line","textContainer","scrollToBottomButton","touchable","unreadCountNotificationContainer","unreadCountNotificationText","wrapper","typingIndicatorContainer","messageSimple","actions","button","buttonText","avatarWrapper","leftAlign","marginRight","rightAlign","marginLeft","spacer","card","authorName","authorNameContainer","authorNameFooter","authorNameFooterContainer","authorNameMask","cover","description","noURI","borderLeftWidth","paddingLeft","playButtonStyle","playIcon","content","borderRadiusL","borderRadiusS","containerInner","deletedContainer","deletedContainerInner","deletedMetaText","paddingHorizontal","deletedText","em","fontSize","fontStyle","paddingRight","paddingTop","errorIcon","errorIconContainer","bottom","position","right","eyeIcon","markdown","messageUser","metaContainer","flexDirection","marginTop","metaText","replyBorder","onlyEmojiMarkdown","file","details","fileSize","fileAttachmentGroup","gallery","galleryContainer","galleryItemColumn","gridHeight","gridWidth","imageContainer","maxWidth","minHeight","minWidth","moreImagesContainer","moreImagesText","thumbnail","giphy","buttonContainer","cancel","giphyHeaderText","giphyHeaderTitle","giphyMask","giphyMaskText","selectionContainer","send","shuffle","pinnedHeader","label","reactionList","middleIcon","radius","reactionBubble","reactionBubbleBackground","reactionSize","strokeSize","replies","avatarContainerMultiple","avatarContainerSingle","leftAvatarsContainer","leftCurve","messageRepliesText","rightAvatarsContainer","rightCurve","status","readByCount","statusContainer","timeIcon","targetedMessageContainer","targetedMessageUnderlay","videoThumbnail","messageActions","actionContainer","padding","reactions","avatarContainer","avatarName","flatListContainer","reactionsList","reaction","reply","fileAttachmentContainer","imageAttachment","markdownStyles","screenPadding","spinner","thread","newThread","typingIndicator"],"sources":["theme.ts"],"sourcesContent":["import type { ImageStyle, TextStyle, ViewStyle } from 'react-native';\nimport type { CircleProps, Color, StopProps } from 'react-native-svg';\n\nimport type { IconProps } from '../../../icons/utils/base';\nimport { vh } from '../../../utils/utils';\n\nexport const DEFAULT_STATUS_ICON_SIZE = 16;\n\nexport const Colors = {\n accent_blue: '#005FFF',\n accent_green: '#20E070',\n accent_red: '#FF3742',\n bg_gradient_end: '#F7F7F7',\n bg_gradient_start: '#FCFCFC',\n black: '#000000',\n blue_alice: '#E9F2FF',\n border: '#00000014', // 14 = 8% opacity; top: x=0, y=-1; bottom: x=0, y=1\n grey: '#7A7A7A',\n grey_dark: '#72767E',\n grey_gainsboro: '#DBDBDB',\n grey_whisper: '#ECEBEB',\n icon_background: '#FFFFFF',\n label_bg_transparent: '#00000033', // 33 = 20% opacity\n light_gray: '#DBDDE1',\n modal_shadow: '#00000099', // 99 = 60% opacity; x=0, y= 1, radius=4\n overlay: '#000000CC', // CC = 80% opacity\n shadow_icon: '#00000040', // 40 = 25% opacity; x=0, y=0, radius=4\n static_black: '#000000',\n static_white: '#ffffff',\n targetedMessageBackground: '#FBF4DD', // dark mode = #302D22\n transparent: 'transparent',\n white: '#FFFFFF',\n white_smoke: '#F2F2F2',\n white_snow: '#FCFCFC',\n};\n\nexport type MarkdownStyle = Partial<{\n autolink: TextStyle;\n blockQuoteBar: ViewStyle;\n blockQuoteSection: ViewStyle;\n blockQuoteSectionBar: ViewStyle;\n blockQuoteText: TextStyle | ViewStyle;\n br: TextStyle;\n codeBlock: TextStyle;\n del: TextStyle;\n em: TextStyle;\n heading: TextStyle;\n heading1: TextStyle;\n heading2: TextStyle;\n heading3: TextStyle;\n heading4: TextStyle;\n heading5: TextStyle;\n heading6: TextStyle;\n hr: ViewStyle;\n image: ImageStyle;\n inlineCode: TextStyle;\n list: ViewStyle;\n listItem: ViewStyle;\n listItemBullet: TextStyle;\n listItemNumber: TextStyle;\n listItemText: TextStyle;\n listRow: ViewStyle;\n mailTo: TextStyle;\n mentions: TextStyle;\n newline: TextStyle;\n noMargin: TextStyle;\n paragraph: TextStyle;\n paragraphCenter: TextStyle;\n paragraphWithImage: ViewStyle;\n strong: TextStyle;\n sublist: ViewStyle;\n table: ViewStyle;\n tableHeader: ViewStyle;\n tableHeaderCell: TextStyle;\n tableRow: ViewStyle;\n tableRowCell: ViewStyle;\n tableRowLast: ViewStyle;\n text: TextStyle;\n u: TextStyle;\n view: ViewStyle;\n}>;\n\nexport type Theme = {\n attachmentPicker: {\n bottomSheetContentContainer: ViewStyle;\n durationText: TextStyle;\n errorButtonText: TextStyle;\n errorContainer: ViewStyle;\n errorText: TextStyle;\n image: ViewStyle;\n imageOverlay: ViewStyle;\n imageOverlaySelectedComponent: {\n check: ViewStyle;\n };\n };\n attachmentSelectionBar: {\n container: ViewStyle;\n icon: ViewStyle;\n };\n avatar: {\n BASE_AVATAR_SIZE: number;\n container: ViewStyle;\n image: ImageStyle;\n presenceIndicator: CircleProps;\n presenceIndicatorContainer: ViewStyle;\n };\n channel: {\n selectChannel: TextStyle;\n };\n channelListFooterLoadingIndicator: {\n container: ViewStyle;\n };\n channelListHeaderErrorIndicator: {\n container: ViewStyle;\n errorText: TextStyle;\n };\n channelListLoadingIndicator: {\n container: ViewStyle;\n };\n channelListMessenger: {\n flatList: ViewStyle;\n flatListContent: ViewStyle;\n };\n channelListSkeleton: {\n animationTime: number;\n background: ViewStyle;\n container: ViewStyle;\n gradientStart: StopProps;\n gradientStop: StopProps;\n height: number;\n maskFillColor?: Color;\n };\n channelPreview: {\n checkAllIcon: IconProps;\n checkIcon: IconProps;\n container: ViewStyle;\n contentContainer: ViewStyle;\n date: TextStyle;\n message: TextStyle & {\n fontWeight: TextStyle['fontWeight'];\n };\n mutedStatus: {\n height: number;\n iconStyle: ViewStyle;\n width: number;\n };\n row: ViewStyle;\n title: TextStyle;\n unreadContainer: ViewStyle;\n unreadText: TextStyle;\n };\n colors: typeof Colors & { [key: string]: string };\n dateHeader: {\n container: ViewStyle;\n text: TextStyle;\n };\n emptyStateIndicator: {\n channelContainer: ViewStyle;\n channelDetails: TextStyle;\n channelTitle: TextStyle;\n };\n groupAvatar: {\n container: ViewStyle;\n image: ImageStyle;\n };\n iconBadge: {\n icon: ViewStyle;\n iconInner: ViewStyle;\n unreadCount: TextStyle;\n };\n iconSquare: {\n container: ViewStyle;\n image: ImageStyle;\n };\n imageGallery: {\n footer: {\n centerContainer: ViewStyle;\n container: ViewStyle;\n imageCountText: TextStyle;\n innerContainer: ViewStyle;\n leftContainer: ViewStyle;\n rightContainer: ViewStyle;\n };\n grid: {\n container: ViewStyle;\n contentContainer: ViewStyle;\n gridAvatar: ImageStyle;\n gridAvatarWrapper: ViewStyle;\n gridImage: ViewStyle;\n handle: ViewStyle;\n handleText: TextStyle;\n overlay: ViewStyle;\n };\n header: {\n centerContainer: ViewStyle;\n container: ViewStyle;\n dateText: TextStyle;\n innerContainer: ViewStyle;\n leftContainer: ViewStyle;\n rightContainer: ViewStyle;\n usernameText: TextStyle;\n };\n videoControl: {\n durationTextStyle: TextStyle;\n roundedView: ViewStyle;\n videoContainer: ViewStyle;\n };\n backgroundColor?: string;\n pager?: ViewStyle;\n slide?: ImageStyle;\n };\n inlineDateSeparator: {\n container: ViewStyle;\n text: TextStyle;\n };\n loadingDots: {\n container: ViewStyle;\n loadingDot: ViewStyle;\n spacing: number;\n };\n loadingErrorIndicator: {\n container: ViewStyle;\n errorText: TextStyle;\n retryText: TextStyle;\n };\n loadingIndicator: {\n container: ViewStyle;\n loadingText: TextStyle;\n };\n messageInput: {\n attachButton: ViewStyle;\n attachButtonContainer: ViewStyle;\n attachmentSelectionBar: ViewStyle;\n autoCompleteInputContainer: ViewStyle;\n commandsButton: ViewStyle;\n commandsButtonContainer: ViewStyle;\n composerContainer: ViewStyle;\n container: ViewStyle;\n cooldownTimer: {\n container: ViewStyle;\n text: TextStyle;\n };\n editingBoxContainer: ViewStyle;\n editingBoxHeader: ViewStyle;\n editingBoxHeaderTitle: TextStyle;\n editingStateHeader: {\n editingBoxHeader: ViewStyle;\n editingBoxHeaderTitle: TextStyle;\n };\n fileUploadPreview: {\n audioAttachment: {\n progressControlView: ViewStyle;\n progressDurationText: TextStyle;\n roundedView: ViewStyle;\n };\n audioAttachmentFileContainer: ViewStyle;\n dismiss: ViewStyle;\n fileContainer: ViewStyle;\n fileContentContainer: ViewStyle;\n filenameText: TextStyle;\n fileSizeText: TextStyle;\n fileTextContainer: ViewStyle;\n flatList: ViewStyle;\n };\n giphyCommandInput: {\n giphyContainer: ViewStyle;\n giphyText: TextStyle;\n };\n imageUploadPreview: {\n dismiss: ViewStyle;\n dismissIconColor: Color;\n flatList: ViewStyle;\n itemContainer: ViewStyle;\n upload: ImageStyle;\n };\n inputBox: TextStyle;\n inputBoxContainer: ViewStyle;\n moreOptionsButton: ViewStyle;\n optionsContainer: ViewStyle;\n replyContainer: ViewStyle;\n sendButton: ViewStyle;\n sendButtonContainer: ViewStyle;\n sendMessageDisallowedIndicator: {\n container: ViewStyle;\n text: TextStyle;\n };\n showThreadMessageInChannelButton: {\n check: IconProps;\n checkBoxActive: ViewStyle;\n checkBoxInactive: ViewStyle;\n container: ViewStyle;\n innerContainer: ViewStyle;\n text: TextStyle;\n };\n suggestions: {\n command: {\n args: TextStyle;\n container: ViewStyle;\n iconContainer: ViewStyle;\n title: TextStyle;\n };\n container: ViewStyle & {\n maxHeight: number;\n };\n emoji: {\n container: ViewStyle;\n text: TextStyle;\n };\n header: {\n container: ViewStyle;\n title: TextStyle;\n };\n item: ViewStyle;\n mention: {\n avatarSize: number;\n column: ViewStyle;\n container: ViewStyle;\n name: TextStyle;\n tag: TextStyle;\n };\n };\n suggestionsListContainer: {\n container: ViewStyle;\n flatlist: ViewStyle;\n };\n uploadProgressIndicator: {\n container: ViewStyle;\n overlay: ViewStyle;\n };\n };\n messageList: {\n container: ViewStyle;\n contentContainer: ViewStyle;\n errorNotification: ViewStyle;\n errorNotificationText: TextStyle;\n inlineUnreadIndicator: {\n container: ViewStyle;\n text: TextStyle;\n };\n listContainer: ViewStyle;\n messageContainer: ViewStyle;\n messageSystem: {\n container: ViewStyle;\n dateText: TextStyle;\n line: ViewStyle;\n text: TextStyle;\n textContainer: ViewStyle;\n };\n scrollToBottomButton: {\n container: ViewStyle;\n touchable: ViewStyle;\n unreadCountNotificationContainer: ViewStyle;\n unreadCountNotificationText: TextStyle;\n wrapper: ViewStyle;\n chevronColor?: Color;\n };\n typingIndicatorContainer: ViewStyle;\n };\n messageSimple: {\n actions: {\n button: ViewStyle & {\n defaultBackgroundColor?: ViewStyle['backgroundColor'];\n defaultBorderColor?: ViewStyle['borderColor'];\n primaryBackgroundColor?: ViewStyle['backgroundColor'];\n primaryBorderColor?: ViewStyle['borderColor'];\n };\n buttonText: TextStyle & {\n defaultColor?: TextStyle['color'];\n primaryColor?: TextStyle['color'];\n };\n container: ViewStyle;\n };\n avatarWrapper: {\n container: ViewStyle;\n leftAlign: ViewStyle;\n rightAlign: ViewStyle;\n spacer: ViewStyle;\n };\n card: {\n authorName: TextStyle;\n authorNameContainer: ViewStyle;\n authorNameFooter: TextStyle;\n authorNameFooterContainer: ViewStyle;\n authorNameMask: ViewStyle;\n container: ViewStyle;\n cover: ImageStyle;\n footer: ViewStyle & {\n description: TextStyle;\n title: TextStyle;\n };\n noURI: ViewStyle;\n playButtonStyle: {\n durationTextStyle: TextStyle;\n roundedView: ViewStyle;\n videoContainer: ViewStyle;\n };\n playIcon: IconProps;\n };\n container: ViewStyle;\n content: {\n container: ViewStyle & {\n borderRadiusL: ViewStyle['borderBottomLeftRadius' | 'borderTopLeftRadius'];\n borderRadiusS: ViewStyle['borderBottomRightRadius' | 'borderTopRightRadius'];\n };\n containerInner: ViewStyle;\n deletedContainer: ViewStyle;\n deletedContainerInner: ViewStyle;\n deletedMetaText: TextStyle;\n deletedText: MarkdownStyle;\n errorContainer: ViewStyle;\n errorIcon: IconProps;\n errorIconContainer: ViewStyle;\n eyeIcon: IconProps;\n /**\n * Available options for styling text:\n * https://github.com/andangrd/react-native-markdown-package/blob/main/styles.js\n */\n markdown: MarkdownStyle;\n messageUser: TextStyle;\n metaContainer: ViewStyle;\n metaText: TextStyle;\n replyBorder: ViewStyle;\n replyContainer: ViewStyle;\n textContainer: ViewStyle & {\n onlyEmojiMarkdown: MarkdownStyle;\n };\n wrapper: ViewStyle;\n };\n file: {\n container: ViewStyle;\n details: ViewStyle;\n fileSize: TextStyle;\n icon: IconProps;\n title: TextStyle;\n };\n fileAttachmentGroup: {\n container: ViewStyle;\n };\n gallery: {\n galleryContainer: ViewStyle;\n galleryItemColumn: ViewStyle;\n gridHeight: number;\n gridWidth: number;\n image: ImageStyle;\n imageContainer: ViewStyle;\n maxHeight: number;\n maxWidth: number;\n minHeight: number;\n minWidth: number;\n moreImagesContainer: ViewStyle;\n moreImagesText: TextStyle;\n thumbnail: ViewStyle;\n };\n giphy: {\n buttonContainer: ViewStyle;\n cancel: TextStyle;\n container: ViewStyle;\n giphy: ImageStyle;\n giphyContainer: ViewStyle;\n giphyHeaderText: TextStyle;\n giphyHeaderTitle: TextStyle;\n giphyMask: ViewStyle;\n giphyMaskText: TextStyle;\n header: ViewStyle;\n selectionContainer: ViewStyle;\n send: TextStyle;\n shuffle: TextStyle;\n title: TextStyle;\n };\n loadingIndicator: {\n container: ViewStyle;\n roundedView: ViewStyle;\n };\n pinnedHeader: {\n container: ViewStyle;\n label: TextStyle;\n };\n reactionList: {\n container: ViewStyle;\n middleIcon: ViewStyle;\n radius: number;\n reactionBubble: ViewStyle;\n reactionBubbleBackground: ViewStyle;\n reactionSize: number;\n strokeSize: number;\n };\n replies: {\n avatar: ViewStyle;\n avatarContainerMultiple: ViewStyle;\n avatarContainerSingle: ViewStyle;\n container: ViewStyle;\n leftAvatarsContainer: ViewStyle;\n leftCurve: ViewStyle;\n messageRepliesText: TextStyle;\n rightAvatarsContainer: ViewStyle;\n rightCurve: ViewStyle;\n avatarSize?: number;\n };\n status: {\n checkAllIcon: IconProps;\n checkIcon: IconProps;\n readByCount: TextStyle;\n statusContainer: ViewStyle;\n timeIcon: IconProps;\n };\n targetedMessageContainer: ViewStyle;\n targetedMessageUnderlay: ViewStyle;\n videoThumbnail: {\n container: ViewStyle;\n roundedView: ViewStyle;\n };\n };\n overlay: {\n container: ViewStyle;\n messageActions: {\n actionContainer: ViewStyle;\n icon: ViewStyle;\n title: TextStyle;\n };\n padding: number;\n reactions: {\n avatarContainer: ViewStyle;\n avatarName: TextStyle;\n avatarSize: number;\n container: ViewStyle;\n flatListContainer: ViewStyle;\n radius: number;\n reactionBubble: ViewStyle;\n reactionBubbleBackground: ViewStyle;\n title: TextStyle;\n };\n reactionsList: {\n radius: number;\n reaction: ViewStyle;\n reactionList: ViewStyle;\n reactionSize: number;\n };\n };\n reply: {\n container: ViewStyle;\n fileAttachmentContainer: ViewStyle;\n imageAttachment: ImageStyle;\n markdownStyles: MarkdownStyle;\n messageContainer: ViewStyle;\n textContainer: ViewStyle;\n videoThumbnail: {\n container: ViewStyle;\n image: ImageStyle;\n };\n };\n screenPadding: number;\n spinner: ViewStyle;\n thread: {\n newThread: ViewStyle & {\n text: TextStyle;\n backgroundGradientStart?: string;\n backgroundGradientStop?: string;\n };\n };\n typingIndicator: {\n container: ViewStyle;\n text: TextStyle & {\n fontSize: TextStyle['fontSize'];\n };\n };\n};\n\nexport const defaultTheme: Theme = {\n attachmentPicker: {\n bottomSheetContentContainer: {},\n durationText: {},\n errorButtonText: {},\n errorContainer: {},\n errorText: {},\n image: {},\n imageOverlay: {},\n imageOverlaySelectedComponent: {\n check: {},\n },\n },\n attachmentSelectionBar: {\n container: {},\n icon: {},\n },\n avatar: {\n BASE_AVATAR_SIZE: 32,\n container: {},\n image: {\n borderRadius: 16,\n height: 32,\n width: 32,\n },\n presenceIndicator: {\n cx: 6,\n cy: 6,\n r: 5,\n strokeWidth: 2,\n },\n presenceIndicatorContainer: {},\n },\n channel: {\n selectChannel: {},\n },\n channelListFooterLoadingIndicator: {\n container: {},\n },\n channelListHeaderErrorIndicator: {\n container: {},\n errorText: {},\n },\n channelListLoadingIndicator: {\n container: {},\n },\n channelListMessenger: {\n flatList: {},\n flatListContent: {},\n },\n channelListSkeleton: {\n animationTime: 1800, // in milliseconds\n background: {},\n container: {},\n gradientStart: {\n stopOpacity: 0,\n },\n gradientStop: {\n stopOpacity: 0.5,\n },\n height: 64,\n },\n channelPreview: {\n checkAllIcon: {\n height: DEFAULT_STATUS_ICON_SIZE,\n width: DEFAULT_STATUS_ICON_SIZE,\n },\n checkIcon: {\n height: DEFAULT_STATUS_ICON_SIZE,\n width: DEFAULT_STATUS_ICON_SIZE,\n },\n container: {},\n contentContainer: {},\n date: {},\n message: {\n fontWeight: '400',\n },\n mutedStatus: {\n height: 20,\n iconStyle: {},\n width: 20,\n },\n row: {},\n title: {},\n unreadContainer: {},\n unreadText: {},\n },\n colors: {\n ...Colors,\n },\n dateHeader: {\n container: {},\n text: {},\n },\n emptyStateIndicator: {\n channelContainer: {},\n channelDetails: {},\n channelTitle: {},\n },\n groupAvatar: {\n container: {},\n image: {\n resizeMode: 'cover',\n },\n },\n iconBadge: {\n icon: {},\n iconInner: {},\n unreadCount: {},\n },\n iconSquare: {\n container: {},\n image: {},\n },\n imageGallery: {\n footer: {\n centerContainer: {},\n container: {},\n imageCountText: {},\n innerContainer: {},\n leftContainer: {},\n rightContainer: {},\n },\n grid: {\n container: {},\n contentContainer: {},\n gridAvatar: {},\n gridAvatarWrapper: {},\n gridImage: {},\n handle: {},\n handleText: {},\n overlay: {},\n },\n header: {\n centerContainer: {},\n container: {},\n dateText: {},\n innerContainer: {},\n leftContainer: {},\n rightContainer: {},\n usernameText: {},\n },\n videoControl: {\n durationTextStyle: {},\n roundedView: {},\n videoContainer: {},\n },\n },\n inlineDateSeparator: {\n container: {},\n text: {},\n },\n loadingDots: {\n container: {},\n loadingDot: {},\n spacing: 4,\n },\n loadingErrorIndicator: {\n container: {},\n errorText: {},\n retryText: {},\n },\n loadingIndicator: {\n container: {},\n loadingText: {},\n },\n messageInput: {\n attachButton: {},\n attachButtonContainer: {},\n attachmentSelectionBar: {},\n autoCompleteInputContainer: {},\n commandsButton: {},\n commandsButtonContainer: {},\n composerContainer: {},\n container: {},\n cooldownTimer: {\n container: {},\n text: {},\n },\n editingBoxContainer: {},\n editingBoxHeader: {},\n editingBoxHeaderTitle: {},\n editingStateHeader: {\n editingBoxHeader: {},\n editingBoxHeaderTitle: {},\n },\n fileUploadPreview: {\n audioAttachment: {\n progressControlView: {},\n progressDurationText: {},\n roundedView: {},\n },\n audioAttachmentFileContainer: {},\n dismiss: {},\n fileContainer: {},\n fileContentContainer: {},\n filenameText: {},\n fileSizeText: {},\n fileTextContainer: {},\n flatList: {},\n },\n giphyCommandInput: {\n giphyContainer: {},\n giphyText: {},\n },\n imageUploadPreview: {\n dismiss: {},\n dismissIconColor: '',\n flatList: {},\n itemContainer: {},\n upload: {},\n },\n inputBox: {},\n inputBoxContainer: {},\n moreOptionsButton: {},\n optionsContainer: {},\n replyContainer: {},\n sendButton: {},\n sendButtonContainer: {},\n sendMessageDisallowedIndicator: {\n container: {},\n text: {},\n },\n showThreadMessageInChannelButton: {\n check: {},\n checkBoxActive: {},\n checkBoxInactive: {},\n container: {},\n innerContainer: {},\n text: {},\n },\n suggestions: {\n command: {\n args: {},\n container: {},\n iconContainer: {},\n title: {},\n },\n container: {\n maxHeight: vh(25),\n },\n emoji: {\n container: {},\n text: {},\n },\n header: {\n container: {},\n title: {},\n },\n item: {},\n mention: {\n avatarSize: 40,\n column: {},\n container: {},\n name: {},\n tag: {},\n },\n },\n suggestionsListContainer: {\n container: {},\n flatlist: {},\n },\n uploadProgressIndicator: {\n container: {},\n overlay: {},\n },\n },\n messageList: {\n container: {},\n contentContainer: {},\n errorNotification: {},\n errorNotificationText: {},\n inlineUnreadIndicator: {\n container: {},\n text: {},\n },\n listContainer: {},\n messageContainer: {},\n messageSystem: {\n container: {},\n dateText: {},\n line: {},\n text: {},\n textContainer: {},\n },\n scrollToBottomButton: {\n container: {},\n touchable: {},\n unreadCountNotificationContainer: {},\n unreadCountNotificationText: {},\n wrapper: {},\n },\n typingIndicatorContainer: {},\n },\n messageSimple: {\n actions: {\n button: {},\n buttonText: {},\n container: {},\n },\n avatarWrapper: {\n container: {},\n leftAlign: {\n marginRight: 8,\n },\n rightAlign: {\n marginLeft: 8,\n },\n spacer: {\n height: 28,\n width: 32, // same as BASE_AVATAR_SIZE\n },\n },\n card: {\n authorName: {},\n authorNameContainer: {},\n authorNameFooter: {},\n authorNameFooterContainer: {},\n authorNameMask: {},\n container: {},\n cover: {},\n footer: {\n description: {},\n title: {\n fontWeight: '700',\n },\n },\n noURI: {\n borderLeftWidth: 2,\n paddingLeft: 8,\n },\n playButtonStyle: {\n durationTextStyle: {},\n roundedView: {},\n videoContainer: {},\n },\n playIcon: {\n height: 24,\n width: 24,\n },\n },\n container: {},\n content: {\n container: {\n borderRadiusL: 16,\n borderRadiusS: 0,\n },\n containerInner: {},\n deletedContainer: {},\n deletedContainerInner: {},\n deletedMetaText: {\n paddingHorizontal: 5,\n },\n deletedText: {\n em: {\n fontSize: 15,\n fontStyle: 'italic',\n fontWeight: '400',\n },\n },\n errorContainer: {\n paddingRight: 12,\n paddingTop: 0,\n },\n errorIcon: {\n height: 20,\n width: 20,\n },\n errorIconContainer: {\n bottom: -2,\n position: 'absolute',\n right: -12,\n },\n eyeIcon: {\n height: 16,\n width: 16,\n },\n markdown: {},\n messageUser: {\n fontSize: 12,\n fontWeight: '700',\n paddingRight: 6,\n },\n metaContainer: {\n flexDirection: 'row',\n marginTop: 4,\n },\n metaText: {\n fontSize: 12,\n },\n replyBorder: {},\n replyContainer: {},\n textContainer: {\n onlyEmojiMarkdown: { text: { fontSize: 50 } },\n },\n wrapper: {},\n },\n file: {\n container: {},\n details: {},\n fileSize: {},\n icon: {},\n title: {},\n },\n fileAttachmentGroup: {\n container: {},\n },\n gallery: {\n galleryContainer: {},\n galleryItemColumn: {},\n gridHeight: 195,\n gridWidth: 256,\n image: {},\n imageContainer: {},\n maxHeight: 300,\n maxWidth: 256,\n minHeight: 100,\n minWidth: 170,\n moreImagesContainer: {},\n moreImagesText: {},\n thumbnail: {},\n },\n giphy: {\n buttonContainer: {},\n cancel: {},\n container: {},\n giphy: {},\n giphyContainer: {},\n giphyHeaderText: {},\n giphyHeaderTitle: {},\n giphyMask: {},\n giphyMaskText: {},\n header: {},\n selectionContainer: {},\n send: {},\n shuffle: {},\n title: {},\n },\n loadingIndicator: {\n container: {},\n roundedView: {},\n },\n pinnedHeader: {\n container: {},\n label: {},\n },\n reactionList: {\n container: {},\n middleIcon: {},\n radius: 2, // not recommended to change this\n reactionBubble: {},\n reactionBubbleBackground: {},\n reactionSize: 24,\n strokeSize: 1, // not recommended to change this\n },\n replies: {\n avatar: {},\n avatarContainerMultiple: {},\n avatarContainerSingle: {},\n container: {},\n leftAvatarsContainer: {},\n leftCurve: {},\n messageRepliesText: {},\n rightAvatarsContainer: {},\n rightCurve: {},\n },\n status: {\n checkAllIcon: {\n height: DEFAULT_STATUS_ICON_SIZE,\n width: DEFAULT_STATUS_ICON_SIZE,\n },\n checkIcon: {\n height: DEFAULT_STATUS_ICON_SIZE,\n width: DEFAULT_STATUS_ICON_SIZE,\n },\n readByCount: {},\n statusContainer: {},\n timeIcon: {\n height: DEFAULT_STATUS_ICON_SIZE,\n width: DEFAULT_STATUS_ICON_SIZE,\n },\n },\n targetedMessageContainer: {},\n targetedMessageUnderlay: {},\n videoThumbnail: {\n container: {},\n roundedView: {},\n },\n },\n overlay: {\n container: {},\n messageActions: {\n actionContainer: {},\n icon: {},\n title: {},\n },\n padding: 8,\n reactions: {\n avatarContainer: {},\n avatarName: {},\n avatarSize: 64,\n container: {},\n flatListContainer: {},\n radius: 2,\n reactionBubble: {},\n reactionBubbleBackground: {},\n title: {},\n },\n reactionsList: {\n radius: 2.5,\n reaction: {},\n reactionList: {},\n reactionSize: 24,\n },\n },\n reply: {\n container: {},\n fileAttachmentContainer: {},\n imageAttachment: {},\n markdownStyles: {},\n messageContainer: {},\n textContainer: {},\n videoThumbnail: {\n container: {},\n image: {},\n },\n },\n screenPadding: 8,\n spinner: {},\n thread: {\n newThread: {\n text: {},\n },\n },\n typingIndicator: {\n container: {},\n text: {\n fontSize: 14,\n },\n },\n};\n"],"mappings":";;;;;;AAIA,IAAAA,MAAA,GAAAC,OAAA;AAEO,IAAMC,wBAAwB,GAAG,EAAE;AAACC,OAAA,CAAAD,wBAAA,GAAAA,wBAAA;AAEpC,IAAME,MAAM,GAAG;EACpBC,WAAW,EAAE,SAAS;EACtBC,YAAY,EAAE,SAAS;EACvBC,UAAU,EAAE,SAAS;EACrBC,eAAe,EAAE,SAAS;EAC1BC,iBAAiB,EAAE,SAAS;EAC5BC,KAAK,EAAE,SAAS;EAChBC,UAAU,EAAE,SAAS;EACrBC,MAAM,EAAE,WAAW;EACnBC,IAAI,EAAE,SAAS;EACfC,SAAS,EAAE,SAAS;EACpBC,cAAc,EAAE,SAAS;EACzBC,YAAY,EAAE,SAAS;EACvBC,eAAe,EAAE,SAAS;EAC1BC,oBAAoB,EAAE,WAAW;EACjCC,UAAU,EAAE,SAAS;EACrBC,YAAY,EAAE,WAAW;EACzBC,OAAO,EAAE,WAAW;EACpBC,WAAW,EAAE,WAAW;EACxBC,YAAY,EAAE,SAAS;EACvBC,YAAY,EAAE,SAAS;EACvBC,yBAAyB,EAAE,SAAS;EACpCC,WAAW,EAAE,aAAa;EAC1BC,KAAK,EAAE,SAAS;EAChBC,WAAW,EAAE,SAAS;EACtBC,UAAU,EAAE;AACd,CAAC;AAAC1B,OAAA,CAAAC,MAAA,GAAAA,MAAA;AAqhBK,IAAM0B,YAAmB,GAAG;EACjCC,gBAAgB,EAAE;IAChBC,2BAA2B,EAAE,CAAC,CAAC;IAC/BC,YAAY,EAAE,CAAC,CAAC;IAChBC,eAAe,EAAE,CAAC,CAAC;IACnBC,cAAc,EAAE,CAAC,CAAC;IAClBC,SAAS,EAAE,CAAC,CAAC;IACbC,KAAK,EAAE,CAAC,CAAC;IACTC,YAAY,EAAE,CAAC,CAAC;IAChBC,6BAA6B,EAAE;MAC7BC,KAAK,EAAE,CAAC;IACV;EACF,CAAC;EACDC,sBAAsB,EAAE;IACtBC,SAAS,EAAE,CAAC,CAAC;IACbC,IAAI,EAAE,CAAC;EACT,CAAC;EACDC,MAAM,EAAE;IACNC,gBAAgB,EAAE,EAAE;IACpBH,SAAS,EAAE,CAAC,CAAC;IACbL,KAAK,EAAE;MACLS,YAAY,EAAE,EAAE;MAChBC,MAAM,EAAE,EAAE;MACVC,KAAK,EAAE;IACT,CAAC;IACDC,iBAAiB,EAAE;MACjBC,EAAE,EAAE,CAAC;MACLC,EAAE,EAAE,CAAC;MACLC,CAAC,EAAE,CAAC;MACJC,WAAW,EAAE;IACf,CAAC;IACDC,0BAA0B,EAAE,CAAC;EAC/B,CAAC;EACDC,OAAO,EAAE;IACPC,aAAa,EAAE,CAAC;EAClB,CAAC;EACDC,iCAAiC,EAAE;IACjCf,SAAS,EAAE,CAAC;EACd,CAAC;EACDgB,+BAA+B,EAAE;IAC/BhB,SAAS,EAAE,CAAC,CAAC;IACbN,SAAS,EAAE,CAAC;EACd,CAAC;EACDuB,2BAA2B,EAAE;IAC3BjB,SAAS,EAAE,CAAC;EACd,CAAC;EACDkB,oBAAoB,EAAE;IACpBC,QAAQ,EAAE,CAAC,CAAC;IACZC,eAAe,EAAE,CAAC;EACpB,CAAC;EACDC,mBAAmB,EAAE;IACnBC,aAAa,EAAE,IAAI;IACnBC,UAAU,EAAE,CAAC,CAAC;IACdvB,SAAS,EAAE,CAAC,CAAC;IACbwB,aAAa,EAAE;MACbC,WAAW,EAAE;IACf,CAAC;IACDC,YAAY,EAAE;MACZD,WAAW,EAAE;IACf,CAAC;IACDpB,MAAM,EAAE;EACV,CAAC;EACDsB,cAAc,EAAE;IACdC,YAAY,EAAE;MACZvB,MAAM,EAAE7C,wBAAwB;MAChC8C,KAAK,EAAE9C;IACT,CAAC;IACDqE,SAAS,EAAE;MACTxB,MAAM,EAAE7C,wBAAwB;MAChC8C,KAAK,EAAE9C;IACT,CAAC;IACDwC,SAAS,EAAE,CAAC,CAAC;IACb8B,gBAAgB,EAAE,CAAC,CAAC;IACpBC,IAAI,EAAE,CAAC,CAAC;IACRC,OAAO,EAAE;MACPC,UAAU,EAAE;IACd,CAAC;IACDC,WAAW,EAAE;MACX7B,MAAM,EAAE,EAAE;MACV8B,SAAS,EAAE,CAAC,CAAC;MACb7B,KAAK,EAAE;IACT,CAAC;IACD8B,GAAG,EAAE,CAAC,CAAC;IACPC,KAAK,EAAE,CAAC,CAAC;IACTC,eAAe,EAAE,CAAC,CAAC;IACnBC,UAAU,EAAE,CAAC;EACf,CAAC;EACDC,MAAM,MAAAC,SAAA,iBACD/E,MAAM,CACV;EACDgF,UAAU,EAAE;IACV1C,SAAS,EAAE,CAAC,CAAC;IACb2C,IAAI,EAAE,CAAC;EACT,CAAC;EACDC,mBAAmB,EAAE;IACnBC,gBAAgB,EAAE,CAAC,CAAC;IACpBC,cAAc,EAAE,CAAC,CAAC;IAClBC,YAAY,EAAE,CAAC;EACjB,CAAC;EACDC,WAAW,EAAE;IACXhD,SAAS,EAAE,CAAC,CAAC;IACbL,KAAK,EAAE;MACLsD,UAAU,EAAE;IACd;EACF,CAAC;EACDC,SAAS,EAAE;IACTjD,IAAI,EAAE,CAAC,CAAC;IACRkD,SAAS,EAAE,CAAC,CAAC;IACbC,WAAW,EAAE,CAAC;EAChB,CAAC;EACDC,UAAU,EAAE;IACVrD,SAAS,EAAE,CAAC,CAAC;IACbL,KAAK,EAAE,CAAC;EACV,CAAC;EACD2D,YAAY,EAAE;IACZC,MAAM,EAAE;MACNC,eAAe,EAAE,CAAC,CAAC;MACnBxD,SAAS,EAAE,CAAC,CAAC;MACbyD,cAAc,EAAE,CAAC,CAAC;MAClBC,cAAc,EAAE,CAAC,CAAC;MAClBC,aAAa,EAAE,CAAC,CAAC;MACjBC,cAAc,EAAE,CAAC;IACnB,CAAC;IACDC,IAAI,EAAE;MACJ7D,SAAS,EAAE,CAAC,CAAC;MACb8B,gBAAgB,EAAE,CAAC,CAAC;MACpBgC,UAAU,EAAE,CAAC,CAAC;MACdC,iBAAiB,EAAE,CAAC,CAAC;MACrBC,SAAS,EAAE,CAAC,CAAC;MACbC,MAAM,EAAE,CAAC,CAAC;MACVC,UAAU,EAAE,CAAC,CAAC;MACdvF,OAAO,EAAE,CAAC;IACZ,CAAC;IACDwF,MAAM,EAAE;MACNX,eAAe,EAAE,CAAC,CAAC;MACnBxD,SAAS,EAAE,CAAC,CAAC;MACboE,QAAQ,EAAE,CAAC,CAAC;MACZV,cAAc,EAAE,CAAC,CAAC;MAClBC,aAAa,EAAE,CAAC,CAAC;MACjBC,cAAc,EAAE,CAAC,CAAC;MAClBS,YAAY,EAAE,CAAC;IACjB,CAAC;IACDC,YAAY,EAAE;MACZC,iBAAiB,EAAE,CAAC,CAAC;MACrBC,WAAW,EAAE,CAAC,CAAC;MACfC,cAAc,EAAE,CAAC;IACnB;EACF,CAAC;EACDC,mBAAmB,EAAE;IACnB1E,SAAS,EAAE,CAAC,CAAC;IACb2C,IAAI,EAAE,CAAC;EACT,CAAC;EACDgC,WAAW,EAAE;IACX3E,SAAS,EAAE,CAAC,CAAC;IACb4E,UAAU,EAAE,CAAC,CAAC;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,qBAAqB,EAAE;IACrB9E,SAAS,EAAE,CAAC,CAAC;IACbN,SAAS,EAAE,CAAC,CAAC;IACbqF,SAAS,EAAE,CAAC;EACd,CAAC;EACDC,gBAAgB,EAAE;IAChBhF,SAAS,EAAE,CAAC,CAAC;IACbiF,WAAW,EAAE,CAAC;EAChB,CAAC;EACDC,YAAY,EAAE;IACZC,YAAY,EAAE,CAAC,CAAC;IAChBC,qBAAqB,EAAE,CAAC,CAAC;IACzBrF,sBAAsB,EAAE,CAAC,CAAC;IAC1BsF,0BAA0B,EAAE,CAAC,CAAC;IAC9BC,cAAc,EAAE,CAAC,CAAC;IAClBC,uBAAuB,EAAE,CAAC,CAAC;IAC3BC,iBAAiB,EAAE,CAAC,CAAC;IACrBxF,SAAS,EAAE,CAAC,CAAC;IACbyF,aAAa,EAAE;MACbzF,SAAS,EAAE,CAAC,CAAC;MACb2C,IAAI,EAAE,CAAC;IACT,CAAC;IACD+C,mBAAmB,EAAE,CAAC,CAAC;IACvBC,gBAAgB,EAAE,CAAC,CAAC;IACpBC,qBAAqB,EAAE,CAAC,CAAC;IACzBC,kBAAkB,EAAE;MAClBF,gBAAgB,EAAE,CAAC,CAAC;MACpBC,qBAAqB,EAAE,CAAC;IAC1B,CAAC;IACDE,iBAAiB,EAAE;MACjBC,eAAe,EAAE;QACfC,mBAAmB,EAAE,CAAC,CAAC;QACvBC,oBAAoB,EAAE,CAAC,CAAC;QACxBzB,WAAW,EAAE,CAAC;MAChB,CAAC;MACD0B,4BAA4B,EAAE,CAAC,CAAC;MAChCC,OAAO,EAAE,CAAC,CAAC;MACXC,aAAa,EAAE,CAAC,CAAC;MACjBC,oBAAoB,EAAE,CAAC,CAAC;MACxBC,YAAY,EAAE,CAAC,CAAC;MAChBC,YAAY,EAAE,CAAC,CAAC;MAChBC,iBAAiB,EAAE,CAAC,CAAC;MACrBrF,QAAQ,EAAE,CAAC;IACb,CAAC;IACDsF,iBAAiB,EAAE;MACjBC,cAAc,EAAE,CAAC,CAAC;MAClBC,SAAS,EAAE,CAAC;IACd,CAAC;IACDC,kBAAkB,EAAE;MAClBT,OAAO,EAAE,CAAC,CAAC;MACXU,gBAAgB,EAAE,EAAE;MACpB1F,QAAQ,EAAE,CAAC,CAAC;MACZ2F,aAAa,EAAE,CAAC,CAAC;MACjBC,MAAM,EAAE,CAAC;IACX,CAAC;IACDC,QAAQ,EAAE,CAAC,CAAC;IACZC,iBAAiB,EAAE,CAAC,CAAC;IACrBC,iBAAiB,EAAE,CAAC,CAAC;IACrBC,gBAAgB,EAAE,CAAC,CAAC;IACpBC,cAAc,EAAE,CAAC,CAAC;IAClBC,UAAU,EAAE,CAAC,CAAC;IACdC,mBAAmB,EAAE,CAAC,CAAC;IACvBC,8BAA8B,EAAE;MAC9BvH,SAAS,EAAE,CAAC,CAAC;MACb2C,IAAI,EAAE,CAAC;IACT,CAAC;IACD6E,gCAAgC,EAAE;MAChC1H,KAAK,EAAE,CAAC,CAAC;MACT2H,cAAc,EAAE,CAAC,CAAC;MAClBC,gBAAgB,EAAE,CAAC,CAAC;MACpB1H,SAAS,EAAE,CAAC,CAAC;MACb0D,cAAc,EAAE,CAAC,CAAC;MAClBf,IAAI,EAAE,CAAC;IACT,CAAC;IACDgF,WAAW,EAAE;MACXC,OAAO,EAAE;QACPC,IAAI,EAAE,CAAC,CAAC;QACR7H,SAAS,EAAE,CAAC,CAAC;QACb8H,aAAa,EAAE,CAAC,CAAC;QACjBzF,KAAK,EAAE,CAAC;MACV,CAAC;MACDrC,SAAS,EAAE;QACT+H,SAAS,EAAE,IAAAC,SAAE,EAAC,EAAE;MAClB,CAAC;MACDC,KAAK,EAAE;QACLjI,SAAS,EAAE,CAAC,CAAC;QACb2C,IAAI,EAAE,CAAC;MACT,CAAC;MACDwB,MAAM,EAAE;QACNnE,SAAS,EAAE,CAAC,CAAC;QACbqC,KAAK,EAAE,CAAC;MACV,CAAC;MACD6F,IAAI,EAAE,CAAC,CAAC;MACRC,OAAO,EAAE;QACPC,UAAU,EAAE,EAAE;QACdC,MAAM,EAAE,CAAC,CAAC;QACVrI,SAAS,EAAE,CAAC,CAAC;QACbsI,IAAI,EAAE,CAAC,CAAC;QACRC,GAAG,EAAE,CAAC;MACR;IACF,CAAC;IACDC,wBAAwB,EAAE;MACxBxI,SAAS,EAAE,CAAC,CAAC;MACbyI,QAAQ,EAAE,CAAC;IACb,CAAC;IACDC,uBAAuB,EAAE;MACvB1I,SAAS,EAAE,CAAC,CAAC;MACbrB,OAAO,EAAE,CAAC;IACZ;EACF,CAAC;EACDgK,WAAW,EAAE;IACX3I,SAAS,EAAE,CAAC,CAAC;IACb8B,gBAAgB,EAAE,CAAC,CAAC;IACpB8G,iBAAiB,EAAE,CAAC,CAAC;IACrBC,qBAAqB,EAAE,CAAC,CAAC;IACzBC,qBAAqB,EAAE;MACrB9I,SAAS,EAAE,CAAC,CAAC;MACb2C,IAAI,EAAE,CAAC;IACT,CAAC;IACDoG,aAAa,EAAE,CAAC,CAAC;IACjBC,gBAAgB,EAAE,CAAC,CAAC;IACpBC,aAAa,EAAE;MACbjJ,SAAS,EAAE,CAAC,CAAC;MACboE,QAAQ,EAAE,CAAC,CAAC;MACZ8E,IAAI,EAAE,CAAC,CAAC;MACRvG,IAAI,EAAE,CAAC,CAAC;MACRwG,aAAa,EAAE,CAAC;IAClB,CAAC;IACDC,oBAAoB,EAAE;MACpBpJ,SAAS,EAAE,CAAC,CAAC;MACbqJ,SAAS,EAAE,CAAC,CAAC;MACbC,gCAAgC,EAAE,CAAC,CAAC;MACpCC,2BAA2B,EAAE,CAAC,CAAC;MAC/BC,OAAO,EAAE,CAAC;IACZ,CAAC;IACDC,wBAAwB,EAAE,CAAC;EAC7B,CAAC;EACDC,aAAa,EAAE;IACbC,OAAO,EAAE;MACPC,MAAM,EAAE,CAAC,CAAC;MACVC,UAAU,EAAE,CAAC,CAAC;MACd7J,SAAS,EAAE,CAAC;IACd,CAAC;IACD8J,aAAa,EAAE;MACb9J,SAAS,EAAE,CAAC,CAAC;MACb+J,SAAS,EAAE;QACTC,WAAW,EAAE;MACf,CAAC;MACDC,UAAU,EAAE;QACVC,UAAU,EAAE;MACd,CAAC;MACDC,MAAM,EAAE;QACN9J,MAAM,EAAE,EAAE;QACVC,KAAK,EAAE;MACT;IACF,CAAC;IACD8J,IAAI,EAAE;MACJC,UAAU,EAAE,CAAC,CAAC;MACdC,mBAAmB,EAAE,CAAC,CAAC;MACvBC,gBAAgB,EAAE,CAAC,CAAC;MACpBC,yBAAyB,EAAE,CAAC,CAAC;MAC7BC,cAAc,EAAE,CAAC,CAAC;MAClBzK,SAAS,EAAE,CAAC,CAAC;MACb0K,KAAK,EAAE,CAAC,CAAC;MACTnH,MAAM,EAAE;QACNoH,WAAW,EAAE,CAAC,CAAC;QACftI,KAAK,EAAE;UACLJ,UAAU,EAAE;QACd;MACF,CAAC;MACD2I,KAAK,EAAE;QACLC,eAAe,EAAE,CAAC;QAClBC,WAAW,EAAE;MACf,CAAC;MACDC,eAAe,EAAE;QACfxG,iBAAiB,EAAE,CAAC,CAAC;QACrBC,WAAW,EAAE,CAAC,CAAC;QACfC,cAAc,EAAE,CAAC;MACnB,CAAC;MACDuG,QAAQ,EAAE;QACR3K,MAAM,EAAE,EAAE;QACVC,KAAK,EAAE;MACT;IACF,CAAC;IACDN,SAAS,EAAE,CAAC,CAAC;IACbiL,OAAO,EAAE;MACPjL,SAAS,EAAE;QACTkL,aAAa,EAAE,EAAE;QACjBC,aAAa,EAAE;MACjB,CAAC;MACDC,cAAc,EAAE,CAAC,CAAC;MAClBC,gBAAgB,EAAE,CAAC,CAAC;MACpBC,qBAAqB,EAAE,CAAC,CAAC;MACzBC,eAAe,EAAE;QACfC,iBAAiB,EAAE;MACrB,CAAC;MACDC,WAAW,EAAE;QACXC,EAAE,EAAE;UACFC,QAAQ,EAAE,EAAE;UACZC,SAAS,EAAE,QAAQ;UACnB3J,UAAU,EAAE;QACd;MACF,CAAC;MACDxC,cAAc,EAAE;QACdoM,YAAY,EAAE,EAAE;QAChBC,UAAU,EAAE;MACd,CAAC;MACDC,SAAS,EAAE;QACT1L,MAAM,EAAE,EAAE;QACVC,KAAK,EAAE;MACT,CAAC;MACD0L,kBAAkB,EAAE;QAClBC,MAAM,EAAE,CAAC,CAAC;QACVC,QAAQ,EAAE,UAAU;QACpBC,KAAK,EAAE,CAAC;MACV,CAAC;MACDC,OAAO,EAAE;QACP/L,MAAM,EAAE,EAAE;QACVC,KAAK,EAAE;MACT,CAAC;MACD+L,QAAQ,EAAE,CAAC,CAAC;MACZC,WAAW,EAAE;QACXX,QAAQ,EAAE,EAAE;QACZ1J,UAAU,EAAE,KAAK;QACjB4J,YAAY,EAAE;MAChB,CAAC;MACDU,aAAa,EAAE;QACbC,aAAa,EAAE,KAAK;QACpBC,SAAS,EAAE;MACb,CAAC;MACDC,QAAQ,EAAE;QACRf,QAAQ,EAAE;MACZ,CAAC;MACDgB,WAAW,EAAE,CAAC,CAAC;MACfvF,cAAc,EAAE,CAAC,CAAC;MAClB+B,aAAa,EAAE;QACbyD,iBAAiB,EAAE;UAAEjK,IAAI,EAAE;YAAEgJ,QAAQ,EAAE;UAAG;QAAE;MAC9C,CAAC;MACDnC,OAAO,EAAE,CAAC;IACZ,CAAC;IACDqD,IAAI,EAAE;MACJ7M,SAAS,EAAE,CAAC,CAAC;MACb8M,OAAO,EAAE,CAAC,CAAC;MACXC,QAAQ,EAAE,CAAC,CAAC;MACZ9M,IAAI,EAAE,CAAC,CAAC;MACRoC,KAAK,EAAE,CAAC;IACV,CAAC;IACD2K,mBAAmB,EAAE;MACnBhN,SAAS,EAAE,CAAC;IACd,CAAC;IACDiN,OAAO,EAAE;MACPC,gBAAgB,EAAE,CAAC,CAAC;MACpBC,iBAAiB,EAAE,CAAC,CAAC;MACrBC,UAAU,EAAE,GAAG;MACfC,SAAS,EAAE,GAAG;MACd1N,KAAK,EAAE,CAAC,CAAC;MACT2N,cAAc,EAAE,CAAC,CAAC;MAClBvF,SAAS,EAAE,GAAG;MACdwF,QAAQ,EAAE,GAAG;MACbC,SAAS,EAAE,GAAG;MACdC,QAAQ,EAAE,GAAG;MACbC,mBAAmB,EAAE,CAAC,CAAC;MACvBC,cAAc,EAAE,CAAC,CAAC;MAClBC,SAAS,EAAE,CAAC;IACd,CAAC;IACDC,KAAK,EAAE;MACLC,eAAe,EAAE,CAAC,CAAC;MACnBC,MAAM,EAAE,CAAC,CAAC;MACV/N,SAAS,EAAE,CAAC,CAAC;MACb6N,KAAK,EAAE,CAAC,CAAC;MACTnH,cAAc,EAAE,CAAC,CAAC;MAClBsH,eAAe,EAAE,CAAC,CAAC;MACnBC,gBAAgB,EAAE,CAAC,CAAC;MACpBC,SAAS,EAAE,CAAC,CAAC;MACbC,aAAa,EAAE,CAAC,CAAC;MACjBhK,MAAM,EAAE,CAAC,CAAC;MACViK,kBAAkB,EAAE,CAAC,CAAC;MACtBC,IAAI,EAAE,CAAC,CAAC;MACRC,OAAO,EAAE,CAAC,CAAC;MACXjM,KAAK,EAAE,CAAC;IACV,CAAC;IACD2C,gBAAgB,EAAE;MAChBhF,SAAS,EAAE,CAAC,CAAC;MACbwE,WAAW,EAAE,CAAC;IAChB,CAAC;IACD+J,YAAY,EAAE;MACZvO,SAAS,EAAE,CAAC,CAAC;MACbwO,KAAK,EAAE,CAAC;IACV,CAAC;IACDC,YAAY,EAAE;MACZzO,SAAS,EAAE,CAAC,CAAC;MACb0O,UAAU,EAAE,CAAC,CAAC;MACdC,MAAM,EAAE,CAAC;MACTC,cAAc,EAAE,CAAC,CAAC;MAClBC,wBAAwB,EAAE,CAAC,CAAC;MAC5BC,YAAY,EAAE,EAAE;MAChBC,UAAU,EAAE;IACd,CAAC;IACDC,OAAO,EAAE;MACP9O,MAAM,EAAE,CAAC,CAAC;MACV+O,uBAAuB,EAAE,CAAC,CAAC;MAC3BC,qBAAqB,EAAE,CAAC,CAAC;MACzBlP,SAAS,EAAE,CAAC,CAAC;MACbmP,oBAAoB,EAAE,CAAC,CAAC;MACxBC,SAAS,EAAE,CAAC,CAAC;MACbC,kBAAkB,EAAE,CAAC,CAAC;MACtBC,qBAAqB,EAAE,CAAC,CAAC;MACzBC,UAAU,EAAE,CAAC;IACf,CAAC;IACDC,MAAM,EAAE;MACN5N,YAAY,EAAE;QACZvB,MAAM,EAAE7C,wBAAwB;QAChC8C,KAAK,EAAE9C;MACT,CAAC;MACDqE,SAAS,EAAE;QACTxB,MAAM,EAAE7C,wBAAwB;QAChC8C,KAAK,EAAE9C;MACT,CAAC;MACDiS,WAAW,EAAE,CAAC,CAAC;MACfC,eAAe,EAAE,CAAC,CAAC;MACnBC,QAAQ,EAAE;QACRtP,MAAM,EAAE7C,wBAAwB;QAChC8C,KAAK,EAAE9C;MACT;IACF,CAAC;IACDoS,wBAAwB,EAAE,CAAC,CAAC;IAC5BC,uBAAuB,EAAE,CAAC,CAAC;IAC3BC,cAAc,EAAE;MACd9P,SAAS,EAAE,CAAC,CAAC;MACbwE,WAAW,EAAE,CAAC;IAChB;EACF,CAAC;EACD7F,OAAO,EAAE;IACPqB,SAAS,EAAE,CAAC,CAAC;IACb+P,cAAc,EAAE;MACdC,eAAe,EAAE,CAAC,CAAC;MACnB/P,IAAI,EAAE,CAAC,CAAC;MACRoC,KAAK,EAAE,CAAC;IACV,CAAC;IACD4N,OAAO,EAAE,CAAC;IACVC,SAAS,EAAE;MACTC,eAAe,EAAE,CAAC,CAAC;MACnBC,UAAU,EAAE,CAAC,CAAC;MACdhI,UAAU,EAAE,EAAE;MACdpI,SAAS,EAAE,CAAC,CAAC;MACbqQ,iBAAiB,EAAE,CAAC,CAAC;MACrB1B,MAAM,EAAE,CAAC;MACTC,cAAc,EAAE,CAAC,CAAC;MAClBC,wBAAwB,EAAE,CAAC,CAAC;MAC5BxM,KAAK,EAAE,CAAC;IACV,CAAC;IACDiO,aAAa,EAAE;MACb3B,MAAM,EAAE,GAAG;MACX4B,QAAQ,EAAE,CAAC,CAAC;MACZ9B,YAAY,EAAE,CAAC,CAAC;MAChBK,YAAY,EAAE;IAChB;EACF,CAAC;EACD0B,KAAK,EAAE;IACLxQ,SAAS,EAAE,CAAC,CAAC;IACbyQ,uBAAuB,EAAE,CAAC,CAAC;IAC3BC,eAAe,EAAE,CAAC,CAAC;IACnBC,cAAc,EAAE,CAAC,CAAC;IAClB3H,gBAAgB,EAAE,CAAC,CAAC;IACpBG,aAAa,EAAE,CAAC,CAAC;IACjB2G,cAAc,EAAE;MACd9P,SAAS,EAAE,CAAC,CAAC;MACbL,KAAK,EAAE,CAAC;IACV;EACF,CAAC;EACDiR,aAAa,EAAE,CAAC;EAChBC,OAAO,EAAE,CAAC,CAAC;EACXC,MAAM,EAAE;IACNC,SAAS,EAAE;MACTpO,IAAI,EAAE,CAAC;IACT;EACF,CAAC;EACDqO,eAAe,EAAE;IACfhR,SAAS,EAAE,CAAC,CAAC;IACb2C,IAAI,EAAE;MACJgJ,QAAQ,EAAE;IACZ;EACF;AACF,CAAC;AAAClO,OAAA,CAAA2B,YAAA,GAAAA,YAAA"}
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "5.17.1"
2
+ "version": "5.18.0-beta.1"
3
3
  }
@@ -63,9 +63,6 @@ var styles = _reactNative.StyleSheet.create({
63
63
  flex: 1,
64
64
  width: '100%'
65
65
  },
66
- messagePadding: {
67
- paddingHorizontal: 8
68
- },
69
66
  stickyHeader: {
70
67
  position: 'absolute',
71
68
  top: 0
@@ -77,7 +74,7 @@ var InvertedCellRendererComponent = function InvertedCellRendererComponent(props
77
74
  __self: _this,
78
75
  __source: {
79
76
  fileName: _jsxFileName,
80
- lineNumber: 97,
77
+ lineNumber: 94,
81
78
  columnNumber: 3
82
79
  }
83
80
  }));
@@ -152,7 +149,9 @@ var MessageListWithContext = function MessageListWithContext(props) {
152
149
  _theme$messageList = theme.messageList,
153
150
  container = _theme$messageList.container,
154
151
  contentContainer = _theme$messageList.contentContainer,
155
- listContainer = _theme$messageList.listContainer;
152
+ listContainer = _theme$messageList.listContainer,
153
+ messageContainer = _theme$messageList.messageContainer,
154
+ screenPadding = theme.screenPadding;
156
155
  var modifiedTheme = (0, _react.useMemo)(function () {
157
156
  return (0, _ThemeContext.mergeThemes)({
158
157
  style: myMessageTheme,
@@ -315,23 +314,25 @@ var MessageListWithContext = function MessageListWithContext(props) {
315
314
  __self: _this,
316
315
  __source: {
317
316
  fileName: _jsxFileName,
318
- lineNumber: 564,
317
+ lineNumber: 562,
319
318
  columnNumber: 11
320
319
  }
321
320
  }, _react["default"].createElement(MessageSystem, {
322
321
  message: message,
323
- style: styles.messagePadding,
322
+ style: [{
323
+ paddingHorizontal: screenPadding
324
+ }, messageContainer],
324
325
  __self: _this,
325
326
  __source: {
326
327
  fileName: _jsxFileName,
327
- lineNumber: 565,
328
+ lineNumber: 563,
328
329
  columnNumber: 13
329
330
  }
330
331
  })), insertInlineUnreadIndicator && _react["default"].createElement(InlineUnreadIndicator, {
331
332
  __self: _this,
332
333
  __source: {
333
334
  fileName: _jsxFileName,
334
- lineNumber: 567,
335
+ lineNumber: 568,
335
336
  columnNumber: 43
336
337
  }
337
338
  }));
@@ -342,7 +343,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
342
343
  __self: _this,
343
344
  __source: {
344
345
  fileName: _jsxFileName,
345
- lineNumber: 577,
346
+ lineNumber: 578,
346
347
  columnNumber: 36
347
348
  }
348
349
  }), _react["default"].createElement(_ThemeContext.ThemeProvider, {
@@ -350,7 +351,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
350
351
  __self: _this,
351
352
  __source: {
352
353
  fileName: _jsxFileName,
353
- lineNumber: 578,
354
+ lineNumber: 579,
354
355
  columnNumber: 9
355
356
  }
356
357
  }, _react["default"].createElement(_reactNative.View, {
@@ -358,7 +359,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
358
359
  __self: _this,
359
360
  __source: {
360
361
  fileName: _jsxFileName,
361
- lineNumber: 579,
362
+ lineNumber: 580,
362
363
  columnNumber: 11
363
364
  }
364
365
  }, _react["default"].createElement(Message, {
@@ -369,12 +370,14 @@ var MessageListWithContext = function MessageListWithContext(props) {
369
370
  message: message,
370
371
  onThreadSelect: onThreadSelect,
371
372
  showUnreadUnderlay: showUnreadUnderlay,
372
- style: styles.messagePadding,
373
+ style: [{
374
+ paddingHorizontal: screenPadding
375
+ }, messageContainer],
373
376
  threadList: threadList,
374
377
  __self: _this,
375
378
  __source: {
376
379
  fileName: _jsxFileName,
377
- lineNumber: 580,
380
+ lineNumber: 581,
378
381
  columnNumber: 13
379
382
  }
380
383
  }))), !shouldApplyAndroidWorkaround && (0, _useMessageList.isMessageWithStylesReadByAndDateSeparator)(message) && message.dateSeparator && _react["default"].createElement(InlineDateSeparator, {
@@ -382,14 +385,14 @@ var MessageListWithContext = function MessageListWithContext(props) {
382
385
  __self: _this,
383
386
  __source: {
384
387
  fileName: _jsxFileName,
385
- lineNumber: 597,
388
+ lineNumber: 598,
386
389
  columnNumber: 36
387
390
  }
388
391
  }), insertInlineUnreadIndicator && _react["default"].createElement(InlineUnreadIndicator, {
389
392
  __self: _this,
390
393
  __source: {
391
394
  fileName: _jsxFileName,
392
- lineNumber: 599,
395
+ lineNumber: 600,
393
396
  columnNumber: 41
394
397
  }
395
398
  })) : _react["default"].createElement(_react["default"].Fragment, null, _react["default"].createElement(_reactNative.View, {
@@ -397,7 +400,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
397
400
  __self: _this,
398
401
  __source: {
399
402
  fileName: _jsxFileName,
400
- lineNumber: 603,
403
+ lineNumber: 604,
401
404
  columnNumber: 9
402
405
  }
403
406
  }, shouldApplyAndroidWorkaround && (0, _useMessageList.isMessageWithStylesReadByAndDateSeparator)(message) && message.dateSeparator && _react["default"].createElement(InlineDateSeparator, {
@@ -405,7 +408,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
405
408
  __self: _this,
406
409
  __source: {
407
410
  fileName: _jsxFileName,
408
- lineNumber: 606,
411
+ lineNumber: 607,
409
412
  columnNumber: 38
410
413
  }
411
414
  }), _react["default"].createElement(Message, {
@@ -416,12 +419,14 @@ var MessageListWithContext = function MessageListWithContext(props) {
416
419
  message: message,
417
420
  onThreadSelect: onThreadSelect,
418
421
  showUnreadUnderlay: showUnreadUnderlay,
419
- style: styles.messagePadding,
422
+ style: [{
423
+ paddingHorizontal: screenPadding
424
+ }, messageContainer],
420
425
  threadList: threadList,
421
426
  __self: _this,
422
427
  __source: {
423
428
  fileName: _jsxFileName,
424
- lineNumber: 607,
429
+ lineNumber: 608,
425
430
  columnNumber: 11
426
431
  }
427
432
  })), !shouldApplyAndroidWorkaround && (0, _useMessageList.isMessageWithStylesReadByAndDateSeparator)(message) && message.dateSeparator && _react["default"].createElement(InlineDateSeparator, {
@@ -429,14 +434,14 @@ var MessageListWithContext = function MessageListWithContext(props) {
429
434
  __self: _this,
430
435
  __source: {
431
436
  fileName: _jsxFileName,
432
- lineNumber: 627,
437
+ lineNumber: 628,
433
438
  columnNumber: 36
434
439
  }
435
440
  }), insertInlineUnreadIndicator && _react["default"].createElement(InlineUnreadIndicator, {
436
441
  __self: _this,
437
442
  __source: {
438
443
  fileName: _jsxFileName,
439
- lineNumber: 629,
444
+ lineNumber: 630,
440
445
  columnNumber: 41
441
446
  }
442
447
  }));
@@ -744,7 +749,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
744
749
  __self: _this,
745
750
  __source: {
746
751
  fileName: _jsxFileName,
747
- lineNumber: 1006,
752
+ lineNumber: 1007,
748
753
  columnNumber: 7
749
754
  }
750
755
  }, _react["default"].createElement(EmptyStateIndicator, {
@@ -752,7 +757,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
752
757
  __self: _this,
753
758
  __source: {
754
759
  fileName: _jsxFileName,
755
- lineNumber: 1010,
760
+ lineNumber: 1011,
756
761
  columnNumber: 9
757
762
  }
758
763
  }));
@@ -763,14 +768,14 @@ var MessageListWithContext = function MessageListWithContext(props) {
763
768
  __self: _this,
764
769
  __source: {
765
770
  fileName: _jsxFileName,
766
- lineNumber: 1018,
771
+ lineNumber: 1019,
767
772
  columnNumber: 7
768
773
  }
769
774
  }, _react["default"].createElement(FooterComponent, {
770
775
  __self: _this,
771
776
  __source: {
772
777
  fileName: _jsxFileName,
773
- lineNumber: 1019,
778
+ lineNumber: 1020,
774
779
  columnNumber: 9
775
780
  }
776
781
  }));
@@ -781,14 +786,14 @@ var MessageListWithContext = function MessageListWithContext(props) {
781
786
  __self: _this,
782
787
  __source: {
783
788
  fileName: _jsxFileName,
784
- lineNumber: 1027,
789
+ lineNumber: 1028,
785
790
  columnNumber: 7
786
791
  }
787
792
  }, _react["default"].createElement(HeaderComponent, {
788
793
  __self: _this,
789
794
  __source: {
790
795
  fileName: _jsxFileName,
791
- lineNumber: 1028,
796
+ lineNumber: 1029,
792
797
  columnNumber: 9
793
798
  }
794
799
  }));
@@ -800,7 +805,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
800
805
  __self: _this,
801
806
  __source: {
802
807
  fileName: _jsxFileName,
803
- lineNumber: 1038,
808
+ lineNumber: 1039,
804
809
  columnNumber: 7
805
810
  }
806
811
  }, _react["default"].createElement(LoadingIndicator, {
@@ -808,7 +813,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
808
813
  __self: _this,
809
814
  __source: {
810
815
  fileName: _jsxFileName,
811
- lineNumber: 1039,
816
+ lineNumber: 1040,
812
817
  columnNumber: 9
813
818
  }
814
819
  }));
@@ -820,7 +825,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
820
825
  __self: _this,
821
826
  __source: {
822
827
  fileName: _jsxFileName,
823
- lineNumber: 1046,
828
+ lineNumber: 1047,
824
829
  columnNumber: 30
825
830
  }
826
831
  });
@@ -829,7 +834,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
829
834
  __self: _this,
830
835
  __source: {
831
836
  fileName: _jsxFileName,
832
- lineNumber: 1047,
837
+ lineNumber: 1048,
833
838
  columnNumber: 46
834
839
  }
835
840
  });
@@ -850,7 +855,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
850
855
  __self: _this,
851
856
  __source: {
852
857
  fileName: _jsxFileName,
853
- lineNumber: 1063,
858
+ lineNumber: 1064,
854
859
  columnNumber: 5
855
860
  }
856
861
  }, _react["default"].createElement(FlatList, (0, _extends2["default"])({
@@ -886,7 +891,7 @@ var MessageListWithContext = function MessageListWithContext(props) {
886
891
  __self: _this,
887
892
  __source: {
888
893
  fileName: _jsxFileName,
889
- lineNumber: 1067,
894
+ lineNumber: 1068,
890
895
  columnNumber: 7
891
896
  }
892
897
  })), !loading && _react["default"].createElement(_react["default"].Fragment, null, _react["default"].createElement(_reactNative.View, {
@@ -894,28 +899,28 @@ var MessageListWithContext = function MessageListWithContext(props) {
894
899
  __self: _this,
895
900
  __source: {
896
901
  fileName: _jsxFileName,
897
- lineNumber: 1112,
902
+ lineNumber: 1113,
898
903
  columnNumber: 11
899
904
  }
900
905
  }, _react["default"].createElement(StickyHeaderComponent, {
901
906
  __self: _this,
902
907
  __source: {
903
908
  fileName: _jsxFileName,
904
- lineNumber: 1113,
909
+ lineNumber: 1114,
905
910
  columnNumber: 13
906
911
  }
907
912
  })), !disableTypingIndicator && TypingIndicator && _react["default"].createElement(TypingIndicatorContainer, {
908
913
  __self: _this,
909
914
  __source: {
910
915
  fileName: _jsxFileName,
911
- lineNumber: 1116,
916
+ lineNumber: 1117,
912
917
  columnNumber: 13
913
918
  }
914
919
  }, _react["default"].createElement(TypingIndicator, {
915
920
  __self: _this,
916
921
  __source: {
917
922
  fileName: _jsxFileName,
918
- lineNumber: 1117,
923
+ lineNumber: 1118,
919
924
  columnNumber: 15
920
925
  }
921
926
  })), _react["default"].createElement(ScrollToBottomButton, {
@@ -925,14 +930,14 @@ var MessageListWithContext = function MessageListWithContext(props) {
925
930
  __self: _this,
926
931
  __source: {
927
932
  fileName: _jsxFileName,
928
- lineNumber: 1120,
933
+ lineNumber: 1121,
929
934
  columnNumber: 11
930
935
  }
931
936
  })), _react["default"].createElement(NetworkDownIndicator, {
932
937
  __self: _this,
933
938
  __source: {
934
939
  fileName: _jsxFileName,
935
- lineNumber: 1127,
940
+ lineNumber: 1128,
936
941
  columnNumber: 7
937
942
  }
938
943
  }));
@@ -1039,7 +1044,7 @@ var MessageList = function MessageList(props) {
1039
1044
  __self: _this,
1040
1045
  __source: {
1041
1046
  fileName: _jsxFileName,
1042
- lineNumber: 1185,
1047
+ lineNumber: 1186,
1043
1048
  columnNumber: 5
1044
1049
  }
1045
1050
  }));