northdata-viz 1.445.11 → 1.446.11
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/package.json +1 -1
- package/viz.esm.js +9 -6
- package/viz.esm.js.map +1 -1
- package/viz.min.js +2 -2
- package/viz.min.js.map +1 -1
package/package.json
CHANGED
package/viz.esm.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*! northdata-viz v0-0-0-SNAPSHOT */
|
|
2
2
|
//#region \0rolldown/runtime.js
|
|
3
|
-
var e = Object.create, t = Object.defineProperty, n = Object.getOwnPropertyDescriptor, r = Object.getOwnPropertyNames, i = Object.getPrototypeOf, a = Object.prototype.hasOwnProperty, o = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports), s = (e, i, o, s) => {
|
|
3
|
+
var e = Object.create, t = Object.defineProperty, n = Object.getOwnPropertyDescriptor, r = Object.getOwnPropertyNames, i = Object.getPrototypeOf, a = Object.prototype.hasOwnProperty, o = (e, t) => () => (t || (e((t = { exports: {} }).exports, t), e = null), t.exports), s = (e, i, o, s) => {
|
|
4
4
|
if (i && typeof i == "object" || typeof i == "function") for (var c = r(i), l = 0, u = c.length, d; l < u; l++) d = c[l], !a.call(e, d) && d !== o && t(e, d, {
|
|
5
5
|
get: ((e) => i[e]).bind(null, d),
|
|
6
6
|
enumerable: !(s = n(i, d)) || s.enumerable
|
|
@@ -744,7 +744,8 @@ function It(e) {
|
|
|
744
744
|
}
|
|
745
745
|
function Lt(e) {
|
|
746
746
|
return function() {
|
|
747
|
-
|
|
747
|
+
var t = e.apply(this, arguments);
|
|
748
|
+
this.textContent = t ?? "";
|
|
748
749
|
};
|
|
749
750
|
}
|
|
750
751
|
function Rt(e) {
|
|
@@ -762,7 +763,8 @@ function Bt(e) {
|
|
|
762
763
|
}
|
|
763
764
|
function Vt(e) {
|
|
764
765
|
return function() {
|
|
765
|
-
|
|
766
|
+
var t = e.apply(this, arguments);
|
|
767
|
+
this.innerHTML = t ?? "";
|
|
766
768
|
};
|
|
767
769
|
}
|
|
768
770
|
function Ht(e) {
|
|
@@ -4673,7 +4675,8 @@ function $l(e) {
|
|
|
4673
4675
|
}
|
|
4674
4676
|
function eu(e) {
|
|
4675
4677
|
return function() {
|
|
4676
|
-
|
|
4678
|
+
var t = e(this);
|
|
4679
|
+
this.textContent = t ?? "";
|
|
4677
4680
|
};
|
|
4678
4681
|
}
|
|
4679
4682
|
function tu(e) {
|
|
@@ -5866,13 +5869,13 @@ var xu = function(e, t) {
|
|
|
5866
5869
|
let n = o(t.data);
|
|
5867
5870
|
L(e.target).select("rect").style("fill", n.bright);
|
|
5868
5871
|
let r = t.data.id;
|
|
5869
|
-
|
|
5872
|
+
b.selectAll("path.link").filter((e) => e.data.id === r).attr("data-highlighted", !0);
|
|
5870
5873
|
let i = t.data.query && t.data.query.id;
|
|
5871
5874
|
i && _n("[data-publication-id='" + i + "']").style("background-color", n.light);
|
|
5872
5875
|
}).on("mouseleave touchend", function(e, t) {
|
|
5873
5876
|
if (!e.target) return;
|
|
5874
5877
|
let n = o(t.data);
|
|
5875
|
-
L(e.target).select("rect").style("fill", n.standard),
|
|
5878
|
+
L(e.target).select("rect").style("fill", n.standard), b.selectAll("path.link").attr("data-highlighted", !1);
|
|
5876
5879
|
let r = t.data.query && t.data.query.id;
|
|
5877
5880
|
r && _n("[data-publication-id='" + r + "']").style("background-color", null);
|
|
5878
5881
|
});
|