You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.1 KiB
23 lines
1.1 KiB
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
/**
|
|
* Gets whether an element is scrolled outside of view by any of its parent scrolling containers.
|
|
* @param element Dimensions of the element (from getBoundingClientRect)
|
|
* @param scrollContainers Dimensions of element's scrolling containers (from getBoundingClientRect)
|
|
* @returns Whether the element is scrolled out of view
|
|
* @docs-private
|
|
*/
|
|
export declare function isElementScrolledOutsideView(element: ClientRect, scrollContainers: ClientRect[]): boolean;
|
|
/**
|
|
* Gets whether an element is clipped by any of its scrolling containers.
|
|
* @param element Dimensions of the element (from getBoundingClientRect)
|
|
* @param scrollContainers Dimensions of element's scrolling containers (from getBoundingClientRect)
|
|
* @returns Whether the element is clipped
|
|
* @docs-private
|
|
*/
|
|
export declare function isElementClippedByScrolling(element: ClientRect, scrollContainers: ClientRect[]): boolean;
|