File tree 1 file changed +5
-0
lines changed
flow-server/src/main/java/com/vaadin/experimental
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,10 @@ public class FeatureFlags implements Serializable {
99
99
"React 19 (default in Vaadin 25)" , "react19" ,
100
100
"https://react.dev/blog/2024/12/05/react-19" , true , null );
101
101
102
+ public static final Feature ACCESSIBLE_DISABLED_BUTTONS = new Feature (
103
+ "Accessible disabled buttons" , "accessibleDisabledButtons" ,
104
+ "https://github.com/vaadin/web-components/issues/4585" , true , null );
105
+
102
106
private List <Feature > features = new ArrayList <>();
103
107
104
108
File propertiesFolder = null ;
@@ -128,6 +132,7 @@ public FeatureFlags(Lookup lookup) {
128
132
features .add (new Feature (DASHBOARD_COMPONENT ));
129
133
features .add (new Feature (CARD_COMPONENT ));
130
134
features .add (new Feature (REACT19 ));
135
+ features .add (new Feature (ACCESSIBLE_DISABLED_BUTTONS ));
131
136
loadProperties ();
132
137
}
133
138
You can’t perform that action at this time.
0 commit comments