import { Controller } from '@hotwired/stimulus' export default class extends Controller { connect() { this.element.rows = 1 this.resize() } resize() { this.element.style.height = 'auto' this.element.style.height = `${this.element.scrollHeight}px` } }