Hiyve Components - v1.0.0
    Preparing search index...

    Interface VideoTileLabels

    Customizable text labels for VideoTile component. All labels support internationalization (i18n) by allowing custom strings.

    // Spanish localization
    const spanishLabels: Partial<VideoTileLabels> = {
    handRaised: 'Mano levantada',
    muted: 'Silenciado',
    cameraOff: 'Cámara apagada',
    fullscreen: 'Pantalla completa',
    exitFullscreen: 'Salir de pantalla completa'
    };

    <VideoTile labels={spanishLabels} />
    interface VideoTileLabels {
        cameraOff: string;
        engagementLabel: string;
        exitFullscreen: string;
        fillVideo: string;
        fitVideo: string;
        fullscreen: string;
        handRaised: string;
        moodLabels: Record<MoodType, string>;
        muted: string;
        outputMuted: string;
    }
    Index

    Properties

    cameraOff: string

    Tooltip text when participant's camera is off

    engagementLabel: string

    Label template for engagement tooltip (use {value} placeholder for percentage)

    exitFullscreen: string

    Tooltip text for exit fullscreen button

    fillVideo: string

    Tooltip text for fill video button

    fitVideo: string

    Tooltip text for fit video button

    fullscreen: string

    Tooltip text for fullscreen button

    handRaised: string

    Tooltip text when participant has hand raised

    moodLabels: Record<MoodType, string>

    Labels for each mood type displayed in the mood indicator

    muted: string

    Tooltip text when participant's audio is muted

    outputMuted: string

    Tooltip text when participant's output (speaker) is muted by room owner