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 / content-box / block.json

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

155 lines 3.7 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/content-box",
5 "version": "1.0.0",
6 "title": "Content Box",
7 "category": "bkbg-content",
8 "icon": "layout",
9 "description": "Styled content container with optional icon/emoji, badge label, title, rich body text, style variants (info/warning/success/tip/quote), border, background, and rounded corners.",
10 "keywords": [
11 "content",
12 "box",
13 "callout",
14 "note",
15 "info",
16 "warning",
17 "tip"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-content-box-editor",
21 "style": "bkbg-content-box-style",
22 "viewScript": "bkbg-content-box-frontend",
23 "attributes": {
24 "variant": {
25 "type": "string",
26 "default": "info"
27 },
28 "icon": {
29 "type": "string",
30 "default": "ℹ️"
31 },
32 "iconType": {
33 "type": "string",
34 "default": "custom-char"
35 },
36 "iconDashicon": {
37 "type": "string",
38 "default": "info"
39 },
40 "iconImageUrl": {
41 "type": "string",
42 "default": ""
43 },
44 "showIcon": {
45 "type": "boolean",
46 "default": true
47 },
48 "showBadge": {
49 "type": "boolean",
50 "default": true
51 },
52 "badge": {
53 "type": "string",
54 "default": "Note"
55 },
56 "title": {
57 "type": "string",
58 "default": "Important information"
59 },
60 "showTitle": {
61 "type": "boolean",
62 "default": true
63 },
64 "body": {
65 "type": "string",
66 "default": "This is a highlighted content box. Use it to draw attention to key information, tips, warnings, or quotes."
67 },
68 "iconLayout": {
69 "type": "string",
70 "default": "left"
71 },
72 "borderPosition": {
73 "type": "string",
74 "default": "left"
75 },
76 "borderWidth": {
77 "type": "number",
78 "default": 4
79 },
80 "borderRadius": {
81 "type": "number",
82 "default": 8
83 },
84 "paddingV": {
85 "type": "number",
86 "default": 20
87 },
88 "paddingH": {
89 "type": "number",
90 "default": 24
91 },
92 "bgColor": {
93 "type": "string",
94 "default": ""
95 },
96 "borderColor": {
97 "type": "string",
98 "default": ""
99 },
100 "titleColor": {
101 "type": "string",
102 "default": ""
103 },
104 "textColor": {
105 "type": "string",
106 "default": ""
107 },
108 "badgeBg": {
109 "type": "string",
110 "default": ""
111 },
112 "badgeColor": {
113 "type": "string",
114 "default": ""
115 },
116 "iconColor": {
117 "type": "string",
118 "default": ""
119 },
120 "titleSize": {
121 "type": "number",
122 "default": 18
123 },
124 "bodySize": {
125 "type": "number",
126 "default": 16
127 },
128 "iconSize": {
129 "type": "number",
130 "default": 28
131 },
132 "maxWidth": {
133 "type": "number",
134 "default": 0
135 },
136 "typoTitle": {
137 "type": "object",
138 "default": {}
139 },
140 "typoBody": {
141 "type": "object",
142 "default": {}
143 }
144 },
145 "supports": {
146 "html": false,
147 "anchor": true,
148 "className": true,
149 "align": [
150 "wide",
151 "full"
152 ]
153 }
154 }
155