diff -r 34716fd837a4 -r be944660c56a wp/wp-includes/blocks/pullquote/block.json --- a/wp/wp-includes/blocks/pullquote/block.json Tue Dec 15 15:52:01 2020 +0100 +++ b/wp/wp-includes/blocks/pullquote/block.json Wed Sep 21 18:19:35 2022 +0200 @@ -1,18 +1,24 @@ { + "apiVersion": 2, "name": "core/pullquote", + "title": "Pullquote", "category": "text", + "description": "Give special visual emphasis to a quote from your text.", + "textdomain": "default", "attributes": { "value": { "type": "string", "source": "html", "selector": "blockquote", - "multiline": "p" + "multiline": "p", + "__experimentalRole": "content" }, "citation": { "type": "string", "source": "html", "selector": "cite", - "default": "" + "default": "", + "__experimentalRole": "content" }, "mainColor": { "type": "string" @@ -29,11 +35,16 @@ }, "supports": { "anchor": true, - "align": [ - "left", - "right", - "wide", - "full" - ] - } + "align": [ "left", "right", "wide", "full" ] + }, + "styles": [ + { + "name": "default", + "label": "Default", + "isDefault": true + }, + { "name": "solid-color", "label": "Solid color" } + ], + "editorStyle": "wp-block-pullquote-editor", + "style": "wp-block-pullquote" }