Build Tools: Upgrade @wordpress packages to the latest version.

This also includes the new @wordpress/format-library and @wordpress/notices packages.

package-lock.json has been completely regenerated in this commit.

Props pento.
Merges [43840] to trunk.
See #45145.


git-svn-id: https://develop.svn.wordpress.org/trunk@44177 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Anton Timmermans 2018-12-14 10:53:17 +00:00
parent 578192177b
commit 19800c7b76
8 changed files with 337 additions and 259 deletions

464
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -54,40 +54,42 @@
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@wordpress/a11y": "2.0.2",
"@wordpress/api-fetch": "2.1.0",
"@wordpress/autop": "2.0.2",
"@wordpress/blob": "2.1.0",
"@wordpress/block-library": "2.1.4",
"@wordpress/block-serialization-default-parser": "1.0.1",
"@wordpress/blocks": "4.0.4",
"@wordpress/components": "4.2.1",
"@wordpress/compose": "2.0.5",
"@wordpress/core-data": "2.0.6",
"@wordpress/data": "2.1.4",
"@wordpress/date": "2.0.3",
"@wordpress/deprecated": "2.0.2",
"@wordpress/dom": "2.0.4",
"@wordpress/dom-ready": "2.0.2",
"@wordpress/edit-post": "1.0.4",
"@wordpress/editor": "5.0.1",
"@wordpress/element": "2.1.4",
"@wordpress/escape-html": "1.0.1",
"@wordpress/hooks": "2.0.2",
"@wordpress/html-entities": "2.0.2",
"@wordpress/i18n": "3.0.1",
"@wordpress/is-shallow-equal": "1.1.4",
"@wordpress/keycodes": "2.0.2",
"@wordpress/list-reusable-blocks": "1.1.4",
"@wordpress/nux": "2.0.6",
"@wordpress/plugins": "2.0.5",
"@wordpress/redux-routine": "3.0.3",
"@wordpress/rich-text": "1.0.1",
"@wordpress/shortcode": "2.0.2",
"@wordpress/token-list": "1.0.2",
"@wordpress/url": "2.1.0",
"@wordpress/viewport": "2.0.5",
"@wordpress/wordcount": "2.0.2",
"@wordpress/a11y": "^2.0.2",
"@wordpress/api-fetch": "^2.2.0",
"@wordpress/autop": "^2.0.2",
"@wordpress/blob": "^2.1.0",
"@wordpress/block-library": "^2.1.5",
"@wordpress/block-serialization-default-parser": "^1.0.1",
"@wordpress/blocks": "^5.0.0",
"@wordpress/components": "^5.0.0",
"@wordpress/compose": "^2.1.0",
"@wordpress/core-data": "^2.0.7",
"@wordpress/data": "^3.0.0",
"@wordpress/date": "^2.1.0",
"@wordpress/deprecated": "^2.0.3",
"@wordpress/dom": "^2.0.4",
"@wordpress/dom-ready": "^2.0.2",
"@wordpress/edit-post": "^2.0.0",
"@wordpress/editor": "^6.0.0",
"@wordpress/element": "^2.1.5",
"@wordpress/escape-html": "^1.0.1",
"@wordpress/format-library": "^1.0.0",
"@wordpress/hooks": "^2.0.3",
"@wordpress/html-entities": "^2.0.2",
"@wordpress/i18n": "^3.0.1",
"@wordpress/is-shallow-equal": "^1.1.4",
"@wordpress/keycodes": "^2.0.2",
"@wordpress/list-reusable-blocks": "^1.1.5",
"@wordpress/notices": "^1.0.0",
"@wordpress/nux": "^2.0.7",
"@wordpress/plugins": "^2.0.6",
"@wordpress/redux-routine": "^3.0.3",
"@wordpress/rich-text": "^1.0.2",
"@wordpress/shortcode": "^2.0.2",
"@wordpress/token-list": "^1.0.2",
"@wordpress/url": "^2.2.0",
"@wordpress/viewport": "^2.0.6",
"@wordpress/wordcount": "^2.0.3",
"backbone": "1.3.3",
"element-closest": "^2.0.2",
"formdata-polyfill": "^3.0.12",
@ -107,7 +109,7 @@
"underscore": "1.8.3",
"whatwg-fetch": "^3.0.0"
},
"scripts":{
"scripts": {
"grunt": "grunt"
}
}

View File

