-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add constrained/flow layout to Cover block. (#45326)
* Add constrained/flow layout to Cover block. * Remove edit logic. * Remove justification and make flow layout default * Add constrained layout as a block variation. * Remove unnecessary variation properties. * Update snapshot
- Loading branch information
1 parent
54781db
commit 32a3cc8
Showing
5 changed files
with
49 additions
and
18 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { __ } from '@wordpress/i18n'; | ||
import { cover } from '@wordpress/icons'; | ||
|
||
const variations = [ | ||
{ | ||
name: 'cover', | ||
title: __( 'Cover' ), | ||
description: __( | ||
'Add an image or video with a text overlay — great for headers.' | ||
), | ||
attributes: { layout: { type: 'constrained' } }, | ||
isDefault: true, | ||
icon: cover, | ||
}, | ||
]; | ||
|
||
export default variations; |
This file contains 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