@veltdev/react 1.0.163 → 1.0.164

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.
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  export interface IVeltCommentPlayerTimelineProps {
3
3
  totalMediaLength?: number;
4
4
  onCommentClick?: Function;
5
+ shadowDom?: boolean;
5
6
  }
6
7
  declare const VeltCommentPlayerTimeline: React.FC<IVeltCommentPlayerTimelineProps>;
7
8
  export default VeltCommentPlayerTimeline;
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  export interface IVeltNotificationsPanelProps {
3
3
  darkMode?: boolean;
4
4
  onNotificationClick?: Function;
5
+ shadowDom?: boolean;
5
6
  }
6
7
  declare const VeltNotificationsPanel: React.FC<IVeltNotificationsPanelProps>;
7
8
  export default VeltNotificationsPanel;
@@ -2,6 +2,8 @@ import React from 'react';
2
2
  export interface IVeltNotificationsToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
3
  darkMode?: boolean;
4
4
  onNotificationClick?: Function;
5
+ shadowDom?: boolean;
6
+ panelShadowDom?: boolean;
5
7
  }
6
8
  declare const VeltNotificationsTool: React.FC<IVeltNotificationsToolProps>;
7
9
  export default VeltNotificationsTool;
@@ -4,6 +4,7 @@ export interface IVeltVideoPlayerProps {
4
4
  darkMode?: boolean;
5
5
  sync?: boolean;
6
6
  commentTool?: boolean;
7
+ shadowDom?: boolean;
7
8
  }
8
9
  declare const VeltVideoPlayer: React.FC<IVeltVideoPlayerProps>;
9
10
  export default VeltVideoPlayer;
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "1.0.181";
1
+ export declare const VELT_SDK_VERSION = "1.0.182";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
package/index.d.ts CHANGED
@@ -331,6 +331,7 @@ declare const SnippylyUserRequestTool: React.FC<IVeltUserRequestToolProps>;
331
331
  interface IVeltCommentPlayerTimelineProps {
332
332
  totalMediaLength?: number;
333
333
  onCommentClick?: Function;
334
+ shadowDom?: boolean;
334
335
  }
335
336
  declare const VeltCommentPlayerTimeline: React.FC<IVeltCommentPlayerTimelineProps>;
336
337
 
@@ -339,6 +340,7 @@ interface IVeltVideoPlayerProps {
339
340
  darkMode?: boolean;
340
341
  sync?: boolean;
341
342
  commentTool?: boolean;
343
+ shadowDom?: boolean;
342
344
  }
343
345
  declare const VeltVideoPlayer: React.FC<IVeltVideoPlayerProps>;
344
346
 
@@ -356,12 +358,15 @@ declare const VeltCommentThread: React.FC<IVeltCommentThreadProps>;
356
358
  interface IVeltNotificationsToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
357
359
  darkMode?: boolean;
358
360
  onNotificationClick?: Function;
361
+ shadowDom?: boolean;
362
+ panelShadowDom?: boolean;
359
363
  }
360
364
  declare const VeltNotificationsTool: React.FC<IVeltNotificationsToolProps>;
361
365
 
362
366
  interface IVeltNotificationsPanelProps {
363
367
  darkMode?: boolean;
364
368
  onNotificationClick?: Function;
369
+ shadowDom?: boolean;
365
370
  }
366
371
  declare const VeltNotificationsPanel: React.FC<IVeltNotificationsPanelProps>;
367
372
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "1.0.163",
3
+ "version": "1.0.164",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",