Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Sanderand/angular-auto-size-input

Repository files navigation

Auto Size Input

Plug and Play directive to automatically scale textareas to their contents. Works while yout type, copy, cut, and paste.

How to use it

  1. npm i angular-auto-size-input
  2. import { AutoSizeInputModule } from 'angular-auto-size-input'; and add it to you Angular module
  3. Add the asAutoSizeInput directive to your textareas
<textarea
  asAutoSizeInput>
  Hello
</textarea>

Recommended styles (optional)

textarea.as-auto-size-input {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  outline: 0;
  padding: 4px;
  margin: 0;
  background: transparent;
  resize: none;
  box-sizing: border-box;
  overflow: hidden;
}

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published