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 / post-excerpt / block.json

block.json in Gutenberg 23.5.1, at build/scripts/block-library/post-excerpt/block.json

77 lines 1.5 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/post-excerpt",
5 "title": "Excerpt",
6 "category": "theme",
7 "description": "Display the excerpt.",
8 "textdomain": "default",
9 "attributes": {
10 "moreText": {
11 "type": "string",
12 "role": "content"
13 },
14 "showMoreOnNewLine": {
15 "type": "boolean",
16 "default": true
17 },
18 "excerptLength": {
19 "type": "number",
20 "default": 55
21 }
22 },
23 "usesContext": [ "postId", "postType", "queryId" ],
24 "example": {
25 "viewportWidth": 350
26 },
27 "supports": {
28 "anchor": true,
29 "html": false,
30 "color": {
31 "gradients": true,
32 "link": true,
33 "__experimentalDefaultControls": {
34 "background": true,
35 "text": true,
36 "link": true
37 }
38 },
39 "spacing": {
40 "margin": true,
41 "padding": true
42 },
43 "typography": {
44 "fontSize": true,
45 "lineHeight": true,
46 "textAlign": true,
47 "textColumns": true,
48 "__experimentalFontFamily": true,
49 "__experimentalFontWeight": true,
50 "__experimentalFontStyle": true,
51 "__experimentalTextTransform": true,
52 "__experimentalTextDecoration": true,
53 "__experimentalLetterSpacing": true,
54 "__experimentalDefaultControls": {
55 "fontSize": true
56 }
57 },
58 "interactivity": {
59 "clientNavigation": true
60 },
61 "__experimentalBorder": {
62 "radius": true,
63 "color": true,
64 "width": true,
65 "style": true,
66 "__experimentalDefaultControls": {
67 "radius": true,
68 "color": true,
69 "width": true,
70 "style": true
71 }
72 }
73 },
74 "editorStyle": "wp-block-post-excerpt-editor",
75 "style": "wp-block-post-excerpt"
76 }
77