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

react-native-largelist

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-largelist - npm Package Compare versions

Comparing version 1.2.3 to 1.2.4

13

largelist/LargeList.js

@@ -214,4 +214,4 @@ /*

this.currentSection = 0;
this.minCellHeight = 100;
this.minSectionHeight = 100;
this.minCellHeight = 40;
this.minSectionHeight = 40;
this.sizeConfirmed = false;

@@ -517,3 +517,4 @@ this.headerHeight = null;

if (this._compareIndexPath(item.indexPath, this.topIndexPath) < 0) {
this.freeRefs.splice(0, 0, item);
// this.freeRefs.splice(0, 0, item);
this.freeRefs.push(item);
}

@@ -632,3 +633,4 @@ });

if (this._compareIndexPath(item.indexPath, this.bottomIndexPath) > 0) {
this.freeRefs.splice(0, 0, item);
// this.freeRefs.splice(0, 0, item);
this.freeRefs.push(item);
}

@@ -1023,3 +1025,4 @@ });

this.workRefs.forEach(cell => {
this.freeRefs.splice(0, 0, cell);
// this.freeRefs.splice(0, 0, cell);
this.freeRefs.push(cell);
});

@@ -1026,0 +1029,0 @@ this.freeRefs.forEach(cell => {

@@ -130,3 +130,3 @@ /*

let show =
this.top !== -10000 &&
// this.top !== -10000 &&
section >= 0 &&

@@ -144,2 +144,3 @@ section < this.props.numberOfSections() &&

this.props.renderCell(this.indexPath.section, this.indexPath.row)}
{show && this._renderItemSeparator()}
</View>

@@ -146,0 +147,0 @@ );

{
"name": "react-native-largelist",
"version": "1.2.3",
"version": "1.2.4",
"private": false,

@@ -5,0 +5,0 @@ "description": "The best performance large list component which is much better than SectionList for React Native.",

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