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

    Props for MeetingSummary component

    interface MeetingSummaryProps {
        autoGenerate?: boolean;
        colors?: Partial<MeetingSummaryColors>;
        data?: MeetingSummaryData;
        defaultCollapsed?: boolean;
        icons?: Partial<MeetingSummaryIcons>;
        labels?: Partial<MeetingSummaryLabels>;
        onActionItemChange?: (item: SummaryActionItem) => void;
        onError?: (error: Error) => void;
        onExport?: (
            data: MeetingSummaryData,
            format: "pdf" | "markdown" | "json",
        ) => void;
        onGenerate?: (data: MeetingSummaryData) => void;
        roomId?: string;
        showActionItems?: boolean;
        showDecisions?: boolean;
        showExport?: boolean;
        showKeyPoints?: boolean;
        showParticipants?: boolean;
        showSummary?: boolean;
        styles?: Partial<MeetingSummaryStyles>;
        sx?: SxProps<Theme>;
        transcript?: string;
    }
    Index

    Properties

    autoGenerate?: boolean

    Whether to auto-generate on mount

    colors?: Partial<MeetingSummaryColors>

    Custom colors

    Pre-generated summary data

    defaultCollapsed?: boolean

    Collapsed sections by default

    icons?: Partial<MeetingSummaryIcons>

    Custom icons

    labels?: Partial<MeetingSummaryLabels>

    Custom labels

    onActionItemChange?: (item: SummaryActionItem) => void

    Callback when action item status changes

    onError?: (error: Error) => void

    Callback on error

    onExport?: (
        data: MeetingSummaryData,
        format: "pdf" | "markdown" | "json",
    ) => void

    Callback when export is triggered

    onGenerate?: (data: MeetingSummaryData) => void

    Callback when summary is generated

    roomId?: string

    Room ID for fetching summary

    showActionItems?: boolean

    Whether to show action items section

    showDecisions?: boolean

    Whether to show decisions section

    showExport?: boolean

    Whether to show export button

    showKeyPoints?: boolean

    Whether to show key points section

    showParticipants?: boolean

    Whether to show participants section

    showSummary?: boolean

    Whether to show the summary section

    styles?: Partial<MeetingSummaryStyles>

    Custom styles

    sx?: SxProps<Theme>

    MUI sx prop

    transcript?: string

    Transcript text to summarize