()
| 40 | }; |
| 41 | |
| 42 | render() { |
| 43 | return html` |
| 44 | <div |
| 45 | ref=${(el: HTMLDivElement) => (this.ref = el)} |
| 46 | onsqueak-er=${() => console.log("squeak")} |
| 47 | aria-label=${null} |
| 48 | > |
| 49 | ${this.header} |
| 50 | <p .dataset=${{ foo: "bar", num: 42 }}>lorem</p> |
| 51 | <slot></slot> |
| 52 | <button .disabled=${this.isDisabled.value}>Disabled?</button> |
| 53 | <button onclick=${this.squeak}>squeak</button> |
| 54 | </div> |
| 55 | `; |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | declare global { |
nothing calls this directly
no outgoing calls
no test coverage detected