From accb8cd8149de2a29dfdf61e5f490a2a692cf16e Mon Sep 17 00:00:00 2001
From: Website Deployment Script renderItem, Header, Footer, etc. functions depend on an
much more. Note these items will never be unmounted as part of the windowed rendering in order
to improve perceived performance of scroll-to-top actions.
Reverses the direction of scroll. Uses scale transforms of -1.
Used to extract a unique key for a given item at the specified index. Key is used for caching and as the react key to track item re-ordering. The default extractor checks item.key, then -falls back to using the index, like react does. Note that this sets keys for each item, but +falls back to using the index, like react does. Note that this sets keys for each item, but each overall section still needs its own key.
Called once when the scroll position gets within onEndReachedThreshold of the rendered
content.
How far from the end (in units of visible length of the list) the bottom edge of the
list must be from the end of the content to trigger the onEndReached callback.
diff --git a/releases/next/docs/virtualizedlist.html b/releases/next/docs/virtualizedlist.html
index f21906b57d8..089b15251d8 100644
--- a/releases/next/docs/virtualizedlist.html
+++ b/releases/next/docs/virtualizedlist.html
@@ -13,7 +13,8 @@ changes. This includes the data prop and parent component state.
key prop on each item and uses that for the React key.
-Alternatively, you can provide a custom keyExtractor prop.Rendered when the list is empty. Can be a React Component Class, a render function, or
+Alternatively, you can provide a custom keyExtractor prop.
Each cell is rendered using this element. Can be a React Component Class, +or a render function. Defaults to using View.
Rendered when the list is empty. Can be a React Component Class, a render function, or a rendered element.
Rendered at the bottom of all the items. Can be a React Component Class, a render function, or a rendered element.
Rendered at the top of all the items. Can be a React Component Class, a render function, or a rendered element.
The default accessor functions assume this is an Array<{key: string}> but you can override