Skip to content

Commit

Permalink
Merge pull request #3 from vaadin-component-factory/bugfix/lookup_com…
Browse files Browse the repository at this point in the history
…ponent

Fix the webcomponent issue - wrong filtering in a custom Grid
  • Loading branch information
jcgueriaud1 authored Apr 28, 2021
2 parents 61fd2d5 + 2a1f0ea commit d149345
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions lookup-field-flow-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.vaadin.componentfactory</groupId>
<artifactId>lookup-field-flow-demo</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>

<name>Lookup Field Demo</name>
<packaging>war</packaging>
Expand All @@ -18,7 +18,7 @@
</organization>

<properties>
<vaadin.version>14.4.2</vaadin.version>
<vaadin.version>14.5.3</vaadin.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -96,7 +96,7 @@
<dependency>
<groupId>com.vaadin.componentfactory</groupId>
<artifactId>lookup-field-flow</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions lookup-field-flow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.vaadin.componentfactory</groupId>
<artifactId>lookup-field-flow</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<packaging>jar</packaging>

<name>Lookup Field</name>
Expand All @@ -19,7 +19,7 @@
</organization>

<properties>
<vaadin.version>14.4.2</vaadin.version>
<vaadin.version>14.5.3</vaadin.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
@Uses(value = EnhancedDialog.class)
@Tag("vcf-lookup-field")
@JsModule("@vaadin-component-factory/vcf-lookup-field")
@NpmPackage(value = "@vaadin-component-factory/vcf-lookup-field", version = "1.1.1")
@NpmPackage(value = "@vaadin-component-factory/vcf-lookup-field", version = "1.1.2")
public class LookupField<T> extends Div implements HasFilterableDataProvider<T, String>,
HasValueAndElement<AbstractField.ComponentValueChangeEvent<LookupField<T>, T>, T>, HasValidation, HasHelper, HasSize, HasTheme {

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.vaadin.componentfactory</groupId>
<artifactId>lookup-field-flow-root</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<packaging>pom</packaging>
<modules>
<module>lookup-field-flow</module>
Expand All @@ -13,12 +13,12 @@
<description>lookup-field-flow</description>

<properties>
<vaadin.version>14.4.2</vaadin.version>
<vaadin.version>14.5.3</vaadin.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<lookup-field-flow.version>1.1.0</lookup-field-flow.version>
<lookup-field-flow.version>1.1.1</lookup-field-flow.version>
</properties>
<inceptionYear>2020</inceptionYear>

Expand Down

0 comments on commit d149345

Please sign in to comment.