@100mslive/react-sdk 0.0.3 → 0.0.4-alpha.3
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/dist/hooks/useVideoList.d.ts +6 -1
- package/dist/index.cjs.js +6 -6
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -6
- package/dist/utils/layout.d.ts +1 -1
- package/package.json +3 -3
|
@@ -16,8 +16,13 @@ interface UseVideoListProps {
|
|
|
16
16
|
width: number;
|
|
17
17
|
height: number;
|
|
18
18
|
};
|
|
19
|
+
/**
|
|
20
|
+
* By default this will be true. Only publishing(audio/video/screen) peers in the passed in peer list
|
|
21
|
+
* will be filtered by default. If you wish to show all peers, pass false for this.
|
|
22
|
+
*/
|
|
23
|
+
filterNonPublishingPeers?: boolean;
|
|
19
24
|
}
|
|
20
|
-
export declare const useVideoList: ({ maxTileCount, maxColCount, maxRowCount, width, height, showScreenFn, peers, overflow, aspectRatio, }: UseVideoListProps) => {
|
|
25
|
+
export declare const useVideoList: ({ maxTileCount, maxColCount, maxRowCount, width, height, showScreenFn, peers, overflow, aspectRatio, filterNonPublishingPeers, }: UseVideoListProps) => {
|
|
21
26
|
chunkedTracksWithPeer: (TrackWithPeer & {
|
|
22
27
|
width: number;
|
|
23
28
|
height: number;
|