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 { TimeSeparatorElement } from '../../ui/time/time-separator-element';
customElements.define(TimeSeparatorElement.tagName, TimeSeparatorElement);
declare global {
interface HTMLElementTagNameMap {
[TimeSeparatorElement.tagName]: TimeSeparatorElement;
}
}