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

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

203 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/image-cards",
5 "version": "1.0.0",
6 "title": "Image Cards",
7 "category": "bkbg-media",
8 "icon": "format-image",
9 "description": "A responsive grid of rich cards with images, category tag, title, description and CTA. Perfect for blog previews, portfolio, services or team showcases.",
10 "keywords": [
11 "cards",
12 "grid",
13 "portfolio",
14 "blog",
15 "team",
16 "gallery",
17 "images"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-image-cards-editor",
21 "style": "bkbg-image-cards-style",
22 "viewScript": "bkbg-image-cards-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 "id": "c1",
36 "imageUrl": "",
37 "imageId": 0,
38 "tag": "Design",
39 "title": "Beautiful product design that converts",
40 "description": "Learn how thoughtful design decisions can dramatically improve your conversion rates and user satisfaction.",
41 "ctaLabel": "Read more",
42 "ctaUrl": "#",
43 "accentColor": "#6c3fb5"
44 },
45 {
46 "id": "c2",
47 "imageUrl": "",
48 "imageId": 0,
49 "tag": "Development",
50 "title": "Build faster with the right tech stack",
51 "description": "Choosing the right technology for your project can mean the difference between months of work and weeks.",
52 "ctaLabel": "Read more",
53 "ctaUrl": "#",
54 "accentColor": "#0ea5e9"
55 },
56 {
57 "id": "c3",
58 "imageUrl": "",
59 "imageId": 0,
60 "tag": "Marketing",
61 "title": "Data-driven growth strategies that work",
62 "description": "Stop guessing and start growing with proven marketing frameworks used by the world's top brands.",
63 "ctaLabel": "Read more",
64 "ctaUrl": "#",
65 "accentColor": "#10b981"
66 }
67 ]
68 },
69 "cardStyle": {
70 "type": "string",
71 "default": "shadow"
72 },
73 "imageAspect": {
74 "type": "string",
75 "default": "16/9"
76 },
77 "columns": {
78 "type": "number",
79 "default": 3
80 },
81 "gap": {
82 "type": "number",
83 "default": 28
84 },
85 "cardRadius": {
86 "type": "number",
87 "default": 16
88 },
89 "imageRadius": {
90 "type": "number",
91 "default": 12
92 },
93 "showTag": {
94 "type": "boolean",
95 "default": true
96 },
97 "showDescription": {
98 "type": "boolean",
99 "default": true
100 },
101 "showCta": {
102 "type": "boolean",
103 "default": true
104 },
105 "ctaStyle": {
106 "type": "string",
107 "default": "link-arrow"
108 },
109 "equalHeight": {
110 "type": "boolean",
111 "default": true
112 },
113 "hoverEffect": {
114 "type": "string",
115 "default": "lift"
116 },
117 "sectionTitle": {
118 "type": "string",
119 "default": ""
120 },
121 "sectionSubtitle": {
122 "type": "string",
123 "default": ""
124 },
125 "showHeader": {
126 "type": "boolean",
127 "default": false
128 },
129 "headerAlign": {
130 "type": "string",
131 "default": "center"
132 },
133 "titleSize": {
134 "type": "number",
135 "default": 19
136 },
137 "titleFontWeight": {
138 "type": "string",
139 "default": "700"
140 },
141 "titleLineHeight": {
142 "type": "number",
143 "default": 1.3
144 },
145 "descSize": {
146 "type": "number",
147 "default": 14
148 },
149 "descFontWeight": {
150 "type": "string",
151 "default": "400"
152 },
153 "descLineHeight": {
154 "type": "number",
155 "default": 1.6
156 },
157 "titleTypo": {
158 "type": "object",
159 "default": {}
160 },
161 "descTypo": {
162 "type": "object",
163 "default": {}
164 },
165 "paddingTop": {
166 "type": "number",
167 "default": 0
168 },
169 "paddingBottom": {
170 "type": "number",
171 "default": 0
172 },
173 "sectionBg": {
174 "type": "string",
175 "default": ""
176 },
177 "cardBg": {
178 "type": "string",
179 "default": "#ffffff"
180 },
181 "cardBorderColor": {
182 "type": "string",
183 "default": "#e2e8f0"
184 },
185 "titleColor": {
186 "type": "string",
187 "default": "#1e293b"
188 },
189 "descColor": {
190 "type": "string",
191 "default": "#64748b"
192 },
193 "ctaColor": {
194 "type": "string",
195 "default": "#6c3fb5"
196 },
197 "imagePlaceholderBg": {
198 "type": "string",
199 "default": "#f3f0ff"
200 }
201 }
202 }
203