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

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

165 lines 4.1 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/media-quote",
5 "version": "1.0.0",
6 "title": "Media Quote",
7 "category": "bkbg-blog",
8 "icon": "format-quote",
9 "description": "Quote with embedded video thumbnail (play button overlay) or image and speaker attribution. Perfect for podcast clips, interview excerpts, and video testimonials.",
10 "keywords": [
11 "quote",
12 "video",
13 "media",
14 "testimonial",
15 "podcast",
16 "interview",
17 "speaker"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-media-quote-editor",
21 "style": "bkbg-media-quote-style",
22 "viewScript": "bkbg-media-quote-frontend",
23 "supports": {
24 "html": false,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "quote": {
32 "type": "string",
33 "default": "\"This completely changed how I think about building an audience. The insights in this episode are genuinely priceless.\""
34 },
35 "videoUrl": {
36 "type": "string",
37 "default": ""
38 },
39 "thumbnailUrl": {
40 "type": "string",
41 "default": ""
42 },
43 "thumbnailId": {
44 "type": "integer",
45 "default": 0
46 },
47 "showVideo": {
48 "type": "boolean",
49 "default": true
50 },
51 "mediaType": {
52 "type": "string",
53 "default": "video"
54 },
55 "mediaLabel": {
56 "type": "string",
57 "default": "Watch the full episode"
58 },
59 "showMediaLabel": {
60 "type": "boolean",
61 "default": true
62 },
63 "speakerName": {
64 "type": "string",
65 "default": "Alex Rivera"
66 },
67 "speakerTitle": {
68 "type": "string",
69 "default": "Founder, GrowthLab"
70 },
71 "speakerCompany": {
72 "type": "string",
73 "default": ""
74 },
75 "speakerAvatarUrl": {
76 "type": "string",
77 "default": ""
78 },
79 "speakerAvatarId": {
80 "type": "integer",
81 "default": 0
82 },
83 "layout": {
84 "type": "string",
85 "default": "media-left"
86 },
87 "style": {
88 "type": "string",
89 "default": "card"
90 },
91 "quoteColor": {
92 "type": "string",
93 "default": "#111827"
94 },
95 "speakerColor": {
96 "type": "string",
97 "default": "#374151"
98 },
99 "bgColor": {
100 "type": "string",
101 "default": "#ffffff"
102 },
103 "accentColor": {
104 "type": "string",
105 "default": "#7c3aed"
106 },
107 "borderColor": {
108 "type": "string",
109 "default": "#e5e7eb"
110 },
111 "cardBg": {
112 "type": "string",
113 "default": "#f9fafb"
114 },
115 "playBtnBg": {
116 "type": "string",
117 "default": "#ffffff"
118 },
119 "playBtnColor": {
120 "type": "string",
121 "default": "#7c3aed"
122 },
123 "quoteSize": {
124 "type": "integer",
125 "default": 20
126 },
127 "quoteTypo": {
128 "type": "object",
129 "default": {}
130 },
131 "speakerNameTypo": {
132 "type": "object",
133 "default": {}
134 },
135 "speakerTitleTypo": {
136 "type": "object",
137 "default": {}
138 },
139 "showQuoteIcon": {
140 "type": "boolean",
141 "default": true
142 },
143 "mediaRadius": {
144 "type": "integer",
145 "default": 12
146 },
147 "borderRadius": {
148 "type": "integer",
149 "default": 16
150 },
151 "maxWidth": {
152 "type": "integer",
153 "default": 900
154 },
155 "paddingTop": {
156 "type": "integer",
157 "default": 64
158 },
159 "paddingBottom": {
160 "type": "integer",
161 "default": 64
162 }
163 }
164 }
165