Make WordPress Core


Ignore:
Timestamp:
01/29/2024 09:04:18 PM (11 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/image/block.json

    r56710 r57377  
    55    "title": "Image",
    66    "category": "media",
    7     "usesContext": [ "allowResize", "imageCrop", "fixedHeight" ],
     7    "usesContext": [
     8        "allowResize",
     9        "imageCrop",
     10        "fixedHeight",
     11        "pattern/overrides"
     12    ],
    813    "description": "Insert an image to make a visual statement.",
    914    "keywords": [ "img", "photo", "picture" ],
    1015    "textdomain": "default",
    1116    "attributes": {
    12         "align": {
    13             "type": "string"
    14         },
    1517        "url": {
    1618            "type": "string",
     
    2931        },
    3032        "caption": {
    31             "type": "string",
    32             "source": "html",
     33            "type": "rich-text",
     34            "source": "rich-text",
    3335            "selector": "figcaption",
    3436            "__experimentalRole": "content"
     
    9698    },
    9799    "supports": {
     100        "interactivity": true,
     101        "align": [ "left", "center", "right", "wide", "full" ],
    98102        "anchor": true,
    99103        "color": {
     
    131135    ],
    132136    "editorStyle": "wp-block-image-editor",
    133     "style": "wp-block-image",
    134     "viewScript": "file:./view.min.js"
     137    "style": "wp-block-image"
    135138}
Note: See TracChangeset for help on using the changeset viewer.