Make WordPress Core


Ignore:
Timestamp:
11/08/2021 02:26:27 PM (3 years ago)
Author:
youknowriad
Message:

Block Editor: Update the WordPress Packages based on Gutenberg 11.9 RC1.

This brings the JS packages up to date and is the first step that will allow us
to include the other block editor updates for WordPress 5.9:
FSE infrastrucutre, site editor and global styles.

Props noisysocks.
See #54337.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/blocks/site-title/block.json

    r51199 r52042  
    44    "title": "Site Title",
    55    "category": "design",
    6     "description": "Displays and allows editing the name of the site. The site title usually appears in the browser title bar, in search results, and more. Also available in Settings > General.",
     6    "description": "Displays the name of this site. Update the block, and the changes apply everywhere it’s used. This will also appear in the browser title bar and in search results.",
    77    "textdomain": "default",
    88    "attributes": {
     
    1313        "textAlign": {
    1414            "type": "string"
     15        },
     16        "isLink": {
     17            "type": "boolean",
     18            "default": true
     19        },
     20        "linkTarget": {
     21            "type": "string",
     22            "default": "_self"
    1523        }
     24    },
     25    "example": {
     26        "viewportWidth": 500
    1627    },
    1728    "supports": {
     
    2031        "color": {
    2132            "gradients": true,
    22             "text": false,
    2333            "link": true
    2434        },
     
    3343            "__experimentalTextTransform": true,
    3444            "__experimentalFontStyle": true,
    35             "__experimentalFontWeight": true
     45            "__experimentalFontWeight": true,
     46            "__experimentalLetterSpacing": true,
     47            "__experimentalDefaultControls": {
     48                "fontSize": true,
     49                "lineHeight": true,
     50                "fontAppearance": true,
     51                "letterSpacing": true,
     52                "textTransform": true
     53            }
    3654        }
    3755    },
Note: See TracChangeset for help on using the changeset viewer.