Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add accessibleDisabledButtons feature flag #20845

Merged
merged 3 commits into from
Jan 20, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ public class FeatureFlags implements Serializable {
"React 19 (default in Vaadin 25)", "react19",
"https://react.dev/blog/2024/12/05/react-19", true, null);

public static final Feature FOCUSABLE_DISABLED_COMPONENTS = new Feature(
"Focusable disabled components", "focusableDisabledComponents",
"https://github.com/vaadin/web-components/issues/4585", true, null);

private List<Feature> features = new ArrayList<>();

File propertiesFolder = null;
Expand Down Expand Up @@ -128,6 +132,7 @@ public FeatureFlags(Lookup lookup) {
features.add(new Feature(DASHBOARD_COMPONENT));
features.add(new Feature(CARD_COMPONENT));
features.add(new Feature(REACT19));
features.add(new Feature(FOCUSABLE_DISABLED_COMPONENTS));
loadProperties();
}

Expand Down
Loading