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

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

215 lines 5.2 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/link-roundup",
5 "title": "Link Roundup",
6 "description": "Curated links collection — weekly/monthly digest with categories.",
7 "category": "bkbg-blog",
8 "icon": "list-view",
9 "keywords": [
10 "links",
11 "roundup",
12 "digest",
13 "weekly",
14 "curated",
15 "reading"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-link-roundup-editor",
19 "style": "bkbg-link-roundup-style",
20 "viewScript": "bkbg-link-roundup-frontend",
21 "supports": {
22 "html": false,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "title": {
30 "type": "string",
31 "default": "This Week's Reads"
32 },
33 "subtitle": {
34 "type": "string",
35 "default": ""
36 },
37 "showSubtitle": {
38 "type": "boolean",
39 "default": true
40 },
41 "publishDate": {
42 "type": "string",
43 "default": ""
44 },
45 "dateLabel": {
46 "type": "string",
47 "default": "Week of"
48 },
49 "showDate": {
50 "type": "boolean",
51 "default": true
52 },
53 "links": {
54 "type": "array",
55 "default": [
56 {
57 "title": "Link Title",
58 "url": "",
59 "source": "Source Name",
60 "excerpt": "Brief description of what this link is about and why it's worth reading.",
61 "category": "General",
62 "emoji": "🔗",
63 "emojiType": "custom-char",
64 "emojiDashicon": "",
65 "emojiImageUrl": ""
66 }
67 ]
68 },
69 "style": {
70 "type": "string",
71 "default": "cards"
72 },
73 "groupByCategory": {
74 "type": "boolean",
75 "default": false
76 },
77 "showEmoji": {
78 "type": "boolean",
79 "default": true
80 },
81 "showSource": {
82 "type": "boolean",
83 "default": true
84 },
85 "showExcerpt": {
86 "type": "boolean",
87 "default": true
88 },
89 "showCategory": {
90 "type": "boolean",
91 "default": true
92 },
93 "openInNewTab": {
94 "type": "boolean",
95 "default": true
96 },
97 "bgColor": {
98 "type": "string",
99 "default": "#f8fafc"
100 },
101 "borderColor": {
102 "type": "string",
103 "default": "#e2e8f0"
104 },
105 "headingColor": {
106 "type": "string",
107 "default": "#0f172a"
108 },
109 "subtitleColor": {
110 "type": "string",
111 "default": "#64748b"
112 },
113 "dateColor": {
114 "type": "string",
115 "default": "#94a3b8"
116 },
117 "cardBg": {
118 "type": "string",
119 "default": "#ffffff"
120 },
121 "cardBorder": {
122 "type": "string",
123 "default": "#e2e8f0"
124 },
125 "linkColor": {
126 "type": "string",
127 "default": "#2563eb"
128 },
129 "sourceColor": {
130 "type": "string",
131 "default": "#94a3b8"
132 },
133 "excerptColor": {
134 "type": "string",
135 "default": "#475569"
136 },
137 "catBg": {
138 "type": "string",
139 "default": "#e0f2fe"
140 },
141 "catColor": {
142 "type": "string",
143 "default": "#0369a1"
144 },
145 "accentColor": {
146 "type": "string",
147 "default": "#2563eb"
148 },
149 "borderRadius": {
150 "type": "number",
151 "default": 12
152 },
153 "cardRadius": {
154 "type": "number",
155 "default": 8
156 },
157 "paddingTop": {
158 "type": "number",
159 "default": 0
160 },
161 "paddingBottom": {
162 "type": "number",
163 "default": 0
164 },
165 "titleFontSize": {
166 "type": "number",
167 "default": 22
168 },
169 "titleFontWeight": {
170 "type": "number",
171 "default": 700
172 },
173 "titleLineHeight": {
174 "type": "number",
175 "default": 1.2
176 },
177 "descriptionFontSize": {
178 "type": "number",
179 "default": 14
180 },
181 "descriptionFontWeight": {
182 "type": "number",
183 "default": 400
184 },
185 "descriptionLineHeight": {
186 "type": "number",
187 "default": 1.6
188 },
189 "itemFontSize": {
190 "type": "number",
191 "default": 16
192 },
193 "itemFontWeight": {
194 "type": "number",
195 "default": 600
196 },
197 "itemLineHeight": {
198 "type": "number",
199 "default": 1.3
200 },
201 "titleTypo": {
202 "type": "object",
203 "default": {}
204 },
205 "subtitleTypo": {
206 "type": "object",
207 "default": {}
208 },
209 "itemTypo": {
210 "type": "object",
211 "default": {}
212 }
213 }
214 }
215