Skip to content

heruan/vaadin-text-field-flow

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TextField component for Vaadin Flow

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 and PasswordField

Running the component demo

Run from the command line:

  • mvn clean install

To run the demo for TextField

  • mvn exec:java -Dexec.mainClass="com.vaadin.ui.textfield.TextFieldView" -Dexec.classpathScope="test"
  • Then navigate to http://localhost:9998/text-field

To run the demo for PasswordField

  • mvn exec:java -Dexec.mainClass="com.vaadin.ui.textfield.PasswordFieldView" -Dexec.classpathScope="test"
  • Then navigate to http://localhost:9998/password-field

Using the component in a Flow application

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>

Right now the usage requires the component to be locally built and installed through mvn install

Flow documentation

Documentation for flow can be found in Flow documentation.

Contributing

License

Apache License 2.0

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%