Socket
Socket
Sign inDemoInstall

suggestions

Package Overview
Dependencies
2
Maintainers
4
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.7.0 to 1.7.1

3

CHANGELOG.md

@@ -0,1 +1,4 @@

### v1.7.1
- Only add to window if window exists [#42](https://github.com/tristen/suggestions/pull/42)
### v1.7.0

@@ -2,0 +5,0 @@ - [feature] Add `hideOnBlur` option [#30](https://github.com/tristen/suggestions/pull/30)

@@ -59,2 +59,6 @@ 'use strict';

var Suggestions = require('./src/suggestions');
window.Suggestions = module.exports = Suggestions;
module.exports = Suggestions;
if (typeof window !== 'undefined') {
window.Suggestions = Suggestions;
}

2

package.json
{
"name": "suggestions",
"version": "1.7.0",
"version": "1.7.1",
"description": "A typeahead component for inputs",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc