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

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

155 lines 3.6 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/opinion-box",
5 "title": "Opinion Box",
6 "description": "Editorial 'My Take' opinion callout with author attribution, badge, and signed commentary.",
7 "category": "bkbg-blog",
8 "icon": "format-chat",
9 "keywords": [
10 "opinion",
11 "my take",
12 "editorial",
13 "take",
14 "analysis",
15 "hot take",
16 "expert view",
17 "author"
18 ],
19 "editorScript": "bkbg-opinion-box-editor",
20 "style": "bkbg-opinion-box-style",
21 "viewScript": "bkbg-opinion-box-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "badgeText": {
31 "type": "string",
32 "default": "My Take"
33 },
34 "opinion": {
35 "type": "string",
36 "default": ""
37 },
38 "authorName": {
39 "type": "string",
40 "default": ""
41 },
42 "authorTitle": {
43 "type": "string",
44 "default": ""
45 },
46 "avatarUrl": {
47 "type": "string",
48 "default": ""
49 },
50 "avatarId": {
51 "type": "number",
52 "default": 0
53 },
54 "avatarAlt": {
55 "type": "string",
56 "default": ""
57 },
58 "style": {
59 "type": "string",
60 "default": "featured"
61 },
62 "showAvatar": {
63 "type": "boolean",
64 "default": true
65 },
66 "showBadge": {
67 "type": "boolean",
68 "default": true
69 },
70 "bgColor": {
71 "type": "string",
72 "default": "#fefce8"
73 },
74 "borderColor": {
75 "type": "string",
76 "default": "#fde047"
77 },
78 "accentColor": {
79 "type": "string",
80 "default": "#ca8a04"
81 },
82 "badgeBg": {
83 "type": "string",
84 "default": "#ca8a04"
85 },
86 "badgeColor": {
87 "type": "string",
88 "default": "#ffffff"
89 },
90 "textColor": {
91 "type": "string",
92 "default": "#1c1917"
93 },
94 "authorColor": {
95 "type": "string",
96 "default": "#57534e"
97 },
98 "titleColor": {
99 "type": "string",
100 "default": "#78716c"
101 },
102 "avatarBg": {
103 "type": "string",
104 "default": "#d97706"
105 },
106 "avatarColor": {
107 "type": "string",
108 "default": "#ffffff"
109 },
110 "quoteMarkColor": {
111 "type": "string",
112 "default": "#fde047"
113 },
114 "borderRadius": {
115 "type": "number",
116 "default": 10
117 },
118 "paddingTop": {
119 "type": "number",
120 "default": 4
121 },
122 "paddingBottom": {
123 "type": "number",
124 "default": 4
125 },
126 "opinionFontSize": {
127 "type": "number",
128 "default": 15
129 },
130 "opinionLineHeight": {
131 "type": "number",
132 "default": 1.7
133 },
134 "authorNameSize": {
135 "type": "number",
136 "default": 13
137 },
138 "authorTitleSize": {
139 "type": "number",
140 "default": 12
141 },
142 "opinionTypo": {
143 "type": "object",
144 "default": {}
145 },
146 "authorNameTypo": {
147 "type": "object",
148 "default": {}
149 },
150 "authorTitleTypo": {
151 "type": "object",
152 "default": {}
153 }
154 }
155 }