Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@react-md/autocomplete

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-md/autocomplete - npm Package Compare versions

Comparing version 2.7.0 to 2.7.1

12

CHANGELOG.md

@@ -6,2 +6,14 @@ # Change Log

## [2.7.1](https://github.com/mlaursen/react-md/compare/v2.7.0...v2.7.1) (2021-03-23)
### Other Internal Changes
* **ts:** stopped using FC type ([c5daa47](https://github.com/mlaursen/react-md/commit/c5daa47d73516e075c036fd745e7228d7f155a62))
# [2.7.0](https://github.com/mlaursen/react-md/compare/v2.6.0...v2.7.0) (2021-02-28)

@@ -8,0 +20,0 @@

18

package.json
{
"name": "@react-md/autocomplete",
"version": "2.7.0",
"version": "2.7.1",
"description": "",

@@ -41,10 +41,10 @@ "main": "./lib/index.js",

"dependencies": {
"@react-md/form": "^2.7.0",
"@react-md/list": "^2.7.0",
"@react-md/form": "^2.7.1",
"@react-md/list": "^2.7.1",
"@react-md/portal": "^2.7.0",
"@react-md/states": "^2.7.0",
"@react-md/theme": "^2.7.0",
"@react-md/transition": "^2.7.0",
"@react-md/typography": "^2.7.0",
"@react-md/utils": "^2.7.0",
"@react-md/states": "^2.7.1",
"@react-md/theme": "^2.7.1",
"@react-md/transition": "^2.7.1",
"@react-md/typography": "^2.7.1",
"@react-md/utils": "^2.7.1",
"classnames": "^2.2.6"

@@ -65,3 +65,3 @@ },

},
"gitHead": "931e81f628b580837df3a97267a42c9880b13815"
"gitHead": "4fb8828b048fd2472096d5f55033cc4a7ba24e1a"
}

@@ -35,3 +35,3 @@ # @react-md/autocomplete

```tsx
import React, { FC } from "react";
import React from "react";
import { AutoComplete } from "@react-md/autocomplete";

@@ -51,13 +51,13 @@

const Example: FC = () => (
<AutoComplete
id="search-fruits"
name="fruits"
label="Fruits"
placeholder="Kiwi..."
data={fruits}
/>
);
export default Example;
function Example() {
return (
<AutoComplete
id="search-fruits"
name="fruits"
label="Fruits"
placeholder="Kiwi..."
data={fruits}
/>
);
}
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc