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

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

195 lines 5.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/link-list",
5 "version": "1.0.0",
6 "title": "Link List",
7 "category": "bkbg-content",
8 "description": "An organized, styled list of links with icons, titles, descriptions, and optional badges.",
9 "keywords": [
10 "links",
11 "list",
12 "resources",
13 "navigation",
14 "directory",
15 "hub"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-link-list-editor",
19 "style": "bkbg-link-list-style",
20 "attributes": {
21 "title": {
22 "type": "string",
23 "default": "Useful Resources"
24 },
25 "showTitle": {
26 "type": "boolean",
27 "default": true
28 },
29 "subtitle": {
30 "type": "string",
31 "default": "Handpicked links for developers and designers"
32 },
33 "showSubtitle": {
34 "type": "boolean",
35 "default": true
36 },
37 "columns": {
38 "type": "number",
39 "default": 1
40 },
41 "showDescription": {
42 "type": "boolean",
43 "default": true
44 },
45 "showBadge": {
46 "type": "boolean",
47 "default": true
48 },
49 "showIcon": {
50 "type": "boolean",
51 "default": true
52 },
53 "gap": {
54 "type": "number",
55 "default": 8
56 },
57 "itemRadius": {
58 "type": "number",
59 "default": 10
60 },
61 "itemPadding": {
62 "type": "number",
63 "default": 14
64 },
65 "fontSize": {
66 "type": "number",
67 "default": 14
68 },
69 "titleSize": {
70 "type": "number",
71 "default": 15
72 },
73 "headingSize": {
74 "type": "number",
75 "default": 22
76 },
77 "bgColor": {
78 "type": "string",
79 "default": "#ffffff"
80 },
81 "cardBg": {
82 "type": "string",
83 "default": "#f9fafb"
84 },
85 "borderColor": {
86 "type": "string",
87 "default": "#e5e7eb"
88 },
89 "headingColor": {
90 "type": "string",
91 "default": "#111827"
92 },
93 "subtitleColor": {
94 "type": "string",
95 "default": "#6b7280"
96 },
97 "titleColor": {
98 "type": "string",
99 "default": "#111827"
100 },
101 "textColor": {
102 "type": "string",
103 "default": "#6b7280"
104 },
105 "linkColor": {
106 "type": "string",
107 "default": "#6366f1"
108 },
109 "badgeBg": {
110 "type": "string",
111 "default": "#ede9fe"
112 },
113 "badgeColor": {
114 "type": "string",
115 "default": "#6366f1"
116 },
117 "links": {
118 "type": "array",
119 "default": [
120 {
121 "icon": "📘",
122 "iconType": "custom-char",
123 "iconDashicon": "",
124 "iconImageUrl": "",
125 "title": "MDN Web Docs",
126 "desc": "Comprehensive documentation for HTML, CSS, and JavaScript.",
127 "url": "https://developer.mozilla.org",
128 "badge": "Free",
129 "accentColor": "#6366f1"
130 },
131 {
132 "icon": "⚛️",
133 "iconType": "custom-char",
134 "iconDashicon": "",
135 "iconImageUrl": "",
136 "title": "React Documentation",
137 "desc": "Learn the fundamentals of building UIs with React.",
138 "url": "https://react.dev",
139 "badge": "Official",
140 "accentColor": "#06b6d4"
141 },
142 {
143 "icon": "🎨",
144 "iconType": "custom-char",
145 "iconDashicon": "",
146 "iconImageUrl": "",
147 "title": "Tailwind CSS",
148 "desc": "Utility-first CSS framework for rapid UI development.",
149 "url": "https://tailwindcss.com",
150 "badge": "v4",
151 "accentColor": "#10b981"
152 },
153 {
154 "icon": "🛠️",
155 "iconType": "custom-char",
156 "iconDashicon": "",
157 "iconImageUrl": "",
158 "title": "Vite",
159 "desc": "Next generation frontend tooling — fast and opinionated.",
160 "url": "https://vitejs.dev",
161 "badge": "Tool",
162 "accentColor": "#f59e0b"
163 },
164 {
165 "icon": "🐙",
166 "iconType": "custom-char",
167 "iconDashicon": "",
168 "iconImageUrl": "",
169 "title": "GitHub",
170 "desc": "Host, review, and collaborate on code with millions.",
171 "url": "https://github.com",
172 "badge": "Free",
173 "accentColor": "#111827"
174 }
175 ]
176 },
177 "headingTypo": {
178 "type": "object",
179 "default": {}
180 },
181 "subtitleTypo": {
182 "type": "object",
183 "default": {}
184 },
185 "linkTitleTypo": {
186 "type": "object",
187 "default": {}
188 },
189 "descTypo": {
190 "type": "object",
191 "default": {}
192 }
193 }
194 }
195