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

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

199 lines 4.8 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/founder-quote",
5 "title": "Founder Quote",
6 "category": "bkbg-business",
7 "icon": "format-quote",
8 "description": "CEO or founder personal message section with photo, signature, and multiple layout styles for About pages.",
9 "keywords": [
10 "founder",
11 "ceo",
12 "quote",
13 "message",
14 "about",
15 "letter",
16 "signature",
17 "testimonial"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-founder-quote-editor",
21 "editorStyle": "bkbg-founder-quote-style",
22 "style": "bkbg-founder-quote-style",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "eyebrow": {
34 "type": "string",
35 "default": "A note from our founder"
36 },
37 "showEyebrow": {
38 "type": "boolean",
39 "default": true
40 },
41 "quote": {
42 "type": "string",
43 "default": "We started this company because we believed that great tools should be accessible to everyone — not just the largest enterprises with the biggest budgets."
44 },
45 "name": {
46 "type": "string",
47 "default": "Alex Johnson"
48 },
49 "title": {
50 "type": "string",
51 "default": "CEO & Co-founder"
52 },
53 "company": {
54 "type": "string",
55 "default": ""
56 },
57 "showPhoto": {
58 "type": "boolean",
59 "default": true
60 },
61 "photoUrl": {
62 "type": "string",
63 "default": ""
64 },
65 "photoId": {
66 "type": "number",
67 "default": 0
68 },
69 "photoSize": {
70 "type": "number",
71 "default": 80
72 },
73 "showSignature": {
74 "type": "boolean",
75 "default": true
76 },
77 "signature": {
78 "type": "string",
79 "default": "Alex"
80 },
81 "showCompanyLogo": {
82 "type": "boolean",
83 "default": false
84 },
85 "companyLogoUrl": {
86 "type": "string",
87 "default": ""
88 },
89 "companyLogoId": {
90 "type": "number",
91 "default": 0
92 },
93 "companyLogoWidth": {
94 "type": "number",
95 "default": 100
96 },
97 "style": {
98 "type": "string",
99 "default": "minimal"
100 },
101 "quoteSize": {
102 "type": "number",
103 "default": 20
104 },
105 "quoteWeight": {
106 "type": "string",
107 "default": "400"
108 },
109 "quoteLineHeight": {
110 "type": "number",
111 "default": 1.6
112 },
113 "nameSize": {
114 "type": "number",
115 "default": 16
116 },
117 "nameWeight": {
118 "type": "string",
119 "default": "700"
120 },
121 "nameLineHeight": {
122 "type": "number",
123 "default": 1.3
124 },
125 "titleSize": {
126 "type": "number",
127 "default": 14
128 },
129 "titleLineHeight": {
130 "type": "number",
131 "default": 1.4
132 },
133 "signatureSize": {
134 "type": "number",
135 "default": 36
136 },
137 "typoEyebrow": {
138 "type": "object",
139 "default": {}
140 },
141 "typoQuote": {
142 "type": "object",
143 "default": {}
144 },
145 "typoName": {
146 "type": "object",
147 "default": {}
148 },
149 "typoTitle": {
150 "type": "object",
151 "default": {}
152 },
153 "typoSignature": {
154 "type": "object",
155 "default": {}
156 },
157 "paddingTop": {
158 "type": "number",
159 "default": 64
160 },
161 "paddingBottom": {
162 "type": "number",
163 "default": 64
164 },
165 "maxWidth": {
166 "type": "number",
167 "default": 720
168 },
169 "quoteColor": {
170 "type": "string",
171 "default": "#1e293b"
172 },
173 "nameColor": {
174 "type": "string",
175 "default": "#0f172a"
176 },
177 "titleColor": {
178 "type": "string",
179 "default": "#64748b"
180 },
181 "eyebrowColor": {
182 "type": "string",
183 "default": "#6c3fb5"
184 },
185 "accentColor": {
186 "type": "string",
187 "default": "#6c3fb5"
188 },
189 "bgColor": {
190 "type": "string",
191 "default": "#ffffff"
192 },
193 "borderColor": {
194 "type": "string",
195 "default": "#e2e8f0"
196 }
197 }
198 }
199