svelte-autoresize-textarea
TypeScript icon, indicating that this package has built-in type declarations

0.0.6 • Public • Published

Auto-resize Textarea for Svelte

An in-built auto-resize functionality for a textarea element using the scroll height of a singleton proxy textarea element attached to the document body. This is the 100% accurate implementation and does not break irrespective of the borders, padding, or amount of text.

Install

npm install svelte-autoresize-textarea

Usage

<script>
import { AutoResizeTextarea } from "svelte-autoresize-textarea";
</script>

<template>
  <AutoResizeTextarea
    :maxRows="10"
    :minRows="4"
  />
</template>

Props

prop type description
maxRows number Maximum number of rows up to which the textarea can grow
minRows number Minimum number of rows to show for textarea

Apart from these, the component accepts all props that are accepted by <textarea/>.

Readme

Keywords

none

Package Sidebar

Install

npm i svelte-autoresize-textarea

Weekly Downloads

20

Version

0.0.6

License

none

Unpacked Size

29 kB

Total Files

8

Last publish

Collaborators

  • anksin1994