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

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.6, at blocks/section/block.json

151 lines 3.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/section",
5 "title": "Section",
6 "category": "blockenberg",
7 "icon": "align-full-width",
8 "description": "A container section for organizing content with rows and columns.",
9 "keywords": ["section", "container", "layout", "wrapper", "full-width"],
10 "textdomain": "blockenberg",
11 "editorScript": "bkbg-section-editor",
12 "editorStyle": "bkbg-section-style",
13 "style": "bkbg-section-style",
14 "supports": {
15 "html": false,
16 "anchor": true,
17 "className": true,
18 "align": ["wide", "full"]
19 },
20 "attributes": {
21 "align": {
22 "type": "string"
23 },
24 "sectionWidth": {
25 "type": "string",
26 "default": "full"
27 },
28 "sectionBoxedMaxWidth": {
29 "type": "string",
30 "default": "1200px"
31 },
32 "contentWidth": {
33 "type": "string",
34 "default": "boxed"
35 },
36 "boxedMaxWidth": {
37 "type": "string",
38 "default": "1200px"
39 },
40 "paddingY": {
41 "type": "string",
42 "default": "m"
43 },
44 "paddingTop": {
45 "type": "string",
46 "default": ""
47 },
48 "paddingTopUnit": {
49 "type": "string",
50 "default": "px"
51 },
52 "paddingTopCustomUnit": {
53 "type": "string",
54 "default": ""
55 },
56 "paddingRight": {
57 "type": "string",
58 "default": ""
59 },
60 "paddingRightUnit": {
61 "type": "string",
62 "default": "px"
63 },
64 "paddingRightCustomUnit": {
65 "type": "string",
66 "default": ""
67 },
68 "paddingBottom": {
69 "type": "string",
70 "default": ""
71 },
72 "paddingBottomUnit": {
73 "type": "string",
74 "default": "px"
75 },
76 "paddingBottomCustomUnit": {
77 "type": "string",
78 "default": ""
79 },
80 "paddingLeft": {
81 "type": "string",
82 "default": ""
83 },
84 "paddingLeftUnit": {
85 "type": "string",
86 "default": "px"
87 },
88 "paddingLeftCustomUnit": {
89 "type": "string",
90 "default": ""
91 },
92 "marginTop": {
93 "type": "string",
94 "default": ""
95 },
96 "marginTopUnit": {
97 "type": "string",
98 "default": "px"
99 },
100 "marginTopCustomUnit": {
101 "type": "string",
102 "default": ""
103 },
104 "marginRight": {
105 "type": "string",
106 "default": ""
107 },
108 "marginRightUnit": {
109 "type": "string",
110 "default": "px"
111 },
112 "marginRightCustomUnit": {
113 "type": "string",
114 "default": ""
115 },
116 "marginBottom": {
117 "type": "string",
118 "default": ""
119 },
120 "marginBottomUnit": {
121 "type": "string",
122 "default": "px"
123 },
124 "marginBottomCustomUnit": {
125 "type": "string",
126 "default": ""
127 },
128 "marginLeft": {
129 "type": "string",
130 "default": ""
131 },
132 "marginLeftUnit": {
133 "type": "string",
134 "default": "px"
135 },
136 "marginLeftCustomUnit": {
137 "type": "string",
138 "default": ""
139 },
140 "background": {
141 "type": "string",
142 "default": "none"
143 },
144 "backgroundColor": {
145 "type": "string",
146 "default": ""
147 }
148 },
149 "allowedBlocks": ["blockenberg/row"]
150 }
151