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

chrum/angular2-autosize

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

!!!Important

This project has been moved to https://github.com/chrum/ngx-autosize

angular2-autosize

This fork adds

  • AOT support
  • nested textarea lookup so it is possible to use it with Ionics

angular2-autosize is an Angular2 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/angular2-autosize

Installation:

npm install angular2-autosize

Use Example:

Add the declaration to your @NgModule:

import {AutosizeModule} from 'angular2-autosize';

...

@NgModule({
  imports: [
    AutosizeModule
  ]
})

Use directly inside your HTML templates

<textarea autosize class="my-textarea">
    Hello, this is an example of Autosize in Angular2.
</textarea>
<ion-textarea autosize [(ngModel)]="text">
    And this is Ionic2 example
</ion-textarea>

Author

Steve Papa

Licence

This project is licensed under the MIT license. See the LICENSE file for more info.

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 100.0%