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/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.
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
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.
We found that @spectrum-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.
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.