Block Editor: Update Packages that include WP 5.3 RC2 fixes.
Updated packages: - @wordpress/api-fetch@3.6.3 - @wordpress/block-directory@1.0.3 - @wordpress/block-editor@3.2.3 - @wordpress/block-library@2.9.3 - @wordpress/core-data@2.7.3 - @wordpress/data-controls@1.3.3 - @wordpress/e2e-test-utils@2.4.3 - @wordpress/e2e-tests@1.7.3 - @wordpress/edit-post@3.8.3 - @wordpress/editor@9.7.3 - @wordpress/format-library@1.9.3 - @wordpress/list-reusable-blocks@1.8.3 - @wordpress/media-utils@1.2.3 - @wordpress/server-side-render@1.3.3 - @wordpress/url@2.8.2 Props gziolo. Fixes #48381. Built from https://develop.svn.wordpress.org/trunk@46562 git-svn-id: http://core.svn.wordpress.org/trunk@46359 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
67104bb3f4
commit
21bf3bf8dd
|
@ -179,7 +179,13 @@ div[data-type="core/button"] div[data-block] {
|
|||
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit .block-core-columns {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1 0 auto; }
|
||||
flex: 1 1 auto; }
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"],
|
||||
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit,
|
||||
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit > div[data-block],
|
||||
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit .block-core-columns {
|
||||
flex: 1; } }
|
||||
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] {
|
||||
padding-right: 0;
|
||||
padding-left: 0;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -180,7 +180,13 @@ div[data-type="core/button"] div[data-block] {
|
|||
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit .block-core-columns {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1 0 auto; }
|
||||
flex: 1 1 auto; }
|
||||
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
||||
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"],
|
||||
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit,
|
||||
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit > div[data-block],
|
||||
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit .block-core-columns {
|
||||
flex: 1; } }
|
||||
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -540,9 +540,6 @@ function (_Component) {
|
|||
} else {
|
||||
var frameConfig = {
|
||||
title: title,
|
||||
button: {
|
||||
text: Object(external_this_wp_i18n_["__"])('Select')
|
||||
},
|
||||
multiple: multiple
|
||||
};
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -752,6 +752,10 @@ function removeQueryArgs(url) {
|
|||
*/
|
||||
|
||||
function prependHTTP(url) {
|
||||
if (!url) {
|
||||
return url;
|
||||
}
|
||||
|
||||
url = url.trim();
|
||||
|
||||
if (!USABLE_HREF_REGEXP.test(url) && !EMAIL_REGEXP.test(url)) {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -226,34 +226,34 @@ function wp_default_packages_scripts( &$scripts ) {
|
|||
$packages_versions = array(
|
||||
'a11y' => '2.5.1',
|
||||
'annotations' => '1.7.2',
|
||||
'api-fetch' => '3.6.2',
|
||||
'api-fetch' => '3.6.3',
|
||||
'autop' => '2.5.1',
|
||||
'blob' => '2.5.1',
|
||||
'block-editor' => '3.2.2',
|
||||
'block-library' => '2.9.2',
|
||||
'block-editor' => '3.2.3',
|
||||
'block-library' => '2.9.3',
|
||||
'block-serialization-default-parser' => '3.4.1',
|
||||
'blocks' => '6.7.2',
|
||||
'components' => '8.3.2',
|
||||
'compose' => '3.7.2',
|
||||
'core-data' => '2.7.2',
|
||||
'data-controls' => '1.3.2',
|
||||
'core-data' => '2.7.3',
|
||||
'data-controls' => '1.3.3',
|
||||
'data' => '4.9.2',
|
||||
'date' => '3.5.0',
|
||||
'deprecated' => '2.6.1',
|
||||
'dom-ready' => '2.5.1',
|
||||
'dom' => '2.5.2',
|
||||
'edit-post' => '3.8.2',
|
||||
'editor' => '9.7.2',
|
||||
'edit-post' => '3.8.3',
|
||||
'editor' => '9.7.3',
|
||||
'element' => '2.8.2',
|
||||
'escape-html' => '1.5.1',
|
||||
'format-library' => '1.9.2',
|
||||
'format-library' => '1.9.3',
|
||||
'hooks' => '2.6.0',
|
||||
'html-entities' => '2.5.0',
|
||||
'i18n' => '3.6.1',
|
||||
'is-shallow-equal' => '1.6.1',
|
||||
'keycodes' => '2.6.2',
|
||||
'list-reusable-blocks' => '1.8.2',
|
||||
'media-utils' => '1.2.2',
|
||||
'list-reusable-blocks' => '1.8.3',
|
||||
'media-utils' => '1.2.3',
|
||||
'notices' => '1.8.2',
|
||||
'nux' => '3.7.2',
|
||||
'plugins' => '2.7.2',
|
||||
|
@ -261,9 +261,9 @@ function wp_default_packages_scripts( &$scripts ) {
|
|||
'redux-routine' => '3.6.2',
|
||||
'rich-text' => '3.7.2',
|
||||
'shortcode' => '2.4.1',
|
||||
'server-side-render' => '1.3.2',
|
||||
'server-side-render' => '1.3.3',
|
||||
'token-list' => '1.6.1',
|
||||
'url' => '2.8.1',
|
||||
'url' => '2.8.2',
|
||||
'viewport' => '2.8.2',
|
||||
'wordcount' => '2.6.2',
|
||||
);
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.3-RC1-46561';
|
||||
$wp_version = '5.3-RC1-46562';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue