mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
feat(core): add controls component with activity tracking (#514)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user