Gathering detailed insights and metrics for @react-md/autocomplete
Gathering detailed insights and metrics for @react-md/autocomplete
Gathering detailed insights and metrics for @react-md/autocomplete
Gathering detailed insights and metrics for @react-md/autocomplete
React material design - An accessible React component library built from the Material Design guidelines in Sass
npm install @react-md/autocomplete
Typescript
Module System
Node Version
NPM Version
@react-md/core@6.3.1
Updated on Jul 11, 2025
@react-md/core@6.3.0
Updated on Jul 04, 2025
@react-md/core@6.2.1
Updated on Jul 03, 2025
@react-md/core@6.2.0
Updated on Jun 13, 2025
@react-md/core@6.1.0
Updated on May 30, 2025
@react-md/core@6.0.2
Updated on May 24, 2025
TypeScript (89.84%)
MDX (5.71%)
SCSS (4.33%)
JavaScript (0.12%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
2,338 Stars
6,519 Commits
301 Forks
53 Watchers
12 Branches
68 Contributors
Updated on Jul 15, 2025
Latest Version
5.1.6
Package Id
@react-md/autocomplete@5.1.6
Unpacked Size
180.50 kB
Size
31.68 kB
File Count
46
NPM Version
lerna/4.0.0/node@v18.18.0+x64 (linux)
Node Version
18.18.0
Published on
Dec 11, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
9
Create an accessible autocomplete component that allows a user to get real-time suggestions as they type within an input. This component can also be hooked up to a backend API that handles additional filtering or sorting.
1npm install --save @react-md/autocomplete
You should check out the full documentation for live examples and more customization information, but an example usage is shown below.
The AutoComplete
component just requires:
id
to identify the field (required for a11y)data
that can be a list of string
, number
, or object
However, it is recommended to also provide a label
and placeholder
text to
help the user understand this component.
1import { AutoComplete } from "@react-md/autocomplete"; 2 3const fruits = [ 4 "Apple", 5 "Apricot", 6 "Banana", 7 "Blueberry", 8 "Cranberry", 9 "Kiwi", 10 "Peach", 11 "Plum", 12 "Strawberry", 13]; 14 15function Example() { 16 return ( 17 <AutoComplete 18 id="search-fruits" 19 name="fruits" 20 label="Fruits" 21 placeholder="Kiwi..." 22 data={fruits} 23 /> 24 ); 25}
No vulnerabilities found.
Reason
30 commit(s) and 3 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
SAST tool detected: CodeQL
Details
Reason
no binaries found in the repo
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
15 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More