Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@recordreplay/protocol

Package Overview
Dependencies
Maintainers
6
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@recordreplay/protocol - npm Package Compare versions

Comparing version 0.15.5 to 0.15.6

22

js/protocol/DOM.d.ts

@@ -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 @@ */

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc