com.github.fluorumlabs.disconnect.vaadin.elements.EmailFieldElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-vaadin Show documentation
Show all versions of disconnect-vaadin Show documentation
Vaadin components bindings for Disconnect Zero
The newest version!
package com.github.fluorumlabs.disconnect.vaadin.elements;
import com.github.fluorumlabs.disconnect.core.annotations.Import;
import com.github.fluorumlabs.disconnect.core.annotations.NpmPackage;
import com.github.fluorumlabs.disconnect.vaadin.Vaadin;
/**
* <vaadin-email-field>
is a Web Component for email field control in forms.
*
* <vaadin-email-field label="Email">
* </vaadin-email-field>
*
* Styling
* See vaadin-text-field.html for the styling documentation
*
* See
* ThemableMixin – how to apply styles for shadow parts
*/
@NpmPackage(
name = "@vaadin/vaadin",
version = Vaadin.VERSION
)
@Import(
module = "@vaadin/vaadin-text-field/theme/lumo/vaadin-email-field.js"
)
public interface EmailFieldElement extends TextFieldElement {
static String TAGNAME() {
return "vaadin-email-field";
}
}