in favor of @epa-wg/custom-element which is compatible with light-dom-element
by functionality and API.
light-dom-element
is still can be used as lighter version. If you look to minimal JS with same native functionality in shadowDOM,
use shadow-dom-element Fully functional template with declarative events handling in light DOM is handled by @epa-wg/custom-element
is covering the typical UI tasks: populate html slots into template using Light DOM ( acting as Shadow DOM but without CSS insulation ). Slots content and template could be local in the page or pointed via URL.
GitHub | Demo: light-dom-element | tests project
<script type="module" src="https://unpkg.com/shadow-dom-element@0.0/shadow-dom-element.js"></script>
<light-dom-element tag="my-component" src="https://unpkg.com/light-dom-element-test@0.0/test/template.html"></light-dom-element>
<my-component>
<h3 slot="slot1">heading 😌</h3>
</my-component>
light-dom-element
is simplest web component to render HTML template
and slot
.
It is meant for displaying the static content in the page or available during page load via URL.
You do not need a static site generator
as most of "components" could be expressed via template in own file.
There is a live sample
of shadow-dom-element
based templates for Ananke site generator.
While it is not a good example of shadow dom css styling,
it gives enough for templates embedding and use of such for building the static web site. You could play with this
responsive template in Sandbox.
File the issue if need a site sample based on html templates or have your own to be shared.
npm i -P light-dom-element
<script type="module" scr="https://unpkg.com/light-dom-element@0.0/light-dom-element.js"></script>
The size of light-dom-element.js is 1.6Kb, compiled to 1Kb.
fetch implemented via fetch() api, can be overridden with any type.
promise
resolved when template and slots loaded and renderedslotsInit()
initiates template and slots reading and rendering, returnsPromise<this>
fetch( url )
override to load and process URL before returning a HTML string with data within slots. Handy to use the JSON or XML as data source. Note, there is no error handling, you have to cover that case by template and error slots. For that you could find slotted-element handy as it is designed for loading life cycle.applyTemplate( templateNode )
applies template to slots in sub-dom of this element.
all attributes reflected as component properties
tag
tag name of declarative custom elementsrcset
id of container with slotssrc
url for html with slotsfor
id for html templatecode
url for html template
<slot name=xxx attribute=abc for=id-in-shadow-dom>
is a special case of slot
use within template: it would set the abc
attribute of
parent node to value taken either from href
, src
, or innerText of passed element with given name.
It is needed to pass the attribute via slots. For example, link or image URL. It could be used to pass attribute to internal
shadow-dom-element
as within
summary-with-image template
for image URL.
slot attribute=abc
defines attribute which would be populated from slothref
,src
, orinnerText
slot for=in-shadow-id
for slot withattribute
defines the element where attribute would be applied. When omitted, the attribute of container element where slot is located in template would be set:
<light-dom-element>
<template>
<img id="image-2" alt="source from slot" />
<slot name="image-src" attribute="src" for="image-2" hidden></slot>
</template>
<link slot="image-src" href="doc.png" />
</light-dom-element>
reside in separate repository https://github.com/sashafirsov/ligh-dom-element-test to avoid unnecessary dependency in source repo and npm.
Minimal functionality local demo is available in demo/ which could be run by
npm start
import LightDomElement from 'light-dom-element'
code has typings along with JSDoc enabled.
shadow-dom-element
, css-chain