PluginProbe
Gutenberg / 12.5.4
Gutenberg v12.5.4
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 / group / block.json

block.json in Gutenberg 12.5.4, at build/block-library/blocks/group/block.json

64 lines 1.3 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": 2,
4 "name": "core/group",
5 "title": "Group",
6 "category": "design",
7 "description": "Combine blocks into a group.",
8 "keywords": [ "container", "wrapper", "row", "section" ],
9 "textdomain": "default",
10 "attributes": {
11 "tagName": {
12 "type": "string",
13 "default": "div"
14 },
15 "templateLock": {
16 "type": [ "string", "boolean" ],
17 "enum": [ "all", "insert", false ]
18 }
19 },
20 "supports": {
21 "align": [ "wide", "full" ],
22 "anchor": true,
23 "html": false,
24 "color": {
25 "gradients": true,
26 "link": true
27 },
28 "spacing": {
29 "padding": true,
30 "blockGap": true,
31 "__experimentalDefaultControls": {
32 "padding": true,
33 "blockGap": true
34 }
35 },
36 "__experimentalBorder": {
37 "color": true,
38 "radius": true,
39 "style": true,
40 "width": true,
41 "__experimentalDefaultControls": {
42 "color": true,
43 "radius": true,
44 "style": true,
45 "width": true
46 }
47 },
48 "typography": {
49 "fontSize": true,
50 "lineHeight": true,
51 "__experimentalFontStyle": true,
52 "__experimentalFontWeight": true,
53 "__experimentalLetterSpacing": true,
54 "__experimentalTextTransform": true,
55 "__experimentalDefaultControls": {
56 "fontSize": true
57 }
58 },
59 "__experimentalLayout": true
60 },
61 "editorStyle": "wp-block-group-editor",
62 "style": "wp-block-group"
63 }
64