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
+2 -3
View File
@@ -1,12 +1,11 @@
import { ControlsElement } from '../../ui/controls/controls-element';
import { ControlsGroupElement } from '../../ui/controls/controls-group-element';
import './controls-group';
customElements.define(ControlsElement.tagName, ControlsElement);
customElements.define(ControlsGroupElement.tagName, ControlsGroupElement);
declare global {
interface HTMLElementTagNameMap {
[ControlsElement.tagName]: ControlsElement;
[ControlsGroupElement.tagName]: ControlsGroupElement;
}
}