Skip to content

Commit

Permalink
prep build 07/25
Browse files Browse the repository at this point in the history
  • Loading branch information
bph committed Jul 25, 2024
2 parents 8f16ce4 + 32838e8 commit 08f0e38
Show file tree
Hide file tree
Showing 221 changed files with 1,412 additions and 372 deletions.
4 changes: 4 additions & 0 deletions backport-changelog/6.6/7088.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
https://github.com/WordPress/wordpress-develop/pull/7088

* https://github.com/WordPress/gutenberg/pull/63918

422 changes: 422 additions & 0 deletions changelog.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/reference-guides/data/data-core-block-editor.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ Returns all blocks that match a blockName. Results include nested blocks.
_Parameters_

- _state_ `Object`: Global application state.
- _blockName_ `?string`: Optional block name, if not specified, returns an empty array.
- _blockName_ `string[]`: Block name(s) for which clientIds are to be returned.

_Returns_

Expand Down
2 changes: 1 addition & 1 deletion lib/block-supports/block-style-variations.php
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ function gutenberg_render_block_style_variation_support_styles( $parsed_block )
return $parsed_block;
}

wp_register_style( 'block-style-variation-styles', false, array( 'global-styles', 'wp-block-library' ) );
wp_register_style( 'block-style-variation-styles', false, array( 'wp-block-library', 'global-styles' ) );
wp_add_inline_style( 'block-style-variation-styles', $variation_styles );

/*
Expand Down
Loading

0 comments on commit 08f0e38

Please sign in to comment.