PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / fact-check / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/fact-check/block.json

145 lines 3.8 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/fact-check",
5 "title": "Fact Check",
6 "description": "Editorial fact-check verdict box with claim, verdict rating, explanation, and sources.",
7 "category": "bkbg-blog",
8 "icon": "shield",
9 "keywords": [
10 "fact check",
11 "verdict",
12 "claim",
13 "true",
14 "false",
15 "misinformation",
16 "journalism",
17 "editorial"
18 ],
19 "editorScript": "bkbg-fact-check-editor",
20 "style": "bkbg-fact-check-style",
21 "viewScript": "bkbg-fact-check-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "claim": {
31 "type": "string",
32 "default": "\"This policy will create one million new jobs by 2030.\""
33 },
34 "verdict": {
35 "type": "string",
36 "default": "mostly-false"
37 },
38 "explanation": {
39 "type": "string",
40 "default": ""
41 },
42 "sources": {
43 "type": "array",
44 "default": [
45 {
46 "title": "Bureau of Labor Statistics Report",
47 "url": ""
48 },
49 {
50 "title": "Congressional Budget Office Analysis",
51 "url": ""
52 }
53 ]
54 },
55 "reviewerName": {
56 "type": "string",
57 "default": ""
58 },
59 "reviewerTitle": {
60 "type": "string",
61 "default": ""
62 },
63 "reviewDate": {
64 "type": "string",
65 "default": ""
66 },
67 "showReviewer": {
68 "type": "boolean",
69 "default": false
70 },
71 "showSources": {
72 "type": "boolean",
73 "default": true
74 },
75 "showRatingScale": {
76 "type": "boolean",
77 "default": true
78 },
79 "style": {
80 "type": "string",
81 "default": "card"
82 },
83 "openInNewTab": {
84 "type": "boolean",
85 "default": true
86 },
87 "bgColor": {
88 "type": "string",
89 "default": "#ffffff"
90 },
91 "borderColor": {
92 "type": "string",
93 "default": "#e2e8f0"
94 },
95 "claimBg": {
96 "type": "string",
97 "default": "#f8fafc"
98 },
99 "claimColor": {
100 "type": "string",
101 "default": "#1e293b"
102 },
103 "labelColor": {
104 "type": "string",
105 "default": "#64748b"
106 },
107 "explanationColor": {
108 "type": "string",
109 "default": "#374151"
110 },
111 "sourceTitleColor": {
112 "type": "string",
113 "default": "#374151"
114 },
115 "sourceLinkColor": {
116 "type": "string",
117 "default": "#3b82f6"
118 },
119 "reviewerColor": {
120 "type": "string",
121 "default": "#6b7280"
122 },
123 "borderRadius": {
124 "type": "number",
125 "default": 10
126 },
127 "paddingTop": {
128 "type": "number",
129 "default": 0
130 },
131 "paddingBottom": {
132 "type": "number",
133 "default": 0
134 },
135 "claimFontSize": { "type": "number", "default": 15 },
136 "claimFontWeight": { "type": "string", "default": "400" },
137 "claimLineHeight": { "type": "number", "default": 1.6 },
138 "explanationFontSize": { "type": "number", "default": 14 },
139 "explanationFontWeight": { "type": "string", "default": "400" },
140 "explanationLineHeight": { "type": "number", "default": 1.7 },
141 "typoClaim": { "type": "object", "default": {} },
142 "typoExplanation": { "type": "object", "default": {} }
143 }
144 }
145