UNPKG

awv3

Version:
15 lines (12 loc) 404 B
import Element from '../element'; export default class Input extends Element { constructor(plugin, options) { super(plugin, { type: Element.Type.Input, format: Input.Format.Default, readonly: false, value: '', placeholder: '', ...options }); } static Format = { Default: 'Default', Vector: 'Vector', MultiLine: 'MultiLine', Number: 'Number' }; }