PluginProbe
Gutenberg / 12.1.0
Gutenberg v12.1.0
23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 7.4.0 All 402 releases
gutenberg / build / block-library / blocks / pullquote / block.json

block.json in Gutenberg 12.1.0, at build/block-library/blocks/pullquote/block.json

58 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 2,
4 "name": "core/pullquote",
5 "title": "Pullquote",
6 "category": "text",
7 "description": "Give special visual emphasis to a quote from your text.",
8 "textdomain": "default",
9 "attributes": {
10 "value": {
11 "type": "string",
12 "source": "html",
13 "selector": "blockquote",
14 "multiline": "p",
15 "__experimentalRole": "content"
16 },
17 "citation": {
18 "type": "string",
19 "source": "html",
20 "selector": "cite",
21 "default": "",
22 "__experimentalRole": "content"
23 },
24 "textAlign": {
25 "type": "string"
26 }
27 },
28 "supports": {
29 "anchor": true,
30 "align": [ "left", "right", "wide", "full" ],
31 "color": {
32 "gradients": true,
33 "background": true,
34 "link": true
35 },
36 "typography": {
37 "fontSize": true,
38 "lineHeight": true,
39 "__experimentalFontStyle": true,
40 "__experimentalFontWeight": true,
41 "__experimentalLetterSpacing": true,
42 "__experimentalTextTransform": true,
43 "__experimentalDefaultControls": {
44 "fontSize": true,
45 "fontAppearance": true
46 }
47 },
48 "__experimentalBorder": {
49 "color": true,
50 "radius": true,
51 "style": true,
52 "width": true
53 }
54 },
55 "editorStyle": "wp-block-pullquote-editor",
56 "style": "wp-block-pullquote"
57 }
58