PluginProbe
The Innovative Form Builder – IvyForms / 0.8
The Innovative Form Builder – IvyForms v0.8
1.4.1 1.4 trunk 0.1.2 0.2 0.2.1 0.3 0.3.1 0.4 0.5 0.6 0.6.1 0.6.1-backup 0.6.1.1 0.7 0.8 0.8.1 0.8.2 0.9 0.9.1 1.0 1.1 1.1.1 1.2 1.3
ivyforms / backend / src / Services / Integrations / Gutenberg / assets / block.json

block.json in The Innovative Form Builder – IvyForms 0.8, at backend/src/Services/Integrations/Gutenberg/assets/block.json

50 lines 1.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": "ivyforms/gutenberg-block",
5 "title": "IvyForms",
6 "category": "ivyforms",
7 "description": "Embed an IvyForms Form in your content",
8 "keywords": ["form", "contact", "ivy", "ivyforms"],
9 "textdomain": "ivyforms",
10 "icon": "file:./icon.svg",
11 "example": {
12 "viewportWidth": 230,
13 "attributes": {
14 "preview": true
15 }
16 },
17 "supports": {
18 "customClassName": true,
19 "html": false
20 },
21 "attributes": {
22 "formId": {
23 "type": "string",
24 "default": ""
25 },
26 "showTitle": {
27 "type": "boolean",
28 "default": true
29 },
30 "showDescription": {
31 "type": "boolean",
32 "default": true
33 },
34 "customCssClass": {
35 "type": "string",
36 "default": ""
37 },
38 "className": {
39 "type": "string",
40 "default": ""
41 },
42 "preview": {
43 "type": "boolean",
44 "default": false
45 }
46 },
47 "editorScript": "ivyforms-gutenberg-block",
48 "editorStyle": "ivyforms-gutenberg-block-editor"
49 }
50