Make WordPress Core


Ignore:
Timestamp:
07/15/2021 09:12:39 PM (4 years ago)
Author:
desrosj
Message:

Block Editor: Backport fixes targeted for WordPress 5.8 RC4.

This includes:

  • Suggestion List: Check if a node exists to scroll into view.
  • Autocomplete: reset state for empty text.
  • Adds auxiliary class names for editor styles in the widgets editor.
  • Extract snackbars into a separate component.
  • Rich text: run input rules after composition end.
  • iframe: load inline styles.
  • Multi select: select all: restore ref callback.
  • Writing flow: allow select all from empty selection.
  • Post Excerpt: Fix excerpt_more filter conflict and remove wordCount attribute.
  • Add the percent unit to the default units in Core.

Props desrosj, youknowriad.
Merges [51443] to the 5.8 branch.
Fixes #53397.

Location:
branches/5.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.8

  • branches/5.8/tests/phpunit/tests/theme/wpThemeJson.php

    r51386 r51445  
    926926                ),
    927927                'spacing'    => array(
    928                     'units' => array( 'px', 'em', 'rem', 'vh', 'vw' ),
     928                    'units' => array( 'px', 'em', 'rem', 'vh', 'vw', '%' ),
    929929                ),
    930930                'typography' => array(
     
    10401040
    10411041        $expected = array(
    1042             'units'         => array( 'px', 'em', 'rem', 'vh', 'vw' ),
     1042            'units'         => array( 'px', 'em', 'rem', 'vh', 'vw', '%' ),
    10431043            'customPadding' => false,
    10441044        );
Note: See TracChangeset for help on using the changeset viewer.