| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "cp/codepen-gutenberg-embed-block", |
| 5 |
"version": "1.2.1", |
| 6 |
"title": "CodePen Embed", |
| 7 |
"category": "embed", |
| 8 |
"icon": "embed-generic", |
| 9 |
"description": "Embeds CodePen pens", |
| 10 |
"example": { |
| 11 |
"attributes": { |
| 12 |
"penURL": "https://codepen.io/example/pen/abc123" |
| 13 |
} |
| 14 |
}, |
| 15 |
"supports": { |
| 16 |
"html": true |
| 17 |
}, |
| 18 |
"attributes": { |
| 19 |
"content": { |
| 20 |
"type": "string", |
| 21 |
"default": "" |
| 22 |
}, |
| 23 |
"penURL": { |
| 24 |
"type": "string", |
| 25 |
"default": "" |
| 26 |
}, |
| 27 |
"penID": { |
| 28 |
"type": "string", |
| 29 |
"default": "" |
| 30 |
}, |
| 31 |
"penType": { |
| 32 |
"type": "string", |
| 33 |
"default": "result" |
| 34 |
}, |
| 35 |
"penHeight": { |
| 36 |
"type": "integer", |
| 37 |
"default": 450 |
| 38 |
}, |
| 39 |
"penTheme": { |
| 40 |
"type": "string", |
| 41 |
"default": "1" |
| 42 |
}, |
| 43 |
"clickToLoad": { |
| 44 |
"type": "boolean", |
| 45 |
"default": false |
| 46 |
}, |
| 47 |
"editable": { |
| 48 |
"type": "boolean", |
| 49 |
"default": false |
| 50 |
} |
| 51 |
}, |
| 52 |
"textdomain": "codepen-embed-block", |
| 53 |
"editorScript": "file:./index.js", |
| 54 |
"editorStyle": "file:./index.css", |
| 55 |
"style": "file:./style-index.css" |
| 56 |
} |
| 57 |
|