PluginProbe
Gutenberg / 12.6.0
Gutenberg v12.6.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.6.0, at build/block-library/blocks/pullquote/block.json

68 lines 1.4 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 "__experimentalDefaultControls": {
36 "background": true,
37 "text": true
38 }
39 },
40 "typography": {
41 "fontSize": true,
42 "lineHeight": true,
43 "__experimentalFontStyle": true,
44 "__experimentalFontWeight": true,
45 "__experimentalLetterSpacing": true,
46 "__experimentalTextTransform": true,
47 "__experimentalDefaultControls": {
48 "fontSize": true,
49 "fontAppearance": true
50 }
51 },
52 "__experimentalBorder": {
53 "color": true,
54 "radius": true,
55 "style": true,
56 "width": true,
57 "__experimentalDefaultControls": {
58 "color": true,
59 "radius": true,
60 "style": true,
61 "width": true
62 }
63 }
64 },
65 "editorStyle": "wp-block-pullquote-editor",
66 "style": "wp-block-pullquote"
67 }
68