indicator-ui 0.0.237 → 0.0.238

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/dist/index.js CHANGED
@@ -25820,7 +25820,7 @@ function ScrollProvider(_ref) {
25820
25820
  if (onScrollTop && Math.abs(scrollTop) <= accuracy) {
25821
25821
  onScrollTop();
25822
25822
  }
25823
- if (onScrollBottom && scrollTop + clientHeight + accuracy >= scrollHeight) {
25823
+ if (onScrollBottom && Math.abs(scrollTop) + clientHeight + accuracy >= scrollHeight) {
25824
25824
  onScrollBottom();
25825
25825
  }
25826
25826
  if (onScroll) {