Block Editor: Update WordPress Packages following the 5.4.1 release.
This bumps @wordpress/block-library 2.14.7 ➡️ 2.14.8 Fixes #50094. Props aduth, peterwilsoncc, whyisjake. Built from https://develop.svn.wordpress.org/trunk@47765 git-svn-id: http://core.svn.wordpress.org/trunk@47541 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
62f6909480
commit
4a11b9db02
File diff suppressed because one or more lines are too long
|
@ -10,6 +10,10 @@
|
|||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Grid System.
|
||||
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
|
|
|
@ -10,6 +10,10 @@
|
|||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Grid System.
|
||||
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
|
|
|
@ -10,6 +10,10 @@
|
|||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Grid System.
|
||||
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
|
@ -87,7 +91,12 @@
|
|||
|
||||
.wp-block-buttons .wp-block-button {
|
||||
display: inline-block;
|
||||
margin: 4px; }
|
||||
margin-left: 8px;
|
||||
margin-bottom: 8px; }
|
||||
|
||||
.wp-block-buttons.alignright .wp-block-button {
|
||||
margin-left: none;
|
||||
margin-right: 8px; }
|
||||
|
||||
.wp-block-buttons.aligncenter {
|
||||
text-align: center; }
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -10,6 +10,10 @@
|
|||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Grid System.
|
||||
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
|
@ -88,7 +92,12 @@
|
|||
|
||||
.wp-block-buttons .wp-block-button {
|
||||
display: inline-block;
|
||||
margin: 4px; }
|
||||
margin-right: 8px;
|
||||
margin-bottom: 8px; }
|
||||
|
||||
.wp-block-buttons.alignright .wp-block-button {
|
||||
margin-right: none;
|
||||
margin-left: 8px; }
|
||||
|
||||
.wp-block-buttons.aligncenter {
|
||||
text-align: center; }
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -10,6 +10,10 @@
|
|||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Grid System.
|
||||
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
|
|
|
@ -10,6 +10,10 @@
|
|||
/**
|
||||
* Often re-used variables
|
||||
*/
|
||||
/**
|
||||
* Grid System.
|
||||
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
||||
*/
|
||||
/**
|
||||
* Breakpoint mixins
|
||||
*/
|
||||
|
|
|
@ -15949,8 +15949,8 @@ function (_Component) {
|
|||
};
|
||||
});
|
||||
return {
|
||||
defaultImageWidth: imageDimensions[featuredImageSizeSlug].width,
|
||||
defaultImageHeight: imageDimensions[featuredImageSizeSlug].height,
|
||||
defaultImageWidth: Object(external_this_lodash_["get"])(imageDimensions, [featuredImageSizeSlug, 'width'], 0),
|
||||
defaultImageHeight: Object(external_this_lodash_["get"])(imageDimensions, [featuredImageSizeSlug, 'height'], 0),
|
||||
imageSizeOptions: imageSizeOptions,
|
||||
latestPosts: !Array.isArray(posts) ? posts : posts.map(function (post) {
|
||||
if (post.featured_media) {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.5-alpha-47764';
|
||||
$wp_version = '5.5-alpha-47765';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue