feature(symfony): Add CSS Color Schema Restriction for Property Validation #7215
Merged
soyuka merged 6 commits intoJun 27, 2025
Merged
Conversation
SebLevDev
force-pushed
the
feature/property-schema-css-color-restriction
branch
from
June 14, 2025 09:00
7581d75 to
89a2157
Compare
Member
|
looks nice, could you maybe explain how this is used? (or open a doc PR) It'd be nice to add some tests (can also be functional testing) |
Contributor
Author
|
I've updated the PR description to include an example of how to use the constraint in an entity. |
Member
|
awesome thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR introduces the PropertySchemaCssColorRestriction class, which generates a regular expression (pattern) for validating CSS color values in API Platform property schemas, based on the Symfony CssColor constraint.
Technical Details
Supports multiple CSS color formats (hex, rgb, rgba, hsl, hsla, named colors, etc.).
Dynamically builds a single regex pattern combining all allowed formats, suitable for OpenAPI/JSON Schema documentation.
Example
With a given resource
ThemeThe impact in the OpenApi Schema provide