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 / post-content / block.json
build/scripts/block-library/post-content
block.json 1.7 KB 7 months ago

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

84 lines 1.7 KB Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "core/post-content",
5 "title": "Content",
6 "category": "theme",
7 "description": "Displays the contents of a post or page.",
8 "textdomain": "default",
9 "usesContext": [ "postId", "postType", "queryId" ],
10 "attributes": {
11 "tagName": {
12 "type": "string",
13 "default": "div"
14 }
15 },
16 "example": {
17 "viewportWidth": 350
18 },
19 "supports": {
20 "anchor": true,
21 "align": [ "wide", "full" ],
22 "html": false,
23 "layout": true,
24 "background": {
25 "backgroundImage": true,
26 "backgroundSize": true,
27 "__experimentalDefaultControls": {
28 "backgroundImage": true
29 }
30 },
31 "dimensions": {
32 "minHeight": true
33 },
34 "spacing": {
35 "blockGap": true,
36 "padding": true,
37 "margin": true,
38 "__experimentalDefaultControls": {
39 "margin": false,
40 "padding": false
41 }
42 },
43 "color": {
44 "gradients": true,
45 "heading": true,
46 "link": true,
47 "__experimentalDefaultControls": {
48 "background": false,
49 "text": false
50 }
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 "interactivity": {
66 "clientNavigation": true
67 },
68 "__experimentalBorder": {
69 "radius": true,
70 "color": true,
71 "width": true,
72 "style": true,
73 "__experimentalDefaultControls": {
74 "radius": true,
75 "color": true,
76 "width": true,
77 "style": true
78 }
79 }
80 },
81 "style": "wp-block-post-content",
82 "editorStyle": "wp-block-post-content-editor"
83 }
84