A React auto-suggest text input
npm install react-as-suggest







> A React auto-suggest text input
``bash`
$ npm install --save react-as-suggest
`javascript
import React from 'react';
import ReactDOM from 'react-dom';
import Suggest from 'react-as-suggest';
ReactDOM.render(
)} onFocus={val => console.log(focus: ${val})} placeholder="event handle" suggests={['aaa', 'bbb', 'ccc']}/>
, document.getElementById('demo'));
`
[insert]: # (start:src/index.jsx|doc)
| Name | Description | Type | Required | Default Value |
| :--- | :----- | :--- | :---: | :---: |
| className | class name of the suggest input | String | | 'ra-suggest' |''
| defaultValue | default value of the suggest input | String | | |false
| disabled | whether the suggest input is disabled | Boolean | | |'ra-input'
| inputClassName | class name of the input | String | | |160
| maxHeight | max height of the suggest panel | Number | | |null
| name | name of the suggest input in the form | String | | |() => {}
| onBlur | callback when blur | Function | | |() => {}
| onChange | callback when value change | Function | | |() => {}
| onFocus | callback when focus | Function | | |''
| placeholder | placeholder of the suggest input | String | | |'default'
| readOnly | wheher this suggest input is readonly | Boolean | | |
| skin | skin of the suggest input | 'success'│'error'│'default' | | |[]
| suggests | suggset list | Array(String) | | |true
| useFilter | whether suggest is auto filter by current value | Boolean | | |280
| value | current value | String | | |
| width | width of the suggest input | Number | | |
[insert]: # (end:src/index.jsx)
`bash``
$ npm run dev # startup local dev server
$ npm run build # build
$ npm run test # run tests
$ npm run cov # run coverage
$ npm run build-demo # build demo, auto run in 'npm run build'
$ npm run build-test # build test, auto run in 'npm run build'
The MIT License (MIT)
Copyright (c) 2015 LingyuCoder
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.