class CheckboxElement extends HTMLElement { constructor() { super(); } async connectedCallback() { const id = this.getAttribute("data-id"); const label = this.getAttribute("data-label") || ""; const description = this.getAttribute("data-description") || ""; const value = this.getAttribute("data-value") || ""; const isRequired = (this.getAttribute("data-isrequired") || "true") == "true"; const input = document.createElement("div"); input.innerHTML = /*html*/ `
${description}
`; this.appendChild(input); } } window.customElements.define("checkbox-element", CheckboxElement);