build/scripts/block-library/group
block.json
2.1 KB
4 months ago
block.json in Gutenberg 23.2.0, at build/scripts/block-library/group/block.json
| 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 | "minWidth": 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 | "allowedBlocks": true |
| 96 | }, |
| 97 | "editorStyle": "wp-block-group-editor", |
| 98 | "style": "wp-block-group" |
| 99 | } |
| 100 |