PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / video-section / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/video-section/block.json

225 lines 5.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/video-section",
5 "title": "Video Section",
6 "description": "Featured video section with headline, description, play button and optional stat strip below.",
7 "category": "bkbg-media",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-video-section-editor",
10 "style": "bkbg-video-section-style",
11 "viewScript": "bkbg-video-section-frontend",
12 "supports": {
13 "html": false,
14 "anchor": true,
15 "className": true,
16 "align": [
17 "wide",
18 "full"
19 ]
20 },
21 "attributes": {
22 "videoType": {
23 "type": "string",
24 "default": "youtube"
25 },
26 "videoUrl": {
27 "type": "string",
28 "default": ""
29 },
30 "youtubeId": {
31 "type": "string",
32 "default": ""
33 },
34 "vimeoId": {
35 "type": "string",
36 "default": ""
37 },
38 "posterUrl": {
39 "type": "string",
40 "default": ""
41 },
42 "posterId": {
43 "type": "number",
44 "default": 0
45 },
46 "videoLayout": {
47 "type": "string",
48 "default": "hero"
49 },
50 "showContent": {
51 "type": "boolean",
52 "default": true
53 },
54 "contentPosition": {
55 "type": "string",
56 "default": "above"
57 },
58 "badge": {
59 "type": "string",
60 "default": "Watch Now"
61 },
62 "showBadge": {
63 "type": "boolean",
64 "default": true
65 },
66 "headline": {
67 "type": "string",
68 "default": "See It In Action"
69 },
70 "subtext": {
71 "type": "string",
72 "default": "Watch how our product transforms the way you work in just 2 minutes."
73 },
74 "headlineTag": {
75 "type": "string",
76 "default": "h2"
77 },
78 "aspectRatio": {
79 "type": "string",
80 "default": "16/9"
81 },
82 "maxWidth": {
83 "type": "number",
84 "default": 900
85 },
86 "borderRadius": {
87 "type": "number",
88 "default": 16
89 },
90 "showShadow": {
91 "type": "boolean",
92 "default": true
93 },
94 "playButtonStyle": {
95 "type": "string",
96 "default": "circle"
97 },
98 "playButtonSize": {
99 "type": "number",
100 "default": 72
101 },
102 "showStats": {
103 "type": "boolean",
104 "default": true
105 },
106 "stats": {
107 "type": "array",
108 "default": [
109 {
110 "id": "s1",
111 "value": "2M+",
112 "label": "Total Views"
113 },
114 {
115 "id": "s2",
116 "value": "4.9�
117 ",
118 "label": "Average Rating"
119 },
120 {
121 "id": "s3",
122 "value": "50k+",
123 "label": "Happy Users"
124 }
125 ]
126 },
127 "headlineSize": {
128 "type": "number",
129 "default": 42
130 },
131 "subtextSize": {
132 "type": "number",
133 "default": 18
134 },
135 "statValueSize": {
136 "type": "number",
137 "default": 28
138 },
139 "statLabelSize": {
140 "type": "number",
141 "default": 13
142 },
143 "badgeSize": {
144 "type": "number",
145 "default": 13
146 },
147 "badgeTypo": {
148 "type": "object",
149 "default": {}
150 },
151 "headlineTypo": {
152 "type": "object",
153 "default": {}
154 },
155 "subtextTypo": {
156 "type": "object",
157 "default": {}
158 },
159 "statValueTypo": {
160 "type": "object",
161 "default": {}
162 },
163 "statLabelTypo": {
164 "type": "object",
165 "default": {}
166 },
167 "accentColor": {
168 "type": "string",
169 "default": "#6c3fb5"
170 },
171 "headlineColor": {
172 "type": "string",
173 "default": "#111827"
174 },
175 "subtextColor": {
176 "type": "string",
177 "default": "#4b5563"
178 },
179 "badgeBg": {
180 "type": "string",
181 "default": "#ede9f7"
182 },
183 "badgeColor": {
184 "type": "string",
185 "default": "#6c3fb5"
186 },
187 "playBg": {
188 "type": "string",
189 "default": "#ffffff"
190 },
191 "playColor": {
192 "type": "string",
193 "default": "#6c3fb5"
194 },
195 "statValueColor": {
196 "type": "string",
197 "default": "#111827"
198 },
199 "statLabelColor": {
200 "type": "string",
201 "default": "#6b7280"
202 },
203 "statDividerColor": {
204 "type": "string",
205 "default": "#e5e7eb"
206 },
207 "bgColor": {
208 "type": "string",
209 "default": ""
210 },
211 "textAlign": {
212 "type": "string",
213 "default": "center"
214 },
215 "paddingTop": {
216 "type": "number",
217 "default": 64
218 },
219 "paddingBottom": {
220 "type": "number",
221 "default": 64
222 }
223 }
224 }
225