sceyt-chat-react-uikit 1.6.7 → 1.6.8

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.
@@ -15,7 +15,7 @@ declare const MessageTextFormat: ({ text, message, contactsMap, getFromContacts,
15
15
  getFromContacts: boolean;
16
16
  isLastMessage?: boolean | undefined;
17
17
  asSampleText?: boolean | undefined;
18
- accentColor?: string | undefined;
19
- textSecondary?: string | undefined;
18
+ accentColor: string;
19
+ textSecondary: string;
20
20
  }) => any;
21
21
  export { MessageStatusIcon, MessageTextFormat };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sceyt-chat-react-uikit",
3
- "version": "1.6.7",
3
+ "version": "1.6.8",
4
4
  "description": "Interactive React UI Components for Sceyt Chat.",
5
5
  "author": "Sceyt",
6
6
  "license": "MIT",
@@ -1,5 +0,0 @@
1
- <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="40" height="40" rx="8" fill="white"/>
3
- <circle cx="20" cy="20" r="14" fill="#0DBD8B"/>
4
- <path d="M25.0239 19.1307C25.6587 19.5145 25.6587 20.4839 25.0239 20.8676L18.4122 24.8653C17.7828 25.2459 17 24.7645 17 23.9969V16.0015C17 15.2338 17.7828 14.7525 18.4122 15.133L25.0239 19.1307Z" fill="white"/>
5
- </svg>
@@ -1,5 +0,0 @@
1
- <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="40" height="40" rx="8" fill="white"/>
3
- <circle cx="20" cy="20" r="14" fill="#0DBD8B"/>
4
- <path d="M17.9744 15C18.3311 15 18.4604 15.0371 18.5907 15.1069C18.7211 15.1766 18.8234 15.2789 18.8931 15.4093C18.9629 15.5396 19 15.6689 19 16.0256V23.9744C19 24.3311 18.9629 24.4604 18.8931 24.5907C18.8234 24.7211 18.7211 24.8234 18.5907 24.8931C18.4604 24.9629 18.3311 25 17.9744 25H17.0256C16.6689 25 16.5396 24.9629 16.4093 24.8931C16.2789 24.8234 16.1766 24.7211 16.1069 24.5907C16.0371 24.4604 16 24.3311 16 23.9744V16.0256C16 15.6689 16.0371 15.5396 16.1069 15.4093C16.1766 15.2789 16.2789 15.1766 16.4093 15.1069C16.5396 15.0371 16.6689 15 17.0256 15H17.9744ZM22.9744 15C23.3311 15 23.4604 15.0371 23.5907 15.1069C23.7211 15.1766 23.8234 15.2789 23.8931 15.4093C23.9629 15.5396 24 15.6689 24 16.0256V23.9744C24 24.3311 23.9629 24.4604 23.8931 24.5907C23.8234 24.7211 23.7211 24.8234 23.5907 24.8931C23.4604 24.9629 23.3311 25 22.9744 25H22.0256C21.6689 25 21.5396 24.9629 21.4093 24.8931C21.2789 24.8234 21.1766 24.7211 21.1069 24.5907C21.0371 24.4604 21 24.3311 21 23.9744V16.0256C21 15.6689 21.0371 15.5396 21.1069 15.4093C21.1766 15.2789 21.2789 15.1766 21.4093 15.1069C21.5396 15.0371 21.6689 15 22.0256 15H22.9744Z" fill="white"/>
5
- </svg>
@@ -1,5 +0,0 @@
1
- import React from 'react';
2
- interface IChannelTabsProps {
3
- }
4
- declare const ChannelTabs: ({}: IChannelTabsProps) => React.JSX.Element;
5
- export default ChannelTabs;
@@ -1,19 +0,0 @@
1
- import React from 'react';
2
- export default function TextFormat({ handleFormatToBold, handleFormatToItalic, handleFormatToStrikethrough, handleFormatToMonospace, handleClosePopup, isBoldText, isItalicText, isStrikethroughText, isMonospaceText, top, bottom, right, left, theme, editorProps }: {
3
- top?: string;
4
- bottom?: string;
5
- right?: string;
6
- left?: string;
7
- isBoldText?: boolean;
8
- isItalicText?: boolean;
9
- isStrikethroughText?: boolean;
10
- isMonospaceText?: boolean;
11
- isUnderlineText?: boolean;
12
- handleFormatToBold?: (props?: any) => void;
13
- handleFormatToItalic?: (props?: any) => void;
14
- handleFormatToStrikethrough?: (props?: any) => void;
15
- handleFormatToMonospace?: (props?: any) => void;
16
- handleClosePopup?: () => void;
17
- theme?: string;
18
- editorProps: any;
19
- }): React.JSX.Element;
@@ -1,3 +0,0 @@
1
- import React from 'react';
2
- declare function Profile(): React.JSX.Element;
3
- export default Profile;