ohanhi/autoexpand

A pure Elm auto expanding textarea


Keywords
elm, textarea
License
BSD-3-Clause
Install
elm-package install ohanhi/autoexpand 2.1.1

Documentation

AutoExpand

Autoexpanding textarea in Elm.

This is a simple reusable view for those times when you want to show a small text box to begin with, but want the space to grow as the user types in more stuff.

For now, the box can only grow but not shrink back to a smaller size.

For packaging this, I took a lot of influence from the evancz/elm-sortable-table package. This means the same two general rules apply:

  • Always put AutoExpand.State in your model.
  • Never put AutoExpand.Config in your model.

Usage

Take a look at the example to get a good idea of how to use this.