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:
whyisjake 2020-05-05 23:39:31 +00:00
parent 62f6909480
commit 4a11b9db02
12 changed files with 43 additions and 9 deletions

File diff suppressed because one or more lines are too long

View File

@ -10,6 +10,10 @@
/** /**
* Often re-used variables * Often re-used variables
*/ */
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/** /**
* Breakpoint mixins * Breakpoint mixins
*/ */

View File

@ -10,6 +10,10 @@
/** /**
* Often re-used variables * Often re-used variables
*/ */
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/** /**
* Breakpoint mixins * Breakpoint mixins
*/ */

View File

@ -10,6 +10,10 @@
/** /**
* Often re-used variables * Often re-used variables
*/ */
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/** /**
* Breakpoint mixins * Breakpoint mixins
*/ */
@ -87,7 +91,12 @@
.wp-block-buttons .wp-block-button { .wp-block-buttons .wp-block-button {
display: inline-block; 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 { .wp-block-buttons.aligncenter {
text-align: center; } text-align: center; }

File diff suppressed because one or more lines are too long

View File

@ -10,6 +10,10 @@
/** /**
* Often re-used variables * Often re-used variables
*/ */
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/** /**
* Breakpoint mixins * Breakpoint mixins
*/ */
@ -88,7 +92,12 @@
.wp-block-buttons .wp-block-button { .wp-block-buttons .wp-block-button {
display: inline-block; 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 { .wp-block-buttons.aligncenter {
text-align: center; } text-align: center; }

File diff suppressed because one or more lines are too long

View File

@ -10,6 +10,10 @@
/** /**
* Often re-used variables * Often re-used variables
*/ */
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/** /**
* Breakpoint mixins * Breakpoint mixins
*/ */

View File

@ -10,6 +10,10 @@
/** /**
* Often re-used variables * Often re-used variables
*/ */
/**
* Grid System.
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
*/
/** /**
* Breakpoint mixins * Breakpoint mixins
*/ */

View File

@ -15949,8 +15949,8 @@ function (_Component) {
}; };
}); });
return { return {
defaultImageWidth: imageDimensions[featuredImageSizeSlug].width, defaultImageWidth: Object(external_this_lodash_["get"])(imageDimensions, [featuredImageSizeSlug, 'width'], 0),
defaultImageHeight: imageDimensions[featuredImageSizeSlug].height, defaultImageHeight: Object(external_this_lodash_["get"])(imageDimensions, [featuredImageSizeSlug, 'height'], 0),
imageSizeOptions: imageSizeOptions, imageSizeOptions: imageSizeOptions,
latestPosts: !Array.isArray(posts) ? posts : posts.map(function (post) { latestPosts: !Array.isArray(posts) ? posts : posts.map(function (post) {
if (post.featured_media) { if (post.featured_media) {

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.