Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@spectrum-web-components/overlay
Advanced tools
An `<sp-overlay>` element is used to decorate content that you would like to present to your visitors as "overlaid" on the rest of the application. This includes dialogs (modal and not), pickers, tooltips, context menus, et al.
An <sp-overlay>
element is used to decorate content that you would like to present to your visitors as "overlaid" on the rest of the application. This includes dialogs (modal and not), pickers, tooltips, context menus, et al.
yarn add @spectrum-web-components/overlay
Import the side effectful registration of <sp-overlay>
as follows:
import '@spectrum-web-components/overlay/sp-overlay.js';
When looking to leverage the Overlay
base class as a type and/or for extension purposes, do so via:
import {
Overlay
} from '@spectrum-web-components/overlay';
By leveraging the trigger
attribute to pass an ID reference to another element with in the same DOM tree, your overlay will be positioned in relation to this element. When the ID reference is followed by an @
symbol and interaction type, like click
, hover
, or longpress
, the overlay will bind itself to the referenced element via the DOM events associated with that interaction. For example, the <sp-button>
below has an id of trigger
, and the <sp-overlay>
is provided the trigger
attribute with the value trigger@click
. This creates an association between the overlay and the <sp-button>
that opens the overlay when the button is clicked.
<sp-button id="trigger">Overlay Trigger</sp-button>
<!-- Opening an overlay via a click interaction -->
<sp-overlay trigger="trigger@click" placement="bottom">
<sp-popover>
<sp-dialog>
<h2 slot="heading">Clicking opens this popover...</h2>
<p>But, it really could be anything. Really.</p>
</sp-dialog>
</sp-popover>
</sp-overlay>
<!-- Opening an overlay via a hover interaction -->
<sp-overlay trigger="trigger@hover" placement="bottom">
<sp-tooltip>
I'm a tooltip and I'm triggered by hovering over the button!
</sp-tooltip>
</sp-overlay>
When a <sp-overlay>
element is opened, it will pass that state to its direct children elements as the property open
, which it will set to true
. Elements should react to this by initiating any transition between closed and open that they see fit. Similarly, open
will be set to false
when the <sp-overlay>
element is closed.
<style>
.overlay-demo-popover sp-action-group {
padding: var(--spectrum-actiongroup-vertical-spacing-regular);
}
#overlay-demo {
position: static;
}
#overlay-demo:not(:defined),
#overlay-demo *:not(:defined) {
display: none;
}
</style>
<sp-popover id="overlay-demo" class="overlay-demo-popover" open>
<sp-action-group vertical quiet emphasized selects="single">
<sp-action-button id="trigger-1" hold-affordance>
<sp-icon-anchor-select slot="icon"></sp-icon-anchor-select>
</sp-action-button>
<sp-action-button id="trigger-2" hold-affordance>
<sp-icon-polygon-select slot="icon"></sp-icon-polygon-select>
</sp-action-button>
<sp-action-button id="trigger-3" hold-affordance>
<sp-icon-rect-select slot="icon"></sp-icon-rect-select>
</sp-action-button>
</sp-action-group>
<sp-overlay trigger="trigger-1@hover" type="hint">
<sp-tooltip>Hover</sp-tooltip>
</sp-overlay>
<sp-overlay
trigger="trigger-1@longpress"
type="auto"
placement="right-start"
>
<sp-popover class="overlay-demo-popover" tip>
<sp-action-group vertical quiet>
<sp-action-button>
<sp-icon-anchor-select slot="icon"></sp-icon-anchor-select>
</sp-action-button>
<sp-action-button>
<sp-icon-polygon-select
slot="icon"
></sp-icon-polygon-select>
</sp-action-button>
<sp-action-button>
<sp-icon-rect-select slot="icon"></sp-icon-rect-select>
</sp-action-button>
</sp-action-group>
</sp-popover>
</sp-overlay>
<sp-overlay trigger="trigger-2@hover" type="hint">
<sp-tooltip>Hover</sp-tooltip>
</sp-overlay>
<sp-overlay
trigger="trigger-2@longpress"
type="auto"
placement="right-start"
>
<sp-popover class="overlay-demo-popover" tip>
<sp-action-group vertical quiet>
<sp-action-button>
<sp-icon-anchor-select slot="icon"></sp-icon-anchor-select>
</sp-action-button>
<sp-action-button>
<sp-icon-polygon-select
slot="icon"
></sp-icon-polygon-select>
</sp-action-button>
<sp-action-button>
<sp-icon-rect-select slot="icon"></sp-icon-rect-select>
</sp-action-button>
</sp-action-group>
</sp-popover>
</sp-overlay>
<sp-overlay trigger="trigger-3@hover" type="hint">
<sp-tooltip>Hover</sp-tooltip>
</sp-overlay>
<sp-overlay
trigger="trigger-3@longpress"
type="auto"
placement="right-start"
>
<sp-popover class="overlay-demo-popover" tip>
<sp-action-group vertical quiet>
<sp-action-button>
<sp-icon-anchor-select slot="icon"></sp-icon-anchor-select>
</sp-action-button>
<sp-action-button>
<sp-icon-polygon-select
slot="icon"
></sp-icon-polygon-select>
</sp-action-button>
<sp-action-button>
<sp-icon-rect-select slot="icon"></sp-icon-rect-select>
</sp-action-button>
</sp-action-group>
</sp-popover>
</sp-overlay>
</sp-popover>
<sp-overlay
?open=${boolean}
?delayed=${boolean}
offset=${Number | [Number, Number]}
placement=${Placement}
receives-focus=${'true' | 'false' | 'auto' (default)
trigger=${string | ${string}@${string}}
.triggerElement=${HTMLElement}
.triggerInteraction=${'click' | 'longpress' | 'hover'}
type=${'auto' | 'hint' | 'manual' | 'modal' | 'page'}
></sp-overlay>
When a triggerElement
is present, either through an ID reference established via the trigger
attribute or by directly setting the triggerElement
property, a chain on configuration begins:
triggerInteraction
is available, either through the id@interaction
IDL on the trigger
attribute or directly setting the triggerInteraction
property, the <sp-overlay>
will be bound to the resolved triggerElement
via the triggerInteraction
providedplacement
is available when the <sp-overlay>
is open
and displaying its contents, those contents will be positioned relative to the triggerElement
as per that placement
offset
is also available the <sp-overlay>
will distance itself from the triggerElement
in accordance with the value of the offset
placement
but not a triggerElement
the <sp-overlay>
will not be positioned due to their being nothing for the placement
to reference when so doingplacement
is available the content will not be placed with the expectation that the content itself or the consuming application will handle placement of the overlaid content. This is commonly what will happen for type="modal"
and type="page"
overlays as they are likely meant to cover the entire screen, whether visibly (via an <sp-underlay>
, an element that includes one, or similar) or figuratively (as when modal content is not delivered with a backdrop or scrim).The type
of an Overlay outlines a number of things about the interaction model within which is works.
'modal'
Overlays are opened with the showModal()
method on a <dialog>
element, which causes the Overlay to accept focus and trap the tab stop within the content of said Overlay.
They should be used when you need to ensure that the user has interacted with the content of the Overlay before continuing with their work. This is commonly used for dialogs that require a user to confirm or cancel an action before continuing.
<sp-button id="trigger">open modal</sp-button>
<sp-overlay trigger="trigger@click" type="modal">
<sp-dialog-wrapper headline="Signin form" dismissable underlay>
<p>I am a modal type overlay.</p>
<sp-field-label>Enter your email</sp-field-label>
<sp-textfield placeholder="test@gmail.com"></sp-textfield>
<sp-action-button
onClick="
this.dispatchEvent(
new Event('close', {
bubbles: true,
composed: true,
})
);
"
>
Sign in
</sp-action-button>
</sp-dialog-wrapper>
</sp-overlay>
'page'
Overlays will act in a similar manner to a 'modal'
Overlay, however they will not be allowed to close via the "light dismiss" algorithm (e.g. the Escape key).
A page overlay could be used for a full-screen menu on a mobile website. When the user clicks on the menu button, the entire screen is covered with the menu options.
<sp-button id="trigger">open page</sp-button>
<sp-overlay trigger="trigger@click" type="page">
<sp-dialog-wrapper
headline="Full screen menu"
mode="fullscreenTakeover"
cancel-label="Close"
>
<p>I am a page type overlay.</p>
</sp-dialog-wrapper>
</sp-overlay>
'hint'
Overlays are much like tooltips so they are not just ephemeral, but they are delivered primarily as a visual helper and exist outside of the tab order. In this way, be sure not to place interactive content within this type of Overlay.
This overlay type does not accept focus and does not interfere with the user's interaction with the rest of the page.
<sp-button id="trigger">open hint</sp-button>
<sp-overlay trigger="trigger@hover" type="hint">
<sp-tooltip>
I am a hint type overlay. I am not interactive and will close when the
user interacts with the page.
</sp-tooltip>
</sp-overlay>
'auto'
Overlays provide a place for content that is ephemeral and interactive. These Overlays can accept focus but will close when losing that focus, or when interacting with other parts of the page.
<style>
sp-toast {
position: fixed;
top: 1em;
right: 1em;
}
</style>
<sp-button id="trigger">open auto</sp-button>
<sp-overlay trigger="trigger@click" type="auto">
<sp-toast variant="info">
This is information that you should read.
</sp-toast>
</sp-overlay>
'manual'
Overlays act much like 'auto'
Overlays, but do not close when losing focus or interacting with other parts of the page.
Note: When a 'manual'
Overlay is at the top of the "overlay stack", it will still respond to the Escape key and close.
<style>
.chat-container {
position: fixed;
bottom: 1em;
left: 1em;
}
</style>
<sp-button id="trigger">open manual</sp-button>
<sp-overlay trigger="trigger@click" type="manual">
<sp-popover class="chat-container">
<sp-dialog dismissable>
<span slot="heading">Chat Window</span>
<sp-textfield placeholder="Enter your message"></sp-textfield>
<sp-action-button>Send</sp-action-button>
</sp-dialog>
</sp-popover>
</sp-overlay>
When fully open the <sp-overlay>
element will dispatch the sp-opened
event, and when fully closed the sp-closed
event will be dispatched. Both of these events are of type:
type OverlayStateEvent = Event & {
overlay: Overlay;
};
The overlay
value in this case will hold a reference to the actual <sp-overlay>
that is opening or closing to trigger this event. Remember that some <sp-overlay>
element (like those creates via the imperative API) can be transiently available in the DOM, so if you choose to build a cache of Overlay elements to some end, be sure to leverage a weak reference so that the <sp-overlay>
can be garbage collected as desired by the browser.
"Fully" in this context means that all CSS transitions that have dispatched transitionrun
events on the direct children of the <sp-overlay>
element have successfully dispatched their transitionend
or transitioncancel
event. Keep in mind the following:
transition*
events bubble; this means that while transition events on light DOM content of those direct children will be heard, those events will not be taken into accounttransition*
events are not composed; this means that transition events on shadow DOM content of the direct children will not propagate to a level in the DOM where they can be heardThis means that in both cases, if the transition is meant to be a part of the opening or closing of the overlay in question you will need to redispatch the transitionrun
, transitionend
, and transitioncancel
events from that transition from the closest direct child of the <sp-overlay>
.
<sp-overlay>
element will use the <dialog>
element or popover
attribute to project your content onto the top-layer of the browser, without being moved in the DOM tree. That means that you can style your overlay content with whatever techniques you are already leveraging to style the content that doesn't get overlaid. This means standard CSS selectors, CSS Custom Properties, and CSS Parts applied in your parent context will always apply to your overlaid content.
There are some complex CSS values that have not yet been covered by the positioning API that the <sp-overlay>
element leverages to associate overlaid content with their trigger elements. In specific, properties like filter
, when applied to a trigger element within which lives the related content to be overlaid, are not currently supported by the relationship created herein. If support for this is something that you and the work you are addressing would require, we'd love to hear from you in an issue. We'd be particularly interested in speaking with you if you were interested in contributing support/testing to ensure this capability for all consumers of the library.
While the <dialog>
element is widely supported by browsers, the popover
attribute is still quite new. When leveraged in browsers that do not yet support the popover
attribute, there may be additional intervention required to ensure your content is delivered to your visitors as expected.
When an overlay is placed within a page with complex layering, the content therein can fall behind other content in the z-index
stack. The following example is somewhat contrived but, imagine a toolbar next to a properties panel. If the toolbar has a lower z-index
than the properties panel, any overlaid content (tooltips, etc.) within that toolbar will display underneath any content in the properties panel with which it may share pixels.
<div class="complex-layered-demo">
<div class="complex-layered-holder">
<sp-action-button id="complex-layered">Trigger</sp-action-button>
<sp-overlay
trigger="complex-layered@hover"
type="hint"
placement="bottom-start"
>
<sp-tooltip>
I can be partially blocked when [popover] is not available
</sp-tooltip>
</sp-overlay>
</div>
<div class="complex-layered-blocker"></div>
</div>
<style>
.complex-layered-demo {
position: relative;
}
.complex-layered-holder {
z-index: 1;
position: relative;
}
.complex-layered-blocker {
position: relative;
z-index: 10;
background: white;
width: 100%;
height: 40px;
}
</style>
Properly managed z-index
values will support working around this issue while browsers work to adopt the popover
attribute. In this demo, you can achieve the same output by sharing one z-index
between the various pieces of content, removing z-index
values altogether, or raising the .complex-layered-holder
element to a higher z-index
than the .complex-layered-blocker
element.
CSS Containment gives a developer direct control over how the internals of one element affect the paint and layout of the internals of other elements on the same page. While leveraging some of its values can offer performance gains, they can interrupt the delivery of your overlaid content.
<div class="contained-demo">
<sp-action-button id="contained">Trigger</sp-action-button>
<sp-overlay trigger="contained@hover" type="hint" placement="bottom-start">
<sp-tooltip>
I can be blocked when [popover] is not available
</sp-tooltip>
</sp-overlay>
</div>
<style>
.contained-demo {
contain: content;
}
</style>
You could just remove the contain
rule. But, if you are not OK with simply removing the contain
value, you still have options. If you would like to continue to leverage contain
, you can place your "contained" content separately from your overlaid content, like so:
<div class="contained-demo">
<sp-action-button id="contained-working">Trigger</sp-action-button>
</div>
<sp-overlay
trigger="contained-working@hover"
type="hint"
placement="bottom-start"
>
<sp-tooltip>I can be blocked when [popover] is not available</sp-tooltip>
</sp-overlay>
<style>
.contained-demo {
contain: content;
}
</style>
<sp-overlay>
accepts an ID reference via the trigger
attribute to relate it to interactions and positioning in the DOM. To fulfill this reference the two elements need to be in the same DOM tree. However, <sp-overlay>
alternatively accepts a triggerElement
property that opens even more flexibility in addressing this situation.
clip-path
can also restrict how content in an element is surfaced at paint time. When overlaid content should display outside of the clip-path
, without the popover
attribute, that content could be clipped.
<div class="clip-pathed-demo">
<sp-action-button id="clip-pathed">Trigger</sp-action-button>
<sp-overlay
trigger="clip-pathed@hover"
type="hint"
placement="bottom-start"
>
<sp-tooltip>
I can be blocked when [popover] is not available
</sp-tooltip>
</sp-overlay>
</div>
<style>
.clip-pathed-demo {
clip-path: inset(0 0);
}
</style>
Here, again, working with your content needs (whether or not you want to leverage clip-path
) or DOM structure (not colocating clipped and non-clipped content) will allow you to avoid this issue:
<div class="clip-pathed-demo">
<sp-action-button id="clip-pathed-working">Trigger</sp-action-button>
</div>
<sp-overlay
trigger="clip-pathed-working@hover"
type="hint"
placement="bottom-start"
>
<sp-tooltip>I can be blocked when [popover] is not available</sp-tooltip>
</sp-overlay>
<style>
.clip-pathed-demo {
clip-path: inset(0 0);
}
</style>
Under very specific conditions, WebKit will incorrectly clip fixed-position content.
WebKit clips position: fixed
elements within containers that have all of:
position: relative
overflow: clip
or overflow: hidden
z-index
greater than zeroIf you notice overlay clipping only in Safari, this is likely the culprit. The solution is to break up the conditions into separate elements to avoid triggering WebKit's bug. For example, leaving relative positioning and z-index on the outermost container while creating an inner container that enforces the overflow rules.
FAQs
An `<sp-overlay>` element is used to decorate content that you would like to present to your visitors as "overlaid" on the rest of the application. This includes dialogs (modal and not), pickers, tooltips, context menus, et al.
The npm package @spectrum-web-components/overlay receives a total of 5,710 weekly downloads. As such, @spectrum-web-components/overlay popularity was classified as popular.
We found that @spectrum-web-components/overlay demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.