| 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 |
|