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

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

205 lines 5.5 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/resource-links",
5 "version": "1.0.0",
6 "title": "Resource Links",
7 "category": "bkbg-content",
8 "icon": "list-view",
9 "description": "Curated resource / link list with section heading, items (icon, title, description, URL, type tag), list or grid layout, and full color/style controls.",
10 "keywords": [
11 "resources",
12 "links",
13 "list",
14 "reading list",
15 "downloads"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-resource-links-editor",
19 "style": "bkbg-resource-links-style",
20 "viewScript": "bkbg-resource-links-frontend",
21 "attributes": {
22 "heading": {
23 "type": "string",
24 "default": "Useful Resources"
25 },
26 "showHeading": {
27 "type": "boolean",
28 "default": true
29 },
30 "subtext": {
31 "type": "string",
32 "default": "Everything you need to get started."
33 },
34 "showSubtext": {
35 "type": "boolean",
36 "default": true
37 },
38 "layout": {
39 "type": "string",
40 "default": "list"
41 },
42 "columns": {
43 "type": "number",
44 "default": 2
45 },
46 "openNewTab": {
47 "type": "boolean",
48 "default": true
49 },
50 "showArrow": {
51 "type": "boolean",
52 "default": true
53 },
54 "items": {
55 "type": "array",
56 "default": [
57 {
58 "icon": "📄",
59 "iconType": "custom-char",
60 "iconDashicon": "",
61 "iconImageUrl": "",
62 "title": "Getting Started Guide",
63 "description": "Everything you need to set up your workspace in minutes.",
64 "url": "#",
65 "tag": "Guide"
66 },
67 {
68 "icon": "🎥",
69 "iconType": "custom-char",
70 "iconDashicon": "",
71 "iconImageUrl": "",
72 "title": "Video Tutorial Series",
73 "description": "Step-by-step walkthroughs for all major features.",
74 "url": "#",
75 "tag": "Video"
76 },
77 {
78 "icon": "📦",
79 "iconType": "custom-char",
80 "iconDashicon": "",
81 "iconImageUrl": "",
82 "title": "Starter Template Pack",
83 "description": "Ready-to-use templates for common use cases.",
84 "url": "#",
85 "tag": "Template"
86 },
87 {
88 "icon": "💬",
89 "iconType": "custom-char",
90 "iconDashicon": "",
91 "iconImageUrl": "",
92 "title": "Community Forum",
93 "description": "Get help from thousands of users and our team.",
94 "url": "#",
95 "tag": "Community"
96 }
97 ],
98 "items": {
99 "type": "object"
100 }
101 },
102 "bgColor": {
103 "type": "string",
104 "default": "#ffffff"
105 },
106 "cardBg": {
107 "type": "string",
108 "default": "#f9fafb"
109 },
110 "cardBorder": {
111 "type": "string",
112 "default": "#e5e7eb"
113 },
114 "headingColor": {
115 "type": "string",
116 "default": "#111827"
117 },
118 "subtextColor": {
119 "type": "string",
120 "default": "#6b7280"
121 },
122 "titleColor": {
123 "type": "string",
124 "default": "#111827"
125 },
126 "descColor": {
127 "type": "string",
128 "default": "#6b7280"
129 },
130 "tagBg": {
131 "type": "string",
132 "default": "#ede9fe"
133 },
134 "tagColor": {
135 "type": "string",
136 "default": "#7c3aed"
137 },
138 "iconColor": {
139 "type": "string",
140 "default": "#7c3aed"
141 },
142 "arrowColor": {
143 "type": "string",
144 "default": "#9ca3af"
145 },
146 "hoverBg": {
147 "type": "string",
148 "default": "#f3f0ff"
149 },
150 "borderRadius": {
151 "type": "number",
152 "default": 10
153 },
154 "headingSize": {
155 "type": "number",
156 "default": 32
157 },
158 "titleSize": {
159 "type": "number",
160 "default": 17
161 },
162 "descSize": {
163 "type": "number",
164 "default": 14
165 },
166 "iconSize": {
167 "type": "number",
168 "default": 28
169 },
170 "paddingTop": {
171 "type": "number",
172 "default": 64
173 },
174 "paddingBottom": {
175 "type": "number",
176 "default": 64
177 },
178 "maxWidth": {
179 "type": "number",
180 "default": 900
181 },
182 "headingTypo": {
183 "type": "object",
184 "default": {}
185 },
186 "titleTypo": {
187 "type": "object",
188 "default": {}
189 },
190 "bodyTypo": {
191 "type": "object",
192 "default": {}
193 }
194 },
195 "supports": {
196 "html": false,
197 "anchor": true,
198 "className": true,
199 "align": [
200 "wide",
201 "full"
202 ]
203 }
204 }
205