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

    Props for QASession component

    interface QASessionProps {
        isSessionActive?: boolean;
        labels?: QASessionLabels;
        onNewQuestion?: (question: Question) => void;
        qaPanelProps?: Omit<
            QAPanelProps,
            | "showHeader"
            | "initialFileId"
            | "enableAutoSave"
            | "onAutoSave"
            | "initialQuestions"
            | "onQuestionsChange",
        >;
        sx?: SxProps<Theme>;
    }
    Index

    Properties

    isSessionActive?: boolean

    External session active state (from parent listener) - auto-activates session when true

    Custom labels for i18n support

    onNewQuestion?: (question: Question) => void

    Callback when a new question is received (for badge notifications)

    qaPanelProps?: Omit<
        QAPanelProps,
        | "showHeader"
        | "initialFileId"
        | "enableAutoSave"
        | "onAutoSave"
        | "initialQuestions"
        | "onQuestionsChange",
    >

    Props to pass through to QAPanel

    sx?: SxProps<Theme>

    MUI sx props for the container