Color picker improvements

This commit is contained in:
barsdeveloper
2022-11-08 22:26:29 +01:00
parent c8c365313d
commit 1bd6af4bcb
11 changed files with 127 additions and 27 deletions

View File

@@ -0,0 +1,13 @@
import InputTemplate from "../template/InputTemplate"
import IElement from "./IElement"
export default class InputElement extends IElement {
static elementName = "ueb-input"
constructor() {
super({}, new InputTemplate())
}
}
customElements.define(InputElement.elementName, InputElement)