dynamic-virtual-scroller
Advanced tools
Comparing version 3.0.36 to 3.0.37
{ | ||
"name": "dynamic-virtual-scroller", | ||
"version": "3.0.36", | ||
"version": "3.0.37", | ||
"description": "A virtual scroller for the web that can handle dynamic row and column sizes.", | ||
@@ -5,0 +5,0 @@ "main": "virtual-scroller.js", |
@@ -65,2 +65,5 @@ import {ATTRIBUTES, EVENTS, CLASSES} from "./constants"; | ||
}, | ||
isScrolling: function () { | ||
return state.isScrolling; | ||
}, | ||
@@ -189,2 +192,4 @@ getMaxScrollTop: () => getMaxScrollTop(renderManager), | ||
config.container.on('scroll.' + NAMESPACE, event => { | ||
setIsScrolling(true); | ||
debouncedResetIsScrolling(); | ||
if (currentFrame) { | ||
@@ -191,0 +196,0 @@ cancelAnimationFrame(currentFrame); |
@@ -555,2 +555,4 @@ import {ATTRIBUTES, EVENTS, CLASSES, DATA} from "./constants"; | ||
getMaxScrollLeft: scrollManager.getMaxScrollLeft, | ||
isScrolling: scrollManager.isScrolling, | ||
@@ -557,0 +559,0 @@ onScroll: function (onScrollCallback) { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
593070
8225