Make WordPress Core


Ignore:
Timestamp:
01/29/2024 09:04:18 PM (12 months ago)
Author:
youknowriad
Message:

Editor: Update the WordPress packages to the Gutenberg 16.7 RC2 version.

This patch, somewhat small brings a lot to WordPress.
This includes features like:

  • DataViews.
  • Customization tools like box shadow, background size and repeat.
  • UI improvements in the site editor.
  • Preferences sharing between the post and site editors.
  • Unified panels and editors between post and site editors.
  • Improved template mode in the post editor.
  • Iterations to multiple interactive blocks.
  • Preparing the blocks and UI for pattern overrides.
  • and a lot more.

Props luisherranz, gziolo, isabel_brison, costdev, jonsurrell, peterwilsoncc, get_dave, antonvlasenko, desrosj.
See #60315.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/query-pagination-next.php

    r57048 r57377  
    7373        ) ) {
    7474            $p->set_attribute( 'data-wp-key', 'query-pagination-next' );
    75             $p->set_attribute( 'data-wp-on--click', 'actions.core.query.navigate' );
    76             $p->set_attribute( 'data-wp-on--mouseenter', 'actions.core.query.prefetch' );
    77             $p->set_attribute( 'data-wp-effect', 'effects.core.query.prefetch' );
     75            $p->set_attribute( 'data-wp-on--click', 'core/query::actions.navigate' );
     76            $p->set_attribute( 'data-wp-on--mouseenter', 'core/query::actions.prefetch' );
     77            $p->set_attribute( 'data-wp-watch', 'core/query::callbacks.prefetch' );
    7878            $content = $p->get_updated_html();
    7979        }
Note: See TracChangeset for help on using the changeset viewer.