Editor: update packages for Beta 3

Fixes #50712.



git-svn-id: https://develop.svn.wordpress.org/trunk@48527 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ella van Durpe 2020-07-21 12:12:43 +00:00
parent 74cc64d74e
commit 69ec4264dc
4 changed files with 356 additions and 353 deletions

653
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -81,50 +81,50 @@
"dependencies": {
"@babel/polyfill": "7.10.1",
"@wordpress/a11y": "2.11.0",
"@wordpress/annotations": "1.20.1",
"@wordpress/annotations": "1.20.2",
"@wordpress/api-fetch": "3.18.0",
"@wordpress/autop": "2.9.0",
"@wordpress/blob": "2.9.0",
"@wordpress/block-directory": "1.13.1",
"@wordpress/block-editor": "4.3.1",
"@wordpress/block-library": "2.22.1",
"@wordpress/block-directory": "1.13.2",
"@wordpress/block-editor": "4.3.2",
"@wordpress/block-library": "2.22.2",
"@wordpress/block-serialization-default-parser": "3.7.0",
"@wordpress/blocks": "6.20.1",
"@wordpress/components": "10.0.1",
"@wordpress/compose": "3.19.1",
"@wordpress/core-data": "2.20.1",
"@wordpress/data": "4.22.1",
"@wordpress/data-controls": "1.16.1",
"@wordpress/blocks": "6.20.2",
"@wordpress/components": "10.0.2",
"@wordpress/compose": "3.19.2",
"@wordpress/core-data": "2.20.2",
"@wordpress/data": "4.22.2",
"@wordpress/data-controls": "1.16.2",
"@wordpress/date": "3.10.0",
"@wordpress/deprecated": "2.9.0",
"@wordpress/dom": "2.13.1",
"@wordpress/dom-ready": "2.10.0",
"@wordpress/edit-post": "3.21.1",
"@wordpress/editor": "9.20.1",
"@wordpress/edit-post": "3.21.2",
"@wordpress/editor": "9.20.2",
"@wordpress/element": "2.16.0",
"@wordpress/escape-html": "1.9.0",
"@wordpress/format-library": "1.22.1",
"@wordpress/format-library": "1.22.2",
"@wordpress/hooks": "2.9.0",
"@wordpress/html-entities": "2.8.0",
"@wordpress/i18n": "3.14.0",
"@wordpress/icons": "2.4.0",
"@wordpress/is-shallow-equal": "2.1.0",
"@wordpress/keyboard-shortcuts": "1.9.1",
"@wordpress/keyboard-shortcuts": "1.9.2",
"@wordpress/keycodes": "2.14.0",
"@wordpress/list-reusable-blocks": "1.21.1",
"@wordpress/list-reusable-blocks": "1.21.2",
"@wordpress/media-utils": "1.15.0",
"@wordpress/notices": "2.8.1",
"@wordpress/nux": "3.20.1",
"@wordpress/plugins": "2.20.1",
"@wordpress/notices": "2.8.2",
"@wordpress/nux": "3.20.2",
"@wordpress/plugins": "2.20.2",
"@wordpress/primitives": "1.7.0",
"@wordpress/priority-queue": "1.7.0",
"@wordpress/redux-routine": "3.10.0",
"@wordpress/rich-text": "3.20.1",
"@wordpress/server-side-render": "1.16.1",
"@wordpress/rich-text": "3.20.2",
"@wordpress/server-side-render": "1.16.2",
"@wordpress/shortcode": "2.9.0",
"@wordpress/token-list": "1.11.0",
"@wordpress/url": "2.17.0",
"@wordpress/viewport": "2.21.1",
"@wordpress/viewport": "2.21.2",
"@wordpress/warning": "1.2.0",
"@wordpress/wordcount": "2.10.0",
"backbone": "1.4.0",

View File

@ -132,10 +132,12 @@ wp_localize_script( 'wp-editor', '_wpMetaBoxUrl', $meta_box_url );
* Initialize the editor.
*/
$align_wide = get_theme_support( 'align-wide' );
$color_palette = current( (array) get_theme_support( 'editor-color-palette' ) );
$font_sizes = current( (array) get_theme_support( 'editor-font-sizes' ) );
$gradient_presets = current( (array) get_theme_support( 'editor-gradient-presets' ) );
$align_wide = get_theme_support( 'align-wide' );
$color_palette = current( (array) get_theme_support( 'editor-color-palette' ) );
$font_sizes = current( (array) get_theme_support( 'editor-font-sizes' ) );
$gradient_presets = current( (array) get_theme_support( 'editor-gradient-presets' ) );
$custom_line_height = get_theme_support( 'custom-line-height' );
$custom_units = get_theme_support( 'custom-units' );
/**
* Filters the allowed block types for the editor, defaulting to true (all
@ -313,6 +315,8 @@ $editor_settings = array(
// Whether or not to load the 'postcustom' meta box is stored as a user meta
// field so that we're not always loading its assets.
'enableCustomFields' => (bool) get_user_meta( get_current_user_id(), 'enable_custom_fields', true ),
'enableCustomLineHeight' => $custom_line_height,
'enableCustomUnits' => $custom_units,
);
$autosave = wp_get_post_autosave( $post_ID );

File diff suppressed because one or more lines are too long