@utrecht/web-component-library-stencil
Version:
Stencil component library bundle for the Municipality of Utrecht based on the NL Design System architecture
36 lines (31 loc) • 1.28 kB
JavaScript
import { proxyCustomElement, HTMLElement, h, Host } from '@stencil/core/internal/client';
const tableBodyCss = ":host{--_utrecht-table-header-cell-z-index:2;display:table-row-group}";
const UtrechtTableBodyStyle0 = tableBodyCss;
const TableBody = /*@__PURE__*/ proxyCustomElement(class TableBody extends HTMLElement {
constructor() {
super();
this.__registerHost();
this.__attachShadow();
}
render() {
return (h(Host, { key: 'da4d1a97f30b169c4404189e2ea54252b1a24b9e', role: "rowgroup" }, h("slot", { key: '50b76d072d7cd62b9662307a6a9efeae08468ff6' })));
}
static get style() { return UtrechtTableBodyStyle0; }
}, [1, "utrecht-table-body"]);
function defineCustomElement$1() {
if (typeof customElements === "undefined") {
return;
}
const components = ["utrecht-table-body"];
components.forEach(tagName => { switch (tagName) {
case "utrecht-table-body":
if (!customElements.get(tagName)) {
customElements.define(tagName, TableBody);
}
break;
} });
}
const UtrechtTableBody = TableBody;
const defineCustomElement = defineCustomElement$1;
export { UtrechtTableBody, defineCustomElement };
//# sourceMappingURL=utrecht-table-body.js.map