@rebilly/revel 12.50.11 → 12.51.0
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/CHANGELOG.md +6 -1
- package/dist/revel.mjs +1 -1
- package/dist/revel.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
## [12.
|
|
1
|
+
## [12.51.0](https://github.com/Rebilly/rebilly/compare/revel-v12.50.11...revel-v12.51.0) (2026-09-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **recomm:** display mixed allocation status tooltip content in separate lines ([#26046](https://github.com/Rebilly/rebilly/issues/26046)) ([84ded3a](https://github.com/Rebilly/rebilly/commit/84ded3ae2839bdbafd71d00e91738a635c898fa0))
|
package/dist/revel.mjs
CHANGED
|
@@ -7447,7 +7447,7 @@ const tM = {}, re = {
|
|
|
7447
7447
|
right: parseFloat(p.style.left.replace("px", "")) + l.width > (window.innerWidth || document.documentElement.clientWidth)
|
|
7448
7448
|
});
|
|
7449
7449
|
M.vTooltipEnter = () => {
|
|
7450
|
-
n ? n.appendChild(p) : document.body.appendChild(p), p.appendChild(o);
|
|
7450
|
+
b.multiline && p.classList.add("r-tooltip-multiline"), n ? n.appendChild(p) : document.body.appendChild(p), p.appendChild(o);
|
|
7451
7451
|
const l = M.getBoundingClientRect(), i = l.top + window.scrollY, s = p.getBoundingClientRect();
|
|
7452
7452
|
p.style.left = `${l.left + l.width / 2 - s.width / 2}px`, p.style.top = `${i - (s.height + t)}px`;
|
|
7453
7453
|
const A = a(s);
|