PluginProbe
Gutenberg / 20.0.1
Gutenberg v20.0.1
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 / block-library / blocks / details / block.json

block.json in Gutenberg 20.0.1, at build/block-library/blocks/details/block.json

71 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/details",
5 "title": "Details",
6 "category": "text",
7 "description": "Hide and show additional content.",
8 "keywords": [ "accordion", "summary", "toggle", "disclosure" ],
9 "textdomain": "default",
10 "attributes": {
11 "showContent": {
12 "type": "boolean",
13 "default": false
14 },
15 "summary": {
16 "type": "rich-text",
17 "source": "rich-text",
18 "selector": "summary"
19 }
20 },
21 "supports": {
22 "__experimentalOnEnter": true,
23 "align": [ "wide", "full" ],
24 "anchor": true,
25 "color": {
26 "gradients": true,
27 "link": true,
28 "__experimentalDefaultControls": {
29 "background": true,
30 "text": true
31 }
32 },
33 "__experimentalBorder": {
34 "color": true,
35 "width": true,
36 "style": true
37 },
38 "html": false,
39 "spacing": {
40 "margin": true,
41 "padding": true,
42 "blockGap": true,
43 "__experimentalDefaultControls": {
44 "margin": false,
45 "padding": false
46 }
47 },
48 "typography": {
49 "fontSize": true,
50 "lineHeight": true,
51 "__experimentalFontFamily": true,
52 "__experimentalFontWeight": true,
53 "__experimentalFontStyle": true,
54 "__experimentalTextTransform": true,
55 "__experimentalTextDecoration": true,
56 "__experimentalLetterSpacing": true,
57 "__experimentalDefaultControls": {
58 "fontSize": true
59 }
60 },
61 "layout": {
62 "allowEditing": false
63 },
64 "interactivity": {
65 "clientNavigation": true
66 }
67 },
68 "editorStyle": "wp-block-details-editor",
69 "style": "wp-block-details"
70 }
71