react-floating-input

2.1.10 • Public • Published

react-floating-input

Customizable floating label input for react.
Compatiable with redux-form. Feel free to create pull requests or contact the developer mayerlench1314@gmail.com for issues

Link with all examples!

DEMO - React Input Float

Demo GIF

alt text

Usage

import InputFloat from 'react-floating-input'

class DemoInput extends Component {
    state = {
        inputVal: ''
    }

    render() {
          <InputFloat
            value={this.state.inputVal}
            onChange={({ target }) => this.setState({ inputVal: target.value })}
            placeholder="Floating Input" 
           />
        )
    }
}

Properties

InputFloat.propTypes = {
  onChange: PropTypes.func,
  onKeyPress: PropTypes.func,
  placeholder: PropTypes.string,
  name: PropTypes.string,
  type: PropTypes.string, //default: 'text'
  value: PropTypes.string,
  hideBar: PropTypes.bool,
  disabled: PropTypes.bool, //defaults hideBar to true and makes input not editable
  staticLabel: PropTypes.bool,
  labelZoom: PropTypes.bool, //Will zoom the placeholder when focused

  //Choose your colors
  color: PropTypes.string, //default: '#999' when input is not focused
  activeColor: PropTypes.string,  //default: '#007BFF' when input is focused
}

Redux Form Usage

import { Field } from 'redux-form'
import { InputFloat } from 'react-floating-input'

//Any props on the Fields component get passed to InputFloat 
<Field component={InputFloat} type="text" name="email" placeholder="Email"  />

License

MIT

Package Sidebar

Install

npm i react-floating-input

Weekly Downloads

11

Version

2.1.10

License

MIT

Unpacked Size

41.2 kB

Total Files

6

Last publish

Collaborators

  • mayerlench