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

    Interface Hint

    Description for a constraint hint emitted alongside an input.

    Returned by constraintHint when the field carries one or more constraint keywords the user should be told about (min/max, pattern, item count, …). Theme adapters render this as a <small> element wired to the input via aria-describedby.

    interface Hint {
        id: string;
        text: string;
    }
    Index

    Properties

    Properties

    id: string

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

    text: string

    Human-readable hint text.