
Security News
Node.js Moves Toward Stable TypeScript Support with Amaro 1.0
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
@spectrum-web-components/actionbar
Advanced tools
A `<sp-actionbar>` delivers a floating action bar that is a convenient way to deliver stateful actions in cases like selection mode. `<sp-actionbar>` can be deployed in two variants beyond the default: `[varient="fixed"]`, to position the element in relat
A <sp-actionbar>
delivers a floating action bar that is a convenient way to deliver stateful actions in cases like selection mode. <sp-actionbar>
can be deployed in two variants beyond the default: [varient="fixed"]
, to position the element in relation to the page, and [variant=sticky]
, to position the content in relation to content that may scroll.
yarn add @spectrum-web-components/actionbar
Import the side effectful registration of <sp-actionbar>
via:
import '@spectrum-web-components/actionbar/sp-actionbar.js';
When looking to leverage the Actionbar
base class as a type and/or for extension purposes, do so via:
import { Actionbar } from '@spectrum-web-components/actionbar';
<sp-actionbar open>
<sp-checkbox indeterminate>228 Selected</sp-checkbox>
<sp-action-group quiet>
<sp-action-button label="Edit">
<sp-icon-edit slot="icon"></sp-icon-edit>
</sp-action-button>
<sp-action-button label="More">
<sp-icon-more slot="icon"></sp-icon-more>
</sp-action-button>
</sp-action-group>
</sp-actionbar>
When using [variant="fixed"]
, the <sp-actionbar>
will display by default at the bottom left of the window and can be customized via CSS from the outside.
<h4>Look down and to the left when toggling.</h4>
<sp-actionbar variant="fixed">
<sp-checkbox indeterminate>228 Selected</sp-checkbox>
</sp-actionbar>
<sp-button
onclick="javascript:this.previousElementSibling.open = !this.previousElementSibling.open;"
>
Toggle fixed actionbar
</sp-button>
When using [variant="sticky"]
, be sure you've spent some time touching up on how sticky
really works to ensure the most successful delivery of your content.
<section style="position: relative; max-height: 6em; overflow: auto;">
<h4>Scroll down for toggle button</h4>
<sp-actionbar variant="sticky" style="top: 0;">
<sp-checkbox indeterminate>228 Selected</sp-checkbox>
</sp-actionbar>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
</p>
<sp-button
onclick="javascript:this.previousElementSibling.previousElementSibling.open = !this.previousElementSibling.previousElementSibling.open;"
>
Toggle sticky actionbar
</sp-button>
</section>
FAQs
A `<sp-actionbar>` delivers a floating action bar that is a convenient way to deliver stateful actions in cases like selection mode. `<sp-actionbar>` can be deployed in two variants beyond the default: `[varient="fixed"]`, to position the element in relat
We found that @spectrum-web-components/actionbar demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.