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

react-select-async-paginate

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-select-async-paginate - npm Package Compare versions

Comparing version 0.3.13 to 0.3.14

6

CHANGELOG.md

@@ -0,1 +1,7 @@

## 0.3.14 (01 apr 2020)
### Bugfix
- Removed excess check of scrollability of menu for load more options [#52](https://github.com/vtaits/react-select-async-paginate/issues/52)
## 0.3.13 (28 mar 2020)

@@ -2,0 +8,0 @@

7

es/wrap-menu-list.js

@@ -81,8 +81,3 @@ import _extends from "@babel/runtime/helpers/extends";

scrollHeight = el.scrollHeight,
clientHeight = el.clientHeight; // menu hasn't scroll
if (scrollHeight <= clientHeight) {
return true;
}
clientHeight = el.clientHeight;
var shouldLoadMore = this.props.selectProps.shouldLoadMore;

@@ -89,0 +84,0 @@ return shouldLoadMore(scrollHeight, clientHeight, scrollTop);

@@ -101,8 +101,3 @@ "use strict";

scrollHeight = el.scrollHeight,
clientHeight = el.clientHeight; // menu hasn't scroll
if (scrollHeight <= clientHeight) {
return true;
}
clientHeight = el.clientHeight;
var shouldLoadMore = this.props.selectProps.shouldLoadMore;

@@ -109,0 +104,0 @@ return shouldLoadMore(scrollHeight, clientHeight, scrollTop);

{
"name": "react-select-async-paginate",
"version": "0.3.13",
"version": "0.3.14",
"description": "Wrapper above react-select that supports pagination on menu scroll",

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

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