Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@bolt/core

Package Overview
Dependencies
Maintainers
5
Versions
380
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bolt/core

The original, unchanged version of Bolt Core that's being phased out in lieu of smaller, purpose-specific packages leading up to Bolt v3.0

  • 2.31.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19
decreased by-13.64%
Maintainers
5
Weekly downloads
 
Created
Source

<ssr-keep>

A "helper" custom element to wrap around portions of HTML you wish to keep after a web component boots-up. It uses a single attribute, for, which contains a query selector used to find the closest matching ancestor element and append its inner contents to it. All other HTML up to the matching element will be discarded.

For example, this:

<bolt-accordion-item>
  <div class="c-bolt-accordion-item">
    <div class="c-bolt-accordion-item__trigger">
      <ssr-keep for="bolt-accordion-item">
        <div slot="trigger">Trigger text</div>
      </ssr-keep>
    </div>
    <div class="c-bolt-accordion-item__content">
      <div class="c-bolt-accordion-item__content-inner">
        <ssr-keep for="bolt-accordion-item">
          Accordion content
        </ssr-keep>
      </div>
    </div>
  </div>
</bolt-accordion-item>

...will become this after the component connects:

<bolt-accordion-item>
  <div slot="trigger">Trigger text</div>
  Accordion content
</bolt-accordion-item>

FAQs

Package last updated on 04 Feb 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc