Socket
Socket
Sign inDemoInstall

@antv/g

Package Overview
Dependencies
Maintainers
7
Versions
349
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@antv/g - npm Package Compare versions

Comparing version 3.2.1 to 3.2.2

dist/g-3.2.2.min.js

8

lib/core/group.js

@@ -276,2 +276,6 @@ var Util = require('../util/index');

if (child.get('visible')) {
if (child.isGroup && child.get('children').length === 0) {
return;
}
var _box = child.getBBox();

@@ -296,3 +300,3 @@

if (boxMinX < minX && boxMinX > 0) {
if (boxMinX < minX) {
minX = boxMinX;

@@ -305,3 +309,3 @@ }

if (boxMinY < minY && boxMaxY > 0) {
if (boxMinY < minY) {
minY = boxMinY;

@@ -308,0 +312,0 @@ }

@@ -22,3 +22,3 @@ module.exports = {

// version, etc.
version: '3.2.1'
version: '3.2.2'
};
{
"name": "@antv/g",
"version": "3.2.1",
"version": "3.2.2",
"description": "A canvas library which providing 2d draw for G2.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -239,2 +239,5 @@ const Util = require('../util/index');

if (child.get('visible')) {
if (child.isGroup && child.get('children').length === 0) {
return;
}
const box = child.getBBox();

@@ -259,3 +262,3 @@ if (!box) {

if (boxMinX < minX && boxMinX > 0) {
if (boxMinX < minX) {
minX = boxMinX;

@@ -268,3 +271,3 @@ }

if (boxMinY < minY && boxMaxY > 0) {
if (boxMinY < minY) {
minY = boxMinY;

@@ -271,0 +274,0 @@ }

@@ -22,3 +22,3 @@ module.exports = {

// version, etc.
version: '3.2.1'
version: '3.2.2'
};

Sorry, the diff of this file is not supported yet

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