PluginProbe
Gutenberg / 23.2.0
Gutenberg v23.2.0
24.0.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 All 403 releases
gutenberg / build / scripts / block-library / pullquote / block.json
build/scripts/block-library/pullquote
block.json 1.8 KB 4 months ago

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

90 lines 1.8 KB 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 },
48 "spacing": {
49 "margin": true,
50 "padding": true
51 },
52 "typography": {
53 "fontSize": true,
54 "lineHeight": true,
55 "__experimentalFontFamily": true,
56 "__experimentalFontWeight": true,
57 "__experimentalFontStyle": true,
58 "__experimentalTextTransform": true,
59 "__experimentalTextDecoration": true,
60 "__experimentalLetterSpacing": true,
61 "__experimentalDefaultControls": {
62 "fontSize": true
63 }
64 },
65 "__experimentalBorder": {
66 "color": true,
67 "radius": true,
68 "style": true,
69 "width": true,
70 "__experimentalDefaultControls": {
71 "color": true,
72 "radius": true,
73 "style": true,
74 "width": true
75 }
76 },
77 "__experimentalStyle": {
78 "typography": {
79 "fontSize": "1.5em",
80 "lineHeight": "1.6"
81 }
82 },
83 "interactivity": {
84 "clientNavigation": true
85 }
86 },
87 "editorStyle": "wp-block-pullquote-editor",
88 "style": "wp-block-pullquote"
89 }
90