UNPKG

ednl-liftstatus-web-components

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