PluginProbe
Gutenberg / 23.3.2
Gutenberg v23.3.2
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 / details / block.json

block.json in Gutenberg 23.3.2, at build/scripts/block-library/details/block.json

82 lines 1.7 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": [ "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 "role": "content"
20 },
21 "name": {
22 "type": "string",
23 "source": "attribute",
24 "attribute": "name",
25 "selector": ".wp-block-details"
26 },
27 "placeholder": {
28 "type": "string"
29 }
30 },
31 "supports": {
32 "__experimentalOnEnter": true,
33 "align": [ "wide", "full" ],
34 "anchor": true,
35 "color": {
36 "gradients": true,
37 "link": true,
38 "__experimentalDefaultControls": {
39 "background": true,
40 "text": true
41 }
42 },
43 "__experimentalBorder": {
44 "color": true,
45 "width": true,
46 "style": true
47 },
48 "html": false,
49 "spacing": {
50 "margin": true,
51 "padding": true,
52 "blockGap": true,
53 "__experimentalDefaultControls": {
54 "margin": false,
55 "padding": false
56 }
57 },
58 "typography": {
59 "fontSize": true,
60 "lineHeight": true,
61 "__experimentalFontFamily": true,
62 "__experimentalFontWeight": true,
63 "__experimentalFontStyle": true,
64 "__experimentalTextTransform": true,
65 "__experimentalTextDecoration": true,
66 "__experimentalLetterSpacing": true,
67 "__experimentalDefaultControls": {
68 "fontSize": true
69 }
70 },
71 "layout": {
72 "allowEditing": false
73 },
74 "interactivity": {
75 "clientNavigation": true
76 },
77 "allowedBlocks": true
78 },
79 "editorStyle": "wp-block-details-editor",
80 "style": "wp-block-details"
81 }
82