@legendapp/list 2.0.4 → 2.0.6

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 CHANGED
@@ -1,3 +1,50 @@
1
+ ## 2.0.6
2
+ - Fix: updateItemPositions edge case with items multiple screen heights long was breaking the loop too early
3
+
4
+ ## 2.0.5
5
+ - Perf: Change updateAllPositions to constrain processing to the scroll range
6
+ - Fix: Crash when using snapTo in some environments
7
+ - Perf: Change Separator to use useIsLastItem which should reduce the number of times it runs
8
+
9
+ ## 2.0.4
10
+ - Fix: Possible crash if refScroller is undefined
11
+
12
+ ## 2.0.3
13
+ - Feat: Set activeStickyIndex for usage in getState()
14
+ - Revert changes from 2.0.1 and 2.0.2 which were buggy in an edge case
15
+
16
+ ## 2.0.2
17
+ - Fix: Performance improvement in 2.0.1 caused a bug in an edge case
18
+
19
+ ## 2.0.1
20
+ - Perf: Improve performance in very long lists (bad release)
21
+
22
+ ## 2.0.0
23
+ Major version release with significant performance improvements and architectural changes:
24
+ - Feat: Complete rewrite of virtualization algorithm for better performance
25
+ - Feat: Add sticky headers support via stickyIndices prop
26
+ - Feat: Add snapToIndices prop for snap-to behavior
27
+ - Feat: Add getItemType prop for better item type handling
28
+ - Feat: Add getFixedItemSize prop for items with known fixed sizes
29
+ - Feat: Add itemsAreEqual prop to reduce re-rendering when data changes
30
+ - Feat: Expose positions in getState()
31
+ - Feat: Add enableAverages prop to control average size calculations
32
+ - Feat: Add viewOffset option to scrollToEnd
33
+ - Feat: Improve maintainScrollAtEnd with more granular options
34
+ - Feat: Add ref function to enable/disable scroll processing
35
+ - Feat: Support lazy rendering directly in LegendList component
36
+ - Perf: Optimize container positioning using transform instead of absolute positioning
37
+ - Perf: Improve scroll buffering algorithm with directional bias
38
+ - Perf: Enable batched updates for better rendering performance
39
+ - Perf: Optimize container allocation and reuse algorithms
40
+ - Perf: Improve average item size calculations
41
+ - Fix: Improve maintainVisibleContentPosition reliability
42
+ - Fix: Better handling of data changes and scroll position maintenance
43
+ - Fix: Improve initial scroll positioning accuracy
44
+ - Fix: Better handling of padding changes
45
+ - Fix: Resolve various edge cases with container recycling
46
+ - Fix: Improve viewability calculations
47
+
1
48
  ## 1.1.4
2
49
  - Feat: Add sizes to getState()
3
50