use-item-list
Version:
Manage indexed collections in React using hooks.
15 lines (14 loc) • 694 B
TypeScript
/**
* Get the closest element that scrolls
* @param {HTMLElement} node - the child element to start searching for scroll parent at
* @param {HTMLElement} rootNode - the root element of the component
* @return {HTMLElement} the closest parentNode that scrolls
*/
export declare function getClosestScrollParent(node: any): any;
/**
* Scroll node into view if necessary
* @param {HTMLElement} node - the element that should scroll into view
* @param {HTMLElement} rootNode - the root element of the component
* @param {Boolean} alignToTop - align element to the top of the visible area of the scrollable ancestor
*/
export declare function scrollIntoView(node: any): void;