UNPKG

@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.32 kB
import { proxyCustomElement, HTMLElement, h, Host } from '@stencil/core/internal/client'; const tableFooterCss = ":host{--_utrecht-table-header-cell-z-index:5;z-index:3;display:table-footer-group}"; const UtrechtTableFooterStyle0 = tableFooterCss; const TableFooter = /*@__PURE__*/ proxyCustomElement(class TableFooter extends HTMLElement { constructor() { super(); this.__registerHost(); this.__attachShadow(); } render() { return (h(Host, { key: '024dc1106eb2413d649d9fed0fe656722bab870f', role: "rowgroup" }, h("slot", { key: 'b7d9b6ddeb265b7b21f6aa084f4c96eac773c185' }))); } static get style() { return UtrechtTableFooterStyle0; } }, [1, "utrecht-table-footer"]); function defineCustomElement$1() { if (typeof customElements === "undefined") { return; } const components = ["utrecht-table-footer"]; components.forEach(tagName => { switch (tagName) { case "utrecht-table-footer": if (!customElements.get(tagName)) { customElements.define(tagName, TableFooter); } break; } }); } const UtrechtTableFooter = TableFooter; const defineCustomElement = defineCustomElement$1; export { UtrechtTableFooter, defineCustomElement }; //# sourceMappingURL=utrecht-table-footer.js.map