PluginProbe
Gutenberg / 18.9.0
Gutenberg v18.9.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 / block-library / blocks / details / block.json

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

70 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 "color": {
25 "gradients": true,
26 "link": true,
27 "__experimentalDefaultControls": {
28 "background": true,
29 "text": true
30 }
31 },
32 "__experimentalBorder": {
33 "color": true,
34 "width": true,
35 "style": true
36 },
37 "html": false,
38 "spacing": {
39 "margin": true,
40 "padding": true,
41 "blockGap": true,
42 "__experimentalDefaultControls": {
43 "margin": false,
44 "padding": false
45 }
46 },
47 "typography": {
48 "fontSize": true,
49 "lineHeight": true,
50 "__experimentalFontFamily": true,
51 "__experimentalFontWeight": true,
52 "__experimentalFontStyle": true,
53 "__experimentalTextTransform": true,
54 "__experimentalTextDecoration": true,
55 "__experimentalLetterSpacing": true,
56 "__experimentalDefaultControls": {
57 "fontSize": true
58 }
59 },
60 "layout": {
61 "allowEditing": false
62 },
63 "interactivity": {
64 "clientNavigation": true
65 }
66 },
67 "editorStyle": "wp-block-details-editor",
68 "style": "wp-block-details"
69 }
70