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

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

169 lines 4.8 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/info-cards",
5 "version": "1.0.0",
6 "title": "Info Cards",
7 "category": "bkbg-content",
8 "icon": "editor-table",
9 "description": "Flexible feature/info card grid with emoji or image icons, title, description, optional CTA and accent colors. Multiple card styles.",
10 "keywords": [
11 "features",
12 "info",
13 "cards",
14 "icons",
15 "benefits",
16 "grid"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-info-cards-editor",
20 "style": "bkbg-info-cards-style",
21 "viewScript": "bkbg-info-cards-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "items": {
31 "type": "array",
32 "default": [
33 {
34 "id": "i1",
35 "icon": "",
36 "iconType": "custom-char",
37 "iconDashicon": "",
38 "iconImageUrl": "",
39 "title": "Lightning Fast",
40 "description": "Optimised for speed from the ground up — your sites load in milliseconds, keeping users engaged.",
41 "ctaLabel": "",
42 "ctaUrl": "#",
43 "accentColor": "#6c3fb5"
44 },
45 {
46 "id": "i2",
47 "icon": "🔒",
48 "iconType": "custom-char",
49 "iconDashicon": "",
50 "iconImageUrl": "",
51 "title": "Secure by Default",
52 "description": "Enterprise-grade security baked in. Your data and your users' data is always protected.",
53 "ctaLabel": "",
54 "ctaUrl": "#",
55 "accentColor": "#0ea5e9"
56 },
57 {
58 "id": "i3",
59 "icon": "🎨",
60 "iconType": "custom-char",
61 "iconDashicon": "",
62 "iconImageUrl": "",
63 "title": "Fully Customisable",
64 "description": "Every colour, font, layout and spacing option is under your control — no code required.",
65 "ctaLabel": "",
66 "ctaUrl": "#",
67 "accentColor": "#10b981"
68 },
69 {
70 "id": "i4",
71 "icon": "📈",
72 "iconType": "custom-char",
73 "iconDashicon": "",
74 "iconImageUrl": "",
75 "title": "Built to Scale",
76 "description": "Whether you have 10 or 10 million users, the platform grows effortlessly with your business.",
77 "ctaLabel": "",
78 "ctaUrl": "#",
79 "accentColor": "#f59e0b"
80 }
81 ]
82 },
83 "cardStyle": {
84 "type": "string",
85 "default": "icon-top"
86 },
87 "iconStyle": {
88 "type": "string",
89 "default": "circle-bg"
90 },
91 "columns": {
92 "type": "number",
93 "default": 4
94 },
95 "gap": {
96 "type": "number",
97 "default": 24
98 },
99 "cardRadius": {
100 "type": "number",
101 "default": 16
102 },
103 "cardPadding": {
104 "type": "number",
105 "default": 28
106 },
107 "iconSize": {
108 "type": "number",
109 "default": 32
110 },
111 "iconBgSize": {
112 "type": "number",
113 "default": 64
114 },
115 "textAlign": {
116 "type": "string",
117 "default": "left"
118 },
119 "showCta": {
120 "type": "boolean",
121 "default": false
122 },
123 "titleSize": {
124 "type": "number",
125 "default": 18
126 },
127 "descSize": {
128 "type": "number",
129 "default": 14
130 },
131 "paddingTop": {
132 "type": "number",
133 "default": 0
134 },
135 "paddingBottom": {
136 "type": "number",
137 "default": 0
138 },
139 "sectionBg": {
140 "type": "string",
141 "default": ""
142 },
143 "cardBg": {
144 "type": "string",
145 "default": "#ffffff"
146 },
147 "cardBorderColor": {
148 "type": "string",
149 "default": "#e2e8f0"
150 },
151 "titleColor": {
152 "type": "string",
153 "default": "#1e293b"
154 },
155 "descColor": {
156 "type": "string",
157 "default": "#64748b"
158 },
159 "titleTypo": {
160 "type": "object",
161 "default": {}
162 },
163 "descTypo": {
164 "type": "object",
165 "default": {}
166 }
167 }
168 }
169