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 / accordion / block.json
build/scripts/block-library/accordion
block.json 1.9 KB 6 months ago

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

91 lines 1.9 KB Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "core/accordion",
5 "title": "Accordion",
6 "category": "design",
7 "description": "Displays a foldable layout that groups content in collapsible sections.",
8 "example": {},
9 "supports": {
10 "anchor": true,
11 "html": false,
12 "align": [ "wide", "full" ],
13 "background": {
14 "backgroundImage": true,
15 "backgroundSize": true,
16 "__experimentalDefaultControls": {
17 "backgroundImage": true
18 }
19 },
20 "color": {
21 "background": true,
22 "gradients": true
23 },
24 "__experimentalBorder": {
25 "color": true,
26 "radius": true,
27 "style": true,
28 "width": true,
29 "__experimentalDefaultControls": {
30 "color": true,
31 "radius": true,
32 "style": true,
33 "width": true
34 }
35 },
36 "spacing": {
37 "padding": true,
38 "margin": [ "top", "bottom" ],
39 "blockGap": true
40 },
41 "shadow": true,
42 "layout": true,
43 "ariaLabel": true,
44 "interactivity": true,
45 "typography": {
46 "fontSize": true,
47 "lineHeight": 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 "contentRole": true,
59 "listView": true
60 },
61 "attributes": {
62 "iconPosition": {
63 "type": "string",
64 "default": "right"
65 },
66 "showIcon": {
67 "type": "boolean",
68 "default": true
69 },
70 "autoclose": {
71 "type": "boolean",
72 "default": false
73 },
74 "headingLevel": {
75 "type": "number",
76 "default": 3
77 },
78 "levelOptions": {
79 "type": "array"
80 }
81 },
82 "providesContext": {
83 "core/accordion-icon-position": "iconPosition",
84 "core/accordion-show-icon": "showIcon",
85 "core/accordion-heading-level": "headingLevel"
86 },
87 "allowedBlocks": [ "core/accordion-item" ],
88 "textdomain": "default",
89 "viewScriptModule": "@wordpress/block-library/accordion/view"
90 }
91