force-3d-graph 1.0.1 → 1.0.2
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/dist/force-3d-graph.js
CHANGED
|
@@ -1785,6 +1785,13 @@ class Nt {
|
|
|
1785
1785
|
display: flex;
|
|
1786
1786
|
align-items: center;
|
|
1787
1787
|
gap: 10px;
|
|
1788
|
+
overflow: hidden;
|
|
1789
|
+
}
|
|
1790
|
+
.force-graph-panel .node-label-text {
|
|
1791
|
+
white-space: nowrap;
|
|
1792
|
+
overflow: hidden;
|
|
1793
|
+
text-overflow: ellipsis;
|
|
1794
|
+
flex: 1;
|
|
1788
1795
|
}
|
|
1789
1796
|
.force-graph-panel .color-dot {
|
|
1790
1797
|
width: 12px;
|
|
@@ -1809,6 +1816,11 @@ class Nt {
|
|
|
1809
1816
|
.force-graph-panel .info-value {
|
|
1810
1817
|
color: rgba(255, 255, 255, 0.95);
|
|
1811
1818
|
font-weight: 500;
|
|
1819
|
+
white-space: nowrap;
|
|
1820
|
+
overflow: hidden;
|
|
1821
|
+
text-overflow: ellipsis;
|
|
1822
|
+
max-width: 180px;
|
|
1823
|
+
text-align: right;
|
|
1812
1824
|
}
|
|
1813
1825
|
.force-graph-panel .neighbors-section {
|
|
1814
1826
|
margin-top: 16px;
|
|
@@ -1891,12 +1903,12 @@ class Nt {
|
|
|
1891
1903
|
|
|
1892
1904
|
<h2>
|
|
1893
1905
|
<span class="color-dot"></span>
|
|
1894
|
-
|
|
1906
|
+
<span class="node-label-text">${this.escapeHtml(e.label)}</span>
|
|
1895
1907
|
</h2>
|
|
1896
1908
|
|
|
1897
1909
|
<div class="info-row">
|
|
1898
1910
|
<span class="info-label">ID</span>
|
|
1899
|
-
<span class="info-value">${this.escapeHtml(e.id)}</span>
|
|
1911
|
+
<span class="info-value" title="${this.escapeHtml(e.id)}">${this.escapeHtml(e.id)}</span>
|
|
1900
1912
|
</div>
|
|
1901
1913
|
|
|
1902
1914
|
<div class="info-row">
|