sceyt-chat-react-uikit 1.8.0-beta.4 → 1.8.0-beta.6
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/components/Channel/index.d.ts +0 -2
- package/components/ChannelDetails/Actions/index.d.ts +1 -2
- package/components/ChannelDetails/DetailsTab/Files/index.d.ts +0 -1
- package/components/ChannelDetails/DetailsTab/Members/change-member-role/index.d.ts +1 -2
- package/components/ChannelDetails/DetailsTab/Members/index.d.ts +1 -2
- package/components/ChannelDetails/DetailsTab/index.d.ts +1 -2
- package/components/ChannelDetails/EditChannel/index.d.ts +1 -2
- package/components/ChannelList/ChannelSearch/index.d.ts +0 -1
- package/components/ChannelList/ContactItem/index.d.ts +0 -2
- package/components/ChannelList/CreateChannelButton/index.d.ts +0 -1
- package/components/Message/Message.types.d.ts +0 -1
- package/components/Message/MessageBody/index.d.ts +1 -2
- package/components/Message/RepliedMessage/index.d.ts +0 -1
- package/components/Message/index.d.ts +1 -1
- package/components/MessageDivider/index.d.ts +1 -2
- package/components/VideoPreview/index.d.ts +0 -1
- package/index.js +1195 -388
- package/index.modern.js +1195 -388
- package/package.json +1 -1
|
@@ -4,7 +4,6 @@ interface IChannelProps {
|
|
|
4
4
|
channel: IChannel;
|
|
5
5
|
showAvatar?: boolean;
|
|
6
6
|
avatarBorderRadius?: string;
|
|
7
|
-
theme?: string;
|
|
8
7
|
notificationsIsMutedIcon?: JSX.Element;
|
|
9
8
|
notificationsIsMutedIconColor?: string;
|
|
10
9
|
selectedChannelLeftBorder?: string;
|
|
@@ -65,7 +64,6 @@ export declare const ChannelInfo: import("styled-components").StyledComponent<"d
|
|
|
65
64
|
statusWidth: number;
|
|
66
65
|
avatar?: boolean | undefined;
|
|
67
66
|
isMuted?: boolean | undefined;
|
|
68
|
-
theme?: string | undefined;
|
|
69
67
|
uppercase?: boolean | undefined;
|
|
70
68
|
subjectFontSize?: string | undefined;
|
|
71
69
|
subjectLineHeight?: string | undefined;
|
|
@@ -3,7 +3,6 @@ import { IChannel, MuteTime } from '../../../types';
|
|
|
3
3
|
interface IProps {
|
|
4
4
|
setActionsHeight?: (height: number) => void;
|
|
5
5
|
channel: IChannel;
|
|
6
|
-
theme?: string;
|
|
7
6
|
actionMenuOpen?: () => void;
|
|
8
7
|
menuIsOpen?: boolean;
|
|
9
8
|
toggleable: boolean;
|
|
@@ -73,5 +72,5 @@ interface IProps {
|
|
|
73
72
|
commonGroupsTextColor?: string;
|
|
74
73
|
showGroupsInCommon?: boolean;
|
|
75
74
|
}
|
|
76
|
-
declare const Actions: ({ setActionsHeight, channel, actionMenuOpen,
|
|
75
|
+
declare const Actions: ({ setActionsHeight, channel, actionMenuOpen, menuIsOpen, toggleable, showMuteUnmuteNotifications, muteUnmuteNotificationsOrder, muteNotificationIcon, unmuteNotificationIcon, muteNotificationIconColor, unmuteNotificationIconColor, muteUnmuteNotificationTextColor, timeOptionsToMuteNotifications, showStarredMessages, starredMessagesOrder, staredMessagesIcon, staredMessagesIconColor, staredMessagesTextColor, showPinChannel, pinChannelOrder, pinChannelIcon, unpinChannelIcon, pinChannelIconColor, pinChannelTextColor, showMarkAsReadUnread, markAsReadUnreadOrder, markAsReadIcon, markAsUnreadIcon, markAsReadIconColor, markAsUnreadIconColor, markAsReadUnreadTextColor, showLeaveChannel, leaveChannelOrder, leaveChannelIcon, leaveChannelIconColor, leaveChannelTextColor, showReportChannel, reportChannelIcon, reportChannelOrder, reportChannelIconColor, reportChannelTextColor, showDeleteChannel, deleteChannelIcon, deleteChannelIconColor, deleteChannelTextColor, deleteChannelOrder, showBlockAndLeaveChannel, showBlockUser, blockAndLeaveChannelIcon, unblockUserIcon, blockAndLeaveChannelIconColor, blockAndLeaveChannelTextColor, unblockUserTextColor, showClearHistory, clearHistoryOrder, clearHistoryIcon, clearHistoryTextColor, deleteAllMessagesOrder, deleteAllMessagesIcon, deleteAllMessagesTextColor, actionItemsFontSize, borderColor, commonGroupsOrder, commonGroupsIcon, commonGroupsIconColor, commonGroupsTextColor, showGroupsInCommon }: IProps) => React.JSX.Element;
|
|
77
76
|
export default Actions;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IMember } from '../../../../../types';
|
|
3
3
|
interface IProps {
|
|
4
|
-
theme: string;
|
|
5
4
|
channelId: string;
|
|
6
5
|
member: IMember;
|
|
7
6
|
handleClosePopup: () => void;
|
|
8
7
|
}
|
|
9
|
-
declare const ChangeMemberRole: ({
|
|
8
|
+
declare const ChangeMemberRole: ({ channelId, member, handleClosePopup }: IProps) => React.JSX.Element;
|
|
10
9
|
export default ChangeMemberRole;
|
|
@@ -3,7 +3,6 @@ import { IChannel, IMember } from '../../../../types';
|
|
|
3
3
|
interface IProps {
|
|
4
4
|
channel: IChannel;
|
|
5
5
|
members: IMember[];
|
|
6
|
-
theme: string;
|
|
7
6
|
checkActionPermission: (permission: string) => boolean;
|
|
8
7
|
showChangeMemberRole?: boolean;
|
|
9
8
|
showMakeMemberAdmin?: boolean;
|
|
@@ -17,5 +16,5 @@ interface IProps {
|
|
|
17
16
|
memberPresenceFontSize?: string;
|
|
18
17
|
QRCodeIcon?: JSX.Element;
|
|
19
18
|
}
|
|
20
|
-
declare const Members: ({ channel, members,
|
|
19
|
+
declare const Members: ({ channel, members, checkActionPermission, showChangeMemberRole, showMakeMemberAdmin, showKickMember, showKickAndBlockMember, hoverBackgroundColor, addMemberFontSize, addMemberIcon, memberNameFontSize, memberAvatarSize, memberPresenceFontSize, QRCodeIcon }: IProps) => React.JSX.Element;
|
|
21
20
|
export default Members;
|
|
@@ -3,7 +3,6 @@ import { IChannel } from '../../../types';
|
|
|
3
3
|
interface IProps {
|
|
4
4
|
channel: IChannel;
|
|
5
5
|
activeTab: string;
|
|
6
|
-
theme: string;
|
|
7
6
|
setActiveTab: (activeTab: string) => void;
|
|
8
7
|
checkActionPermission: (permission: string) => boolean;
|
|
9
8
|
linkPreviewIcon?: JSX.Element;
|
|
@@ -45,5 +44,5 @@ interface IProps {
|
|
|
45
44
|
onTabChange?: () => void;
|
|
46
45
|
QRCodeIcon?: JSX.Element;
|
|
47
46
|
}
|
|
48
|
-
declare const DetailsTab: ({ channel,
|
|
47
|
+
declare const DetailsTab: ({ channel, activeTab, checkActionPermission, setActiveTab, linkPreviewIcon, linkPreviewHoverIcon, linkPreviewTitleColor, linkPreviewColor, linkPreviewHoverBackgroundColor, voicePreviewPlayIcon, voicePreviewPlayHoverIcon, voicePreviewPauseIcon, voicePreviewPauseHoverIcon, voicePreviewTitleColor, voicePreviewDateAndTimeColor, voicePreviewHoverBackgroundColor, filePreviewIcon, filePreviewHoverIcon, filePreviewTitleColor, filePreviewSizeColor, filePreviewHoverBackgroundColor, filePreviewDownloadIcon, fileNameFontSize, fileNameLineHeight, fileSizeFontSize, fileSizeLineHeight, showChangeMemberRole, showKickMember, showKickAndBlockMember, showMakeMemberAdmin, memberHoverBackgroundColor, addMemberFontSize, addMemberIcon, memberNameFontSize, memberAvatarSize, memberPresenceFontSize, borderColor, tabItemsFontSize, tabItemsLineHeight, tabItemsMinWidth, onTabChange, QRCodeIcon }: IProps) => React.JSX.Element;
|
|
49
48
|
export default DetailsTab;
|
|
@@ -2,12 +2,11 @@ import React from 'react';
|
|
|
2
2
|
import { IChannel } from '../../../types';
|
|
3
3
|
interface IProps {
|
|
4
4
|
channel: IChannel;
|
|
5
|
-
theme?: string;
|
|
6
5
|
handleToggleEditMode: (state: boolean) => void;
|
|
7
6
|
editChannelSaveButtonBackgroundColor?: string;
|
|
8
7
|
editChannelSaveButtonTextColor?: string;
|
|
9
8
|
editChannelCancelButtonBackgroundColor?: string;
|
|
10
9
|
editChannelCancelButtonTextColor?: string;
|
|
11
10
|
}
|
|
12
|
-
declare const EditChannel: ({ channel,
|
|
11
|
+
declare const EditChannel: ({ channel, handleToggleEditMode, editChannelSaveButtonBackgroundColor, editChannelSaveButtonTextColor, editChannelCancelButtonBackgroundColor, editChannelCancelButtonTextColor }: IProps) => React.JSX.Element;
|
|
13
12
|
export default EditChannel;
|
|
@@ -4,7 +4,6 @@ interface IChannelProps {
|
|
|
4
4
|
contact: IContact;
|
|
5
5
|
showAvatar?: boolean;
|
|
6
6
|
avatarBorderRadius?: string;
|
|
7
|
-
theme?: string;
|
|
8
7
|
notificationsIsMutedIcon?: JSX.Element;
|
|
9
8
|
notificationsIsMutedIconColor?: string;
|
|
10
9
|
selectedChannelLeftBorder?: string;
|
|
@@ -29,7 +28,6 @@ export default ContactItem;
|
|
|
29
28
|
export declare const ChannelInfo: import("styled-components").StyledComponent<"div", any, {
|
|
30
29
|
textColor: string;
|
|
31
30
|
avatar?: boolean | undefined;
|
|
32
|
-
theme?: string | undefined;
|
|
33
31
|
subjectFontSize?: string | undefined;
|
|
34
32
|
subjectLineHeight?: string | undefined;
|
|
35
33
|
subjectColor?: string | undefined;
|
|
@@ -197,7 +197,6 @@ export interface IMessageProps {
|
|
|
197
197
|
openedMessageMenuId?: string;
|
|
198
198
|
tabIsActive?: boolean;
|
|
199
199
|
connectionStatus: string;
|
|
200
|
-
theme: string;
|
|
201
200
|
messageTextFontSize?: string;
|
|
202
201
|
messageTextLineHeight?: string;
|
|
203
202
|
messageTimeColorOnAttachment?: string;
|
|
@@ -106,7 +106,6 @@ interface IMessageBodyProps {
|
|
|
106
106
|
};
|
|
107
107
|
openedMessageMenuId?: string;
|
|
108
108
|
connectionStatus: string;
|
|
109
|
-
theme: string;
|
|
110
109
|
messageTextFontSize?: string;
|
|
111
110
|
messageTextLineHeight?: string;
|
|
112
111
|
messageActionsShow?: boolean;
|
|
@@ -141,5 +140,5 @@ interface IMessageBodyProps {
|
|
|
141
140
|
onInviteLinkClick?: (key: string) => void;
|
|
142
141
|
collapsedCharacterLimit?: number;
|
|
143
142
|
}
|
|
144
|
-
declare const _default: React.MemoExoticComponent<({ message, channel, MessageActionsMenu, handleScrollToRepliedMessage, handleMediaItemClick, isPendingMessage, prevMessage, nextMessage, isUnreadMessage, unreadMessageId, isThreadMessage, fontFamily, ownMessageOnRightSide, showSenderNameOnDirectChannel, showSenderNameOnGroupChannel, showSenderNameOnOwnMessages, messageStatusAndTimePosition, messageStatusDisplayingType, outgoingMessageStyles, incomingMessageStyles, ownRepliedMessageBackground, incomingRepliedMessageBackground, showMessageStatus, showMessageTimeAndStatusOnlyOnHover, showMessageTime, showMessageStatusForEachMessage, showMessageTimeForEachMessage, messageReaction, editMessage, copyMessage, replyMessage, replyMessageInThread, deleteMessage, selectMessage, showInfoMessage, allowEditDeleteIncomingMessage, forwardMessage, reportMessage, reactionIcon, editIcon, copyIcon, replyIcon, replyInThreadIcon, forwardIcon, deleteIcon, infoIcon, selectIcon, retractVoteIcon, endVoteIcon, starIcon, staredIcon, reportIcon, reactionIconOrder, editIconOrder, copyIconOrder, replyIconOrder, replyInThreadIconOrder, forwardIconOrder, deleteIconOrder, infoIconOrder, selectIconOrder, starIconOrder, reportIconOrder, reactionIconTooltipText, editIconTooltipText, copyIconTooltipText, replyIconTooltipText, replyInThreadIconTooltipText, forwardIconTooltipText, deleteIconTooltipText, selectIconTooltipText, starIconTooltipText, reportIconTooltipText, infoIconTooltipText, messageActionIconsColor, messageStatusSize, messageStatusColor, messageReadStatusColor, messageStateFontSize, messageStateColor, messageTimeFontSize, messageTimeColor, messageStatusAndTimeLineHeight, messageTimeColorOnAttachment, fileAttachmentsIcon, fileAttachmentsBoxWidth, fileAttachmentsBoxBorder, fileAttachmentsTitleColor, fileAttachmentsSizeColor, imageAttachmentMaxWidth, imageAttachmentMaxHeight, videoAttachmentMaxWidth, videoAttachmentMaxHeight, emojisCategoryIconsPosition, emojisContainerBorderRadius, fixEmojiCategoriesTitleOnTop, selectedMessagesMap, contactsMap,
|
|
143
|
+
declare const _default: React.MemoExoticComponent<({ message, channel, MessageActionsMenu, handleScrollToRepliedMessage, handleMediaItemClick, isPendingMessage, prevMessage, nextMessage, isUnreadMessage, unreadMessageId, isThreadMessage, fontFamily, ownMessageOnRightSide, showSenderNameOnDirectChannel, showSenderNameOnGroupChannel, showSenderNameOnOwnMessages, messageStatusAndTimePosition, messageStatusDisplayingType, outgoingMessageStyles, incomingMessageStyles, ownRepliedMessageBackground, incomingRepliedMessageBackground, showMessageStatus, showMessageTimeAndStatusOnlyOnHover, showMessageTime, showMessageStatusForEachMessage, showMessageTimeForEachMessage, messageReaction, editMessage, copyMessage, replyMessage, replyMessageInThread, deleteMessage, selectMessage, showInfoMessage, allowEditDeleteIncomingMessage, forwardMessage, reportMessage, reactionIcon, editIcon, copyIcon, replyIcon, replyInThreadIcon, forwardIcon, deleteIcon, infoIcon, selectIcon, retractVoteIcon, endVoteIcon, starIcon, staredIcon, reportIcon, reactionIconOrder, editIconOrder, copyIconOrder, replyIconOrder, replyInThreadIconOrder, forwardIconOrder, deleteIconOrder, infoIconOrder, selectIconOrder, starIconOrder, reportIconOrder, reactionIconTooltipText, editIconTooltipText, copyIconTooltipText, replyIconTooltipText, replyInThreadIconTooltipText, forwardIconTooltipText, deleteIconTooltipText, selectIconTooltipText, starIconTooltipText, reportIconTooltipText, infoIconTooltipText, messageActionIconsColor, messageStatusSize, messageStatusColor, messageReadStatusColor, messageStateFontSize, messageStateColor, messageTimeFontSize, messageTimeColor, messageStatusAndTimeLineHeight, messageTimeColorOnAttachment, fileAttachmentsIcon, fileAttachmentsBoxWidth, fileAttachmentsBoxBorder, fileAttachmentsTitleColor, fileAttachmentsSizeColor, imageAttachmentMaxWidth, imageAttachmentMaxHeight, videoAttachmentMaxWidth, videoAttachmentMaxHeight, emojisCategoryIconsPosition, emojisContainerBorderRadius, fixEmojiCategoriesTitleOnTop, selectedMessagesMap, contactsMap, messageTextFontSize, messageTextLineHeight, handleToggleForwardMessagePopup, handleToggleInfoMessagePopupOpen, messageActionsShow, handleRetractVote, handleEndVote, closeMessageActions, handleDeletePendingMessage, handleReplyMessage, handleToggleDeleteMessagePopup, handleToggleReportPopupOpen, handleResendMessage, handleOpenEmojis, emojisPopupOpen, setEmojisPopupOpen, emojisPopupPosition, frequentlyEmojisOpen, handleCopyMessage, toggleEditMode, handleSelectMessage, handleMouseEnter, handleMouseLeave, handleReactionAddDelete, handleCreateChat, messageTextRef, handleOpenUserProfile, shouldOpenUserProfileForMention, ogMetadataProps, unsupportedMessage, onInviteLinkClick, collapsedCharacterLimit }: IMessageBodyProps) => React.JSX.Element>;
|
|
145
144
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IMessageProps } from './Message.types';
|
|
3
|
-
declare const _default: React.MemoExoticComponent<({ message, channel, MessageActionsMenu, CustomMessageItem, handleScrollToRepliedMessage, handleMediaItemClick, stopScrolling, isPendingMessage, prevMessage, nextMessage, setLastVisibleMessageId, isUnreadMessage, unreadMessageId, isThreadMessage, fontFamily, ownMessageOnRightSide, messageWidthPercent, showSenderNameOnDirectChannel, showSenderNameOnGroupChannel, showSenderNameOnOwnMessages, messageStatusAndTimePosition, messageStatusDisplayingType, outgoingMessageStyles, incomingMessageStyles, ownRepliedMessageBackground, incomingRepliedMessageBackground, showOwnAvatar, showMessageStatus, showMessageTimeAndStatusOnlyOnHover, showMessageTime, showMessageStatusForEachMessage, showMessageTimeForEachMessage, hoverBackground, messageReaction, editMessage, copyMessage, replyMessage, replyMessageInThread, deleteMessage, selectMessage, showInfoMessage, allowEditDeleteIncomingMessage, forwardMessage, reportMessage, reactionIcon, editIcon, copyIcon, replyIcon, replyInThreadIcon, forwardIcon, deleteIcon, selectIcon, starIcon, staredIcon, reportIcon, retractVoteIcon, endVoteIcon, reactionIconOrder, openFrequentlyUsedReactions, editIconOrder, copyIconOrder, replyIconOrder, replyInThreadIconOrder, forwardIconOrder, deleteIconOrder, selectIconOrder, starIconOrder, reportIconOrder, infoIconOrder, reactionIconTooltipText, editIconTooltipText, copyIconTooltipText, replyIconTooltipText, replyInThreadIconTooltipText, forwardIconTooltipText, deleteIconTooltipText, selectIconTooltipText, starIconTooltipText, reportIconTooltipText, infoIconTooltipText, messageActionIconsColor, messageStatusSize, messageStatusColor, messageReadStatusColor, messageStateFontSize, messageStateColor, messageTimeFontSize, messageTimeColor, messageStatusAndTimeLineHeight, fileAttachmentsIcon, reactionsDisplayCount, showEachReactionCount, showTotalReactionCount, reactionItemBorder, reactionItemBorderRadius, reactionItemBackground, reactionItemPadding, reactionItemMargin, reactionsFontSize, reactionsContainerBoxShadow, reactionsContainerBorder, reactionsContainerBorderRadius, reactionsContainerBackground, reactionsContainerPadding, reactionsContainerTopPosition, reactionsDetailsPopupBorderRadius, reactionsDetailsPopupHeaderItemsStyle, fileAttachmentsBoxWidth, fileAttachmentsBoxBorder, fileAttachmentsTitleColor, fileAttachmentsSizeColor, imageAttachmentMaxWidth, imageAttachmentMaxHeight, videoAttachmentMaxWidth, videoAttachmentMaxHeight, emojisCategoryIconsPosition, emojisContainerBorderRadius, fixEmojiCategoriesTitleOnTop, sameUserMessageSpacing, differentUserMessageSpacing, selectedMessagesMap, contactsMap, openedMessageMenuId, tabIsActive, connectionStatus,
|
|
3
|
+
declare const _default: React.MemoExoticComponent<({ message, channel, MessageActionsMenu, CustomMessageItem, handleScrollToRepliedMessage, handleMediaItemClick, stopScrolling, isPendingMessage, prevMessage, nextMessage, setLastVisibleMessageId, isUnreadMessage, unreadMessageId, isThreadMessage, fontFamily, ownMessageOnRightSide, messageWidthPercent, showSenderNameOnDirectChannel, showSenderNameOnGroupChannel, showSenderNameOnOwnMessages, messageStatusAndTimePosition, messageStatusDisplayingType, outgoingMessageStyles, incomingMessageStyles, ownRepliedMessageBackground, incomingRepliedMessageBackground, showOwnAvatar, showMessageStatus, showMessageTimeAndStatusOnlyOnHover, showMessageTime, showMessageStatusForEachMessage, showMessageTimeForEachMessage, hoverBackground, messageReaction, editMessage, copyMessage, replyMessage, replyMessageInThread, deleteMessage, selectMessage, showInfoMessage, allowEditDeleteIncomingMessage, forwardMessage, reportMessage, reactionIcon, editIcon, copyIcon, replyIcon, replyInThreadIcon, forwardIcon, deleteIcon, selectIcon, starIcon, staredIcon, reportIcon, retractVoteIcon, endVoteIcon, reactionIconOrder, openFrequentlyUsedReactions, editIconOrder, copyIconOrder, replyIconOrder, replyInThreadIconOrder, forwardIconOrder, deleteIconOrder, selectIconOrder, starIconOrder, reportIconOrder, infoIconOrder, reactionIconTooltipText, editIconTooltipText, copyIconTooltipText, replyIconTooltipText, replyInThreadIconTooltipText, forwardIconTooltipText, deleteIconTooltipText, selectIconTooltipText, starIconTooltipText, reportIconTooltipText, infoIconTooltipText, messageActionIconsColor, messageStatusSize, messageStatusColor, messageReadStatusColor, messageStateFontSize, messageStateColor, messageTimeFontSize, messageTimeColor, messageStatusAndTimeLineHeight, fileAttachmentsIcon, reactionsDisplayCount, showEachReactionCount, showTotalReactionCount, reactionItemBorder, reactionItemBorderRadius, reactionItemBackground, reactionItemPadding, reactionItemMargin, reactionsFontSize, reactionsContainerBoxShadow, reactionsContainerBorder, reactionsContainerBorderRadius, reactionsContainerBackground, reactionsContainerPadding, reactionsContainerTopPosition, reactionsDetailsPopupBorderRadius, reactionsDetailsPopupHeaderItemsStyle, fileAttachmentsBoxWidth, fileAttachmentsBoxBorder, fileAttachmentsTitleColor, fileAttachmentsSizeColor, imageAttachmentMaxWidth, imageAttachmentMaxHeight, videoAttachmentMaxWidth, videoAttachmentMaxHeight, emojisCategoryIconsPosition, emojisContainerBorderRadius, fixEmojiCategoriesTitleOnTop, sameUserMessageSpacing, differentUserMessageSpacing, selectedMessagesMap, contactsMap, openedMessageMenuId, tabIsActive, connectionStatus, messageTextFontSize, messageTextLineHeight, messageTimeColorOnAttachment, shouldOpenUserProfileForMention, ogMetadataProps, showInfoMessageProps, collapsedCharacterLimit }: IMessageProps) => React.JSX.Element>;
|
|
4
4
|
export default _default;
|
|
@@ -17,7 +17,6 @@ export declare const Container: import("styled-components").StyledComponent<"div
|
|
|
17
17
|
}, never>;
|
|
18
18
|
interface IProps {
|
|
19
19
|
dividerText: string;
|
|
20
|
-
theme?: string;
|
|
21
20
|
visibility?: boolean;
|
|
22
21
|
unread?: boolean;
|
|
23
22
|
dateDividerFontSize?: string;
|
|
@@ -38,5 +37,5 @@ interface IProps {
|
|
|
38
37
|
marginTop?: string;
|
|
39
38
|
chatBackgroundColor?: string;
|
|
40
39
|
}
|
|
41
|
-
export default function MessageDivider({ dividerText, visibility, unread, dateDividerFontSize, dateDividerTextColor, dateDividerBorder, dateDividerBackgroundColor, dateDividerBorderRadius, newMessagesSeparatorTextColor, newMessagesSeparatorFontSize, newMessagesSeparatorWidth, newMessagesSeparatorBorder, newMessagesSeparatorBorderRadius, newMessagesSeparatorBackground, newMessagesSeparatorLeftRightSpaceWidth, newMessagesSeparatorSpaceColor, noMargin, marginTop,
|
|
40
|
+
export default function MessageDivider({ dividerText, visibility, unread, dateDividerFontSize, dateDividerTextColor, dateDividerBorder, dateDividerBackgroundColor, dateDividerBorderRadius, newMessagesSeparatorTextColor, newMessagesSeparatorFontSize, newMessagesSeparatorWidth, newMessagesSeparatorBorder, newMessagesSeparatorBorderRadius, newMessagesSeparatorBackground, newMessagesSeparatorLeftRightSpaceWidth, newMessagesSeparatorSpaceColor, noMargin, marginTop, marginBottom, chatBackgroundColor }: IProps): React.JSX.Element;
|
|
42
41
|
export {};
|