Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,19 @@ Badge List Add-on is written by Flowing Code S.A.

# Developer Guide

## Enabling the Badge component

Since version 2.0.0, this add-on uses the preview version of Badge component from Vaadin core (`com.vaadin.flow.component.badge.Badge`). As is currently an experimental feature it must be explicitly enabled in your project before using this add-on.

You can enable it in one of two ways:

- Through **Vaadin Copilot**, in the experimental features panel.
- By adding the following line to `src/main/resources/vaadin-featureflags.properties` in your project:

```properties
com.vaadin.experimental.badgeComponent=true
```

## Getting started

```java
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@
<!-- Generated file that shouldn't be included in add-ons -->
<excludes>
<exclude>META-INF/VAADIN/config/flow-build-info.json</exclude>
<exclude>**/vaadin-featureflags.properties</exclude>
</excludes>
</configuration>
</plugin>
Expand Down
Loading