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

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

195 lines 4.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/audio-player",
5 "title": "Audio Player",
6 "category": "bkbg-media",
7 "icon": "controls-play",
8 "description": "Custom-styled audio player with cover art, track info, and branded controls. Perfect for podcasts and soundclips.",
9 "keywords": [
10 "audio",
11 "player",
12 "podcast",
13 "music",
14 "sound",
15 "track",
16 "mp3"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-audio-player-editor",
20 "editorStyle": "bkbg-audio-player-style",
21 "style": "bkbg-audio-player-style",
22 "viewScript": "bkbg-audio-player-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "audioUrl": {
34 "type": "string",
35 "default": ""
36 },
37 "audioType": {
38 "type": "string",
39 "default": "audio/mpeg"
40 },
41 "audioTitle": {
42 "type": "string",
43 "default": "Track Title"
44 },
45 "audioArtist": {
46 "type": "string",
47 "default": "Artist Name"
48 },
49 "audioAlbum": {
50 "type": "string",
51 "default": ""
52 },
53 "coverUrl": {
54 "type": "string",
55 "default": ""
56 },
57 "coverId": {
58 "type": "number",
59 "default": 0
60 },
61 "playerStyle": {
62 "type": "string",
63 "default": "card"
64 },
65 "showCover": {
66 "type": "boolean",
67 "default": true
68 },
69 "showTitle": {
70 "type": "boolean",
71 "default": true
72 },
73 "showArtist": {
74 "type": "boolean",
75 "default": true
76 },
77 "showAlbum": {
78 "type": "boolean",
79 "default": false
80 },
81 "showTimestamp": {
82 "type": "boolean",
83 "default": true
84 },
85 "showVolume": {
86 "type": "boolean",
87 "default": true
88 },
89 "showDownload": {
90 "type": "boolean",
91 "default": false
92 },
93 "showSpeed": {
94 "type": "boolean",
95 "default": false
96 },
97 "autoplay": {
98 "type": "boolean",
99 "default": false
100 },
101 "loop": {
102 "type": "boolean",
103 "default": false
104 },
105 "preload": {
106 "type": "string",
107 "default": "metadata"
108 },
109 "accentColor": {
110 "type": "string",
111 "default": "#2563eb"
112 },
113 "progressBg": {
114 "type": "string",
115 "default": "#e2e8f0"
116 },
117 "bgColor": {
118 "type": "string",
119 "default": "#ffffff"
120 },
121 "textColor": {
122 "type": "string",
123 "default": "#0f172a"
124 },
125 "subtitleColor": {
126 "type": "string",
127 "default": "#64748b"
128 },
129 "iconColor": {
130 "type": "string",
131 "default": "#ffffff"
132 },
133 "iconBg": {
134 "type": "string",
135 "default": "#2563eb"
136 },
137 "coverRadius": {
138 "type": "number",
139 "default": 8
140 },
141 "coverSize": {
142 "type": "number",
143 "default": 80
144 },
145 "playerRadius": {
146 "type": "number",
147 "default": 14
148 },
149 "playerPaddingV": {
150 "type": "number",
151 "default": 20
152 },
153 "playerPaddingH": {
154 "type": "number",
155 "default": 24
156 },
157 "boxShadow": {
158 "type": "string",
159 "default": "md"
160 },
161 "titleSize": {
162 "type": "number",
163 "default": 17
164 },
165 "titleWeight": {
166 "type": "string",
167 "default": "700"
168 },
169 "artistSize": {
170 "type": "number",
171 "default": 14
172 },
173 "titleTypo": {
174 "type": "object",
175 "default": {}
176 },
177 "artistTypo": {
178 "type": "object",
179 "default": {}
180 },
181 "playButtonSize": {
182 "type": "number",
183 "default": 52
184 },
185 "progressHeight": {
186 "type": "number",
187 "default": 4
188 },
189 "maxWidth": {
190 "type": "number",
191 "default": 560
192 }
193 }
194 }
195