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

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

226 lines 5.3 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/blockquote",
5 "title": "Blockquote / Pull Quote",
6 "category": "bkbg-content",
7 "icon": "format-quote",
8 "description": "Stylish quote block with accent line or decorative marks, author name, role and photo.",
9 "keywords": [
10 "quote",
11 "blockquote",
12 "pullquote",
13 "citation",
14 "testimonial",
15 "author"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-blockquote-editor",
19 "editorStyle": "bkbg-blockquote-style",
20 "style": "bkbg-blockquote-style",
21 "viewScript": "bkbg-blockquote-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "blockId": {
33 "type": "string",
34 "default": ""
35 },
36 "quoteText": {
37 "type": "string",
38 "default": "The best way to predict the future is to create it."
39 },
40 "quoteStyle": {
41 "type": "string",
42 "default": "line"
43 },
44 "quoteAlign": {
45 "type": "string",
46 "default": "left"
47 },
48 "quoteFontSize": {
49 "type": "number",
50 "default": 22
51 },
52 "quoteFontWeight": {
53 "type": "number",
54 "default": 400
55 },
56 "quoteFontStyle": {
57 "type": "string",
58 "default": "italic"
59 },
60 "quoteLH": {
61 "type": "number",
62 "default": 1.65
63 },
64 "quoteColor": {
65 "type": "string",
66 "default": "#1e293b"
67 },
68 "quoteSpacing": {
69 "type": "number",
70 "default": 20
71 },
72 "showMark": {
73 "type": "boolean",
74 "default": true
75 },
76 "markStyle": {
77 "type": "string",
78 "default": "fancy"
79 },
80 "markSize": {
81 "type": "number",
82 "default": 72
83 },
84 "markColor": {
85 "type": "string",
86 "default": "#3b82f6"
87 },
88 "markOpacity": {
89 "type": "number",
90 "default": 16
91 },
92 "markPosition": {
93 "type": "string",
94 "default": "float"
95 },
96 "accentColor": {
97 "type": "string",
98 "default": "#3b82f6"
99 },
100 "accentLineWidth": {
101 "type": "number",
102 "default": 4
103 },
104 "accentLineRadius": {
105 "type": "number",
106 "default": 2
107 },
108 "bgColor": {
109 "type": "string",
110 "default": "transparent"
111 },
112 "borderRadius": {
113 "type": "number",
114 "default": 8
115 },
116 "paddingTop": {
117 "type": "number",
118 "default": 28
119 },
120 "paddingRight": {
121 "type": "number",
122 "default": 32
123 },
124 "paddingBottom": {
125 "type": "number",
126 "default": 28
127 },
128 "paddingLeft": {
129 "type": "number",
130 "default": 32
131 },
132 "enableShadow": {
133 "type": "boolean",
134 "default": false
135 },
136 "showAuthor": {
137 "type": "boolean",
138 "default": true
139 },
140 "authorName": {
141 "type": "string",
142 "default": "Peter Drucker"
143 },
144 "authorLayout": {
145 "type": "string",
146 "default": "horizontal"
147 },
148 "nameSize": {
149 "type": "number",
150 "default": 15
151 },
152 "nameWeight": {
153 "type": "number",
154 "default": 700
155 },
156 "nameColor": {
157 "type": "string",
158 "default": "#1e293b"
159 },
160 "showRole": {
161 "type": "boolean",
162 "default": true
163 },
164 "authorRole": {
165 "type": "string",
166 "default": "Management Consultant"
167 },
168 "roleSize": {
169 "type": "number",
170 "default": 13
171 },
172 "roleWeight": {
173 "type": "number",
174 "default": 400
175 },
176 "roleColor": {
177 "type": "string",
178 "default": "#6b7280"
179 },
180 "showPhoto": {
181 "type": "boolean",
182 "default": false
183 },
184 "photoUrl": {
185 "type": "string",
186 "default": ""
187 },
188 "photoAlt": {
189 "type": "string",
190 "default": ""
191 },
192 "photoShape": {
193 "type": "string",
194 "default": "circle"
195 },
196 "photoSize": {
197 "type": "number",
198 "default": 52
199 },
200 "photoBorder": {
201 "type": "boolean",
202 "default": false
203 },
204 "photoBorderColor": {
205 "type": "string",
206 "default": "#e5e7eb"
207 },
208 "gapPhotoText": {
209 "type": "number",
210 "default": 12
211 },
212 "typoQuote": {
213 "type": "object",
214 "default": {}
215 },
216 "typoName": {
217 "type": "object",
218 "default": {}
219 },
220 "typoRole": {
221 "type": "object",
222 "default": {}
223 }
224 }
225 }
226