PluginProbe
Gutenberg / 22.3.0
Gutenberg v22.3.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.3.0, at build/scripts/block-library/pullquote/block.json

94 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 (deprecated)",
6 "category": "text",
7 "description": "This block is deprecated. Please use the Quote block instead.",
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 "inserter": false,
52 "spacing": {
53 "margin": true,
54 "padding": true
55 },
56 "typography": {
57 "fontSize": true,
58 "lineHeight": true,
59 "__experimentalFontFamily": true,
60 "__experimentalFontWeight": true,
61 "__experimentalFontStyle": true,
62 "__experimentalTextTransform": true,
63 "__experimentalTextDecoration": true,
64 "__experimentalLetterSpacing": true,
65 "__experimentalDefaultControls": {
66 "fontSize": true
67 }
68 },
69 "__experimentalBorder": {
70 "color": true,
71 "radius": true,
72 "style": true,
73 "width": true,
74 "__experimentalDefaultControls": {
75 "color": true,
76 "radius": true,
77 "style": true,
78 "width": true
79 }
80 },
81 "__experimentalStyle": {
82 "typography": {
83 "fontSize": "1.5em",
84 "lineHeight": "1.6"
85 }
86 },
87 "interactivity": {
88 "clientNavigation": true
89 }
90 },
91 "editorStyle": "wp-block-pullquote-editor",
92 "style": "wp-block-pullquote"
93 }
94