All Projects → rehooks → Input Value

rehooks / Input Value

Licence: mit
React hook for creating input values

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Input Value

svelte-multiselect
Keyboard-friendly, accessible and highly customizable multi-select component
Stars: ✭ 91 (-12.5%)
Mutual labels:  input, forms
Formik
Build forms in React, without the tears 😭
Stars: ✭ 29,047 (+27829.81%)
Mutual labels:  hooks, forms
react-cool-form
😎 📋 React hooks for forms state and validation, less code more performant.
Stars: ✭ 246 (+136.54%)
Mutual labels:  hooks, forms
Fielder
A field-first form library for React and React Native
Stars: ✭ 160 (+53.85%)
Mutual labels:  hooks, forms
Awesomevalidation
Android validation library which helps developer boil down the tedious work to three easy steps.
Stars: ✭ 1,093 (+950.96%)
Mutual labels:  forms, input
React Form
⚛️ Hooks for managing form state and validation in React
Stars: ✭ 2,270 (+2082.69%)
Mutual labels:  hooks, forms
React Hook Form
📋 React Hooks for form state management and validation (Web + React Native)
Stars: ✭ 24,831 (+23775.96%)
Mutual labels:  hooks, forms
hookahjs
Add empty/dirty/touched CSS hooks to input and textarea elements automatically (1056 bytes)
Stars: ✭ 21 (-79.81%)
Mutual labels:  input, forms
Use Form
Build great forms without effort. 🚀
Stars: ✭ 42 (-59.62%)
Mutual labels:  hooks, forms
Usetheform
React library for composing declarative forms, manage their state, handling their validation and much more.
Stars: ✭ 40 (-61.54%)
Mutual labels:  hooks, forms
Hooked Form
Performant 2KB React library to manage your forms
Stars: ✭ 110 (+5.77%)
Mutual labels:  hooks, forms
Autosize Input
🎈 Effortless, dynamic-width text boxes in vanilla JavaScript
Stars: ✭ 64 (-38.46%)
Mutual labels:  forms, input
Validation
Framework agnostic validation library for PHP
Stars: ✭ 146 (+40.38%)
Mutual labels:  forms, input
insect
🛠 Highly customisable, minimalistic input x select field for React.
Stars: ✭ 33 (-68.27%)
Mutual labels:  input, forms
Vue Formulate
⚡️ The easiest way to build forms with Vue.
Stars: ✭ 1,947 (+1772.12%)
Mutual labels:  forms, input
Form Js
Easily create web forms. Supports Meteor, AngularJS, React, Polymer and any CSS library, e.g. Bootstrap.
Stars: ✭ 9 (-91.35%)
Mutual labels:  forms, input
Customui
Library to create custom UI's in MCPE 1.2+
Stars: ✭ 60 (-42.31%)
Mutual labels:  forms, input
Formium
The headless form builder for the modern web.
Stars: ✭ 78 (-25%)
Mutual labels:  hooks, forms
Debug Objects
WordPress Plugin for debugging and learning with and at the application.
Stars: ✭ 98 (-5.77%)
Mutual labels:  hooks
Uniforms
A React library for building forms from any schema.
Stars: ✭ 1,368 (+1215.38%)
Mutual labels:  forms

@rehooks/input-value

React hook for creating input values

Note: This is using the new React Hooks API Proposal which is subject to change until React 16.7 final.

You'll need to install react, react-dom, etc at ^16.7.0-alpha.0

Install

yarn add @rehooks/input-value

Usage

import useInputValue from '@rehooks/input-value';

function MyComponent() {
  let name = useInputValue('Jamie');
  // name = { value: 'Jamie', onChange: [Function] }
  return <input {...name}/>;
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].