File tree 1 file changed +7
-0
lines changed
flow-server/src/main/java/com/vaadin/experimental
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,12 @@ public class FeatureFlags implements Serializable {
103
103
"Accessible disabled buttons" , "accessibleDisabledButtons" ,
104
104
"https://github.com/vaadin/web-components/issues/4585" , true , null );
105
105
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
+
106
112
private List <Feature > features = new ArrayList <>();
107
113
108
114
File propertiesFolder = null ;
@@ -133,6 +139,7 @@ public FeatureFlags(Lookup lookup) {
133
139
features .add (new Feature (CARD_COMPONENT ));
134
140
features .add (new Feature (REACT19 ));
135
141
features .add (new Feature (ACCESSIBLE_DISABLED_BUTTONS ));
142
+ features .add (new Feature (LAYOUT_COMPONENT_IMPROVEMENTS ));
136
143
loadProperties ();
137
144
}
138
145
You can’t perform that action at this time.
0 commit comments