| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/vimeo-performance", |
| 5 |
"title": "Vimeo Performance Embed", |
| 6 |
"category": "bkbg-dev", |
| 7 |
"icon": "video-alt3", |
| 8 |
"description": "High-performance Vimeo embed with poster + lazy iframe on click.", |
| 9 |
"keywords": [ |
| 10 |
"vimeo", |
| 11 |
"video", |
| 12 |
"embed", |
| 13 |
"lazy", |
| 14 |
"performance", |
| 15 |
"poster" |
| 16 |
], |
| 17 |
"textdomain": "blockenberg", |
| 18 |
"editorScript": "bkbg-vimeo-performance-editor", |
| 19 |
"editorStyle": "bkbg-vimeo-performance-style", |
| 20 |
"style": "bkbg-vimeo-performance-style", |
| 21 |
"viewScript": "bkbg-vimeo-performance-frontend", |
| 22 |
"supports": { |
| 23 |
"html": false, |
| 24 |
"anchor": true, |
| 25 |
"className": true, |
| 26 |
"align": [ |
| 27 |
"wide", |
| 28 |
"full" |
| 29 |
] |
| 30 |
}, |
| 31 |
"attributes": { |
| 32 |
"videoUrl": { |
| 33 |
"type": "string", |
| 34 |
"default": "" |
| 35 |
}, |
| 36 |
"videoId": { |
| 37 |
"type": "string", |
| 38 |
"default": "" |
| 39 |
}, |
| 40 |
"embedSrc": { |
| 41 |
"type": "string", |
| 42 |
"default": "" |
| 43 |
}, |
| 44 |
"dnt": { |
| 45 |
"type": "boolean", |
| 46 |
"default": true |
| 47 |
}, |
| 48 |
"autoplay": { |
| 49 |
"type": "boolean", |
| 50 |
"default": true |
| 51 |
}, |
| 52 |
"muted": { |
| 53 |
"type": "boolean", |
| 54 |
"default": false |
| 55 |
}, |
| 56 |
"loop": { |
| 57 |
"type": "boolean", |
| 58 |
"default": false |
| 59 |
}, |
| 60 |
"showTitleBylinePortrait": { |
| 61 |
"type": "boolean", |
| 62 |
"default": false |
| 63 |
}, |
| 64 |
"posterSource": { |
| 65 |
"type": "string", |
| 66 |
"default": "vimeo" |
| 67 |
}, |
| 68 |
"posterImage": { |
| 69 |
"type": "object", |
| 70 |
"default": { |
| 71 |
"id": 0, |
| 72 |
"url": "", |
| 73 |
"alt": "" |
| 74 |
} |
| 75 |
}, |
| 76 |
"aspect": { |
| 77 |
"type": "string", |
| 78 |
"default": "4/3" |
| 79 |
}, |
| 80 |
"minHeight": { |
| 81 |
"type": "number", |
| 82 |
"default": 350 |
| 83 |
}, |
| 84 |
"borderRadius": { |
| 85 |
"type": "number", |
| 86 |
"default": 12 |
| 87 |
}, |
| 88 |
"shadow": { |
| 89 |
"type": "boolean", |
| 90 |
"default": false |
| 91 |
}, |
| 92 |
"playStyle": { |
| 93 |
"type": "string", |
| 94 |
"default": "youtube" |
| 95 |
}, |
| 96 |
"playSize": { |
| 97 |
"type": "number", |
| 98 |
"default": 50 |
| 99 |
}, |
| 100 |
"playBg": { |
| 101 |
"type": "string", |
| 102 |
"default": "#01adee" |
| 103 |
}, |
| 104 |
"playColor": { |
| 105 |
"type": "string", |
| 106 |
"default": "#ffffff" |
| 107 |
}, |
| 108 |
"playHoverScale": { |
| 109 |
"type": "number", |
| 110 |
"default": 1.05 |
| 111 |
} |
| 112 |
} |
| 113 |
} |
| 114 |
|