@opencxh/ui-kit 3.87.0 → 3.93.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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -6
- package/dist/index.js.map +1 -1
- package/dist/src/meeting/ParticipantTile.d.ts +8 -1
- package/package.json +1 -1
|
@@ -7,10 +7,17 @@ export interface ParticipantTileProps {
|
|
|
7
7
|
hasVideo?: boolean;
|
|
8
8
|
videoSlot?: ReactNode;
|
|
9
9
|
className?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Fill the parent box (height + width) instead of keeping a 16:9 aspect
|
|
12
|
+
* ratio. Use for a pinned/main tile inside a bounded container so it fits the
|
|
13
|
+
* available space without deriving its height from its width (which would
|
|
14
|
+
* overflow a wide surface). Grid thumbnails keep the default aspect ratio.
|
|
15
|
+
*/
|
|
16
|
+
fill?: boolean;
|
|
10
17
|
}
|
|
11
18
|
/**
|
|
12
19
|
* Provider-agnostic participant tile. Shows avatar + name when no video is
|
|
13
20
|
* available; otherwise renders the `videoSlot` passed by the caller (typically
|
|
14
21
|
* a <VideoSurface /> wired to a provider-specific stream renderer).
|
|
15
22
|
*/
|
|
16
|
-
export declare function ParticipantTile({ name, avatarUrl, muted, speaking, hasVideo, videoSlot, className, }: ParticipantTileProps): import("react").JSX.Element;
|
|
23
|
+
export declare function ParticipantTile({ name, avatarUrl, muted, speaking, hasVideo, videoSlot, className, fill, }: ParticipantTileProps): import("react").JSX.Element;
|