1.1.0 • Published 1 year ago

@aroleaf/svelte-textarea-autoresize v1.1.0

Weekly downloads
-
License
-
Repository
github
Last release
1 year 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-autosize.

Install

$ npm install svelte-textarea-autoresize

Demo

https://dyl.dog/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.." />