react-native-largelist
Advanced tools
Comparing version 1.2.2 to 1.2.3
@@ -41,8 +41,8 @@ /* | ||
numberOfRowsInSection?: (section: number) => number; | ||
renderCell: (section: number, row: number) => React.Element<any>|null; | ||
renderCell: (section: number, row: number) => React.ReactElement<any>|null; | ||
heightForCell: (section: number, row: number) => number; | ||
renderSection?: (section: number) => React.Element<any>|null; | ||
renderSection?: (section: number) => React.ReactElement<any>|null; | ||
heightForSection?: (section: number) => number; | ||
renderHeader?: () => React.Element<any>|null; | ||
renderFooter?: () => React.Element<any>|null; | ||
renderHeader?: () => React.ReactElement<any>|null; | ||
renderFooter?: () => React.ReactElement<any>|null; | ||
bounces?: boolean; | ||
@@ -65,7 +65,7 @@ refreshing?: boolean; | ||
allLoadCompleted?: boolean; | ||
renderLoadingMore?: () => React.Element<any>|null; | ||
renderLoadCompleted?: () => React.Element<any>|null; | ||
renderLoadingMore?: () => React.ReactElement<any>|null; | ||
renderLoadCompleted?: () => React.ReactElement<any>|null; | ||
numberOfCellPoolSize?: number; | ||
numberOfSectionPoolSize?: number; | ||
renderEmpty?: () => React.Element<any>|null; | ||
renderEmpty?: () => React.ReactElement<any>|null; | ||
widthForRightWhenSwipeOut?: (section: number, row: number) => number; | ||
@@ -75,3 +75,3 @@ renderRightWhenSwipeOut?: ( | ||
row: number | ||
) => React.Element<any>|null; | ||
) => React.ReactElement<any>|null; | ||
widthForLeftWhenSwipeOut?: (section: number, row: number) => number; | ||
@@ -81,6 +81,6 @@ renderLeftWhenSwipeOut?: ( | ||
row: number | ||
) => React.Element<any>|null; | ||
) => React.ReactElement<any>|null; | ||
colorForSwipeOutBgColor?: (section: number, row: number) => string; | ||
initialOffsetY?: number; | ||
renderItemSeparator?: (section: number, row: number) => React.Element<any>|null; | ||
renderItemSeparator?: (section: number, row: number) => React.ReactElement<any>|null; | ||
onLargeListDidUpdate?: () => any; | ||
@@ -100,5 +100,5 @@ } | ||
scrollTo(offset: Offset, animated: boolean = true): void; | ||
scrollToIndexPath(indexPath: IndexPath, animated: boolean = true): void; | ||
scrollToEnd(animated: boolean = true): void; | ||
scrollTo(offset: Offset, animated?: boolean): void; | ||
scrollToIndexPath(indexPath: IndexPath, animated?: boolean): void; | ||
scrollToEnd(animated?: boolean): void; | ||
visibleIndexPaths(): IndexPath[]; | ||
@@ -105,0 +105,0 @@ renderedIndexPaths(): IndexPath[]; |
{ | ||
"name": "react-native-largelist", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"private": false, | ||
@@ -5,0 +5,0 @@ "description": "The best performance large list component which is much better than SectionList for React Native.", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
108612