Skip to content

Commit

Permalink
Build 3.7.8-sm
Browse files Browse the repository at this point in the history
  • Loading branch information
edwinbadillo committed Feb 26, 2024
1 parent 3c615c0 commit 2ab8b96
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
8 changes: 5 additions & 3 deletions dist/cytoscape.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -8675,8 +8675,10 @@ elesfn$j.updateCompoundBounds = function () {
return;
}

var _p = parent._private;
var children = parent.children();
var _p = parent._private; // Selector will be undefined if childrenSelectorForBounds is not added to the node, this will result in all children being used to set compute bounds

var childrenSelectorForBounds = parent.data('childrenSelectorForBounds');
var children = parent.children(childrenSelectorForBounds);
var includeLabels = parent.pstyle('compound-sizing-wrt-labels').value === 'include';
var min = {
width: {
Expand Down Expand Up @@ -30812,7 +30814,7 @@ sheetfn.appendToStyle = function (style) {
return style;
};

var version = "3.7.7-sm";
var version = "3.7.8-sm";

var cytoscape = function cytoscape(options) {
// if no options specified, use default
Expand Down
8 changes: 5 additions & 3 deletions dist/cytoscape.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -8671,8 +8671,10 @@ elesfn$j.updateCompoundBounds = function () {
return;
}

var _p = parent._private;
var children = parent.children();
var _p = parent._private; // Selector will be undefined if childrenSelectorForBounds is not added to the node, this will result in all children being used to set compute bounds

var childrenSelectorForBounds = parent.data('childrenSelectorForBounds');
var children = parent.children(childrenSelectorForBounds);
var includeLabels = parent.pstyle('compound-sizing-wrt-labels').value === 'include';
var min = {
width: {
Expand Down Expand Up @@ -30808,7 +30810,7 @@ sheetfn.appendToStyle = function (style) {
return style;
};

var version = "3.7.7-sm";
var version = "3.7.8-sm";

var cytoscape = function cytoscape(options) {
// if no options specified, use default
Expand Down
2 changes: 1 addition & 1 deletion dist/cytoscape.min.js

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions dist/cytoscape.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -9434,8 +9434,10 @@
return;
}

var _p = parent._private;
var children = parent.children();
var _p = parent._private; // Selector will be undefined if childrenSelectorForBounds is not added to the node, this will result in all children being used to set compute bounds

var childrenSelectorForBounds = parent.data('childrenSelectorForBounds');
var children = parent.children(childrenSelectorForBounds);
var includeLabels = parent.pstyle('compound-sizing-wrt-labels').value === 'include';
var min = {
width: {
Expand Down Expand Up @@ -31571,7 +31573,7 @@
return style;
};

var version = "3.7.7-sm";
var version = "3.7.8-sm";

var cytoscape = function cytoscape(options) {
// if no options specified, use default
Expand Down
6 changes: 4 additions & 2 deletions src/collection/dimensions/bounds.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ elesfn.updateCompoundBounds = function(force = false){
if( !parent.isParent() ){ return; }

let _p = parent._private;
let children = parent.children();
let includeLabels = parent.pstyle( 'compound-sizing-wrt-labels' ).value === 'include';
// Selector will be undefined if childrenSelectorForBounds is not added to the node, this will result in all children being used to set compute bounds
const childrenSelectorForBounds = parent.data('childrenSelectorForBounds');
let children = parent.children(childrenSelectorForBounds);
let includeLabels = parent.pstyle( 'compound-sizing-wrt-labels' ).value === 'include';

let min = {
width: {
Expand Down

0 comments on commit 2ab8b96

Please sign in to comment.