Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@uxds-web-components/banner
Advanced tools
An <sp-banner>
is an additional label an existing component may have. Banners cannot be interacted with. Banners in Spectrum have three variations for different uses as well as the ability to place it overlaid in the top-right corner of a container.
yarn add @spectrum-web-components/banner
Import the side effectful registration of <sp-banner>
via:
import '@spectrum-web-components/banner/sp-banner.js';
When looking to leverage the Banner
base class as a type and/or for extension purposes, do so via:
import { Banner } from '@spectrum-web-components/banner';
<sp-banner>
<div slot="header">Header text</div>
<div slot="content">Content of the banner</div>
</sp-banner>
Banners intended for providing information. This is the default banner variant.
<sp-banner type="info">
<div slot="header">This is an info banner</div>
<div slot="content">Description here</div>
</sp-banner>
Banners intended to indicate an error as occurred, with a brief description of the issue. More severe than a warning banner.
<sp-banner type="error">
<div slot="header">This is an error banner</div>
<div slot="content">Something bad happened</div>
</sp-banner>
In addition to the variant, banners can be placed in the top-right corner of its container by giving them a corner prop. Note that the position of the containing element needs to be either relative or absolute
<div
style="width: 300px; max-width: 75%; height: 100px; background-color: #ba598b; position: relative;"
>
<sp-banner corner>
<div slot="header">This banner is in a corner</div>
<div slot="content">Neat!</div>
</sp-banner>
</div>
A Banner does not have a default semantic role communicated to assistive technology, but it does accept id, role and other aria- props that can be added to to improve accessibility depending on context.
FAQs
Unknown package
The npm package @uxds-web-components/banner receives a total of 1 weekly downloads. As such, @uxds-web-components/banner popularity was classified as not popular.
We found that @uxds-web-components/banner 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.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.