schema-components - v3.7.0
    Preparing search index...

    Interface HintInfo

    Description for a constraint hint emitted alongside an input.

    Returned by buildHintInfo when the field carries one or more constraint keywords worth announcing (min / max length, pattern without format, item count, …). Theme adapters render this as a <small> wired to the input via aria-describedby.

    interface HintInfo {
        id: string;
        hint: string;
        ariaDescribedBy: string;
    }
    Index

    Properties

    id: string

    DOM id matching hintIdFor(inputId) on the host input.

    hint: string

    Human-readable hint text.

    ariaDescribedBy: string

    Same value as id, exposed under the React-aligned name.