@recordreplay/protocol
Advanced tools
Comparing version 0.15.5 to 0.15.6
@@ -130,2 +130,13 @@ import { ObjectId, PauseData } from "./Pause"; | ||
/** | ||
* Clipping bounds that are applied to an element. These come from an ancestor | ||
* element that has the CSS overflow property set. Bounds that have no effect | ||
* on the element are left out. | ||
*/ | ||
export interface ClipBounds { | ||
left?: number; | ||
top?: number; | ||
right?: number; | ||
bottom?: number; | ||
} | ||
/** | ||
* Describes the bounding client rect for a node. | ||
@@ -139,6 +150,15 @@ */ | ||
/** | ||
* Bounding client rect for the node. | ||
* Bounding client rect for the node. This is the smallest rect that | ||
* includes all client rects. | ||
*/ | ||
rect: Rect; | ||
/** | ||
* All client rects for the node if there is more than one. | ||
*/ | ||
rects?: Rect[]; | ||
/** | ||
* Clipping bounds for the node. | ||
*/ | ||
clipBounds?: ClipBounds; | ||
/** | ||
* Set to <code>"hidden"</code> for nodes with that CSS property | ||
@@ -145,0 +165,0 @@ */ |
{ | ||
"name": "@recordreplay/protocol", | ||
"version": "0.15.5", | ||
"version": "0.15.6", | ||
"description": "Definition of the protocol used by the Record Replay web service", | ||
@@ -5,0 +5,0 @@ "author": "", |
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
424095
10063