Wagtail client-side components
    Preparing search index...
    interface TextAreaProps {
        additionalAttributes?: Pick<
            DetailedHTMLProps<
                TextareaHTMLAttributes<HTMLTextAreaElement>,
                HTMLTextAreaElement,
            >,
            "key" | (keyof TextareaHTMLAttributes<HTMLTextAreaElement>),
        >;
        className?: string;
        focusOnMount?: boolean;
        focusTarget?: boolean;
        placeholder?: string;
        value: string;
        onChange(newValue: string): void;
    }
    Index

    Properties

    additionalAttributes?: Pick<
        DetailedHTMLProps<
            TextareaHTMLAttributes<HTMLTextAreaElement>,
            HTMLTextAreaElement,
        >,
        "key" | (keyof TextareaHTMLAttributes<HTMLTextAreaElement>),
    >
    className?: string
    focusOnMount?: boolean
    focusTarget?: boolean
    placeholder?: string
    value: string

    Methods