feat(html): add popover element (#652)

This commit is contained in:
rahim
2026-02-28 00:39:47 -08:00
committed by GitHub
parent 44188d4823
commit bebd03ff2b
3 changed files with 211 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { PopoverElement } from '../../ui/popover/popover-element';
customElements.define(PopoverElement.tagName, PopoverElement);
declare global {
interface HTMLElementTagNameMap {
[PopoverElement.tagName]: PopoverElement;
}
}