BREAKING CHANGES
- Merged
findStartIndex/findEndIndexintofindItemIndexfor more control
// before
handle.findStartIndex();
// after
handle.findItemIndex(handle.scrollOffset);
// before
handle.findEndIndex();
// after
handle.findItemIndex(handle.scrollOffset + handle.viewportSize);- Refactored some methods and props of experimental_VGrid #777
What's Changed
- Refactor handle by @inokawa in #808
- Refactor handle by @inokawa in #814
- Add getItemOffset/getItemSize to WindowVirtualizerHandle by @inokawa in #815
- Replace findStartIndex/findEndIndex with findItemIndex by @inokawa in #816
- Refine VGrid methods and props by @inokawa in #777
Full Changelog: 0.46.7...0.47.0