Make WordPress Core


Ignore:
Timestamp:
02/07/2023 12:57:52 PM (2 years ago)
Author:
youknowriad
Message:

Block Editor: Updates the WordPress packages with all the fixes targetted for WP 6.2 beta1.

Includes the following changes

  • Fix multi entities saved state in the post editor
  • Adds a global save button to the site editor
  • Shadow: move shadow to own panel
  • [Block Editor]: Lock experimentalBlockInspectorAnimation setting
  • useBlockSync: change subscribed.current on unsubscribe
  • [Block Library - Gallery]: Minor code quality update
  • [Patterns]: Reorder pattern categories
  • Fix inline preview infinite render
  • Show a pointer/hint in the settings tab informing the user about the styles tab
  • I18N: update string concatenation method in read more block
  • LocalAutosaveNotice: use stable notice id to prevent double notices
  • Navigation: Remove the IS_GUTENBERG_PLUGIN check around block_core_navigation_parse_blocks_from_menu_items

Props mamaduka, ntsekouras, kebbet.
See #57471.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/gallery.php

    r55246 r55257  
    100100
    101101    // Set the CSS variable to the column value, and the `gap` property to the combined gap value.
    102     $gallery_styles   = array();
    103     $gallery_styles[] = array(
    104         'selector'     => ".wp-block-gallery.{$unique_gallery_classname}",
    105         'declarations' => array(
    106             '--wp--style--unstable-gallery-gap' => $gap_column,
    107             'gap'                               => $gap_value,
     102    $gallery_styles = array(
     103        array(
     104            'selector'     => ".wp-block-gallery.{$unique_gallery_classname}",
     105            'declarations' => array(
     106                '--wp--style--unstable-gallery-gap' => $gap_column,
     107                'gap'                               => $gap_value,
     108            ),
    108109        ),
    109110    );
Note: See TracChangeset for help on using the changeset viewer.