PluginProbe
Gutenberg / 22.9.0
Gutenberg v22.9.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 / scripts / block-library / pullquote / block.json

block.json in Gutenberg 22.9.0, at build/scripts/block-library/pullquote/block.json

93 lines 1.9 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": 3,
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": "rich-text",
12 "source": "rich-text",
13 "selector": "p",
14 "role": "content"
15 },
16 "citation": {
17 "type": "rich-text",
18 "source": "rich-text",
19 "selector": "cite",
20 "role": "content"
21 },
22 "textAlign": {
23 "type": "string"
24 }
25 },
26 "supports": {
27 "anchor": true,
28 "align": [ "left", "right", "wide", "full" ],
29 "background": {
30 "backgroundImage": true,
31 "backgroundSize": true,
32 "__experimentalDefaultControls": {
33 "backgroundImage": true
34 }
35 },
36 "color": {
37 "gradients": true,
38 "background": true,
39 "link": true,
40 "__experimentalDefaultControls": {
41 "background": true,
42 "text": true
43 }
44 },
45 "dimensions": {
46 "minHeight": true,
47 "__experimentalDefaultControls": {
48 "minHeight": false
49 }
50 },
51 "spacing": {
52 "margin": true,
53 "padding": true
54 },
55 "typography": {
56 "fontSize": true,
57 "lineHeight": true,
58 "__experimentalFontFamily": true,
59 "__experimentalFontWeight": true,
60 "__experimentalFontStyle": true,
61 "__experimentalTextTransform": true,
62 "__experimentalTextDecoration": true,
63 "__experimentalLetterSpacing": true,
64 "__experimentalDefaultControls": {
65 "fontSize": true
66 }
67 },
68 "__experimentalBorder": {
69 "color": true,
70 "radius": true,
71 "style": true,
72 "width": true,
73 "__experimentalDefaultControls": {
74 "color": true,
75 "radius": true,
76 "style": true,
77 "width": true
78 }
79 },
80 "__experimentalStyle": {
81 "typography": {
82 "fontSize": "1.5em",
83 "lineHeight": "1.6"
84 }
85 },
86 "interactivity": {
87 "clientNavigation": true
88 }
89 },
90 "editorStyle": "wp-block-pullquote-editor",
91 "style": "wp-block-pullquote"
92 }
93