New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

webrtc-streaming-core

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webrtc-streaming-core - npm Package Compare versions

Comparing version 1.1.23 to 1.1.24

4

dist/hid/hid.d.ts

@@ -24,2 +24,6 @@ import { AxisType } from "../models/hid.model";

private mouseWheel;
mouseMoveRel(event: {
movementX: number;
movementY: number;
}): void;
private mouseButtonMovement;

@@ -26,0 +30,0 @@ private mouseButtonDown;

@@ -202,5 +202,12 @@ "use strict";

}
mouseMoveRel(event) {
let code = keys_model_1.EventCode.MouseMoveRel;
this.SendFunc((new keys_model_2.HIDMsg(code, {
dX: event.movementX,
dY: event.movementY,
})).ToString());
}
mouseButtonMovement(event) {
this.elementConfig(this.video);
if (!this.relativeMouse) {
this.elementConfig(this.video);
let code = keys_model_1.EventCode.MouseMoveAbs;

@@ -207,0 +214,0 @@ let mousePosition_X = this.clientToServerX(event.clientX);

2

package.json
{
"name": "webrtc-streaming-core",
"version": "1.1.23",
"version": "1.1.24",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/app.js",

Sorry, the diff of this file is not supported yet

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