UNPKG

@dreamworld/dw-input

Version:

Material design styled input text-field & text-area implemented in LitElement

12 lines (9 loc) 261 B
import { DwInput } from './dw-input'; export class DwEmailInput extends DwInput { constructor() { super(); this.type = 'email'; this.errorMessages = { typeMismatch: 'Invalid Email' }; } } customElements.define('dw-email-input', DwEmailInput);