sceyt-chat-react-uikit 1.7.6-beta.1 → 1.7.6-beta.11

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.
@@ -58,6 +58,7 @@ export interface IChatClientProps {
58
58
  baseUrlForInviteMembers?: string;
59
59
  useInviteLink?: boolean;
60
60
  inviteLinkOptions?: InviteLinkOptions | null;
61
+ embeddedJoinGroupPopup?: boolean;
61
62
  }
62
- 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 }: IChatClientProps) => React.JSX.Element;
63
+ 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 }: IChatClientProps) => React.JSX.Element;
63
64
  export default SceytChatContainer;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { IAttachment } from '../../../types';
2
+ import { IAttachment, IOGMetadata } from '../../../types';
3
3
  declare const OGMetadata: ({ attachments, state, incoming, ogShowUrl, ogShowTitle, ogShowDescription, ogShowFavicon, order, maxWidth, maxHeight, ogContainerBorderRadius, ogContainerPadding, ogContainerClassName, ogContainerShowBackground, ogContainerBackground, infoPadding, ogContainerMargin, target, isInviteLink, metadataGetSuccessCallback }: {
4
4
  attachments: IAttachment[];
5
5
  state: string;
@@ -25,6 +25,6 @@ declare const OGMetadata: ({ attachments, state, incoming, ogShowUrl, ogShowTitl
25
25
  ogContainerMargin?: string | undefined;
26
26
  target?: string | undefined;
27
27
  isInviteLink?: boolean | undefined;
28
- metadataGetSuccessCallback?: ((url: string, success: boolean, hasImage: boolean) => void) | undefined;
28
+ metadataGetSuccessCallback?: ((url: string, success: boolean, hasImage: boolean, metadata: IOGMetadata | null) => void) | undefined;
29
29
  }) => React.JSX.Element;
30
30
  export { OGMetadata };
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
2
  import { IChatClientProps } from '../ChatContainer';
3
- declare const SceytChat: ({ client, theme, themeMode, avatarColors, children, showOnlyContactUsers, logoSrc, CustomUploader, handleNewMessages, sendAttachmentsAsSeparateMessages, membersDisplayTextByChannelTypesMap, channelTypeFilter, defaultRolesByChannelTypesMap, hideUserPresence, showNotifications, openChatOnUserInteraction, autoSelectFirstChannel, memberCount, disableFrowardMentionsCount, chatMinWidth }: IChatClientProps) => React.JSX.Element;
3
+ declare const SceytChat: ({ client, theme, themeMode, avatarColors, children, showOnlyContactUsers, logoSrc, CustomUploader, handleNewMessages, sendAttachmentsAsSeparateMessages, membersDisplayTextByChannelTypesMap, channelTypeFilter, defaultRolesByChannelTypesMap, hideUserPresence, showNotifications, openChatOnUserInteraction, autoSelectFirstChannel, memberCount, disableFrowardMentionsCount, chatMinWidth, embeddedJoinGroupPopup }: IChatClientProps) => React.JSX.Element;
4
4
  export default SceytChat;
5
5
  export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;