parasol
v1.0.1
Published
Handy helpers for the Shadow DOM.
Downloads
2
Readme
parasol
Handy helpers for the Shadow DOM.
Installation
npm install --save parasol
Usage
Given this DOM structure...
<my-parent> (Light DOM)
(Shadow Root)
... (Shadow DOM)
<my-child> (Shadow DOM)
closest(selectors)
Like Element.closest but breaks out of the Shadow root boundary.
import { closest } from 'parasol'
myChild::closest('my-parent') // <my-parent>
host()
Like ShadowRoot.host but works its way up the Shadow DOM until it finds the host
.
import { host } from 'parasol'
myChild::host() // <my-parent>
Development
Run tests
npm test