igniteui-angular 13.0.7 → 13.0.8
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/esm2020/lib/directives/scroll-inertia/scroll_inertia.directive.mjs +33 -1
- package/fesm2015/igniteui-angular.mjs +32 -0
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +32 -0
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/directives/scroll-inertia/scroll_inertia.directive.d.ts +6 -0
- package/package.json +1 -1
|
@@ -50,6 +50,12 @@ export declare class IgxScrollInertiaDirective implements OnInit, OnDestroy {
|
|
|
50
50
|
* When there is still room to scroll up/down prevent the parent elements from scrolling too.
|
|
51
51
|
*/
|
|
52
52
|
protected preventParentScroll(evt: any, preventDefault: any, nextTop?: number): void;
|
|
53
|
+
/**
|
|
54
|
+
* @hidden
|
|
55
|
+
* Checks if the wheel event would have scrolled an element under the display container
|
|
56
|
+
* in DOM tree so that it can correctly be ignored until that element can no longer be scrolled.
|
|
57
|
+
*/
|
|
58
|
+
protected didChildScroll(evt: any, scrollDeltaX: any, scrollDeltaY: any): boolean;
|
|
53
59
|
/**
|
|
54
60
|
* @hidden
|
|
55
61
|
* Function that is called the first moment we start interacting with the content on a touch device
|
package/package.json
CHANGED