Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@ The Dropdown component is composed of different child components each with their
<C.Property @name="onClose" @type="function">
Callback function invoked when the Dropdown is closed, if provided.
</C.Property>
<C.Property @name="boundary" @type="Boundary | string">
Provides an option to specify a parent or ancestor container element to act as the boundary for collision detection vs. the browser window boundaries which is the default. The value provided must be either a `Boundary` type as specified in the [Floating UI library documentation](https://floating-ui.com/docs/detectoverflow#options) or an id string for the boundary container element.
<br />
<br />
Must be used in conjunction with setting `enableCollisionDetection` to `true`.
</C.Property>
<C.Property @name="...attributes">
This component supports use of [`...attributes`](https://guides.emberjs.com/release/in-depth-topics/patterns-for-components/#toc_attribute-ordering).
</C.Property>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,13 @@ Most of the arguments are forwarded as `anchoredPositionOptions` to the underlyi
<C.Property @name="height" @type="string" @valueNote="any valid CSS height (px, rem, etc)">
By default, the bubble adapts to its content size. If an `@height` parameter is provided, then the bubble will have a fixed height.
</C.Property>
<C.Property @name="boundary" @type="Boundary | string">
Provides an option to specify a parent or ancestor container element to act as the boundary for collision detection vs. the browser window boundaries which is the default. The value provided must be either a `Boundary` type as specified in the [Floating UI library documentation](https://floating-ui.com/docs/detectoverflow#options) or an id string for the boundary container element.
<br />
<br />
Must be used in conjunction with setting `enableCollisionDetection` to `true`.
</C.Property>
<C.Property @name="...attributes">
This component supports use of [`...attributes`](https://guides.emberjs.com/release/in-depth-topics/patterns-for-components/#toc_attribute-ordering).
</C.Property>
</Doc::ComponentApi>
</Doc::ComponentApi>
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
<C.Property @name="onClose" @type="function">
Provides a callback function invoked when the popover is closed (if provided).
</C.Property>
<C.Property @name="boundary" @type="Boundary | string">
Provides an option to specify a parent or ancestor container element to act as the boundary for collision detection vs. the browser window boundaries which is the default. The value provided must be either a `Boundary` type as specified in the [Floating UI library documentation](https://floating-ui.com/docs/detectoverflow#options) or an id string for the boundary container element.
<br />
<br />
Must be used in conjunction with setting `enableCollisionDetection` to `true`.
</C.Property>
<C.Property @name="[PP].setupPrimitiveContainer" @type="modifier">
Provides a modifier that needs to be applied to the container of the toggle and popover elements.
</C.Property>
Expand Down