UNPKG

ziko

Version:

a versatile javaScript framework offering a rich set of UI components, advanced mathematical utilities, reactivity, animations, client side routing and graphics capabilities

14 lines 336 B
import { ZikoUIInput } from "../input"; class ZikoUIInputDateTime extends ZikoUIInput { constructor() { super("datetime-local", "inputDateTime"); } get isInputDateTime(){ return true; } } const inputDateTime = () => new ZikoUIInputDateTime(); export{ ZikoUIInputDateTime, inputDateTime }