We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
DOMRect
boundary
1 parent 24f2c4d commit dcca804Copy full SHA for dcca804
.changeset/ten-bears-protect.md
@@ -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
@@ -70,9 +70,10 @@ function getClientRectFromClippingAncestor(
70
} else {
71
const visualOffsets = getVisualOffsets(element);
72
rect = {
73
- ...clippingAncestor,
74
x: clippingAncestor.x - visualOffsets.x,
75
y: clippingAncestor.y - visualOffsets.y,
+ width: clippingAncestor.width,
76
+ height: clippingAncestor.height,
77
};
78
}
79
0 commit comments