Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

Commit

Permalink
Update flow and wc versions (#61)
Browse files Browse the repository at this point in the history
* Update gitignore

* Update parent version

* Bump minor version

* Update WC version

* Fix test

Co-authored-by: Tulio Garcia <tulio@vaadin.com>
  • Loading branch information
alvarezguille and Tulio Garcia committed Apr 7, 2020
1 parent e823e6d commit 8ed2244
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@ vaadin-select-flow-integration-tests/error-screenshots/
# The following files are generated/updated by flow-maven-plugin
package.json
package-lock.json
webpack.config.js
webpack.*.js
tsconfig.json
types.d.ts
node_modules/
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>flow-component-base</artifactId>
<version>3.0-SNAPSHOT</version>
<version>3.1-SNAPSHOT</version>
<relativePath />
</parent>

<artifactId>vaadin-select-flow-parent</artifactId>
<version>3.0-SNAPSHOT</version>
<version>3.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Vaadin Select Flow Parent</name>
<inceptionYear>2019</inceptionYear>
Expand Down
2 changes: 1 addition & 1 deletion vaadin-select-flow-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-select-flow-parent</artifactId>
<version>3.0-SNAPSHOT</version>
<version>3.1-SNAPSHOT</version>
</parent>

<artifactId>vaadin-select-flow-demo</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion vaadin-select-flow-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-select-flow-parent</artifactId>
<version>3.0-SNAPSHOT</version>
<version>3.1-SNAPSHOT</version>
</parent>

<artifactId>vaadin-select-integration-tests</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class DetachIT extends AbstractComponentIT {
*/
@Test
public void testReattach_setRenderer() {
open(getTestURL());
open();
getCommandExecutor().waitForVaadin();
$("button").first().click();
getCommandExecutor().waitForVaadin();
Expand Down
2 changes: 1 addition & 1 deletion vaadin-select-flow-testbench/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>vaadin-select-flow-parent</artifactId>
<groupId>com.vaadin</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.1-SNAPSHOT</version>
</parent>

<artifactId>vaadin-select-testbench</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion vaadin-select-flow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-select-flow-parent</artifactId>
<version>3.0-SNAPSHOT</version>
<version>3.1-SNAPSHOT</version>
</parent>

<artifactId>vaadin-select-flow</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
@Generated({ "Generator: com.vaadin.generator.ComponentGenerator#1.3-SNAPSHOT",
"WebComponent: Vaadin.SelectElement#2.0.2", "Flow#1.3-SNAPSHOT" })
@Tag("vaadin-select")
@NpmPackage(value = "@vaadin/vaadin-select", version = "2.1.7")
@NpmPackage(value = "@vaadin/vaadin-select", version = "2.2.0-alpha1")
@JsModule("@vaadin/vaadin-select/src/vaadin-select.js")
public abstract class GeneratedVaadinSelect<R extends GeneratedVaadinSelect<R, T>, T>
extends AbstractSinglePropertyField<R, T>
Expand Down

0 comments on commit 8ed2244

Please sign in to comment.