Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stevepapa/angular2-autosize

angular2-autosize is an Angular2 directive that automatically adjusts textarea height to fit content.
https://github.com/stevepapa/angular2-autosize

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

        

# angular2-autosize

## This project has moved to [ng-autosize](https://github.com/stevepapa/ng-autosize) and will be maintained there from now on. Significant performance improvements and bug fixes have been made and it is recommended you upgrade from this version to [ng-autosize](https://github.com/stevepapa/ng-autosize).

https://github.com/stevepapa/ng-autosize

.
.
.

***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](http://stevepapa.com/angular2-autosize)

## Installation:

```bash
npm install angular2-autosize
```

## Use Example:

Add the declaration to your @NgModule:

```typescript
import {Autosize} from 'angular2-autosize';

...

@NgModule({
declarations: [
Autosize
]
})
```

Use directly inside your HTML templates

```
Hello, this is an example of Autosize in Angular2.
```

## Author

[Steve Papa](https://stevepapa.com)

## Licence

This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for more info.