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

@vonage/vvd-context

Package Overview
Dependencies
Maintainers
14
Versions
126
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vonage/vvd-context

> TODO: description

  • 1.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
582
increased by196.94%
Maintainers
14
Weekly downloads
 
Created
Source

Introduction

Vivid components are fully taking care of their styling. Yet there are usually also a simple native HTML elements in use. Those elements should also comply with the Vivid Design System.

For this reason we are providing Vivid Context service, responsible of mounting the Vivid styling into a document context.

The service is optional, but most likely will be needed in any Vonage application.

API

mount(target)

Description:

Mounts Vivid context (styles) into the target scope / document. Default target is the document visible in the current scope. The API is idempotent, the style/s will be mounted only once, even if API called multiple times.

Params:

  • target - Document or DocumentFragment (including ShadowRoot); optional; defaults to document

Throws:

  • if the provided target argument is null or not of a type Document or DocumentFragment

Examples

Import
import vvdContext from '@vonage/vvd-context';
Mount context to current document scope
vvdContext.mount();
Mount context to a document of choice
const shadowRoot = someElement.shadowRoot;
vvdContext.mount(shadowRoot);

FAQs

Package last updated on 18 Jan 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