Skip to content

angular2-autosize is an Angular2 directive that automatically adjusts textarea height to fit content.

License

Notifications You must be signed in to change notification settings

Dumpen/angular2-autosize

 
 

Repository files navigation

angular-autosize

angular-autosize is an Angular directive that automatically adjusts textarea height to fit content.

It adjusts the textarea height automatically to any text input, or changes to the model bound to the textarea.

Demo

http://stevepapa.com/angular-autosize

Installation:

npm install angular-autosize

Use Example:

import {Component} from '@angular/core';
import {Autosize} from 'angular-autosize';

@Component({
  template: `
    <textarea autosize class="my-textarea">Hello, this is an example of Autosize in Angular.</textarea>
  `,
  directives: [Autosize]
})

class App {

}

Author

Steve Papa

Licence

This project is licensed under the MIT license.

About

angular2-autosize is an Angular2 directive that automatically adjusts textarea height to fit content.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 77.3%
  • JavaScript 22.7%