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

    Interface TranscriptionViewProps

    Props for the TranscriptionView component.

    interface TranscriptionViewProps {
        autoScroll?: boolean;
        colors?: Partial<TranscriptionViewColors>;
        isTranscribing?: boolean;
        labels?: Partial<TranscriptionViewLabels>;
        localUserId?: string;
        showTimestamps?: boolean;
        transcriptions: TranscriptionEntry[];
    }
    Index

    Properties

    autoScroll?: boolean

    Whether to automatically scroll to the latest entry.

    true

    colors?: Partial<TranscriptionViewColors>

    Partial color overrides merged with built-in defaults. See TranscriptionViewColors.

    isTranscribing?: boolean

    Whether transcription is currently active. Shows a green indicator dot in the header.

    labels?: Partial<TranscriptionViewLabels>

    Partial label overrides merged with built-in defaults. See TranscriptionViewLabels.

    localUserId?: string

    The local user's ID. Used to highlight the local speaker differently.

    showTimestamps?: boolean

    Whether to show timestamps for each transcription entry.

    true

    transcriptions: TranscriptionEntry[]

    Array of transcription entries to display, ordered chronologically.