Add getDimensionsClassesAndStyles function and related tests #74524
+171
−0
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.
What?
Closes #74518
This PR introduces a new experimental helper for Dimensions block support serialization:
__experimentalGetDimensionsClassesAndStyles.The helper returns
{ className, style }for dimensions-related block supports when their serialization is intentionally skipped.Why?
Gutenberg currently provides helper utilities for several block supports (color, spacing, border, shadow, typography) to generate CSS classes and inline styles when serialization is skipped. However, there was no equivalent helper for Dimensions block support (e.g. width, height, min-height, aspect ratio).
As a result, block authors had to reimplement internal logic to correctly apply dimensions styles to inner elements, leading to duplication and inconsistencies across blocks.
This PR fills that gap by providing a dedicated helper that aligns Dimensions with the rest of the Block API.
How?
getDimensionsClassesAndStylesthat derives dimensions-related class names and inline styles fromstyle.dimensions.__experimentalGetDimensionsClassesAndStylesvia@wordpress/block-editor.aspectRatioand height-related properties to mirror existing internal behavior.Testing Instructions