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

@easyv/charts

Package Overview
Dependencies
Maintainers
15
Versions
231
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@easyv/charts - npm Package Compare versions

Comparing version 1.6.6 to 1.6.7

4

lib/components/Tooltip.js

@@ -65,3 +65,3 @@ "use strict";

if (translate3d.x + tipWidth > width) {
var newPositon = position + marginLeft - tipWidth - translateTip.x;
var newPositon = position + marginLeft - tipWidth + translateTip.x;
translate3d.x = newPositon >= 0 ? newPositon : 0;

@@ -71,3 +71,3 @@ }

if (translate3d.y + tipHeight > height) {
var _newPositon = position + marginTop - tipHeight - translateTip.y;
var _newPositon = position + marginTop - tipHeight + translateTip.y;

@@ -74,0 +74,0 @@ translate3d.y = _newPositon <= 0 ? _newPositon : height - tipHeight;

{
"name": "@easyv/charts",
"version": "1.6.6",
"version": "1.6.7",
"description": "",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -47,7 +47,7 @@ /**

if (translate3d.x + tipWidth > width) {
const newPositon = position + marginLeft - tipWidth - translateTip.x;
const newPositon = position + marginLeft - tipWidth + translateTip.x;
translate3d.x = newPositon >= 0 ? newPositon : 0;
}
if (translate3d.y + tipHeight > height) {
const newPositon = position + marginTop - tipHeight - translateTip.y;
const newPositon = position + marginTop - tipHeight + translateTip.y;
translate3d.y = newPositon <= 0 ? newPositon : height - tipHeight;

@@ -54,0 +54,0 @@ }

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