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-playlist / block.json

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

182 lines 4.9 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-playlist",
5 "title": "Video Playlist",
6 "description": "A video player paired with a clickable episode/chapter list — perfect for course previews, tutorial series and video podcasts.",
7 "category": "bkbg-media",
8 "icon": "playlist-video",
9 "keywords": [
10 "video",
11 "playlist",
12 "episodes",
13 "course",
14 "tutorial",
15 "youtube",
16 "vimeo"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-video-playlist-editor",
20 "style": "bkbg-video-playlist-style",
21 "viewScript": "bkbg-video-playlist-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "playlistTitle": {
31 "type": "string",
32 "default": "Watch the Series"
33 },
34 "showPlaylistTitle": {
35 "type": "boolean",
36 "default": true
37 },
38 "episodes": {
39 "type": "array",
40 "default": [
41 {
42 "title": "Episode 1: Introduction",
43 "description": "A quick overview of what you will learn in this series.",
44 "videoType": "youtube",
45 "videoId": "dQw4w9WgXcQ",
46 "videoUrl": "",
47 "duration": "5:32",
48 "thumbnailUrl": "",
49 "thumbnailId": 0,
50 "thumbnailAlt": ""
51 },
52 {
53 "title": "Episode 2: Getting Started",
54 "description": "Set up your environment and run your first example.",
55 "videoType": "youtube",
56 "videoId": "dQw4w9WgXcQ",
57 "videoUrl": "",
58 "duration": "12:14",
59 "thumbnailUrl": "",
60 "thumbnailId": 0,
61 "thumbnailAlt": ""
62 },
63 {
64 "title": "Episode 3: Going Deeper",
65 "description": "Explore advanced techniques and real-world patterns.",
66 "videoType": "youtube",
67 "videoId": "dQw4w9WgXcQ",
68 "videoUrl": "",
69 "duration": "18:07",
70 "thumbnailUrl": "",
71 "thumbnailId": 0,
72 "thumbnailAlt": ""
73 }
74 ]
75 },
76 "layout": {
77 "type": "string",
78 "default": "side"
79 },
80 "listPosition": {
81 "type": "string",
82 "default": "right"
83 },
84 "showNumbers": {
85 "type": "boolean",
86 "default": true
87 },
88 "showDuration": {
89 "type": "boolean",
90 "default": true
91 },
92 "showDescription": {
93 "type": "boolean",
94 "default": true
95 },
96 "showThumbnails": {
97 "type": "boolean",
98 "default": true
99 },
100 "listWidth": {
101 "type": "number",
102 "default": 340
103 },
104 "borderRadius": {
105 "type": "number",
106 "default": 12
107 },
108 "paddingTop": {
109 "type": "number",
110 "default": 0
111 },
112 "paddingBottom": {
113 "type": "number",
114 "default": 0
115 },
116 "bgColor": {
117 "type": "string",
118 "default": "#0f0f1a"
119 },
120 "playerBg": {
121 "type": "string",
122 "default": "#000000"
123 },
124 "listBg": {
125 "type": "string",
126 "default": "#1a1a2e"
127 },
128 "activeBg": {
129 "type": "string",
130 "default": "#2d2b55"
131 },
132 "titleColor": {
133 "type": "string",
134 "default": "#ffffff"
135 },
136 "metaColor": {
137 "type": "string",
138 "default": "#a0aec0"
139 },
140 "epTitleColor": {
141 "type": "string",
142 "default": "#f0f0f0"
143 },
144 "epMetaColor": {
145 "type": "string",
146 "default": "#718096"
147 },
148 "activeColor": {
149 "type": "string",
150 "default": "#6366f1"
151 },
152 "accentColor": {
153 "type": "string",
154 "default": "#6366f1"
155 },
156 "playlistTitleFontSize": {
157 "type": "number",
158 "default": 13
159 },
160 "epTitleFontSize": {
161 "type": "number",
162 "default": 13
163 },
164 "epMetaFontSize": {
165 "type": "number",
166 "default": 11
167 },
168 "playlistTitleTypo": {
169 "type": "object",
170 "default": {}
171 },
172 "epTitleTypo": {
173 "type": "object",
174 "default": {}
175 },
176 "epMetaTypo": {
177 "type": "object",
178 "default": {}
179 }
180 }
181 }
182