Skip to content

Commit 45457e4

Browse files
authored
feat: add accessibleDisabledButtons feature flag (#20845)
* feat: add feature flag for focusable disabled components * rename feature flag
1 parent fa584e1 commit 45457e4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

+5
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ public class FeatureFlags implements Serializable {
9999
"React 19 (default in Vaadin 25)", "react19",
100100
"https://react.dev/blog/2024/12/05/react-19", true, null);
101101

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+
102106
private List<Feature> features = new ArrayList<>();
103107

104108
File propertiesFolder = null;
@@ -128,6 +132,7 @@ public FeatureFlags(Lookup lookup) {
128132
features.add(new Feature(DASHBOARD_COMPONENT));
129133
features.add(new Feature(CARD_COMPONENT));
130134
features.add(new Feature(REACT19));
135+
features.add(new Feature(ACCESSIBLE_DISABLED_BUTTONS));
131136
loadProperties();
132137
}
133138

0 commit comments

Comments
 (0)