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

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

187 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/bento-grid",
5 "version": "1.0.0",
6 "title": "Bento Grid",
7 "category": "bkbg-layout",
8 "icon": "grid-view",
9 "description": "Modern asymmetric bento-box grid with featured large cells and smaller detail cards — perfect for showcasing features, stats, or portfolio highlights.",
10 "keywords": [
11 "bento",
12 "grid",
13 "mosaic",
14 "asymmetric",
15 "cards",
16 "features",
17 "showcase",
18 "apple",
19 "layout"
20 ],
21 "textdomain": "blockenberg",
22 "editorScript": "bkbg-bento-grid-editor",
23 "editorStyle": "bkbg-bento-grid-style",
24 "style": "bkbg-bento-grid-style",
25 "viewScript": "bkbg-bento-grid-frontend",
26 "supports": {
27 "html": false,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "layout": {
35 "type": "string",
36 "default": "classic"
37 },
38 "cells": {
39 "type": "array",
40 "default": [
41 {
42 "id": "c1",
43 "span": "large",
44 "type": "text",
45 "eyebrow": "Featured",
46 "title": "Build something the world needs",
47 "desc": "Start with a clear vision, ruthless prioritisation, and shipping fast.",
48 "imageUrl": "",
49 "imageId": 0,
50 "imagePosition": "right",
51 "accentColor": "#6c3fb5",
52 "bgColor": "#f5f0ff",
53 "textColor": "#111827",
54 "showButton": true,
55 "buttonLabel": "Learn more",
56 "buttonUrl": ""
57 },
58 {
59 "id": "c2",
60 "span": "small",
61 "type": "stat",
62 "eyebrow": "Users",
63 "title": "10,000+",
64 "desc": "Active users worldwide",
65 "imageUrl": "",
66 "imageId": 0,
67 "accentColor": "#3b82f6",
68 "bgColor": "#eff6ff",
69 "textColor": "#1e40af",
70 "showButton": false,
71 "buttonLabel": "",
72 "buttonUrl": ""
73 },
74 {
75 "id": "c3",
76 "span": "small",
77 "type": "stat",
78 "eyebrow": "Rating",
79 "title": "4.9 �
80 ",
81 "desc": "Average review score",
82 "imageUrl": "",
83 "imageId": 0,
84 "accentColor": "#f59e0b",
85 "bgColor": "#fffbeb",
86 "textColor": "#92400e",
87 "showButton": false,
88 "buttonLabel": "",
89 "buttonUrl": ""
90 },
91 {
92 "id": "c4",
93 "span": "medium",
94 "type": "image",
95 "eyebrow": "",
96 "title": "Visual storytelling",
97 "desc": "Use images to anchor your grid.",
98 "imageUrl": "",
99 "imageId": 0,
100 "accentColor": "#10b981",
101 "bgColor": "#ecfdf5",
102 "textColor": "#065f46",
103 "showButton": false,
104 "buttonLabel": "",
105 "buttonUrl": ""
106 },
107 {
108 "id": "c5",
109 "span": "medium",
110 "type": "text",
111 "eyebrow": "Our mission",
112 "title": "Crafted with care",
113 "desc": "Every pixel, every interaction thoughtfully designed to delight.",
114 "imageUrl": "",
115 "imageId": 0,
116 "accentColor": "#ec4899",
117 "bgColor": "#fdf2f8",
118 "textColor": "#831843",
119 "showButton": true,
120 "buttonLabel": "Read story",
121 "buttonUrl": ""
122 }
123 ]
124 },
125 "gap": {
126 "type": "number",
127 "default": 16
128 },
129 "borderRadius": {
130 "type": "number",
131 "default": 20
132 },
133 "minRowHeight": {
134 "type": "number",
135 "default": 200
136 },
137 "titleSize": {
138 "type": "number",
139 "default": 26
140 },
141 "eyebrowSize": {
142 "type": "number",
143 "default": 12
144 },
145 "descSize": {
146 "type": "number",
147 "default": 15
148 },
149 "btnBorderRadius": {
150 "type": "number",
151 "default": 8
152 },
153 "hoverLift": {
154 "type": "boolean",
155 "default": true
156 },
157 "animateIn": {
158 "type": "boolean",
159 "default": true
160 },
161 "paddingTop": {
162 "type": "number",
163 "default": 32
164 },
165 "paddingBottom": {
166 "type": "number",
167 "default": 32
168 },
169 "bgColor": {
170 "type": "string",
171 "default": ""
172 },
173 "eyebrowTypo": {
174 "type": "object",
175 "default": {}
176 },
177 "titleTypo": {
178 "type": "object",
179 "default": {}
180 },
181 "descTypo": {
182 "type": "object",
183 "default": {}
184 }
185 }
186 }
187