PluginProbe
Gutenberg / 22.3.0
Gutenberg v22.3.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.3.0, at build/scripts/block-library/group/block.json

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