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

    Props for AlertList component

    interface AlertListProps {
        alertCounts?: Partial<Record<AlertType, number>>;
        alerts: AlertsMeetingAlert[];
        colors?: Partial<AlertsColors>;
        icons?: Partial<AlertsIcons>;
        isLoading?: boolean;
        labels?: Partial<AlertsPanelLabels & AlertCardLabels>;
        onAlertDoubleClick?: (alert: AlertsMeetingAlert) => void;
        onDismiss?: (
            alertId: string,
            reason: "noted" | "not_relevant" | "false_positive" | undefined,
        ) => void;
        styles?: Partial<AlertsStyles>;
        sx?: SxProps<Theme>;
    }
    Index

    Properties

    alertCounts?: Partial<Record<AlertType, number>>

    Alert counts by type

    Array of alerts to display

    colors?: Partial<AlertsColors>

    Custom colors

    icons?: Partial<AlertsIcons>

    Custom icons

    isLoading?: boolean

    Whether alerts are loading

    Custom labels

    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

    styles?: Partial<AlertsStyles>

    Custom styles

    sx?: SxProps<Theme>

    MUI sx prop