sceyt-chat-react-uikit 1.7.4-beta.9 → 1.7.5-beta.1
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.
- package/assets/svg/info-action.svg +5 -0
- package/components/Message/OGMetadata/index.d.ts +2 -1
- package/index.js +437 -346
- package/index.modern.js +438 -347
- package/package.json +1 -1
- package/types/enum.d.ts +2 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.33333 1.37615C4.49098 1.37615 1.37615 4.49098 1.37615 8.33333C1.37615 12.1757 4.49098 15.2905 8.33333 15.2905C12.1757 15.2905 15.2905 12.1757 15.2905 8.33333C15.2905 4.49098 12.1757 1.37615 8.33333 1.37615ZM0 8.33333C0 3.73096 3.73096 0 8.33333 0C12.9357 0 16.6667 3.73096 16.6667 8.33333C16.6667 12.9357 12.9357 16.6667 8.33333 16.6667C3.73096 16.6667 0 12.9357 0 8.33333Z" fill="currentColor"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.00816 7.69623C7.00816 7.31622 7.31622 7.00816 7.69623 7.00816H8.33333C8.71335 7.00816 9.02141 7.31622 9.02141 7.69623V11.4698C9.37762 11.4958 9.65851 11.7931 9.65851 12.156C9.65851 12.536 9.35045 12.844 8.97044 12.844H8.33333C7.95332 12.844 7.64526 12.536 7.64526 12.156V8.38244C7.28905 8.35636 7.00816 8.0591 7.00816 7.69623Z" fill="currentColor"/>
|
|
4
|
+
<path d="M8.17406 5.78491C8.70185 5.78491 9.12971 5.35705 9.12971 4.82926C9.12971 4.30146 8.70185 3.8736 8.17406 3.8736C7.64626 3.8736 7.2184 4.30146 7.2184 4.82926C7.2184 5.35705 7.64626 5.78491 8.17406 5.78491Z" fill="currentColor"/>
|
|
5
|
+
</svg>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IAttachment } from '../../../types';
|
|
3
|
-
declare const OGMetadata: ({ attachments, state, incoming, ogShowUrl, ogShowTitle, ogShowDescription, ogShowFavicon, order, maxWidth, maxHeight, ogContainerBorderRadius, ogContainerPadding, ogContainerClassName, ogContainerShowBackground, ogContainerBackground, infoPadding, ogContainerMargin, target }: {
|
|
3
|
+
declare const OGMetadata: ({ attachments, state, incoming, ogShowUrl, ogShowTitle, ogShowDescription, ogShowFavicon, order, maxWidth, maxHeight, ogContainerBorderRadius, ogContainerPadding, ogContainerClassName, ogContainerShowBackground, ogContainerBackground, infoPadding, ogContainerMargin, target, metadataGetSuccessCallback }: {
|
|
4
4
|
attachments: IAttachment[];
|
|
5
5
|
state: string;
|
|
6
6
|
incoming: boolean;
|
|
@@ -24,5 +24,6 @@ declare const OGMetadata: ({ attachments, state, incoming, ogShowUrl, ogShowTitl
|
|
|
24
24
|
infoPadding?: string | undefined;
|
|
25
25
|
ogContainerMargin?: string | undefined;
|
|
26
26
|
target?: string | undefined;
|
|
27
|
+
metadataGetSuccessCallback?: ((success: boolean) => void) | undefined;
|
|
27
28
|
}) => React.JSX.Element;
|
|
28
29
|
export { OGMetadata };
|