sceyt-chat-react-uikit 1.6.8-beta.5 → 1.6.8-beta.7

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.
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="8" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10 8C7 8 4.0001 0 0 0L20 0C16.0251 0 13 8 10 8Z" fill="currentColor"/>
3
+ </svg>
@@ -23,6 +23,7 @@ interface ContainerProps {
23
23
  border?: string;
24
24
  borderRadius?: string;
25
25
  cursorPointer?: boolean;
26
+ theme: 'light' | 'dark';
26
27
  }
27
28
  interface AvatarImageProps {
28
29
  showImage: boolean;
@@ -9,7 +9,7 @@ interface IProps {
9
9
  voicePreviewTitleColor?: string;
10
10
  voicePreviewDateAndTimeColor?: string;
11
11
  voicePreviewHoverBackgroundColor?: string;
12
- messageType: string | null | undefined;
12
+ messageType?: string | null | undefined;
13
13
  }
14
14
  declare const VoiceItem: ({ file, voicePreviewPlayIcon, voicePreviewPlayHoverIcon, voicePreviewPauseIcon, voicePreviewPauseHoverIcon, voicePreviewTitleColor, voicePreviewDateAndTimeColor, voicePreviewHoverBackgroundColor, messageType }: IProps) => React.JSX.Element;
15
15
  export default VoiceItem;
@@ -0,0 +1,20 @@
1
+ import React from 'react';
2
+ interface MessagesScrollToUnreadMentionsButtonProps {
3
+ buttonIcon?: JSX.Element;
4
+ buttonWidth?: string;
5
+ buttonHeight?: string;
6
+ bottomPosition?: number;
7
+ rightPosition?: number;
8
+ buttonBorder?: string;
9
+ buttonBackgroundColor?: string;
10
+ buttonHoverBackgroundColor?: string;
11
+ buttonBorderRadius?: string;
12
+ buttonShadow?: string;
13
+ unreadCountWidth?: string;
14
+ unreadCountHeight?: string;
15
+ unreadCountFontSize?: string;
16
+ unreadCountTextColor?: string;
17
+ unreadCountBackgroundColor?: string;
18
+ }
19
+ declare const MessagesScrollToUnreadMentionsButton: React.FC<MessagesScrollToUnreadMentionsButtonProps>;
20
+ export default MessagesScrollToUnreadMentionsButton;