Make WordPress Core


Ignore:
Timestamp:
11/08/2021 02:26:27 PM (5 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/pullquote/block.json

    r50929 r52042  
    2121            "__experimentalRole": "content"
    2222        },
    23         "mainColor": {
    24             "type": "string"
    25         },
    26         "customMainColor": {
    27             "type": "string"
    28         },
    29         "textColor": {
    30             "type": "string"
    31         },
    32         "customTextColor": {
     23        "textAlign": {
    3324            "type": "string"
    3425        }
     
    3627    "supports": {
    3728        "anchor": true,
    38         "align": [ "left", "right", "wide", "full" ]
     29        "align": [ "left", "right", "wide", "full" ],
     30        "color": {
     31            "gradients": true,
     32            "background": true,
     33            "link": true
     34        },
     35        "typography": {
     36            "fontSize": true,
     37            "lineHeight": true,
     38            "__experimentalFontStyle": true,
     39            "__experimentalFontWeight": true,
     40            "__experimentalLetterSpacing": true,
     41            "__experimentalTextTransform": true,
     42            "__experimentalDefaultControls": {
     43                "fontSize": true,
     44                "fontAppearance": true
     45            }
     46        },
     47        "__experimentalBorder": {
     48            "color": true,
     49            "radius": true,
     50            "style": true,
     51            "width": true
     52        }
    3953    },
    40     "styles": [
    41         {
    42             "name": "default",
    43             "label": "Default",
    44             "isDefault": true
    45         },
    46         { "name": "solid-color", "label": "Solid color" }
    47     ],
    4854    "editorStyle": "wp-block-pullquote-editor",
    4955    "style": "wp-block-pullquote"
Note: See TracChangeset for help on using the changeset viewer.