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 298 B
import { ZikoUIInput } from "../input"; class ZikoUIInputDate extends ZikoUIInput { constructor() { super("date", "inputDate"); } get isInputDate(){ return true; } } const inputDate = () => new ZikoUIInputDate(); export{ ZikoUIInputDate, inputDate }