Maeve is a react component library for building forms quickly. There are 4 components that you can use in combination/inidvidually to make your forms awesome.
Maeve is a react component library for building forms quickly.
There are 4 components that you can use in combination/inidvidually to make your forms awesome.
MaeveInput
MaeveMulti
MaeveDropdown
MaeveToggle
Feel free to send a request for any new components that you think might help you. :)
Maeve Input
Import
import MaeveInput from 'maeve/packages/maeve-input';
Usage
Maeve Input requires "id" and input "type", Rest are optional.
<MaeveInput
id="listAutocomplete"// specify a unique id for each input field.
type="email"//Optionals
onValueUpdate={this.onValueUpdate} // this function will be called on each value update.
debounceTime={0} // You can specify a debunce time to get less frequent updates. default value is 20
/>
Other than these fields, you can always pass attributes for a input field
as specified in the MDN docs for
With Autocomplete
Autocomplete settings object
const autoComplete = {
source: ["apple", "banana", "cat", "appollo", "caterpillar"],
// source can be an array of items to search from.// or it can be a function that returns an array.trigger: 3,
// optional. Defaults to 0// number of minimum letters in input after which trigger the autocompleteaddNewItem: this.addNewItem,
// An Optional key required if you want to create a add new button in the dropdown. The value is a callback function
};
<MaeveInput// Essentials
id="listAutocomplete"
onValueUpdate={this.onValueUpdate}
// Optionals
autocomplete={autoComplete} // autocomplete options
placeholder="hello"// A simple placeholder is supported
/>
FAQs
Maeve is a react component library for building forms quickly. There are 4 components that you can use in combination/inidvidually to make your forms awesome.
We found that maeve demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.It has 2 open source maintainers collaborating on the project.
Package last updated on 10 Jun 2018
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.
Microsoft has released an open source toolkit for enforcing runtime security policies on AI agents as adoption accelerates faster than governance controls.