ngx-auto-resize is an Angular package that provides a directive for auto-resizing textarea element in Angular 17 or above projects.
You can install the ngx-autoresize package using npm:
npm install ngx-auto-resize
Just import the directive in TS file of the component like this.
@Component({
selector: 'app-root',
standalone: true,
imports: [AutoResize],
templateUrl: './app.component.html',
styleUrl: './app.component.css'
})
<textarea AutoResize></textarea>