Skip to content

Commit

Permalink
#502 done
Browse files Browse the repository at this point in the history
  • Loading branch information
vaadin-miki committed Dec 15, 2023
1 parent 16c1e95 commit 112942c
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 29 deletions.
1 change: 1 addition & 0 deletions demo-v24/frontend/generated/vaadin-featureflags.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ window.Vaadin.featureFlags.exampleFeatureFlag = false;
window.Vaadin.featureFlags.collaborationEngineBackend = false;
window.Vaadin.featureFlags.webPush = false;
window.Vaadin.featureFlags.formFillerAddon = false;
window.Vaadin.featureFlags.reactRouter = false;
export {};
2 changes: 1 addition & 1 deletion demo-v24/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<dependency>
<groupId>org.atteo.classindex</groupId>
<artifactId>classindex</artifactId>
<version>3.11</version>
<version>3.13</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static DemoComponentFactory get() {

private final Map<Class<?>, ContentBuilder<?>> contentBuilders = new LinkedHashMap<>();

@SuppressWarnings({"unchecked", "squid:S3740"}) // validator type should be ok
@SuppressWarnings({"unchecked", "rawtypes", "squid:S3740"}) // validator type should be ok
private DemoComponentFactory() {
final ValidatorStorage storage = new ValidatorStorage();

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<vaadin.version>24.2.2</vaadin.version>
<vaadin.version>24.3.0</vaadin.version>
</properties>

</project>
4 changes: 2 additions & 2 deletions superfields/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<vaadin.version>24.2.2</vaadin.version>
<vaadin.version>24.3.0</vaadin.version>
<maven.jar.plugin.version>3.1.2</maven.jar.plugin.version>
<javadoc.plugin.version>3.4.1</javadoc.plugin.version>
</properties>
Expand Down Expand Up @@ -62,7 +62,7 @@
<dependency>
<groupId>com.github.mvysny.kaributesting</groupId>
<artifactId>karibu-testing-v10</artifactId>
<version>2.0.1</version>
<version>2.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package org.vaadin.miki.markers;

import com.vaadin.flow.component.HasPlaceholder;

/**
* Mixin interface to support chaining {@link #setPlaceholder(String)}.
* @param <SELF> Self type.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
import com.vaadin.flow.component.Component;
import com.vaadin.flow.component.HasHelper;
import com.vaadin.flow.component.HasLabel;
import com.vaadin.flow.component.HasPlaceholder;
import com.vaadin.flow.component.shared.HasPrefix;
import com.vaadin.flow.component.shared.HasSuffix;
import com.vaadin.flow.component.shared.HasTooltip;
import org.vaadin.miki.markers.HasDatePattern;
import org.vaadin.miki.markers.HasHelperPositionable;
import org.vaadin.miki.markers.HasIcon;
import org.vaadin.miki.markers.HasLocale;
import org.vaadin.miki.markers.HasPlaceholder;

/**
* @author miki
Expand Down

0 comments on commit 112942c

Please sign in to comment.