Merge remote-tracking branch 'origin/main' into sp/sync-feature-8-with-main-2

This commit is contained in:
Sean Perkins
2024-02-22 14:54:37 -05:00
65 changed files with 934 additions and 1874 deletions

View File

@ -35,6 +35,13 @@
height: 10px;
overflow: hidden;
/*
* Required for the arrow to render above the backdrop.
* Otherwise, the arrow will appear slightly transparent.
* The value is set to 11 since it's the minimum value that
* will allow the arrow to render above the backdrop.
*/
z-index: 11;
}
.popover-arrow::after {

View File

@ -525,6 +525,10 @@ export class Popover implements ComponentInterface, PopoverInterface {
* @param role The role of the element that is dismissing the popover. For example, 'cancel' or 'backdrop'.
* @param dismissParentPopover If `true`, dismissing this popover will also dismiss
* a parent popover if this popover is nested. Defaults to `true`.
*
* This is a no-op if the overlay has not been presented yet. If you want
* to remove an overlay from the DOM that was never presented, use the
* [remove](https://developer.mozilla.org/en-US/docs/Web/API/Element/remove) method.
*/
@Method()
async dismiss(data?: any, role?: string, dismissParentPopover = true): Promise<boolean> {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB