<?xml version="1.0" encoding="UTF-8" ?>
<templates xml:space="preserve">

<t t-name="mail.AutoresizeInput">
    <input
        class="o-mail-AutoresizeInput o_input px-1 border-1 text-truncate"
        t-attf-class="{{ props.className }}"
        t-attf-placeholder="{{ props.placeholder }}"
        t-att-disabled="!props.enabled"
        t-att-title="state.value"
        t-model="state.value"
        t-on-keydown="onKeydownInput"
        t-on-blur="() => this.props.onValidate(this.state.value)"
        t-ref="input"
        type="text"
    />
</t>

</templates>
