Skip to content

Commit dcca804

Browse files
authored
fix(getClippingRect): allow passing DOMRect as a boundary (#3076)
1 parent 24f2c4d commit dcca804

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.changeset/ten-bears-protect.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@floating-ui/dom": patch
3+
---
4+
5+
fix(getClippingRect): allow passing `DOMRect` as a `boundary`

packages/dom/src/platform/getClippingRect.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,10 @@ function getClientRectFromClippingAncestor(
7070
} else {
7171
const visualOffsets = getVisualOffsets(element);
7272
rect = {
73-
...clippingAncestor,
7473
x: clippingAncestor.x - visualOffsets.x,
7574
y: clippingAncestor.y - visualOffsets.y,
75+
width: clippingAncestor.width,
76+
height: clippingAncestor.height,
7677
};
7778
}
7879

0 commit comments

Comments
 (0)