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

    Props for AlertsPanel component

    interface AlertsPanelProps {
        autoRefresh?: boolean;
        autoRefreshInterval?: number;
        colors?: Partial<AlertsColors>;
        filterTypes?: AlertType[];
        icons?: Partial<AlertsIcons>;
        labels?: Partial<AlertsPanelLabels>;
        maxAlerts?: number;
        onAlertDoubleClick?: (alert: AlertsMeetingAlert) => void;
        onDismiss?: (
            alertId: string,
            reason: "noted" | "not_relevant" | "false_positive" | undefined,
        ) => void;
        onError?: (error: Error) => void;
        onViewHistory?: () => void;
        roomId: string;
        showHeader?: boolean;
        showRefresh?: boolean;
        showSettings?: boolean;
        styles?: Partial<AlertsStyles>;
        sx?: SxProps<Theme>;
    }
    Index

    Properties

    autoRefresh?: boolean

    Whether to auto-refresh alerts

    autoRefreshInterval?: number

    Auto-refresh interval in seconds

    colors?: Partial<AlertsColors>

    Custom colors

    filterTypes?: AlertType[]

    Filter by alert types

    icons?: Partial<AlertsIcons>

    Custom icons

    labels?: Partial<AlertsPanelLabels>

    Custom labels

    maxAlerts?: number

    Maximum alerts to display

    onAlertDoubleClick?: (alert: AlertsMeetingAlert) => void

    Callback when alert is double-clicked

    onDismiss?: (
        alertId: string,
        reason: "noted" | "not_relevant" | "false_positive" | undefined,
    ) => void

    Callback when alert is dismissed

    onError?: (error: Error) => void

    Callback on error

    onViewHistory?: () => void

    Callback when view history is clicked

    roomId: string

    Room ID for fetching alerts

    showHeader?: boolean

    Whether to show the header

    showRefresh?: boolean

    Whether to show refresh button

    showSettings?: boolean

    Whether to show settings button

    styles?: Partial<AlertsStyles>

    Custom styles

    sx?: SxProps<Theme>

    MUI sx prop