PluginProbe
bBlocks – Essential Gutenberg Blocks & Patterns Collection / trunk
bBlocks – Essential Gutenberg Blocks & Patterns Collection vtrunk
2.1.6 2.1.5 2.1.4 2.1.3 2.1.2 2.1.1 2.1.0 2.0.43 2.0.42 2.0.41 2.0.40 2.0.39 2.0.38 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 All 106 releases
b-blocks / build / video / block.json

block.json in bBlocks – Essential Gutenberg Blocks & Patterns Collection trunk, at build/video/block.json

102 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "b-blocks/video",
4 "title": "Video",
5 "description": "A Simple, accessible, Easy to Use & fully Customizable video player.",
6 "icon": "video-alt2",
7 "category": "bBlocks",
8 "keywords": [
9 "video embed",
10 "mp4 ogg player",
11 "any video play"
12 ],
13 "textdomain": "b-blocks",
14 "attributes": {
15 "align": {
16 "type": "string",
17 "default": ""
18 },
19 "source": {
20 "type": "string",
21 "default": ""
22 },
23 "poster": {
24 "type": "string",
25 "default": ""
26 },
27 "controls": {
28 "type": "object",
29 "default": {
30 "play-large": true,
31 "restart": false,
32 "rewind": true,
33 "play": true,
34 "fast-forward": true,
35 "progress": true,
36 "current-time": true,
37 "duration": false,
38 "mute": true,
39 "volume": true,
40 "pip": false,
41 "airplay": false,
42 "settings": true,
43 "download": false,
44 "fullscreen": true
45 }
46 },
47 "width": {
48 "type": "string",
49 "default": "100%"
50 },
51 "radius": {
52 "type": "string",
53 "default": "0px"
54 },
55 "repeat": {
56 "type": "boolean",
57 "default": false
58 },
59 "autoplay": {
60 "type": "boolean",
61 "default": false
62 },
63 "muted": {
64 "type": "boolean",
65 "default": false
66 },
67 "resetOnEnd": {
68 "type": "boolean",
69 "default": false
70 },
71 "autoHideControl": {
72 "type": "boolean",
73 "default": true
74 }
75 },
76 "supports": {
77 "align": [
78 "wide",
79 "full"
80 ],
81 "html": false
82 },
83 "example": {
84 "attributes": {
85 "preview": true,
86 "sourceType": "link"
87 }
88 },
89 "editorScript": [
90 "file:../index.js",
91 "plyr"
92 ],
93 "style": [
94 "file:./view.css",
95 "plyr"
96 ],
97 "render": "file:./render.php",
98 "viewScript": [
99 "file:./view.js",
100 "plyr"
101 ]
102 }