Skip to content

Commit 355bfc2

Browse files
authored
feat: add feature flag for layout improvements (#20930)
* feat: add feature flag for layout improvements * improve naming
1 parent cee4d1d commit 355bfc2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

flow-server/src/main/java/com/vaadin/experimental/FeatureFlags.java

+7
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,12 @@ public class FeatureFlags implements Serializable {
103103
"Accessible disabled buttons", "accessibleDisabledButtons",
104104
"https://github.com/vaadin/web-components/issues/4585", true, null);
105105

106+
public static final Feature LAYOUT_COMPONENT_IMPROVEMENTS = new Feature(
107+
"HorizontalLayout and VerticalLayout improvements",
108+
"layoutComponentImprovements",
109+
"https://github.com/vaadin/flow-components/issues/6998", true,
110+
null);
111+
106112
private List<Feature> features = new ArrayList<>();
107113

108114
File propertiesFolder = null;
@@ -133,6 +139,7 @@ public FeatureFlags(Lookup lookup) {
133139
features.add(new Feature(CARD_COMPONENT));
134140
features.add(new Feature(REACT19));
135141
features.add(new Feature(ACCESSIBLE_DISABLED_BUTTONS));
142+
features.add(new Feature(LAYOUT_COMPONENT_IMPROVEMENTS));
136143
loadProperties();
137144
}
138145

0 commit comments

Comments
 (0)