Skip to content
Merged
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
Blocks: update support from __experimentalLayout to layout
Fixes #32853

Block support for layout has now graduated from experimental to stable. Everything works the same; the only difference is that when adding block support for layout in block.json, its name is now layout instead of __experimentalLayout.
  • Loading branch information
jeherve committed Nov 14, 2023
commit 5543c52a0e2ee8cbd02bc22f8fb3ec0dd01fa5a1
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: other

Blocks: update block support from __experimentalLayout to layout.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"blockGap": true
}
},
"__experimentalLayout": {
"layout": {
"allowSwitching": false,
"allowInheriting": false,
"default": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function PaymentButtonsEdit( { clientId, attributes } ) {
orientation: 'horizontal',
template: [ [ 'jetpack/recurring-payments' ] ],
templateInsertUpdatesSelection: true,
__experimentalLayout: layout,
layout,
} );

// The ID needs to be just on the outermost wrapper - the toolbar and wpcom upgrade nudge
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function register_block() {
array(
'render_callback' => __NAMESPACE__ . '\render_block',
'supports' => array(
'__experimentalLayout' => array(
'layout' => array(
'allowSwitching' => false,
'allowInheriting' => false,
'default' => array(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function ButtonsEdit( { context, subscribeButton, setSubscribeButtonPlan } ) {
allowedBlocks={ ALLOWED_BLOCKS }
template={ isPreview ? previewTemplate : template }
templateInsertUpdatesSelection={ false }
__experimentalLayout={ { type: 'default', alignments: [] } }
layout={ { type: 'default', alignments: [] } }
__experimentalMoverDirection="horizontal"
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const TiledGalleryEdit = props => {
numColumns: displayedColumns,
marginHorizontal: TILE_SPACING,
marginVertical: TILE_SPACING,
__experimentalLayout: { type: 'default', alignments: [] },
layout: { type: 'default', alignments: [] },
gridProperties: {
numColumns: displayedColumns,
},
Expand Down