com.github.fluorumlabs.disconnect.vaadin.EmailField 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;
import com.github.fluorumlabs.disconnect.core.annotations.WebComponent;
import com.github.fluorumlabs.disconnect.vaadin.elements.EmailFieldElement;
import com.github.fluorumlabs.disconnect.zero.component.AbstractComponent;
import com.github.fluorumlabs.disconnect.zero.component.Component;
import com.github.fluorumlabs.disconnect.zero.component.HasComponents;
import com.github.fluorumlabs.disconnect.zero.component.HasStyle;
/**
* <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
*/
@WebComponent
public class EmailField extends AbstractComponent
implements HasStyle, HasComponents> {
public EmailField() {
super(EmailFieldElement.TAGNAME());
}
}