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

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

168 lines 4.0 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-text-rows",
5 "version": "1.0.0",
6 "title": "Image Text Rows",
7 "category": "bkbg-content",
8 "description": "Multiple alternating image + text rows in one block. Perfect for feature descriptions, how-it-works sections, and product showcases.",
9 "keywords": [
10 "image text",
11 "alternating",
12 "rows",
13 "features",
14 "media",
15 "layout",
16 "split"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-image-text-rows-editor",
20 "style": "bkbg-image-text-rows-style",
21 "viewScript": "bkbg-image-text-rows-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "rows": {
31 "type": "array",
32 "default": [
33 {
34 "title": "",
35 "badge": "",
36 "description": "",
37 "features": [],
38 "btnLabel": "",
39 "btnUrl": "",
40 "imageUrl": "",
41 "imageId": 0,
42 "imageAlt": ""
43 }
44 ]
45 },
46 "imagePosition": {
47 "type": "string",
48 "default": "alternate"
49 },
50 "imageRatio": {
51 "type": "string",
52 "default": "4:3"
53 },
54 "imageRadius": {
55 "type": "integer",
56 "default": 12
57 },
58 "imageShadow": {
59 "type": "boolean",
60 "default": true
61 },
62 "imageWidth": {
63 "type": "integer",
64 "default": 45
65 },
66 "gap": {
67 "type": "integer",
68 "default": 80
69 },
70 "verticalAlign": {
71 "type": "string",
72 "default": "center"
73 },
74 "showFeatures": {
75 "type": "boolean",
76 "default": true
77 },
78 "showBtns": {
79 "type": "boolean",
80 "default": true
81 },
82 "showBadges": {
83 "type": "boolean",
84 "default": true
85 },
86 "paddingTop": {
87 "type": "integer",
88 "default": 0
89 },
90 "paddingBottom": {
91 "type": "integer",
92 "default": 0
93 },
94 "bgColor": {
95 "type": "string",
96 "default": ""
97 },
98 "badgeBg": {
99 "type": "string",
100 "default": "#ede9fe"
101 },
102 "badgeColor": {
103 "type": "string",
104 "default": "#7c3aed"
105 },
106 "titleColor": {
107 "type": "string",
108 "default": "#111827"
109 },
110 "descColor": {
111 "type": "string",
112 "default": "#374151"
113 },
114 "featureColor": {
115 "type": "string",
116 "default": "#374151"
117 },
118 "featureDot": {
119 "type": "string",
120 "default": "#7c3aed"
121 },
122 "btnBg": {
123 "type": "string",
124 "default": "#7c3aed"
125 },
126 "btnColor": {
127 "type": "string",
128 "default": "#ffffff"
129 },
130 "accentColor": {
131 "type": "string",
132 "default": "#7c3aed"
133 },
134 "headingFontSize": {
135 "type": "number",
136 "default": 22
137 },
138 "headingFontWeight": {
139 "type": "number",
140 "default": 700
141 },
142 "headingLineHeight": {
143 "type": "number",
144 "default": 1.2
145 },
146 "bodyFontSize": {
147 "type": "number",
148 "default": 15
149 },
150 "bodyFontWeight": {
151 "type": "number",
152 "default": 400
153 },
154 "bodyLineHeight": {
155 "type": "number",
156 "default": 1.6
157 },
158 "headingTypo": {
159 "type": "object",
160 "default": {}
161 },
162 "bodyTypo": {
163 "type": "object",
164 "default": {}
165 }
166 }
167 }
168