@vonage/vvd-context
v2.46.1
Published
> TODO: description
Downloads
1,970
Maintainers
Keywords
Readme
Introduction
Vivid components are fully taking care of their styling. Yet there are also a simple native HTML elements, that 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.
The service is optional, but most likely will be needed in any Vonage application.
Attention!
vvd-context
uses internallyvvd-core
, which sets up the core services like theming and typography, thusvvd-context
user may safely omit any own setup of the core.
API
Attention! As an initial step, to provide smoother migration and lesser friction with an existing systems (especially those heavily dependent on Volta's legacy), we are scoping most of the Vivid context impact by special class: vivid-scope
.
Please, put vivid-scope
class at the root of the DOM tree, that is ready to be styled by Vivid.
Any new application should just safely put that class on the application DOM root (usually
body
).
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
orDocumentFragment
(includingShadowRoot
); optional; defaults todocument
Throws:
- if the provided target argument is
null
or not of a typeDocument
orDocumentFragment
Examples
Import
import vvdContext from '@vonage/vvd-context';
Mount context into the current document scope
vvdContext.mount();
Mount context into a document of choice
const shadowRoot = someElement.shadowRoot;
vvdContext.mount(shadowRoot);