@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.26 kB
JavaScript
import { proxyCustomElement, HTMLElement, h, Host } from '@stencil/core/internal/client';
const tableRowCss = ":host{break-inside:avoid;page-break-inside:avoid;display:table-row}";
const UtrechtTableRowStyle0 = tableRowCss;
const TableRow = /*@__PURE__*/ proxyCustomElement(class TableRow extends HTMLElement {
constructor() {
super();
this.__registerHost();
this.__attachShadow();
}
render() {
return (h(Host, { key: '2549a7162397aa0ee06ce69c35a39af2f9700632', role: "row" }, h("slot", { key: 'd9d10eb4ef268e425f8d627602e6dcba7d9a7386' })));
}
static get style() { return UtrechtTableRowStyle0; }
}, [1, "utrecht-table-row"]);
function defineCustomElement$1() {
if (typeof customElements === "undefined") {
return;
}
const components = ["utrecht-table-row"];
components.forEach(tagName => { switch (tagName) {
case "utrecht-table-row":
if (!customElements.get(tagName)) {
customElements.define(tagName, TableRow);
}
break;
} });
}
const UtrechtTableRow = TableRow;
const defineCustomElement = defineCustomElement$1;
export { UtrechtTableRow, defineCustomElement };
//# sourceMappingURL=utrecht-table-row.js.map