@ -37,6 +37,7 @@ remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
wp_enqueue_script( 'heartbeat' );
wp_enqueue_script( 'wp-edit-post' );
wp_enqueue_script( 'wp-format-library' );
$rest_base = ! empty( $post_type_object->rest_base ) ? $post_type_object->rest_base : $post_type_object->name;
@ -348,6 +349,7 @@ wp_enqueue_editor();
* Styles
*/
wp_enqueue_style( 'wp-edit-post' );
wp_enqueue_style( 'wp-format-library' );
/**
* Fires after block assets have been enqueued for the editing interface.

View File

@ -2107,26 +2107,32 @@ function get_block_categories( $post ) {
array(
'slug' => 'common',
'title' => __( 'Common Blocks' ),
'icon' => 'screenoptions',
),
array(
'slug' => 'formatting',
'title' => __( 'Formatting' ),
'icon' => null,
),
array(
'slug' => 'layout',
'title' => __( 'Layout Elements' ),
'icon' => null,
),
array(
'slug' => 'widgets',
'title' => __( 'Widgets' ),
'icon' => null,
),
array(
'slug' => 'embed',
'title' => __( 'Embeds' ),
'icon' => null,
),
array(
'slug' => 'reusable',
'title' => __( 'Reusable Blocks' ),
'icon' => null,
),
);

View File

@ -29,6 +29,8 @@ function render_block_core_archives( $attributes ) {
if ( ! empty( $attributes['displayAsDropdown'] ) ) {
$class .= ' wp-block-archives-dropdown';
$dropdown_id = esc_attr( uniqid( 'wp-block-archives-' ) );
$title = __( 'Archives', 'gutenberg' );
@ -77,6 +79,8 @@ function render_block_core_archives( $attributes ) {
);
} else {
$class .= ' wp-block-archives-list';
/** This filter is documented in wp-includes/widgets/class-wp-widget-archives.php */
$archives_args = apply_filters(
'widget_archives_args',

View File

@ -62,6 +62,10 @@ function render_block_core_latest_posts( $attributes ) {
$class .= ' columns-' . $attributes['columns'];
}
if ( isset( $attributes['displayPostDate'] ) && $attributes['displayPostDate'] ) {
$class .= ' has-dates';
}
if ( isset( $attributes['className'] ) ) {
$class .= ' ' . $attributes['className'];
}

View File

@ -175,7 +175,6 @@ function wp_default_packages_scripts( &$scripts ) {
'wp-blob',
'wp-block-serialization-default-parser',
'wp-data',
'wp-deprecated',
'wp-dom',
'wp-element',
'wp-hooks',
@ -184,7 +183,6 @@ function wp_default_packages_scripts( &$scripts ) {
'wp-polyfill',
'wp-shortcode',
'lodash',
'wp-rich-text',
),
'block-library' => array(
'editor',
@ -225,15 +223,20 @@ function wp_default_packages_scripts( &$scripts ) {
'wp-is-shallow-equal',
'wp-keycodes',
'wp-polyfill',
'wp-url',
'wp-rich-text',
'wp-url',
),
'compose' => array(
'lodash',
'wp-deprecated',
'wp-element',
'wp-is-shallow-equal',
'wp-polyfill'
),
'compose' => array( 'lodash', 'wp-element', 'wp-is-shallow-equal', 'wp-polyfill' ),
'core-data' => array( 'wp-data', 'wp-api-fetch', 'wp-polyfill', 'wp-url', 'lodash' ),
'data' => array(
'lodash',
'wp-compose',
'wp-deprecated',
'wp-element',
'wp-is-shallow-equal',
'wp-polyfill',
@ -291,6 +294,7 @@ function wp_default_packages_scripts( &$scripts ) {
'wp-i18n',
'wp-is-shallow-equal',
'wp-keycodes',
'wp-notices',
'wp-nux',
'wp-polyfill',
'wp-tinymce',
@ -302,6 +306,17 @@ function wp_default_packages_scripts( &$scripts ) {
),
'element' => array( 'wp-polyfill', 'react', 'react-dom', 'lodash', 'wp-escape-html' ),
'escape-html' => array( 'wp-polyfill' ),
'format-library' => array(
'wp-components',
'wp-dom',
'wp-editor',
'wp-element',
'wp-i18n',
'wp-keycodes',
'wp-polyfill',
'wp-rich-text',
'wp-url',
),
'hooks' => array( 'wp-polyfill' ),
'html-entities' => array( 'wp-polyfill' ),
'i18n' => array( 'wp-polyfill' ),
@ -316,18 +331,31 @@ function wp_default_packages_scripts( &$scripts ) {
'wp-i18n',
'wp-polyfill',
),
'notices' => array(
'lodash',
'wp-a11y',
'wp-data',
'wp-polyfill-ecmascript',
),
'nux' => array(
'wp-element',
'wp-components',
'wp-compose',
'wp-data',
'wp-deprecated',
'wp-i18n',
'wp-polyfill',
'lodash',
),
'plugins' => array( 'lodash', 'wp-compose', 'wp-element', 'wp-hooks', 'wp-polyfill' ),
'redux-routine' => array( 'wp-polyfill' ),
'rich-text' => array( 'wp-polyfill', 'wp-escape-html', 'lodash' ),
'rich-text' => array(
'lodash',
'wp-blocks',
'wp-data',
'wp-escape-html',
'wp-polyfill',
),
'shortcode' => array( 'wp-polyfill', 'lodash' ),
'token-list' => array( 'lodash', 'wp-polyfill' ),
'url' => array( 'wp-polyfill' ),
@ -380,7 +408,6 @@ function wp_default_packages_inline_scripts( &$scripts ) {
' var storageKey = "WP_DATA_USER_" + userId;',
' wp.data',
' .use( wp.data.plugins.persistence, { storageKey: storageKey } )',
' .use( wp.data.plugins.asyncGenerator )',
' .use( wp.data.plugins.controls );',
'} )()',
)
@ -1815,6 +1842,7 @@ function wp_default_styles( &$styles ) {
'components' => array(),
'edit-post' => array( 'wp-components', 'wp-editor', 'wp-edit-blocks', 'wp-block-library', 'wp-nux' ),
'editor' => array( 'wp-components', 'wp-editor-font', 'wp-nux' ),
'format-library' => array(),
'list-reusable-blocks' => array( 'wp-components' ),
'nux' => array( 'wp-components' ),
);

View File

@ -74,12 +74,14 @@ module.exports = function( env = { environment: 'production', watch: false } ) {
'editor',
'element',
'escape-html',
'format-library',
'hooks',
'html-entities',
'i18n',
'is-shallow-equal',
'keycodes',
'list-reusable-blocks',
'notices',
'nux',
'plugins',
'redux-routine',