New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@dccs/react-autocomplete-mui

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dccs/react-autocomplete-mui

React-Autocomplete without the tears

latest
Source
npmnpm
Version
0.10.4
Version published
Maintainers
1
Created
Source

react-autocomplete-mui · travis build npm version

Simple Autocomplete using Material-UI

Demos

https://dccs-it-business-solutions.github.io/react-autocomplete-mui/

Installation

You should install react-autocomplete-mui with npm or yarn:

npm install @dccs/react-autocomplete-mui
or
yarn add @dccs/react-autocomplete-mui

This command will download and install react-autocomplete-mui

This package is only tested with @material-ui/lab@4.0.0-alpha.39!!

How it works

This package is based on the @material-ui/lab/Autocomplete

Uncontrolled Autocomplete with static options

   <Autocomplete<any>
      options={[{id:1, name:"Test 1"}, {id:2, name:"Test 2"}]}
      keyProp={o => o.id}
      textProp={o => o.name}
      onChange={(e, v) => setValue(v)}
    />
/>

Controlled Autocomplete with options loaded async

<Autocomplete
  variant="async"
  value={value}
  onChange={(e, v) => setValue(v)}
  onLoadOptions={(query) => api.queryCountries(query)}
  keyToOption={(key) => api.getCountry(key)}
  keyProp={(o) => o.name}
  textProp={(o) => o.name}
/>

Contributing

License

@dccs/react-autocomplete-mui is MIT licensed

Keywords

npm

FAQs

Package last updated on 08 Jun 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts