sceyt-chat-react-uikit 1.7.7-beta.9 → 1.7.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,15 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1Z" fill="url(#paint0_linear_5007_111116)" stroke="transparent" stroke-width="2"/>
3
+ <g clip-path="url(#clip0_5007_111116)">
4
+ <path d="M12.0002 7.99992V11.9999L14.6668 13.3333M12.0002 5.33325C13.2936 5.33302 14.5592 5.70904 15.6426 6.41549C16.7261 7.12194 17.5806 8.12831 18.1021 9.31194C18.6236 10.4956 18.7896 11.8054 18.5797 13.0816C18.3698 14.3579 17.7932 15.5456 16.9202 16.4999M5.66683 9.91659C5.4544 10.5624 5.34198 11.2368 5.3335 11.9166M5.88688 14.6666C6.26122 15.5278 6.81327 16.3002 7.50688 16.9333M7.09082 7.48987C7.27685 7.28736 7.47523 7.09655 7.68482 6.91854M9.76286 18.2799C11.4253 18.8722 13.2548 18.7811 14.8502 18.0266" stroke="transparent" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ <defs>
7
+ <linearGradient id="paint0_linear_5007_111116" x1="-3.5" y1="-4" x2="13" y2="22" gradientUnits="userSpaceOnUse">
8
+ <stop stop-color="#EDEDED"/>
9
+ <stop offset="1" stop-color="#818C99"/>
10
+ </linearGradient>
11
+ <clipPath id="clip0_5007_111116">
12
+ <rect width="16" height="16" fill="white" transform="translate(4 4)"/>
13
+ </clipPath>
14
+ </defs>
15
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.7236 1.32861C12.1732 1.32868 12.5379 1.69261 12.5381 2.14209C12.5381 2.59177 12.1733 2.95648 11.7236 2.95654H10.8145V4.23096C12.141 4.37938 13.3592 4.88595 14.3701 5.65186L14.5742 5.81201L14.582 5.81787L14.5811 5.81885L15.5928 6.82666L15.6006 6.8335L15.5996 6.83447C16.6263 8.08452 17.2432 9.68437 17.2432 11.4282C17.2432 15.4283 14.0001 18.6714 10 18.6714C6.00001 18.6712 2.75781 15.4282 2.75781 11.4282C2.75781 7.70357 5.56898 4.63691 9.18555 4.23193V2.95654H8.27734C7.82763 2.95654 7.46289 2.59181 7.46289 2.14209C7.46312 1.69256 7.82777 1.32861 8.27734 1.32861H11.7236Z" fill="currentColor" stroke="currentColor" stroke-width="0.2"/>
3
+ <path class="watch-ticks" fill-rule="evenodd" clip-rule="evenodd" d="M10.0155 7.78784C10.4841 7.78784 10.864 8.16772 10.864 8.63633V11.4574L13.3437 12.3873C13.7825 12.5519 14.0048 13.0409 13.8402 13.4797C13.6757 13.9185 13.1866 14.1408 12.7479 13.9762L9.71755 12.8399C9.38639 12.7157 9.16699 12.3991 9.16699 12.0454V8.63633C9.16699 8.16772 9.54687 7.78784 10.0155 7.78784Z" fill="currentColor"/>
4
+ </svg>
@@ -84,6 +84,9 @@ export declare const LastMessage: import("styled-components").StyledComponent<"d
84
84
  height?: string | undefined;
85
85
  }, never>;
86
86
  export declare const AvatarWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
87
+ export declare const DisappearingMessagesBadge: import("styled-components").StyledComponent<any, any, object & {
88
+ strokeColor: string;
89
+ }, string | number | symbol>;
87
90
  export declare const UserStatus: import("styled-components").StyledComponent<"span", any, {
88
91
  backgroundColor?: string | undefined;
89
92
  borderColor?: string | undefined;
@@ -60,6 +60,13 @@ export interface IChatClientProps {
60
60
  inviteLinkOptions?: InviteLinkOptions | null;
61
61
  embeddedJoinGroupPopup?: boolean;
62
62
  onUpdateChannel?: (channel: IChannel, updatedFields: string[]) => void;
63
+ disappearingSettings?: {
64
+ show?: boolean;
65
+ customOptions?: {
66
+ label: string;
67
+ seconds: number;
68
+ }[];
69
+ } | null;
63
70
  }
64
- declare const SceytChatContainer: ({ client, theme, themeMode, avatarColors, children, showOnlyContactUsers, handleNewMessages, sendAttachmentsAsSeparateMessages, membersDisplayTextByChannelTypesMap, defaultRolesByChannelTypesMap, channelTypeFilter, logoSrc, CustomUploader, showNotifications, hideUserPresence, openChatOnUserInteraction, autoSelectFirstChannel, logLevel, memberCount, disableFrowardMentionsCount, chatMinWidth, baseUrlForInviteMembers, useInviteLink, inviteLinkOptions, embeddedJoinGroupPopup, onUpdateChannel }: IChatClientProps) => React.JSX.Element;
71
+ declare const SceytChatContainer: ({ client, theme, themeMode, avatarColors, children, showOnlyContactUsers, handleNewMessages, sendAttachmentsAsSeparateMessages, membersDisplayTextByChannelTypesMap, defaultRolesByChannelTypesMap, channelTypeFilter, logoSrc, CustomUploader, showNotifications, hideUserPresence, openChatOnUserInteraction, autoSelectFirstChannel, logLevel, memberCount, disableFrowardMentionsCount, chatMinWidth, baseUrlForInviteMembers, useInviteLink, inviteLinkOptions, embeddedJoinGroupPopup, onUpdateChannel, disappearingSettings }: IChatClientProps) => React.JSX.Element;
65
72
  export default SceytChatContainer;
@@ -15,8 +15,9 @@ interface ISystemMessageProps {
15
15
  backgroundColor?: string;
16
16
  borderRadius?: string;
17
17
  tabIsActive?: boolean;
18
+ setLastVisibleMessageId?: (messageId: string) => void;
18
19
  }
19
- declare const _default: React.MemoExoticComponent<({ message, nextMessage, connectionStatus, channel, tabIsActive, differentUserMessageSpacing, fontSize, textColor, border, backgroundColor, borderRadius, contactsMap }: ISystemMessageProps) => React.JSX.Element>;
20
+ declare const _default: React.MemoExoticComponent<({ message, nextMessage, connectionStatus, channel, tabIsActive, differentUserMessageSpacing, fontSize, textColor, border, backgroundColor, borderRadius, contactsMap, setLastVisibleMessageId }: ISystemMessageProps) => React.JSX.Element>;
20
21
  export default _default;
21
22
  export declare const Container: import("styled-components").StyledComponent<"div", any, {
22
23
  topOffset?: number | undefined;