kollapsminoriteten/wp-includes/blocks/video/block.json

92 lines
1.8 KiB
JSON
Raw Normal View History

2020-09-15 14:29:22 +02:00
{
2022-06-16 14:03:35 +02:00
"$schema": "https://schemas.wp.org/trunk/block.json",
2020-12-10 14:06:04 +01:00
"apiVersion": 2,
2020-09-15 14:29:22 +02:00
"name": "core/video",
2021-07-23 11:58:50 +02:00
"title": "Video",
2020-09-15 14:29:22 +02:00
"category": "media",
2021-07-23 11:58:50 +02:00
"description": "Embed a video from your media library or upload a new one.",
"keywords": [ "movie" ],
"textdomain": "default",
2020-09-15 14:29:22 +02:00
"attributes": {
"autoplay": {
"type": "boolean",
"source": "attribute",
"selector": "video",
"attribute": "autoplay"
},
"caption": {
"type": "string",
"source": "html",
2022-12-15 17:47:31 +01:00
"selector": "figcaption",
"__experimentalRole": "content"
2020-09-15 14:29:22 +02:00
},
"controls": {
"type": "boolean",
"source": "attribute",
"selector": "video",
"attribute": "controls",
"default": true
},
"id": {
2022-12-15 17:47:31 +01:00
"type": "number",
"__experimentalRole": "content"
2020-09-15 14:29:22 +02:00
},
"loop": {
"type": "boolean",
"source": "attribute",
"selector": "video",
"attribute": "loop"
},
"muted": {
"type": "boolean",
"source": "attribute",
"selector": "video",
"attribute": "muted"
},
"poster": {
"type": "string",
"source": "attribute",
"selector": "video",
"attribute": "poster"
},
"preload": {
"type": "string",
"source": "attribute",
"selector": "video",
"attribute": "preload",
"default": "metadata"
},
"src": {
"type": "string",
"source": "attribute",
"selector": "video",
2022-12-15 17:47:31 +01:00
"attribute": "src",
"__experimentalRole": "content"
2020-09-15 14:29:22 +02:00
},
"playsInline": {
"type": "boolean",
"source": "attribute",
"selector": "video",
"attribute": "playsinline"
2020-12-10 14:06:04 +01:00
},
"tracks": {
2022-12-15 17:47:31 +01:00
"__experimentalRole": "content",
2020-12-10 14:06:04 +01:00
"type": "array",
"items": {
"type": "object"
},
"default": []
2020-09-15 14:29:22 +02:00
}
},
"supports": {
"anchor": true,
2022-12-15 17:47:31 +01:00
"align": true,
"spacing": {
"margin": true,
"padding": true
}
2021-04-27 08:32:47 +02:00
},
"editorStyle": "wp-block-video-editor",
"style": "wp-block-video"
2020-09-15 14:29:22 +02:00
}