sceyt-chat-react-uikit 1.7.5-beta.13 → 1.7.5-beta.15

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.
@@ -8,7 +8,7 @@ declare const MessageStatusIcon: ({ messageStatus, messageStatusDisplayingType,
8
8
  readIconColor?: string | undefined;
9
9
  accentColor?: string | undefined;
10
10
  }) => React.JSX.Element;
11
- declare const MessageTextFormat: ({ text, message, contactsMap, getFromContacts, isLastMessage, asSampleText, accentColor, textSecondary, onMentionNameClick, shouldOpenUserProfileForMention, unsupportedMessage, target, isInviteLink }: {
11
+ declare const MessageTextFormat: ({ text, message, contactsMap, getFromContacts, isLastMessage, asSampleText, accentColor, textSecondary, onMentionNameClick, shouldOpenUserProfileForMention, unsupportedMessage, target, isInviteLink, onInviteLinkClick }: {
12
12
  text: string;
13
13
  message: any;
14
14
  contactsMap?: IContactsMap | undefined;
@@ -22,5 +22,6 @@ declare const MessageTextFormat: ({ text, message, contactsMap, getFromContacts,
22
22
  unsupportedMessage?: boolean | undefined;
23
23
  target?: string | undefined;
24
24
  isInviteLink?: boolean | undefined;
25
+ onInviteLinkClick?: ((key: string) => void) | undefined;
25
26
  }) => any;
26
27
  export { MessageStatusIcon, MessageTextFormat };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sceyt-chat-react-uikit",
3
- "version": "1.7.5-beta.13",
3
+ "version": "1.7.5-beta.15",
4
4
  "description": "Interactive React UI Components for Sceyt Chat.",
5
5
  "author": "Sceyt",
6
6
  "license": "MIT",
package/types/index.d.ts CHANGED
@@ -346,5 +346,6 @@ export interface OGMetadataProps {
346
346
  ogContainerBackground?: string;
347
347
  infoPadding?: string;
348
348
  isInviteLink?: boolean;
349
+ target?: string;
349
350
  }
350
351
  export {};