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

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

154 lines 3.6 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/row",
5 "title": "Row",
6 "category": "bkbg-layout",
7 "icon": "columns",
8 "description": "A row container for columns with drag-resize support.",
9 "keywords": [
10 "row",
11 "columns",
12 "grid",
13 "layout",
14 "flex"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-row-editor",
18 "editorStyle": "bkbg-row-style",
19 "style": "bkbg-row-style",
20 "parent": [
21 "blockenberg/section"
22 ],
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true
27 },
28 "attributes": {
29 "gap": {
30 "type": "string",
31 "default": "m"
32 },
33 "vAlign": {
34 "type": "string",
35 "default": "top"
36 },
37 "responsiveMode": {
38 "type": "string",
39 "default": "desktop"
40 },
41 "stackOnMobile": {
42 "type": "boolean",
43 "default": true
44 },
45 "minColumnPct": {
46 "type": "number",
47 "default": 10
48 },
49 "columnsCount": {
50 "type": "number",
51 "default": 1
52 },
53 "paddingTop": {
54 "type": "string",
55 "default": ""
56 },
57 "paddingTopUnit": {
58 "type": "string",
59 "default": "px"
60 },
61 "paddingTopCustomUnit": {
62 "type": "string",
63 "default": ""
64 },
65 "paddingRight": {
66 "type": "string",
67 "default": ""
68 },
69 "paddingRightUnit": {
70 "type": "string",
71 "default": "px"
72 },
73 "paddingRightCustomUnit": {
74 "type": "string",
75 "default": ""
76 },
77 "paddingBottom": {
78 "type": "string",
79 "default": ""
80 },
81 "paddingBottomUnit": {
82 "type": "string",
83 "default": "px"
84 },
85 "paddingBottomCustomUnit": {
86 "type": "string",
87 "default": ""
88 },
89 "paddingLeft": {
90 "type": "string",
91 "default": ""
92 },
93 "paddingLeftUnit": {
94 "type": "string",
95 "default": "px"
96 },
97 "paddingLeftCustomUnit": {
98 "type": "string",
99 "default": ""
100 },
101 "marginTop": {
102 "type": "string",
103 "default": ""
104 },
105 "marginTopUnit": {
106 "type": "string",
107 "default": "px"
108 },
109 "marginTopCustomUnit": {
110 "type": "string",
111 "default": ""
112 },
113 "marginRight": {
114 "type": "string",
115 "default": ""
116 },
117 "marginRightUnit": {
118 "type": "string",
119 "default": "px"
120 },
121 "marginRightCustomUnit": {
122 "type": "string",
123 "default": ""
124 },
125 "marginBottom": {
126 "type": "string",
127 "default": ""
128 },
129 "marginBottomUnit": {
130 "type": "string",
131 "default": "px"
132 },
133 "marginBottomCustomUnit": {
134 "type": "string",
135 "default": ""
136 },
137 "marginLeft": {
138 "type": "string",
139 "default": ""
140 },
141 "marginLeftUnit": {
142 "type": "string",
143 "default": "px"
144 },
145 "marginLeftCustomUnit": {
146 "type": "string",
147 "default": ""
148 }
149 },
150 "allowedBlocks": [
151 "blockenberg/column"
152 ]
153 }
154