refactor(html): split UI define modules and narrow slider imports (#659)

This commit is contained in:
rahim
2026-03-01 16:23:43 +11:00
committed by GitHub
parent 92b7c2ac18
commit 017856013f
13 changed files with 91 additions and 26 deletions
@@ -0,0 +1,9 @@
import { SliderTrackElement } from '../../ui/slider/slider-track-element';
customElements.define(SliderTrackElement.tagName, SliderTrackElement);
declare global {
interface HTMLElementTagNameMap {
[SliderTrackElement.tagName]: SliderTrackElement;
}
}