UNPKG

@reginaldo-marinho/rucula-js

Version:

Crie telas em Minutos! 🚀

15 lines (14 loc) • 608 B
import { field } from "../../../entities/form/field"; import { ManagmentObject } from "../../../object/ObjectManagment"; export declare abstract class FieldInput { protected managmentObject: ManagmentObject; protected floatLabel: boolean; protected field: field; input: HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement; protected ruculaForm: HTMLElement; constructor(field: field, managmentObject: ManagmentObject, ruculaForm: HTMLElement); protected abstract create(): void; protected abstract setEvents(): void; protected setWidth(): void; exec(): void; }