An autoresizing textarea component that adjusts it's height based on it's content. Based on the wonderful andarist/react-textarea-autosize.
$ npm install svelte-textarea-autoresize
https://dyl.dog/svelte-textarea-autoresize/
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.." />