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

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

174 lines 4.7 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-card",
5 "version": "1.0.0",
6 "title": "Link Card Grid",
7 "category": "bkbg-content",
8 "icon": "grid-view",
9 "description": "Visual navigation card grid for resource hubs and docs pages. Each card has icon, title, description, and URL.",
10 "keywords": [
11 "link",
12 "card",
13 "grid",
14 "navigation",
15 "docs",
16 "resources",
17 "hub"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-link-card-editor",
21 "style": "bkbg-link-card-style",
22 "viewScript": "bkbg-link-card-frontend",
23 "supports": {
24 "html": false,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "cards": {
32 "type": "array",
33 "default": [
34 {
35 "icon": "🚀",
36 "iconType": "custom-char",
37 "iconDashicon": "",
38 "iconImageUrl": "",
39 "title": "Getting Started",
40 "description": "Everything you need to set up and launch quickly.",
41 "url": "#",
42 "isExternal": false,
43 "accentColor": ""
44 },
45 {
46 "icon": "📖",
47 "iconType": "custom-char",
48 "iconDashicon": "",
49 "iconImageUrl": "",
50 "title": "Documentation",
51 "description": "Detailed guides and API references.",
52 "url": "#",
53 "isExternal": false,
54 "accentColor": ""
55 },
56 {
57 "icon": "💡",
58 "iconType": "custom-char",
59 "iconDashicon": "",
60 "iconImageUrl": "",
61 "title": "Examples",
62 "description": "Explore real-world use cases and demos.",
63 "url": "#",
64 "isExternal": false,
65 "accentColor": ""
66 },
67 {
68 "icon": "🛟",
69 "iconType": "custom-char",
70 "iconDashicon": "",
71 "iconImageUrl": "",
72 "title": "Support",
73 "description": "Get help from our team or community.",
74 "url": "#",
75 "isExternal": false,
76 "accentColor": ""
77 }
78 ]
79 },
80 "columns": {
81 "type": "integer",
82 "default": 2
83 },
84 "gap": {
85 "type": "integer",
86 "default": 20
87 },
88 "cardStyle": {
89 "type": "string",
90 "default": "bordered"
91 },
92 "showArrow": {
93 "type": "boolean",
94 "default": true
95 },
96 "showIcon": {
97 "type": "boolean",
98 "default": true
99 },
100 "hoverEffect": {
101 "type": "string",
102 "default": "lift"
103 },
104 "iconSize": {
105 "type": "integer",
106 "default": 32
107 },
108 "cardRadius": {
109 "type": "integer",
110 "default": 12
111 },
112 "cardPadding": {
113 "type": "integer",
114 "default": 24
115 },
116 "bgColor": {
117 "type": "string",
118 "default": "#ffffff"
119 },
120 "cardBg": {
121 "type": "string",
122 "default": "#ffffff"
123 },
124 "accentColor": {
125 "type": "string",
126 "default": "#7c3aed"
127 },
128 "titleColor": {
129 "type": "string",
130 "default": "#111827"
131 },
132 "descColor": {
133 "type": "string",
134 "default": "#6b7280"
135 },
136 "borderColor": {
137 "type": "string",
138 "default": "#e5e7eb"
139 },
140 "arrowColor": {
141 "type": "string",
142 "default": "#7c3aed"
143 },
144 "titleSize": {
145 "type": "integer",
146 "default": 17
147 },
148 "descSize": {
149 "type": "integer",
150 "default": 14
151 },
152 "maxWidth": {
153 "type": "integer",
154 "default": 1000
155 },
156 "paddingTop": {
157 "type": "integer",
158 "default": 48
159 },
160 "paddingBottom": {
161 "type": "integer",
162 "default": 48
163 },
164 "titleTypo": {
165 "type": "object",
166 "default": {}
167 },
168 "descTypo": {
169 "type": "object",
170 "default": {}
171 }
172 }
173 }
174