Skip to content

Commit

Permalink
feat: add feature flag for layout improvements (#20930)
Browse files Browse the repository at this point in the history
* feat: add feature flag for layout improvements

* improve naming
  • Loading branch information
sissbruecker authored Jan 31, 2025
1 parent cee4d1d commit 355bfc2
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@ public class FeatureFlags implements Serializable {
"Accessible disabled buttons", "accessibleDisabledButtons",
"https://github.com/vaadin/web-components/issues/4585", true, null);

public static final Feature LAYOUT_COMPONENT_IMPROVEMENTS = new Feature(
"HorizontalLayout and VerticalLayout improvements",
"layoutComponentImprovements",
"https://github.com/vaadin/flow-components/issues/6998", true,
null);

private List<Feature> features = new ArrayList<>();

File propertiesFolder = null;
Expand Down Expand Up @@ -133,6 +139,7 @@ public FeatureFlags(Lookup lookup) {
features.add(new Feature(CARD_COMPONENT));
features.add(new Feature(REACT19));
features.add(new Feature(ACCESSIBLE_DISABLED_BUTTONS));
features.add(new Feature(LAYOUT_COMPONENT_IMPROVEMENTS));
loadProperties();
}

Expand Down

0 comments on commit 355bfc2

Please # to comment.