react-nice-scroll
Version: 
A React library to smooth scroll and scroll-based animations.
16 lines (11 loc) • 344 B
text/typescript
import Scrollbar from 'smooth-scrollbar';
class AllowScrollPlugin extends Scrollbar.ScrollbarPlugin {
  static defaultOptions = {
    allow: true,
  };
  transformDelta(delta: any) {
    return this.options.allow ? delta : { x: 0, y: 0 };
  }
}
AllowScrollPlugin.pluginName = 'allowScroll';
export default AllowScrollPlugin;