@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.45 kB
JavaScript
import { proxyCustomElement, HTMLElement, h } from '@stencil/core/internal/client';
const dataListActionsCss = ":host{display:contents}dd{margin-inline-start:0;align-items:baseline;display:flex;grid-column:-1;grid-row:1;justify-content:flex-end}:host([hidden]){display:none !important}";
const UtrechtDataListActionsStyle0 = dataListActionsCss;
const DataListActions = /*@__PURE__*/ proxyCustomElement(class DataListActions extends HTMLElement {
constructor() {
super();
this.__registerHost();
this.__attachShadow();
}
render() {
return (h("dd", { key: 'd01659ba29e577320cb664113a91d3bd046a44cf' }, h("slot", { key: 'cea8ab97d11ae9c14c74f81407974a4ab479da0b' })));
}
static get style() { return UtrechtDataListActionsStyle0; }
}, [1, "utrecht-data-list-actions"]);
function defineCustomElement$1() {
if (typeof customElements === "undefined") {
return;
}
const components = ["utrecht-data-list-actions"];
components.forEach(tagName => { switch (tagName) {
case "utrecht-data-list-actions":
if (!customElements.get(tagName)) {
customElements.define(tagName, DataListActions);
}
break;
} });
}
const UtrechtDataListActions = DataListActions;
const defineCustomElement = defineCustomElement$1;
export { UtrechtDataListActions, defineCustomElement };
//# sourceMappingURL=utrecht-data-list-actions.js.map