PluginProbe
Gutenberg / 12.7.1
Gutenberg v12.7.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 12.7.1, at build/block-library/blocks/group/block.json

69 lines 1.4 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 "__experimentalDefaultControls": {
28 "background": true,
29 "text": true
30 }
31 },
32 "spacing": {
33 "margin": [ "top", "bottom" ],
34 "padding": true,
35 "blockGap": true,
36 "__experimentalDefaultControls": {
37 "padding": true,
38 "blockGap": true
39 }
40 },
41 "__experimentalBorder": {
42 "color": true,
43 "radius": true,
44 "style": true,
45 "width": true,
46 "__experimentalDefaultControls": {
47 "color": true,
48 "radius": true,
49 "style": true,
50 "width": true
51 }
52 },
53 "typography": {
54 "fontSize": true,
55 "lineHeight": true,
56 "__experimentalFontStyle": true,
57 "__experimentalFontWeight": true,
58 "__experimentalLetterSpacing": true,
59 "__experimentalTextTransform": true,
60 "__experimentalDefaultControls": {
61 "fontSize": true
62 }
63 },
64 "__experimentalLayout": true
65 },
66 "editorStyle": "wp-block-group-editor",
67 "style": "wp-block-group"
68 }
69