Skip to content

Commit

Permalink
Build 3.27.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkfranz committed Dec 11, 2023
1 parent 7bb8075 commit b1a2366
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 12 deletions.
11 changes: 8 additions & 3 deletions dist/cytoscape.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -13594,13 +13594,18 @@ styfn$8.checkBoundsTrigger = function (ele, name, fromValue, toValue) {
// then dirty the pll edge bb cache as well
if (
// only for beziers -- so performance of other edges isn't affected
prop.triggersBoundsOfParallelBeziers && (name === 'curve-style' && (fromValue === 'bezier' || toValue === 'bezier') || name === 'display' && (fromValue === 'none' || toValue === 'none'))) {
prop.triggersBoundsOfParallelBeziers && name === 'curve-style' && (fromValue === 'bezier' || toValue === 'bezier')) {
ele.parallelEdges().forEach(function (pllEdge) {
if (pllEdge.isBundledBezier()) {
pllEdge.dirtyBoundingBoxCache();
}
});
}
if (prop.triggersBoundsOfConnectedEdges && name === 'display' && (fromValue === 'none' || toValue === 'none')) {
ele.connectedEdges().forEach(function (edge) {
edge.dirtyBoundingBoxCache();
});
}
});
};
styfn$8.checkTriggers = function (ele, name, fromValue, toValue) {
Expand Down Expand Up @@ -14638,7 +14643,7 @@ var styfn$2 = {};
type: t.display,
triggersZOrder: diff.any,
triggersBounds: diff.any,
triggersBoundsOfParallelBeziers: true
triggersBoundsOfConnectedEdges: true
}, {
name: 'visibility',
type: t.visibility,
Expand Down Expand Up @@ -28573,7 +28578,7 @@ sheetfn.appendToStyle = function (style) {
return style;
};

var version = "3.27.0";
var version = "3.27.1";

var cytoscape = function cytoscape(options) {
// if no options specified, use default
Expand Down
11 changes: 8 additions & 3 deletions dist/cytoscape.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -13584,13 +13584,18 @@ styfn$8.checkBoundsTrigger = function (ele, name, fromValue, toValue) {
// then dirty the pll edge bb cache as well
if (
// only for beziers -- so performance of other edges isn't affected
prop.triggersBoundsOfParallelBeziers && (name === 'curve-style' && (fromValue === 'bezier' || toValue === 'bezier') || name === 'display' && (fromValue === 'none' || toValue === 'none'))) {
prop.triggersBoundsOfParallelBeziers && name === 'curve-style' && (fromValue === 'bezier' || toValue === 'bezier')) {
ele.parallelEdges().forEach(function (pllEdge) {
if (pllEdge.isBundledBezier()) {
pllEdge.dirtyBoundingBoxCache();
}
});
}
if (prop.triggersBoundsOfConnectedEdges && name === 'display' && (fromValue === 'none' || toValue === 'none')) {
ele.connectedEdges().forEach(function (edge) {
edge.dirtyBoundingBoxCache();
});
}
});
};
styfn$8.checkTriggers = function (ele, name, fromValue, toValue) {
Expand Down Expand Up @@ -14628,7 +14633,7 @@ var styfn$2 = {};
type: t.display,
triggersZOrder: diff.any,
triggersBounds: diff.any,
triggersBoundsOfParallelBeziers: true
triggersBoundsOfConnectedEdges: true
}, {
name: 'visibility',
type: t.visibility,
Expand Down Expand Up @@ -28563,7 +28568,7 @@ sheetfn.appendToStyle = function (style) {
return style;
};

var version = "3.27.0";
var version = "3.27.1";

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cytoscape.min.js

Large diffs are not rendered by default.

11 changes: 8 additions & 3 deletions dist/cytoscape.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -15675,13 +15675,18 @@
// then dirty the pll edge bb cache as well
if (
// only for beziers -- so performance of other edges isn't affected
prop.triggersBoundsOfParallelBeziers && (name === 'curve-style' && (fromValue === 'bezier' || toValue === 'bezier') || name === 'display' && (fromValue === 'none' || toValue === 'none'))) {
prop.triggersBoundsOfParallelBeziers && name === 'curve-style' && (fromValue === 'bezier' || toValue === 'bezier')) {
ele.parallelEdges().forEach(function (pllEdge) {
if (pllEdge.isBundledBezier()) {
pllEdge.dirtyBoundingBoxCache();
}
});
}
if (prop.triggersBoundsOfConnectedEdges && name === 'display' && (fromValue === 'none' || toValue === 'none')) {
ele.connectedEdges().forEach(function (edge) {
edge.dirtyBoundingBoxCache();
});
}
});
};
styfn$8.checkTriggers = function (ele, name, fromValue, toValue) {
Expand Down Expand Up @@ -16719,7 +16724,7 @@
type: t.display,
triggersZOrder: diff.any,
triggersBounds: diff.any,
triggersBoundsOfParallelBeziers: true
triggersBoundsOfConnectedEdges: true
}, {
name: 'visibility',
type: t.visibility,
Expand Down Expand Up @@ -30654,7 +30659,7 @@ var printLayoutInfo;
return style;
};

var version = "3.27.0";
var version = "3.27.1";

var cytoscape = function cytoscape(options) {
// if no options specified, use default
Expand Down
7 changes: 7 additions & 0 deletions documentation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -805,6 +805,9 @@ <h2 id="introduction/releases">Releases <a href="#introduction/releases"><span c
<li>
3.27
<ul>
<li>
<a target="_blank" href="https://github.com/cytoscape/cytoscape.js/issues?q&#x3D;milestone%3A3.27.1+is%3Aclosed">3.27.1</a>
</li>
<li>
<a target="_blank" href="https://github.com/cytoscape/cytoscape.js/issues?q&#x3D;milestone%3A3.27.0+is%3Aclosed">3.27.0</a>
</li>
Expand All @@ -813,6 +816,9 @@ <h2 id="introduction/releases">Releases <a href="#introduction/releases"><span c
<li>
3.26
<ul>
<li>
<a target="_blank" href="https://github.com/cytoscape/cytoscape.js/issues?q&#x3D;milestone%3A3.26.2+is%3Aclosed">3.26.2</a>
</li>
<li>
<a target="_blank" href="https://github.com/cytoscape/cytoscape.js/issues?q&#x3D;milestone%3A3.26.1+is%3Aclosed">3.26.1</a>
</li>
Expand Down Expand Up @@ -14848,6 +14854,7 @@ <h2 id="style/visibility">Visibility <a href="#style/visibility"><span class="fa
<li><strong><code>z-index</code></strong> : A numeric value that affects the relative draw order of elements. In general, an element with a higher <code>z-index</code> will be drawn on top of an element with a lower <code>z-index</code>. <ul>
<li>Note that edges are under nodes despite <code>z-index</code>, except when necessary for compound nodes.</li>
<li>Note that unlike CSS proper, the <code>z-index</code> is a floating point value.</li>
<li>Also unlike CSS proper, a negative value does not have special behaviour. The element is layered according to <code>z-compound-depth</code> and <code>z-index-compare</code>, while <code>z-index</code> only sorts an element within a layer.</li>
</ul>
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion documentation/js/cytoscape.min.js

Large diffs are not rendered by default.

0 comments on commit b1a2366

Please sign in to comment.