feat(core): add controls component with activity tracking (#514)

This commit is contained in:
rahim
2026-02-13 01:14:16 +11:00
committed by GitHub
parent 33b21906cd
commit 90d881cec2
20 changed files with 787 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { ControlsElement } from '../../ui/controls/controls-element';
import { ControlsGroupElement } from '../../ui/controls/controls-group-element';
customElements.define(ControlsElement.tagName, ControlsElement);
customElements.define(ControlsGroupElement.tagName, ControlsGroupElement);
declare global {
interface HTMLElementTagNameMap {
[ControlsElement.tagName]: ControlsElement;
[ControlsGroupElement.tagName]: ControlsGroupElement;
}
}