PluginProbe
Gutenberg / 23.5.0
Gutenberg v23.5.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 / form / block.json

block.json in Gutenberg 23.5.0, at build/scripts/block-library/form/block.json

66 lines 1.3 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": "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