PluginProbe
Gutenberg / 13.5.1
Gutenberg v13.5.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 / group / block.json

block.json in Gutenberg 13.5.1, at build/block-library/blocks/group/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": 2,
4 "name": "core/group",
5 "title": "Group",
6 "category": "design",
7 "description": "Gather blocks in a layout container.",
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 "__experimentalSettings": true,
22 "align": [ "wide", "full" ],
23 "anchor": true,
24 "html": false,
25 "color": {
26 "gradients": true,
27 "link": true,
28 "__experimentalDefaultControls": {
29 "background": true,
30 "text": true
31 }
32 },
33 "spacing": {
34 "margin": [ "top", "bottom" ],
35 "padding": true,
36 "blockGap": true,
37 "__experimentalDefaultControls": {
38 "padding": true,
39 "blockGap": true
40 }
41 },
42 "__experimentalBorder": {
43 "color": true,
44 "radius": true,
45 "style": true,
46 "width": true,
47 "__experimentalDefaultControls": {
48 "color": true,
49 "radius": true,
50 "style": true,
51 "width": true
52 }
53 },
54 "typography": {
55 "fontSize": true,
56 "lineHeight": true,
57 "__experimentalFontStyle": true,
58 "__experimentalFontWeight": true,
59 "__experimentalLetterSpacing": true,
60 "__experimentalTextTransform": true,
61 "__experimentalDefaultControls": {
62 "fontSize": true
63 }
64 },
65 "__experimentalLayout": true
66 },
67 "editorStyle": "wp-block-group-editor",
68 "style": "wp-block-group"
69 }
70