1.0.0 • Published 4 years ago

svelte-textarea-autoresize v1.0.0

Weekly downloads
7
License
-
Repository
-
Last release
4 years ago

Svelte Textarea Autoresize

An autoresizing textarea component that adjusts it's height based on it's content. Based on the wonderful andarist/react-textarea-autoresize.

Install

$ npm install svelte-textarea-autoresize

Use

You can either use the component as is:

<script>
  import AutoresizingTextArea from 'svelte-textarea-autoresize'
</script>

<AutoresizingTextArea placeholder="Type something long into me.." />

or by using the exported autoresize function on your existing component like so:

<script>
  import { autoresize } from 'svelte-textarea-autoresize'
</script>

<textarea use:autoresize placeholder="Type something long into me.." />