higlass 1.13.3 → 1.13.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/scripts/TiledPlot.jsx +8 -0
- package/dist/hglib.js +5 -2
- package/dist/hglib.min.js +3 -3
- package/dist/higlass.mjs +5 -2
- package/package.json +1 -1
package/dist/higlass.mjs
CHANGED
|
@@ -18681,7 +18681,7 @@ const getTrackPositionByUid = (positionedTracks, uid) => {
|
|
|
18681
18681
|
return position;
|
|
18682
18682
|
};
|
|
18683
18683
|
const map$5 = (f2) => (x) => Array.prototype.map.call(x, f2);
|
|
18684
|
-
const getXylofon = () => [window, map$5((c2) => c2.charCodeAt(0))("1.13.
|
|
18684
|
+
const getXylofon = () => [window, map$5((c2) => c2.charCodeAt(0))("1.13.4").map((number3) => number3 <= 999 ? `00${number3}`.slice(-3) : number3).join("")];
|
|
18685
18685
|
const gradient = (steps, width = 1, height2 = 100, fromX = 0, fromY = 0, toX = 0, toY = 100) => {
|
|
18686
18686
|
const canvas = document.createElement("canvas");
|
|
18687
18687
|
canvas.width = width;
|
|
@@ -88471,7 +88471,7 @@ Object.assign(LruCache.prototype, {
|
|
|
88471
88471
|
toJSON,
|
|
88472
88472
|
toString: toString$1
|
|
88473
88473
|
});
|
|
88474
|
-
const version = "1.13.
|
|
88474
|
+
const version = "1.13.4";
|
|
88475
88475
|
const button = "_button_1wnjn_1";
|
|
88476
88476
|
const classes$7 = {
|
|
88477
88477
|
button,
|
|
@@ -106005,6 +106005,9 @@ let TiledPlot = /* @__PURE__ */ function(_React$Component) {
|
|
|
106005
106005
|
key: "getIdealizedTrackPositionsOverlay",
|
|
106006
106006
|
value: function getIdealizedTrackPositionsOverlay() {
|
|
106007
106007
|
const evtJson = this.props.draggingHappening;
|
|
106008
|
+
if (typeof evtJson === "boolean") {
|
|
106009
|
+
return void 0;
|
|
106010
|
+
}
|
|
106008
106011
|
const datatype = evtJson.datatype;
|
|
106009
106012
|
if (!(datatype in DEFAULT_TRACKS_FOR_DATATYPE) && !evtJson.defaultTracks) {
|
|
106010
106013
|
console.warn("unknown data type:", evtJson.higlassTrack);
|