PluginProbe
Gutenberg / 22.9.0
Gutenberg v22.9.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 7.4.0 All 402 releases
gutenberg / build / scripts / block-library / group / block.json

block.json in Gutenberg 22.9.0, at build/scripts/block-library/group/block.json

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