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.
34 lines
1.3 KiB
34 lines
1.3 KiB
export declare type ResizeSensorCallback = (size: { width: number; height: number; }) => void;
|
|
|
|
export declare class ResizeSensor {
|
|
/**
|
|
* Creates a new resize sensor on given elements. The provided callback is called max 1 times per requestAnimationFrame and
|
|
* is called initially.
|
|
*/
|
|
constructor(element: Element | Element[], callback: ResizeSensorCallback);
|
|
|
|
/**
|
|
* Removes the resize sensor, and stops listening to resize events.
|
|
*/
|
|
detach(callback?: ResizeSensorCallback): void;
|
|
|
|
/**
|
|
* Resets the resize sensors, so for the next element resize is correctly detected. This is rare cases necessary
|
|
* when the resize sensor isn't initialised correctly or is in a broken state due to DOM modifications.
|
|
*/
|
|
reset(): void;
|
|
|
|
/**
|
|
* Removes the resize sensor, and stops listening to resize events.
|
|
*/
|
|
static detach(element: Element | Element[], callback?: ResizeSensorCallback): void;
|
|
|
|
/**
|
|
* Resets the resize sensors, so for the next element resize is correctly detected. This is rare cases necessary
|
|
* when the resize sensor isn't initialised correctly or is in a broken state due to DOM modifications.
|
|
*/
|
|
static reset(element: Element | Element[]): void;
|
|
}
|
|
|
|
export default ResizeSensor;
|