build/scripts/block-library/form
block.json
1.3 KB
4 months ago
block.json in Gutenberg 23.2.0, at build/scripts/block-library/form/block.json
| 1 | { |
| 2 | "$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 | "apiVersion": 3, |
| 4 | "__experimental": true, |
| 5 | "name": "core/form", |
| 6 | "title": "Form", |
| 7 | "category": "widgets", |
| 8 | "allowedBlocks": [ |
| 9 | "core/paragraph", |
| 10 | "core/heading", |
| 11 | "core/form-input", |
| 12 | "core/form-submit-button", |
| 13 | "core/form-submission-notification", |
| 14 | "core/group", |
| 15 | "core/columns" |
| 16 | ], |
| 17 | "description": "A form.", |
| 18 | "keywords": [ "container", "wrapper", "row", "section" ], |
| 19 | "textdomain": "default", |
| 20 | "attributes": { |
| 21 | "submissionMethod": { |
| 22 | "type": "string", |
| 23 | "default": "email" |
| 24 | }, |
| 25 | "method": { |
| 26 | "type": "string", |
| 27 | "default": "post" |
| 28 | }, |
| 29 | "action": { |
| 30 | "type": "string" |
| 31 | }, |
| 32 | "email": { |
| 33 | "type": "string" |
| 34 | } |
| 35 | }, |
| 36 | "supports": { |
| 37 | "anchor": true, |
| 38 | "color": { |
| 39 | "gradients": true, |
| 40 | "link": true, |
| 41 | "__experimentalDefaultControls": { |
| 42 | "background": true, |
| 43 | "text": true, |
| 44 | "link": true |
| 45 | } |
| 46 | }, |
| 47 | "spacing": { |
| 48 | "margin": true, |
| 49 | "padding": true |
| 50 | }, |
| 51 | "typography": { |
| 52 | "fontSize": true, |
| 53 | "lineHeight": true, |
| 54 | "__experimentalFontFamily": true, |
| 55 | "__experimentalTextDecoration": true, |
| 56 | "__experimentalFontStyle": true, |
| 57 | "__experimentalFontWeight": true, |
| 58 | "__experimentalLetterSpacing": true, |
| 59 | "__experimentalTextTransform": true, |
| 60 | "__experimentalDefaultControls": { |
| 61 | "fontSize": true |
| 62 | } |
| 63 | } |
| 64 | } |
| 65 | } |
| 66 |