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

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sceyt-chat-react-uikit",
3
- "version": "1.7.5-beta.11",
3
+ "version": "1.7.5-beta.13",
4
4
  "description": "Interactive React UI Components for Sceyt Chat.",
5
5
  "author": "Sceyt",
6
6
  "license": "MIT",
package/types/index.d.ts CHANGED
@@ -325,4 +325,26 @@ export interface ILabels {
325
325
  receivedBy?: string;
326
326
  displayedBy?: string;
327
327
  }
328
+ export interface OGMetadataProps {
329
+ maxWidth?: number;
330
+ maxHeight?: number;
331
+ ogLayoutOrder?: 'link-first' | 'og-first';
332
+ ogShowUrl?: boolean;
333
+ ogShowTitle?: boolean;
334
+ ogShowDescription?: boolean;
335
+ ogShowFavicon?: boolean;
336
+ order?: {
337
+ image?: number;
338
+ title?: number;
339
+ description?: number;
340
+ link?: number;
341
+ };
342
+ ogContainerBorderRadius?: string | number;
343
+ ogContainerPadding?: string;
344
+ ogContainerClassName?: string;
345
+ ogContainerShowBackground?: boolean;
346
+ ogContainerBackground?: string;
347
+ infoPadding?: string;
348
+ isInviteLink?: boolean;
349
+ }
328
350
  export {};