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 / form / block.json

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

70 lines 1.4 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 "__experimental": true,
5 "name": "core/form",
6 "title": "Form",
7 "category": "common",
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 "icon": "feedback",
21 "attributes": {
22 "submissionMethod": {
23 "type": "string",
24 "default": "email"
25 },
26 "method": {
27 "type": "string",
28 "default": "post"
29 },
30 "action": {
31 "type": "string"
32 },
33 "email": {
34 "type": "string"
35 }
36 },
37 "supports": {
38 "anchor": true,
39 "className": false,
40 "color": {
41 "gradients": true,
42 "link": true,
43 "__experimentalDefaultControls": {
44 "background": true,
45 "text": true,
46 "link": true
47 }
48 },
49 "spacing": {
50 "margin": true,
51 "padding": true
52 },
53 "typography": {
54 "fontSize": true,
55 "lineHeight": true,
56 "__experimentalFontFamily": true,
57 "__experimentalTextDecoration": true,
58 "__experimentalFontStyle": true,
59 "__experimentalFontWeight": true,
60 "__experimentalLetterSpacing": true,
61 "__experimentalTextTransform": true,
62 "__experimentalDefaultControls": {
63 "fontSize": true
64 }
65 },
66 "__experimentalSelector": "form"
67 },
68 "viewScript": "file:./view.min.js"
69 }
70