@cloudtower/eagle 0.27.53-dry2 → 0.27.53-dry3
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/components.css +877 -877
- package/dist/esm/index.js +2 -0
- package/dist/esm/stats1.html +1 -1
- package/dist/style.css +2128 -2128
- package/dist/umd/index.js +2 -0
- package/dist/umd/stats1.html +1 -1
- package/package.json +5 -5
package/dist/esm/index.js
CHANGED
|
@@ -8449,6 +8449,7 @@ const StatusCapsule = _a => {
|
|
|
8449
8449
|
|
|
8450
8450
|
function canScroll(el, direction = "vertical") {
|
|
8451
8451
|
const overflow = window.getComputedStyle(el).getPropertyValue("overflow");
|
|
8452
|
+
console.log("useTableBodyHasScrollBar canScroll", direction);
|
|
8452
8453
|
if (overflow === "hidden")
|
|
8453
8454
|
return false;
|
|
8454
8455
|
if (direction === "vertical") {
|
|
@@ -8461,6 +8462,7 @@ function canScroll(el, direction = "vertical") {
|
|
|
8461
8462
|
const useTableBodyHasScrollBar = (tableBodyEl, data) => {
|
|
8462
8463
|
const [hasScrollBar, setHasScrollBar] = useState(false);
|
|
8463
8464
|
const antTableBodyRef = useRef();
|
|
8465
|
+
console.log("useTableBodyHasScrollBar");
|
|
8464
8466
|
const observeTableBodyResize = useMemo(
|
|
8465
8467
|
() => new ResizeObserver((entries) => {
|
|
8466
8468
|
const target = entries[0].target;
|