PluginProbe
Gutenberg / 18.9.0
Gutenberg v18.9.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 / block-library / blocks / group / block.json

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

99 lines 2.0 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/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", "contentOnly", false ]
18 },
19 "allowedBlocks": {
20 "type": "array"
21 }
22 },
23 "supports": {
24 "__experimentalOnEnter": true,
25 "__experimentalOnMerge": true,
26 "__experimentalSettings": true,
27 "align": [ "wide", "full" ],
28 "anchor": true,
29 "ariaLabel": true,
30 "html": false,
31 "background": {
32 "backgroundImage": true,
33 "backgroundSize": true,
34 "__experimentalDefaultControls": {
35 "backgroundImage": true
36 }
37 },
38 "color": {
39 "gradients": true,
40 "heading": true,
41 "button": true,
42 "link": true,
43 "__experimentalDefaultControls": {
44 "background": true,
45 "text": true
46 }
47 },
48 "shadow": true,
49 "spacing": {
50 "margin": [ "top", "bottom" ],
51 "padding": true,
52 "blockGap": true,
53 "__experimentalDefaultControls": {
54 "padding": true,
55 "blockGap": true
56 }
57 },
58 "dimensions": {
59 "minHeight": true
60 },
61 "__experimentalBorder": {
62 "color": true,
63 "radius": true,
64 "style": true,
65 "width": true,
66 "__experimentalDefaultControls": {
67 "color": true,
68 "radius": true,
69 "style": true,
70 "width": true
71 }
72 },
73 "position": {
74 "sticky": true
75 },
76 "typography": {
77 "fontSize": true,
78 "lineHeight": true,
79 "__experimentalFontFamily": true,
80 "__experimentalFontWeight": true,
81 "__experimentalFontStyle": true,
82 "__experimentalTextTransform": true,
83 "__experimentalTextDecoration": true,
84 "__experimentalLetterSpacing": true,
85 "__experimentalDefaultControls": {
86 "fontSize": true
87 }
88 },
89 "layout": {
90 "allowSizingOnChildren": true
91 },
92 "interactivity": {
93 "clientNavigation": true
94 }
95 },
96 "editorStyle": "wp-block-group-editor",
97 "style": "wp-block-group"
98 }
99