react-covideo-embed 1.0.11 → 1.0.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.
@@ -2,6 +2,7 @@ type PlayerProps = {
2
2
  displayVideos: any[];
3
3
  width?: number;
4
4
  height?: number;
5
+ hasProcessingVideos?: boolean;
5
6
  };
6
- export declare const Player: ({ width, height, displayVideos }: PlayerProps) => JSX.Element;
7
+ export declare const Player: ({ width, height, displayVideos, hasProcessingVideos, }: PlayerProps) => JSX.Element;
7
8
  export {};
@@ -1 +1,8 @@
1
- export declare const VideoMerge: ({ videos, setVideos }: any) => JSX.Element;
1
+ type VideoMergeProps = {
2
+ videos?: any[];
3
+ setVideos?: (arg: any) => void;
4
+ hasProcessingVideos: boolean;
5
+ setShouldFetch: (arg: boolean) => void;
6
+ };
7
+ export declare const VideoMerge: ({ videos, setVideos, hasProcessingVideos, setShouldFetch, }: VideoMergeProps) => JSX.Element;
8
+ export {};
@@ -1 +1 @@
1
- export declare const VideoRow: ({ index, totalDuration, offset, width, video, setVideos, }: any) => JSX.Element;
1
+ export declare const VideoRow: ({ index, totalDuration, offset, width, video, setVideos, hasProcessingVideos, showPreviewTrack, }: any) => JSX.Element;
@@ -1 +1 @@
1
- export declare const VideoThumbnail: ({ video, setVideos, setVideoRef, index, }: any) => JSX.Element;
1
+ export declare const VideoThumbnail: ({ video, setVideos, setVideoRef, index, isDragDisabled, setShouldFetch, }: any) => JSX.Element;
@@ -14,6 +14,7 @@ type Props = {
14
14
  changeVideoPosition?: boolean;
15
15
  showFloatingPreview?: boolean;
16
16
  width: string;
17
+ showPreviewTrack?: boolean;
17
18
  };
18
19
  export declare const TimelineRange: (props: Props) => JSX.Element;
19
20
  export {};