feat(html): add time slider element (#656)

This commit is contained in:
rahim
2026-02-28 20:52:27 -08:00
committed by GitHub
parent d5df0150b3
commit 26c7395cd0
7 changed files with 297 additions and 18 deletions
@@ -0,0 +1,11 @@
import { TimeSliderElement } from '../../ui/time-slider/time-slider-element';
import './slider';
customElements.define(TimeSliderElement.tagName, TimeSliderElement);
declare global {
interface HTMLElementTagNameMap {
[TimeSliderElement.tagName]: TimeSliderElement;
}
}