// src/wc-bullet-chain.js var WCBulletChain = class extends HTMLElement { constructor() { super(); const template = document.createElement("template"); template.innerHTML = WCBulletChain.template(); this.attachShadow({mode: "open"}); this.shadowRoot.appendChild(document.importNode(template.content, true)); } async connectedCallback() { const ul = this.shadowRoot.querySelector("ul"); ul.innerHTML = this.innerHTML; this.innerHTML = ""; } static template() { return `