PluginProbe
Gutenberg / 23.5.1
Gutenberg v23.5.1
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 23.5.1, at build/scripts/block-library/pullquote/block.json

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