cytoscape
Advanced tools
Comparing version 3.5.1 to 3.5.2
{ | ||
"build/cytoscape.umd.js": { | ||
"bundled": 898145, | ||
"minified": 332675, | ||
"gzipped": 103516 | ||
"bundled": 898297, | ||
"minified": 332729, | ||
"gzipped": 103531 | ||
}, | ||
"build/cytoscape.cjs.js": { | ||
"bundled": 827437, | ||
"minified": 349890, | ||
"gzipped": 105556 | ||
"bundled": 827583, | ||
"minified": 349941, | ||
"gzipped": 105572 | ||
}, | ||
"build/cytoscape.esm.js": { | ||
"bundled": 827264, | ||
"minified": 349747, | ||
"gzipped": 105522, | ||
"bundled": 827410, | ||
"minified": 349798, | ||
"gzipped": 105539, | ||
"treeshaked": { | ||
"rollup": { | ||
"code": 327371, | ||
"code": 327425, | ||
"import_statements": 51 | ||
}, | ||
"webpack": { | ||
"code": 329238 | ||
"code": 329292 | ||
} | ||
@@ -24,0 +24,0 @@ } |
{ | ||
"name": "cytoscape", | ||
"version": "3.5.1", | ||
"version": "3.5.2", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "Graph theory (a.k.a. network) library for analysis and visualisation", |
@@ -67,5 +67,8 @@ import * as math from '../../../../math'; | ||
let curveStyle = edge.pstyle('curve-style').value; | ||
let rs = edge._private.rscratch; | ||
let et = rs.edgeType; | ||
let taxi = curveStyle === 'taxi'; | ||
let self = et === 'self' || et === 'compound'; | ||
@@ -77,6 +80,7 @@ let bezier = et === 'bezier' || et === 'multibezier' || self; | ||
let hasEndpts = bezier || multi || lines; | ||
let overrideEndpts = self || taxi; | ||
let srcManEndpt = edge.pstyle('source-endpoint'); | ||
let srcManEndptVal = self ? 'outside-to-node' : srcManEndpt.value; | ||
let srcManEndptVal = overrideEndpts ? 'outside-to-node' : srcManEndpt.value; | ||
let tgtManEndpt = edge.pstyle('target-endpoint'); | ||
let tgtManEndptVal = self ? 'outside-to-node' : tgtManEndpt.value; | ||
let tgtManEndptVal = overrideEndpts ? 'outside-to-node' : tgtManEndpt.value; | ||
@@ -83,0 +87,0 @@ rs.srcManEndpt = srcManEndpt; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
3747072
101761