File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
flow-server/src/main/java/com/vaadin/experimental Expand file tree Collapse file tree 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 {
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
You can’t perform that action at this time.
0 commit comments