-
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 layout as a block variation.
- Loading branch information
1 parent
22c8c2c
commit e8af878
Showing
2 changed files
with
27 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/** | ||
* 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, | ||
scope: [ 'block', 'inserter', 'transform' ], | ||
isActive: ( blockAttributes ) => | ||
! blockAttributes.layout || | ||
! blockAttributes.layout?.type || | ||
blockAttributes.layout?.type === 'constrained', | ||
icon: cover, | ||
}, | ||
]; | ||
|
||
export default variations; |