React Custom Scrollbars Versions Save

React scrollbars component

v3.1.0

8 years ago
  • Added onUpdate property

v3.0.1

8 years ago
  • added umd build

v3.0.0

8 years ago

BREAKING

  • onScroll handler now called outside of animation frame. The values object will no longer passed. Please use onScrollFrame
  • renderScrollbarsHorizontal is now renderTrackHorizontal
  • renderScrollbarsVertical is now renderTrackVertical
  • Check out the upgrade guide

New features

  • added auto hide mode
  • added universal mode
  • added onScrollFrame handler
  • added onScrollStart handler
  • added onScrollEnd handler
  • added thumbMinSize property
  • added thumbSize property

Improvements

  • Code coverage 100%
  • Better performance
  • Better rendering

v2.3.0

8 years ago
  • Do not render (instead of hide) custom scrollbars when native scrollbars have no width
  • Removed validation messages, since we cannot be sure that the messages are appropriate (without running expensive checks)
  • Documented getValues method
  • Code clean up
  • Updated eslint

v2.2.2

8 years ago
  • removed redundant code
  • added warnings

v2.2.1

8 years ago
  • removed unused methods

v2.2.0

8 years ago
  • fixed #15
  • clean up code

v2.1.2

8 years ago

Bugfixes:

  • cancel animation frame when component will unmount

v2.1.1

8 years ago
  • fix calling onScroll when scrollbarsWidth = 0

v2.1.0

8 years ago
  • fixed #11
  • added getter functions:
  • getScrollLeft: get scrollLeft value
  • getScrollTop: get scrollTop value
  • getScrollWidth: get scrollWidth value
  • getScrollHeight: get scrollHeight value
  • getWidth: get view client width
  • getHeight: get view client height