@rupam71/autocomplete
v5.1.6
Published
This Package is Fork from [@react-md/autocomplete](https://www.npmjs.com/package/@react-md/autocomplete)
Downloads
8
Maintainers
Readme
@rupam71/autocomplete
This Package is Fork from @react-md/autocomplete
Whats Add Here
If a user directly press 'enter' or 'tab' key without focusing list, still first filter value will be mark as submited.
Installation
npm install --save @rupam71/autocomplete
Documentation
You should check out the full documentation for live examples and more customization information, but an example usage is shown below.
Usage
The AutoComplete
component just requires:
- an
id
to identify the field (required for a11y) - a list of
data
that can be a list ofstring
,number
, orobject
However, it is recommended to also provide a label
and placeholder
text to
help the user understand this component.
import { AutoComplete } from "@react-md/autocomplete";
const fruits = [
"Apple",
"Apricot",
"Banana",
"Blueberry",
"Cranberry",
"Kiwi",
"Peach",
"Plum",
"Strawberry",
];
function Example() {
return (
<AutoComplete
id="search-fruits"
name="fruits"
label="Fruits"
placeholder="Kiwi..."
data={fruits}
/>
);
}