ednl-liftstatus-web-components
Version:
The EDNL LiftStatus web components
35 lines (30 loc) • 1.11 kB
JavaScript
import { proxyCustomElement, HTMLElement, h, Host } from '@stencil/core/internal/client';
const lsStatusHistoryCss = ":host{display:block;font-family:var(--ls-font-family)}";
const LsStatusHistory$1 = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
constructor() {
super();
this.__registerHost();
this.__attachShadow();
}
render() {
return (h(Host, null, h("fieldset", null, h("legend", null, "ls-status-history")), h("slot", null)));
}
static get style() { return lsStatusHistoryCss; }
}, [1, "ls-status-history"]);
function defineCustomElement$1() {
if (typeof customElements === "undefined") {
return;
}
const components = ["ls-status-history"];
components.forEach(tagName => { switch (tagName) {
case "ls-status-history":
if (!customElements.get(tagName)) {
customElements.define(tagName, LsStatusHistory$1);
}
break;
} });
}
const LsStatusHistory = LsStatusHistory$1;
const defineCustomElement = defineCustomElement$1;
export { LsStatusHistory, defineCustomElement };
//# sourceMappingURL=ls-status-history.js.map