Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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 @@ -29,10 +29,6 @@ public class CoreFeatureFlagProvider implements FeatureFlagProvider {
"collaborationEngineBackend",
"https://github.com/vaadin/platform/issues/1988", true, null);

public static final Feature ACCESSIBLE_DISABLED_BUTTONS = new Feature(
"Accessible disabled buttons", "accessibleDisabledButtons",
"https://github.com/vaadin/web-components/issues/4585", true, null);

public static final Feature COMPONENT_STYLE_INJECTION = new Feature(
"Enable theme component style injection", "themeComponentStyles",
"https://github.com/vaadin/flow/issues/21608", true, null);
Expand All @@ -43,8 +39,7 @@ public class CoreFeatureFlagProvider implements FeatureFlagProvider {

@Override
public List<Feature> getFeatures() {
return List.of(COLLABORATION_ENGINE_BACKEND,
ACCESSIBLE_DISABLED_BUTTONS, COMPONENT_STYLE_INJECTION,
return List.of(COLLABORATION_ENGINE_BACKEND, COMPONENT_STYLE_INJECTION,
TAILWIND_CSS);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ public class FeatureFlags implements Serializable {
// Feature constants pointing to provider definitions for backward
// compatibility
public static final Feature COLLABORATION_ENGINE_BACKEND = CoreFeatureFlagProvider.COLLABORATION_ENGINE_BACKEND;
public static final Feature ACCESSIBLE_DISABLED_BUTTONS = CoreFeatureFlagProvider.ACCESSIBLE_DISABLED_BUTTONS;
public static final Feature COMPONENT_STYLE_INJECTION = CoreFeatureFlagProvider.COMPONENT_STYLE_INJECTION;
public static final Feature HILLA_FULLSTACK_SIGNALS = HillaFeatureFlagProvider.HILLA_FULLSTACK_SIGNALS;
public static final Feature LAYOUT_COMPONENT_IMPROVEMENTS = FlowComponentsFeatureFlagProvider.LAYOUT_COMPONENT_IMPROVEMENTS;
Expand Down
Loading