MAIDR Documentation - v3.72.1
    Preparing search index...

    State interface for text display and announcement functionality.

    interface TextState {
        enabled: boolean;
        announce: boolean;
        value: string;
        revision: number;
        message: string | null;
    }
    Index

    Properties

    enabled: boolean
    announce: boolean
    value: string
    revision: number

    Monotonic counter that increments on every text update AND every notification (including same-text/same-message dispatches). The View keys the screen-reader alert region on it, so bumping it here is what forces a re-announcement (via re-mount) even when the text/message is unchanged — without relying on invisible Unicode characters.

    message: string | null