PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.13
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.13
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 / split-panel / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.13, at blocks/split-panel/block.json

173 lines 4.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/split-panel",
5 "version": "1.0.0",
6 "title": "Split Panel",
7 "category": "bkbg-layout",
8 "description": "Two-column comparison panel for Before/After, Problem/Solution, or any paired content.",
9 "keywords": [
10 "split",
11 "compare",
12 "before after",
13 "problem solution",
14 "two column"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-split-panel-editor",
18 "style": "bkbg-split-panel-style",
19 "attributes": {
20 "showTitle": {
21 "type": "boolean",
22 "default": false
23 },
24 "title": {
25 "type": "string",
26 "default": ""
27 },
28 "leftTitle": {
29 "type": "string",
30 "default": "The Problem"
31 },
32 "leftIcon": {
33 "type": "string",
34 "default": ""
35 },
36 "leftIconType": {
37 "type": "string",
38 "default": "custom-char"
39 },
40 "leftIconDashicon": {
41 "type": "string",
42 "default": ""
43 },
44 "leftIconImageUrl": {
45 "type": "string",
46 "default": ""
47 },
48 "leftBody": {
49 "type": "string",
50 "default": "Teams waste hours on manual reporting, chase data across multiple tools, and miss insights until it's too late."
51 },
52 "leftItems": {
53 "type": "array",
54 "default": [
55 "No central data source",
56 "Manual spreadsheet updates",
57 "Delayed or missing insights",
58 "Error-prone copy-paste workflows"
59 ]
60 },
61 "leftBg": {
62 "type": "string",
63 "default": "#fef2f2"
64 },
65 "leftAccent": {
66 "type": "string",
67 "default": "#ef4444"
68 },
69 "rightTitle": {
70 "type": "string",
71 "default": "The Solution"
72 },
73 "rightIcon": {
74 "type": "string",
75 "default": "�
76 "
77 },
78 "rightIconType": {
79 "type": "string",
80 "default": "custom-char"
81 },
82 "rightIconDashicon": {
83 "type": "string",
84 "default": ""
85 },
86 "rightIconImageUrl": {
87 "type": "string",
88 "default": ""
89 },
90 "rightBody": {
91 "type": "string",
92 "default": "One unified dashboard automates everything live data, scheduled reports, and instant anomaly alerts."
93 },
94 "rightItems": {
95 "type": "array",
96 "default": [
97 "Real-time unified data view",
98 "Automated scheduled reports",
99 "Instant smart alerts",
100 "Audit trail and version history"
101 ]
102 },
103 "rightBg": {
104 "type": "string",
105 "default": "#f0fdf4"
106 },
107 "rightAccent": {
108 "type": "string",
109 "default": "#10b981"
110 },
111 "showDivider": {
112 "type": "boolean",
113 "default": true
114 },
115 "borderRadius": {
116 "type": "number",
117 "default": 14
118 },
119 "padding": {
120 "type": "number",
121 "default": 28
122 },
123 "fontSize": {
124 "type": "number",
125 "default": 14
126 },
127 "titleFontSize": {
128 "type": "number",
129 "default": 19
130 },
131 "titleFontWeight": {
132 "type": "number",
133 "default": 700
134 },
135 "titleLineHeight": {
136 "type": "number",
137 "default": 1.3
138 },
139 "iconSize": {
140 "type": "number",
141 "default": 36
142 },
143 "itemFontSize": {
144 "type": "number",
145 "default": 13
146 },
147 "itemFontWeight": {
148 "type": "number",
149 "default": 400
150 },
151 "itemLineHeight": {
152 "type": "number",
153 "default": 1.5
154 },
155 "bgColor": {
156 "type": "string",
157 "default": "#ffffff"
158 },
159 "textColor": {
160 "type": "string",
161 "default": "#374151"
162 },
163 "titleColor": {
164 "type": "string",
165 "default": "#111827"
166 },
167 "headingTypo": { "type": "object", "default": {} },
168 "titleTypo": { "type": "object", "default": {} },
169 "bodyTypo": { "type": "object", "default": {} },
170 "itemTypo": { "type": "object", "default": {} }
171 }
172 }
173