class AlertElement extends HTMLElement { constructor() { super(); } async connectedCallback() { const message = this.getAttribute("data-message") || ""; const type = this.getAttribute("data-type") || "message"; const isClose = this.getAttribute("data-isclose") || "false"; const containerClass = this.getAttribute("data-container-class") || ""; const elem = document.createElement("div"); elem.innerHTML = /*html*/ `