@legendapp/list 3.0.4 → 3.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/react-native.js +369 -238
- package/react-native.mjs +369 -238
- package/react-native.web.js +369 -238
- package/react-native.web.mjs +370 -239
- package/react.js +369 -238
- package/react.mjs +370 -239
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## 3.0.5
|
|
2
|
+
|
|
3
|
+
- Fix: clearCaches now rechecks the rows that are already on screen, so resetting the size cache does not leave items stuck in old positions.
|
|
4
|
+
- Perf: Scrolling through content that is already rendered now updates viewability with less work.
|
|
5
|
+
- Perf: Trimmed repeated work during scrolls, especially around recycled containers, sticky headers, size checks, and viewability.
|
|
6
|
+
- Perf: Large and fast scrolls now reuse more of the same scroll state instead of recalculating it in multiple places.
|
|
7
|
+
|
|
1
8
|
## 3.0.4
|
|
2
9
|
|
|
3
10
|
- Fix: scrollToEnd now waits for newly committed data before targeting the final item, improving chat-style append-and-scroll flows.
|
package/package.json
CHANGED