- Sources for this flow component can be found at https://github.com/vaadin/vaadin-flow-components
- Tickets has been moved to the web component repository https://github.com/vaadin/vaadin-text-field/issues
This project is the Component wrapper implementation of <vaadin-text-field>
element
for use from the server side with Vaadin Flow.
The repository contains implementations for TextField
, PasswordField
and TextArea
.
master
branch is the latest version that will at some point be released in the Vaadin platform. See other branches for other framework versions:
1.0
branch is Vaadin 10 LTS (Flow/Flow-component version 1.0)
Run from the command line:
mvn -pl vaadin-text-field-flow-demo -Pwar install jetty:run
Then navigate to http://localhost:9998/vaadin-text-field
for the demo of TextField,
to http://localhost:9998/vaadin-password-field
for the demo of PasswordField and to
http://localhost:9998/vaadin-text-area
for the demo of TextArea
For running integration tests demos execute
mvn -pl vaadin-text-field-flow-integration-tests clean jetty:run
Then navigate to integration tests URLs for see integration tests views.
For running all integration tests execute
mvn clean install verify
Run from the command line:
mvn clean install -DskipTests
To use the component in an application using maven,
add the following dependency to your pom.xml
:
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-text-field-flow</artifactId>
<version>${component.version}</version>
</dependency>
Documentation for flow can be found in Flow documentation.
- Use the coding conventions from Flow coding conventions
- Submit a pull request with detailed title and description
- Wait for response from one of Vaadin Flow team members
Apache License 2.0