Flarum (v2.0.0-beta.6)
    Preparing search index...
    interface IInputAttrs {
        ariaLabel?: string;
        className?: string;
        clearable?: boolean;
        clearLabel?: string;
        disabled?: boolean;
        inputAttrs?: { className?: string; [key: string]: any };
        loading?: boolean;
        onchange?: (value: string) => void;
        placeholder?: string;
        prefixIcon?: string;
        readonly?: boolean;
        renderInput?: (attrs: any) => Children;
        stream?: Stream<string>;
        type?: string;
        value?: string;
        [property: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [property: string]: any

      Any other virtual element properties, including attributes and event handlers.

    Index

    Properties

    ariaLabel?: string
    className?: string

    The class name(s) for this virtual element, as a space-separated list.

    clearable?: boolean
    clearLabel?: string
    disabled?: boolean
    inputAttrs?: { className?: string; [key: string]: any }
    loading?: boolean
    onchange?: (value: string) => void
    placeholder?: string
    prefixIcon?: string
    readonly?: boolean
    renderInput?: (attrs: any) => Children
    stream?: Stream<string>
    type?: string
    value?: string