ziko
Version:
a versatile javaScript framework offering a rich set of UI components, advanced mathematical utilities, reactivity, animations, client side routing and graphics capabilities
18 lines • 428 B
JavaScript
import ZikoUIElement from "../../../constructors/ziko-ui-element.js";
class ZikoUITextArea extends ZikoUIElement {
constructor() {
super();
this.element = document?.createElement("textarea");
}
get value(){
return this.element.textContent;
}
get isTextArea(){
return true;
}
}
const textarea =()=> new ZikoUITextArea();
export {
ZikoUITextArea,
textarea
}