1.3.1 • Published 4 years ago

minthril-form v1.3.1

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

minthril-form

A form ui library for minthril.

Live demo

Screenshot

Screenshot of Demo

Example Usage

const {createForm, createTextInput } = require('minthril-form');

h(
  'div',
  { class: 'someForm' },
  createForm(minthril, {
    fields: [{
      name: 'firstName',
      label: 'First Name',
      component: createTextInput,
      autoFocus: true,
      initialValue: 'Joe'
    }, {
      name: 'lastName',
      label: 'Last Name',
      component: createTextInput,
      initialValue: 'Bloggs'
    }
  )
)
1.3.1

4 years ago

1.2.0

4 years ago

1.3.0

4 years ago

1.1.0

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago